mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-12 01:29:38 -04:00
Split the new association message across multiple lines.
This commit is contained in:
parent
b953ea9042
commit
6ef5f34070
1 changed files with 8 additions and 5 deletions
|
@ -146,10 +146,13 @@ QString Service::storeKey(const QString &key)
|
|||
do {
|
||||
bool ok;
|
||||
//Indicate who wants to associate, and request user to enter the 'name' of association key
|
||||
id = QInputDialog::getText(0, tr("KeyPassX/Http: New key association request"),
|
||||
tr("You have received an association request for the above key. If you would like to "
|
||||
"allow it access to your KeePassX database give it a unique name to identify and"
|
||||
"accept it."),
|
||||
id = QInputDialog::getText(0,
|
||||
tr("KeyPassX/Http: New key association request"),
|
||||
tr("You have received an association "
|
||||
"request for the above key.\n"
|
||||
"If you would like to allow it access "
|
||||
"to your KeePassX database\n"
|
||||
"give it a unique name to identify and accept it."),
|
||||
QLineEdit::Normal, QString(), &ok);
|
||||
if (!ok || id.isEmpty())
|
||||
return QString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue