diff --git a/src/plugins/autotest/autotestplugin.cpp b/src/plugins/autotest/autotestplugin.cpp index 34ecdb8e036..9d164914990 100644 --- a/src/plugins/autotest/autotestplugin.cpp +++ b/src/plugins/autotest/autotestplugin.cpp @@ -193,7 +193,7 @@ void AutotestPluginPrivate::initializeMenuEntries() QAction *action = new QAction(Tr::tr("Run &All Tests"), this); action->setIcon(Utils::Icons::RUN_SMALL.icon()); - action->setToolTip(Tr::tr("Run All Tests")); + action->setToolTip(Tr::tr("Run all tests")); Command *command = ActionManager::registerAction(action, Constants::ACTION_RUN_ALL_ID); command->setDefaultKeySequence( QKeySequence(useMacShortcuts ? Tr::tr("Ctrl+Meta+T, Ctrl+Meta+A") : Tr::tr("Alt+Shift+T,Alt+A"))); @@ -204,7 +204,7 @@ void AutotestPluginPrivate::initializeMenuEntries() action = new QAction(Tr::tr("Run All Tests Without Deployment"), this); action->setIcon(Utils::Icons::RUN_SMALL.icon()); - action->setToolTip(Tr::tr("Run All Tests Without Deployment")); + action->setToolTip(Tr::tr("Run all tests without deployment")); command = ActionManager::registerAction(action, Constants::ACTION_RUN_ALL_NODEPLOY_ID); command->setDefaultKeySequence( QKeySequence(useMacShortcuts ? Tr::tr("Ctrl+Meta+T, Ctrl+Meta+E") : Tr::tr("Alt+Shift+T,Alt+E"))); @@ -215,7 +215,7 @@ void AutotestPluginPrivate::initializeMenuEntries() action = new QAction(Tr::tr("&Run Selected Tests"), this); action->setIcon(Utils::Icons::RUN_SELECTED.icon()); - action->setToolTip(Tr::tr("Run Selected Tests")); + action->setToolTip(Tr::tr("Run selected tests")); command = ActionManager::registerAction(action, Constants::ACTION_RUN_SELECTED_ID); command->setDefaultKeySequence( QKeySequence(useMacShortcuts ? Tr::tr("Ctrl+Meta+T, Ctrl+Meta+R") : Tr::tr("Alt+Shift+T,Alt+R"))); @@ -226,7 +226,7 @@ void AutotestPluginPrivate::initializeMenuEntries() action = new QAction(Tr::tr("&Run Selected Tests Without Deployment"), this); action->setIcon(Utils::Icons::RUN_SELECTED.icon()); - action->setToolTip(Tr::tr("Run Selected Tests")); + action->setToolTip(Tr::tr("Run selected tests")); command = ActionManager::registerAction(action, Constants::ACTION_RUN_SELECTED_NODEPLOY_ID); command->setDefaultKeySequence( QKeySequence(useMacShortcuts ? Tr::tr("Ctrl+Meta+T, Ctrl+Meta+W") : Tr::tr("Alt+Shift+T,Alt+W"))); @@ -237,7 +237,7 @@ void AutotestPluginPrivate::initializeMenuEntries() action = new QAction(Tr::tr("Run &Failed Tests"), this); action->setIcon(Icons::RUN_FAILED.icon()); - action->setToolTip(Tr::tr("Run Failed Tests")); + action->setToolTip(Tr::tr("Run failed tests")); command = ActionManager::registerAction(action, Constants::ACTION_RUN_FAILED_ID); command->setDefaultKeySequence( useMacShortcuts ? Tr::tr("Ctrl+Meta+T, Ctrl+Meta+F") : Tr::tr("Alt+Shift+T,Alt+F")); @@ -247,7 +247,7 @@ void AutotestPluginPrivate::initializeMenuEntries() action = new QAction(Tr::tr("Run Tests for &Current File"), this); action->setIcon(Utils::Icons::RUN_FILE.icon()); - action->setToolTip(Tr::tr("Run Tests for Current File")); + action->setToolTip(Tr::tr("Run tests for current file")); command = ActionManager::registerAction(action, Constants::ACTION_RUN_FILE_ID); command->setDefaultKeySequence( QKeySequence(useMacShortcuts ? Tr::tr("Ctrl+Meta+T, Ctrl+Meta+C") : Tr::tr("Alt+Shift+T,Alt+C")));