added i18n to tab names
svn path=/trunk/KDE/kdebase/workspace/; revision=1021411
This commit is contained in:
parent
ea7eb137e8
commit
b2c993dc3e
1 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ namespace Nitrogen
|
|||
// advanced configuration
|
||||
{
|
||||
QWidget *advancedWidget = new QWidget();
|
||||
int index = tab->addTab( advancedWidget, "&Advanced" );
|
||||
int index = tab->addTab( advancedWidget, i18n( "&Advanced" ) );
|
||||
tab->setTabToolTip( index, i18n( "Advanced window decoration configuration options" ) );
|
||||
|
||||
QVBoxLayout* vboxLayout = new QVBoxLayout();
|
||||
|
@ -203,7 +203,7 @@ namespace Nitrogen
|
|||
{
|
||||
exceptions = new NitrogenExceptionListWidget();
|
||||
exceptions->setObjectName(QString::fromUtf8("exceptions"));
|
||||
int index = tab->addTab( exceptions, "&Window-Specific" );
|
||||
int index = tab->addTab( exceptions, i18n( "&Window-Specific" ) );
|
||||
tab->setTabToolTip( index, i18n( "Configure window specific decoration options, based on window name" ) );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue