Adapt the description of two buttons
Closed, ResolvedPublic

Description

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");