QML JS: fix messages

Fix punctuation and capitalization in messages.

Change-Id: I0de61d8594917a95175e3453ef9343f0d9cd208f
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
Leena Miettinen
2014-03-06 14:24:11 +01:00
parent b846840c52
commit f3b9dd5b13

View File

@@ -225,7 +225,7 @@ void PluginDumper::dumpAllPlugins()
static QString noTypeinfoError(const QString &libraryPath) static QString noTypeinfoError(const QString &libraryPath)
{ {
return PluginDumper::tr("QML module does not contain information about components contained in plugins\n\n" return PluginDumper::tr("QML module does not contain information about components contained in plugins.\n\n"
"Module path: %1\n" "Module path: %1\n"
"See \"Using QML Modules with Plugins\" in the documentation.").arg( "See \"Using QML Modules with Plugins\" in the documentation.").arg(
libraryPath); libraryPath);
@@ -255,7 +255,7 @@ static QString qmldumpFailedMessage(const QString &libraryPath, const QString &e
static void printParseWarnings(const QString &libraryPath, const QString &warning) static void printParseWarnings(const QString &libraryPath, const QString &warning)
{ {
ModelManagerInterface::writeWarning( ModelManagerInterface::writeWarning(
PluginDumper::tr("Warnings while parsing qmltypes information of %1:\n" PluginDumper::tr("Warnings while parsing QML type information of %1:\n"
"%2").arg(libraryPath, warning)); "%2").arg(libraryPath, warning));
} }