forked from qt-creator/qt-creator
Use double quotes instead of single quotes as per our guidelines.
Change-Id: Ib608bb49e26781aef1914085a5d801fcdcd5eb56 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
@@ -120,7 +120,7 @@ bool OptionsParser::checkForTestOption()
|
||||
if (m_pmPrivate->containsTestSpec(spec)) {
|
||||
if (m_errorString)
|
||||
*m_errorString = QCoreApplication::translate("PluginManager",
|
||||
"The plugin '%1' is specified twice for testing.").arg(pluginName);
|
||||
"The plugin \"%1\" is specified twice for testing.").arg(pluginName);
|
||||
m_hasError = true;
|
||||
} else {
|
||||
m_pmPrivate->testSpecs.append(PluginManagerPrivate::TestSpec(spec, args));
|
||||
@@ -128,7 +128,7 @@ bool OptionsParser::checkForTestOption()
|
||||
} else {
|
||||
if (m_errorString)
|
||||
*m_errorString = QCoreApplication::translate("PluginManager",
|
||||
"The plugin '%1' does not exist.").arg(pluginName);
|
||||
"The plugin \"%1\" does not exist.").arg(pluginName);
|
||||
m_hasError = true;
|
||||
}
|
||||
}
|
||||
@@ -145,7 +145,7 @@ bool OptionsParser::checkForLoadOption()
|
||||
if (!spec) {
|
||||
if (m_errorString)
|
||||
*m_errorString = QCoreApplication::translate("PluginManager",
|
||||
"The plugin '%1' does not exist.")
|
||||
"The plugin \"%1\" does not exist.")
|
||||
.arg(m_currentArg);
|
||||
m_hasError = true;
|
||||
} else {
|
||||
@@ -165,7 +165,7 @@ bool OptionsParser::checkForNoLoadOption()
|
||||
if (!spec) {
|
||||
if (m_errorString)
|
||||
*m_errorString = QCoreApplication::translate("PluginManager",
|
||||
"The plugin '%1' does not exist.").arg(m_currentArg);
|
||||
"The plugin \"%1\" does not exist.").arg(m_currentArg);
|
||||
m_hasError = true;
|
||||
} else {
|
||||
spec->setForceDisabled(true);
|
||||
|
||||
Reference in New Issue
Block a user