aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmljs/qmljslink.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <[email protected]>2015-10-23 15:09:08 +0200
committerLeena Miettinen <[email protected]>2015-10-26 08:37:54 +0000
commit330ef13d767abb6b8cdcc1a9835a6bcad5c0f02a (patch)
tree368e173b5b44bca957a9e298833abaf634ab665c /src/libs/qmljs/qmljslink.cpp
parent2af989376b84add63f4b9edbee5ac39b042d2801 (diff)
QML JS: fix UI text
Diffstat (limited to 'src/libs/qmljs/qmljslink.cpp')
-rw-r--r--src/libs/qmljs/qmljslink.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/qmljs/qmljslink.cpp b/src/libs/qmljs/qmljslink.cpp
index d91ef336f95..c8bee41950f 100644
--- a/src/libs/qmljs/qmljslink.cpp
+++ b/src/libs/qmljs/qmljslink.cpp
@@ -273,7 +273,7 @@ void LinkPrivate::populateImportedTypes(Imports *imports, Document::Ptr doc)
imports->setImportFailed();
if (info.ast()) {
error(doc, info.ast()->fileNameToken,
- Link::tr("file or directory not found"));
+ Link::tr("File or directory not found."));
}
break;
default:
@@ -436,11 +436,11 @@ Import LinkPrivate::importNonFile(Document::Ptr doc, const ImportInfo &importInf
error(doc, locationFromRange(importInfo.ast()->firstSourceLocation(),
importInfo.ast()->lastSourceLocation()),
Link::tr(
- "QML module not found\n\n"
+ "QML module not found.\n\n"
"Import paths:\n"
"%1\n\n"
"For qmake projects, use the QML_IMPORT_PATH variable to add import paths.\n"
- "For qbs projects, declare and set a qmlImportPaths property in your product "
+ "For Qbs projects, declare and set a qmlImportPaths property in your product "
"to add import paths.\n"
"For qmlproject projects, use the importPaths property to add import paths.").arg(
importPaths.join(QLatin1Char('\n'))));