From 42d19bf36782f5728f82f6dd1c9088f58866a66a Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Fri, 28 Jul 2017 10:51:24 +0200 Subject: [PATCH] TextEditor: Add punctuation to end of message Change-Id: I3f8f85d8687e4b8fa14ed48e1cc02fce76b8c138 Reviewed-by: Eike Ziller --- src/plugins/texteditor/basefilefind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/texteditor/basefilefind.cpp b/src/plugins/texteditor/basefilefind.cpp index a501ee6518e..7486cfd0d42 100644 --- a/src/plugins/texteditor/basefilefind.cpp +++ b/src/plugins/texteditor/basefilefind.cpp @@ -589,7 +589,7 @@ CountingLabel::CountingLabel() void CountingLabel::updateCount(int count) { - setText(BaseFileFind::tr("%n found", nullptr, count)); + setText(BaseFileFind::tr("%n found.", nullptr, count)); } } // namespace Internal