From 6d52b045dd6aaafd137deb23c15d2f87cf0f4b1e Mon Sep 17 00:00:00 2001 From: Albert Astals Cid Date: Mon, 20 Sep 2021 23:26:25 +0200 Subject: [PATCH] Improve dialog text when asking for annotation author name The previous texts were totally wrong BUGS: 442381 --- part/pageviewannotator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/part/pageviewannotator.cpp b/part/pageviewannotator.cpp index dad39aed9..53baaa7e3 100644 --- a/part/pageviewannotator.cpp +++ b/part/pageviewannotator.cpp @@ -1185,7 +1185,7 @@ void PageViewAnnotator::selectTool(AnnotationTools *toolsDefinition, int toolId, // ask the user for confirmation/change if (userName.isEmpty()) { bool ok = false; - userName = QInputDialog::getText(nullptr, i18n("Bookmark annotation"), i18n("Insert a custom name for the annotation:"), QLineEdit::Normal, QString(), &ok); + userName = QInputDialog::getText(nullptr, i18n("Author name"), i18n("Author name for the annotation:"), QLineEdit::Normal, QString(), &ok); if (!ok) { detachAnnotation();