forked from qt-creator/qt-creator
Core: Make variable descriptions consistent
The others aren't in imperative form, either. Change-Id: I7af7b0ddcdf409d952223225bd901c84b9136bc6 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
@@ -197,10 +197,10 @@ bool CorePlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
||||
.arg(Constants::IDE_DISPLAY_NAME),
|
||||
[]() { return QVariant(Utils::HostOsInfo::isAnyUnixHost()).toString(); });
|
||||
expander->registerVariable("HostOs:PathListSeparator",
|
||||
tr("Return the path list separator for the platform."),
|
||||
tr("The path list separator for the platform."),
|
||||
[]() { return QString(Utils::HostOsInfo::pathListSeparator()); });
|
||||
expander->registerVariable("HostOs:ExecutableSuffix",
|
||||
tr("Return the platform executable suffix."),
|
||||
tr("The platform executable suffix."),
|
||||
[]() { return QString(Utils::HostOsInfo::withExecutableSuffix("")); });
|
||||
expander->registerVariable("IDE:ResourcePath",
|
||||
tr("The directory where %1 finds its pre-installed resources.")
|
||||
|
Reference in New Issue
Block a user