Replace the button label "Less Options" by "Fewer Options"

BUG: 318937

FIXED-IN: 4.11.0
This commit is contained in:
Frank Reininghaus 2013-04-27 19:09:42 +02:00
parent d167699932
commit dbc00fa190

View file

@ -473,7 +473,7 @@ void DolphinSearchBox::updateFacetsToggleButton()
const bool facetsIsVisible = SearchSettings::showFacetsWidget();
m_facetsToggleButton->setChecked(facetsIsVisible ? true : false);
m_facetsToggleButton->setIcon(KIcon(facetsIsVisible ? "arrow-up-double" : "arrow-down-double"));
m_facetsToggleButton->setText(facetsIsVisible ? i18nc("action:button", "Less Options") : i18nc("action:button", "More Options"));
m_facetsToggleButton->setText(facetsIsVisible ? i18nc("action:button", "Fewer Options") : i18nc("action:button", "More Options"));
}
#include "dolphinsearchbox.moc"