aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/resourceeditor/resourceeditorplugin.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2014-03-06 14:56:35 +0100
committerLeena Miettinen <riitta-leena.miettinen@digia.com>2014-03-07 16:10:06 +0100
commitfef3af41548c0a303c4c0395a277692f5bcafbf9 (patch)
tree37e2655353b904966e589579c4fb13c3b994ead6 /src/plugins/resourceeditor/resourceeditorplugin.cpp
parent732bb7c2e4a1b2aef5ba1f6416f2bcadbde9f12b (diff)
Resource editor: fix capitalization of UI text
Change-Id: I3ff91a79b046d053d6cf0fbc3f016eeb5393809a Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/plugins/resourceeditor/resourceeditorplugin.cpp')
-rw-r--r--src/plugins/resourceeditor/resourceeditorplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/resourceeditor/resourceeditorplugin.cpp b/src/plugins/resourceeditor/resourceeditorplugin.cpp
index ca533b9406..f70e3c316c 100644
--- a/src/plugins/resourceeditor/resourceeditorplugin.cpp
+++ b/src/plugins/resourceeditor/resourceeditorplugin.cpp
@@ -134,7 +134,7 @@ bool ResourceEditorPlugin::initialize(const QStringList &arguments, QString *err
const Core::Context context(Constants::C_RESOURCEEDITOR);
m_undoAction = new QAction(tr("&Undo"), this);
m_redoAction = new QAction(tr("&Redo"), this);
- m_refreshAction = new QAction(tr("Recheck existence of referenced files"), this);
+ m_refreshAction = new QAction(tr("Recheck Existence of Referenced Files"), this);
Core::ActionManager::registerAction(m_undoAction, Core::Constants::UNDO, context);
Core::ActionManager::registerAction(m_redoAction, Core::Constants::REDO, context);
Core::ActionManager::registerAction(m_refreshAction, Constants::REFRESH, context);
@@ -250,7 +250,7 @@ void ResourceEditorPlugin::removeFileContextMenu()
ProjectExplorer::FolderNode *parent = rfn->parentFolderNode();
if (!parent->removeFiles(QStringList() << path))
QMessageBox::warning(Core::ICore::mainWindow(),
- tr("File Removal failed"),
+ tr("File Removal Failed"),
tr("Removing file %1 from the project failed.").arg(path));
}