diff --git a/clients/default/kdedefault.cpp b/clients/default/kdedefault.cpp index 8c184bd731..ff969d5533 100644 --- a/clients/default/kdedefault.cpp +++ b/clients/default/kdedefault.cpp @@ -793,7 +793,8 @@ void KDEDefaultClient::addClientButtons( const QString& s, bool isLeft ) if (!button[BtnSticky]) { button[BtnSticky] = new KDEDefaultButton(this, "sticky", - largeButtons, isLeft, true, NULL, isOnAllDesktops()?i18n("Un-Sticky"):i18n("Sticky")); + largeButtons, isLeft, true, NULL, + isOnAllDesktops()?i18n("Not On All Desktops"):i18n("On All Desktops")); button[BtnSticky]->turnOn( isOnAllDesktops() ); connect( button[BtnSticky], SIGNAL(clicked()), this, SLOT(toggleOnAllDesktops()) ); @@ -879,7 +880,7 @@ void KDEDefaultClient::desktopChange() button[BtnSticky]->turnOn(on); button[BtnSticky]->repaint(false); QToolTip::remove( button[BtnSticky] ); - QToolTip::add( button[BtnSticky], on ? i18n("Un-Sticky") : i18n("Sticky")); + QToolTip::add( button[BtnSticky], on ? i18n("Not On All Desktops") : i18n("On All Desktops")); } }