GUI: Rename Check all/Uncheck all View-menu items to Show all/Hide all.
It is not obvious for user what those items do and after all it is about showing/hiding all items.
This commit is contained in:
parent
2adfd3607d
commit
7c50e74b95
|
@ -41,13 +41,13 @@ MainWindow::MainWindow() :
|
|||
mActionReCheck(tr("Recheck files"), this),
|
||||
mActionCheckDirectory(tr("Check &directory"), this),
|
||||
mActionSettings(tr("&Settings"), this),
|
||||
mActionShowAll(tr("show possible false positives"), this),
|
||||
mActionShowAll(tr("Show possible false positives"), this),
|
||||
mActionShowSecurity(tr("Show &security errors"), this),
|
||||
mActionShowStyle(tr("Show s&tyle errors"), this),
|
||||
mActionShowUnused(tr("Show errors on &unused functions"), this),
|
||||
mActionShowErrors(tr("Show &common errors"), this),
|
||||
mActionShowCheckAll(tr("Check all"), this),
|
||||
mActionShowUncheckAll(tr("Uncheck all"), this),
|
||||
mActionShowCheckAll(tr("Show all"), this),
|
||||
mActionShowUncheckAll(tr("Hide all"), this),
|
||||
mActionShowCollapseAll(tr("Collapse all"), this),
|
||||
mActionShowExpandAll(tr("Expand all"), this),
|
||||
mActionAbout(tr("About"), this),
|
||||
|
|
Loading…
Reference in New Issue