From 1404fcd72b99b672bb221254e95f7bb648a6fa4f Mon Sep 17 00:00:00 2001 From: Nicolas Goutte Date: Sun, 25 Jul 2004 19:32:10 +0000 Subject: [PATCH] Revert (as wanted by Stephan Kulow) before that Scripty extracts the changed strings. Reason: we are in message freeze, 2 other KWin clients have the strings in the upper case version, no other in the lower case version. So for KDE 3.3, the upper case version has won. svn path=/trunk/kdebase/kwin/; revision=332688 --- clients/quartz/quartz.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/quartz/quartz.cpp b/clients/quartz/quartz.cpp index 4bbea20932..307199cd88 100644 --- a/clients/quartz/quartz.cpp +++ b/clients/quartz/quartz.cpp @@ -684,7 +684,7 @@ void QuartzClient::addClientButtons( const QString& s, bool isLeft ) button[BtnAbove] = new QuartzButton(this, "above", largeButtons, isLeft, true, keepAbove() ? above_on_bits : above_off_bits, - i18n("Keep above others")); + i18n("Keep Above Others")); connect( button[BtnAbove], SIGNAL( clicked()), this, SLOT(slotAbove()) ); hb->addWidget( button[BtnAbove] ); @@ -698,7 +698,7 @@ void QuartzClient::addClientButtons( const QString& s, bool isLeft ) button[BtnBelow] = new QuartzButton(this, "below", largeButtons, isLeft, true, keepBelow() ? below_on_bits : below_off_bits, - i18n("Keep below others")); + i18n("Keep Below Others")); connect( button[BtnBelow], SIGNAL( clicked()), this, SLOT(slotBelow()) ); hb->addWidget( button[BtnBelow] );