diff --git a/share/translations/keepassxc_en.ts b/share/translations/keepassxc_en.ts index 417b8e6fb1..4871bc3106 100644 --- a/share/translations/keepassxc_en.ts +++ b/share/translations/keepassxc_en.ts @@ -701,10 +701,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on @@ -717,6 +713,10 @@ Unable to get valid keycode for key: + + Trying to send invalid keyboard symbol. + + AutoTypeSelectDialog @@ -2812,10 +2812,6 @@ Would you like to correct it? EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - - General @@ -2844,10 +2840,6 @@ Would you like to correct it? Do not use this entry with HTTP Basic Auth - - Additional URL's - - Add @@ -2860,6 +2852,14 @@ Would you like to correct it? Edit + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + EditEntryWidgetHistory @@ -7211,11 +7211,6 @@ Do you want to overwrite it? time - - Set the key file for the database. -This options is deprecated, use --set-key-file instead. - - Set the key file for the database. @@ -8414,10 +8409,6 @@ Kernel: %3 %4 read password of the database from stdin - - Locked databases. - - Database failed to lock. @@ -8481,15 +8472,12 @@ Kernel: %3 %4 - Enter Shortcut - - - - Action + Set the key file for the database. +This option is deprecated, use --set-key-file instead. - Shortcuts + Databases have been locked. @@ -8576,6 +8564,38 @@ Kernel: %3 %4 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 + + + + Unknown Passkeys error + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + Favorite Tag for favorite entries @@ -8647,35 +8667,15 @@ Kernel: %3 %4 - 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 - - - - Unknown Passkeys error + Enter Shortcut - Challenge is shorter than required minimum length + Action - user.id does not match the required length + Shortcuts @@ -9377,26 +9377,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 @@ -9421,6 +9405,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 diff --git a/src/autotype/xcb/AutoTypeXCB.cpp b/src/autotype/xcb/AutoTypeXCB.cpp index 047ef3a95f..a3e4d75226 100644 --- a/src/autotype/xcb/AutoTypeXCB.cpp +++ b/src/autotype/xcb/AutoTypeXCB.cpp @@ -485,7 +485,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; diff --git a/src/cli/DatabaseCreate.cpp b/src/cli/DatabaseCreate.cpp index c2444645b9..ae21b0abba 100644 --- a/src/cli/DatabaseCreate.cpp +++ b/src/cli/DatabaseCreate.cpp @@ -31,7 +31,7 @@ const QCommandLineOption DatabaseCreate::DecryptionTimeOption = const QCommandLineOption DatabaseCreate::SetKeyFileShortOption = QCommandLineOption( QStringList() << "k", - QObject::tr("Set the key file for the database.\nThis options is deprecated, use --set-key-file instead."), + 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 = diff --git a/src/fdosecrets/widgets/SettingsWidgetFdoSecrets.ui b/src/fdosecrets/widgets/SettingsWidgetFdoSecrets.ui index bed666676f..9c7ddb0073 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/gui/entry/EditEntryWidgetBrowser.ui b/src/gui/entry/EditEntryWidgetBrowser.ui index 093d141e89..8c36975970 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. @@ -86,7 +86,7 @@ - Additional URL's + Additional URLs diff --git a/src/main.cpp b/src/main.cpp index f0c987fac4..6c3efea9de 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -138,7 +138,7 @@ int main(int argc, char** argv) 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;