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
This commit is contained in:
Nicolas Goutte 2004-07-25 19:32:10 +00:00
parent e94ef322f8
commit 1404fcd72b

View file

@ -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] );