forked from qt-creator/qt-creator
SubmitEditorWidget: Check all -> Select all
Change-Id: I53b7c6c5fca1f0c988e0565b7ec196301ab88b7f Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -56,7 +56,7 @@
|
||||
<item>
|
||||
<widget class="QCheckBox" name="checkAllCheckBox">
|
||||
<property name="text">
|
||||
<string>Check a&ll</string>
|
||||
<string>Select a&ll</string>
|
||||
</property>
|
||||
<property name="tristate">
|
||||
<bool>false</bool>
|
||||
|
||||
Reference in New Issue
Block a user