Adapt the description of two buttons
ClosedPublic

Authored by asensi on Mar 30 2016, 10:39 PM.

Details

Reviewers
martinkostolny
Group Reviewers
Krusader
Maniphest Tasks
T2046: Adapt the description of two buttons
Summary

Adapt the description of a button to latest changes, from:

actUnselectAll->setToolTip(i18n("Unselect all selected files"));

to:

actUnselectAll->setToolTip(i18n("Unselect all"));

so it also follows the norm of:

actUnselectAll = action(i18n("U&nselect All"), "edit-select-none", Qt::ALT + Qt::Key_Minus, SLOT(unmarkAll()), "unselect all");

Adapt the description of the next button, from:

actSelect->setToolTip(i18n("Select files using a filter"));

to:

actSelect->setToolTip(i18n("Select group"));

so it also follows the norm of:

actSelect = action(i18n("Select &Group..."), "edit-select", Qt::CTRL + Qt::Key_Plus, SLOT(markGroup()), "select group");

Diff Detail

Repository
R167 Krusader
Lint
Lint Skipped
Unit
Unit Tests Skipped
asensi updated this revision to Diff 3037.Mar 30 2016, 10:39 PM
asensi retitled this revision from to Adapt the description of two buttons.
asensi updated this object.
asensi edited the test plan for this revision. (Show Details)
asensi added a reviewer: Krusader.
asensi set the repository for this revision to R167 Krusader.
asensi added a project: Krusader.
asensi added a subscriber: Krusader.
martinkostolny accepted this revision.Mar 30 2016, 11:02 PM
martinkostolny added a reviewer: martinkostolny.
This revision is now accepted and ready to land.Mar 30 2016, 11:02 PM