From 6ef5f34070059287605cf0b1c916793dee953b87 Mon Sep 17 00:00:00 2001 From: Keith Bennett Date: Sat, 22 Mar 2014 16:25:00 +0000 Subject: [PATCH] Split the new association message across multiple lines. --- src/http/Service.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/http/Service.cpp b/src/http/Service.cpp index 7de986df6..9daf9c018 100644 --- a/src/http/Service.cpp +++ b/src/http/Service.cpp @@ -146,11 +146,14 @@ 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."), - QLineEdit::Normal, QString(), &ok); + 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();