From 9c72b69d711076aa8798e2c0721cd01c179c65f1 Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 27 Oct 2014 13:50:54 +0100 Subject: [PATCH] Replace some genitive of lifeless things Despite the trend to use it for geographic names and organizations... Change-Id: If135e78d1777f3f7d6c1688e9007969082bf3545 Reviewed-by: Leena Miettinen --- src/plugins/projectexplorer/kit.cpp | 6 +++--- src/plugins/projectexplorer/projectexplorer.cpp | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/plugins/projectexplorer/kit.cpp b/src/plugins/projectexplorer/kit.cpp index 4fb9e97fbd7..942dd5cf531 100644 --- a/src/plugins/projectexplorer/kit.cpp +++ b/src/plugins/projectexplorer/kit.cpp @@ -102,13 +102,13 @@ public: // This provides the same global fall back as the global expander // without relying on the currentKit() discovery process there. m_macroExpander.registerVariable(Constants::VAR_CURRENTKIT_NAME, - tr("The currently active kit's name."), + tr("The name of the currently active kit."), [kit] { return kit->displayName(); }); m_macroExpander.registerVariable(Constants::VAR_CURRENTKIT_FILESYSTEMNAME, - tr("The currently active kit's name in a filesystem friendly version."), + tr("The name of the currently active kit in a filesystem friendly version."), [kit] { return kit->fileSystemFriendlyName(); }); m_macroExpander.registerVariable(Constants::VAR_CURRENTKIT_ID, - tr("The currently active kit's id."), + tr("The id of the currently active kit."), [kit] { return kit->id().toString(); }); } diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 3ba5df64268..e66e3be0049 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -1145,28 +1145,28 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er }); expander->registerVariable(Constants::VAR_CURRENTPROJECT_NAME, - tr("The current project's name."), + tr("The name of the current project."), [this]() -> QString { Project *project = ProjectExplorerPlugin::currentProject(); return project ? project->displayName() : QString(); }); expander->registerVariable(Constants::VAR_CURRENTKIT_NAME, - tr("The currently active kit's name."), + tr("The name of the currently active kit."), []() -> QString { Kit *kit = currentKit(); return kit ? kit->displayName() : QString(); }); expander->registerVariable(Constants::VAR_CURRENTKIT_FILESYSTEMNAME, - tr("The currently active kit's name in a filesystem friendly version."), + tr("The name of the currently active kit in a filesystem friendly version."), []() -> QString { Kit *kit = currentKit(); return kit ? kit->fileSystemFriendlyName() : QString(); }); expander->registerVariable(Constants::VAR_CURRENTKIT_ID, - tr("The currently active kit's id."), + tr("The id of the currently active kit."), []() -> QString { Kit *kit = currentKit(); return kit ? kit->id().toString() : QString();