Correct minor issues in translations

This commit is contained in:
Jonathan White 2023-04-03 23:11:58 -04:00
parent cd1aa6ee4a
commit 19d4f7334c
6 changed files with 66 additions and 82 deletions

View file

@ -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;

View file

@ -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 =

View file

@ -72,11 +72,7 @@
<item>
<widget class="QCheckBox" name="confirmDeleteItem">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot;
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;&quot;&gt;This setting does
not override disabling recycle bin prompts&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;
</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This setting does not override disabling recycle bin prompts &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>Confirm when clients request entry deletion</string>
@ -89,11 +85,7 @@
<item>
<widget class="QCheckBox" name="unlockBeforeSearch">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This improves compatibility with certain applications
which search for password without unlocking the database first.&lt;/p&gt;&lt;p&gt;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.)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;
</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This improves compatibility with certain applications which search for password without unlocking the database first.&lt;/p&gt;&lt;p&gt;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.) &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>Prompt to unlock database before searching</string>

View file

@ -6,7 +6,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<width>374</width>
<height>348</height>
</rect>
</property>
@ -26,7 +26,7 @@
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>These settings affect to the entry's behaviour with the browser extension.</string>
<string>These settings affect the entry's behaviour with the browser extension.</string>
</property>
</widget>
</item>
@ -86,7 +86,7 @@
<item>
<widget class="QGroupBox" name="groupBox_3">
<property name="title">
<string>Additional URL's</string>
<string>Additional URLs</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_1">
<item>

View file

@ -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;