From 232e083a88b6bcd8375ea78f251bc69d99d95c47 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Tue, 26 Mar 2013 09:13:40 +0100 Subject: [PATCH] changed the message about missing helpers to make it clear that the data is only updated by indexing --- src/qtgui/rclmain_w.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/qtgui/rclmain_w.cpp b/src/qtgui/rclmain_w.cpp index 92501d46..cf7f798d 100644 --- a/src/qtgui/rclmain_w.cpp +++ b/src/qtgui/rclmain_w.cpp @@ -1084,11 +1084,11 @@ void RclMain::showMissingHelpers() return; } QString msg = QString::fromAscii("

") + - tr("External applications/commands needed and not found " - "for indexing your file types:\n\n"); - msg += "("; + tr("External applications/commands needed for your file types " + "and not found, as stored by the last indexing pass in "); + msg += ""; msg += QString::fromLocal8Bit(theconfig->getConfDir().c_str()); - msg += "/missing):

\n";
+    msg += "/missing:
\n";
     if (!miss.empty()) {
 	msg += QString::fromUtf8(miss.c_str());
     } else {