SubmitEditorWidget: Check all -> Select all

Change-Id: I53b7c6c5fca1f0c988e0565b7ec196301ab88b7f
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
Daniel Teske
2014-07-10 11:42:46 +02:00
parent 031558ebe4
commit 540f336920
2 changed files with 3 additions and 3 deletions

View File

@@ -657,9 +657,9 @@ void SubmitEditorWidget::fileListCustomContextMenuRequested(const QPoint & pos)
// Execute menu offering to check/uncheck all
QMenu menu;
//: Check all for submit
QAction *checkAllAction = menu.addAction(tr("Check All"));
QAction *checkAllAction = menu.addAction(tr("Select All"));
//: Uncheck all for submit
QAction *uncheckAllAction = menu.addAction(tr("Uncheck All"));
QAction *uncheckAllAction = menu.addAction(tr("Unselect All"));
QAction *action = menu.exec(d->m_ui.fileView->mapToGlobal(pos));
if (action == checkAllAction) {
checkAll();

View File

@@ -56,7 +56,7 @@
<item>
<widget class="QCheckBox" name="checkAllCheckBox">
<property name="text">
<string>Check a&amp;ll</string>
<string>Select a&amp;ll</string>
</property>
<property name="tristate">
<bool>false</bool>