diff --git a/twin/kcmtwin/twinoptions/main.cpp b/twin/kcmtwin/twinoptions/main.cpp index e63ec54d5..c2a74ebb0 100644 --- a/twin/kcmtwin/twinoptions/main.cpp +++ b/twin/kcmtwin/twinoptions/main.cpp @@ -92,32 +92,32 @@ KWinOptions::KWinOptions(TQWidget *parent, const char *name) tab = new TQTabWidget(this); layout->addWidget(tab); - mFocus = new KFocusConfig(false, mConfig, this, "KWin Focus Config"); + mFocus = new KFocusConfig(false, mConfig, this, "TWin Focus Config"); mFocus->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mFocus, i18n("&Focus")); connect(mFocus, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mTitleBarActions = new KTitleBarActionsConfig(false, mConfig, this, "KWin TitleBar Actions"); + mTitleBarActions = new KTitleBarActionsConfig(false, mConfig, this, "TWin TitleBar Actions"); mTitleBarActions->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mTitleBarActions, i18n("&Titlebar Actions")); connect(mTitleBarActions, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mWindowActions = new KWindowActionsConfig(false, mConfig, this, "KWin Window Actions"); + mWindowActions = new KWindowActionsConfig(false, mConfig, this, "TWin Window Actions"); mWindowActions->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mWindowActions, i18n("Window Actio&ns")); connect(mWindowActions, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mMoving = new KMovingConfig(false, mConfig, this, "KWin Moving"); + mMoving = new KMovingConfig(false, mConfig, this, "TWin Moving"); mMoving->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mMoving, i18n("&Moving")); connect(mMoving, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mAdvanced = new KAdvancedConfig(false, mConfig, this, "KWin Advanced"); + mAdvanced = new KAdvancedConfig(false, mConfig, this, "TWin Advanced"); mAdvanced->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mAdvanced, i18n("Ad&vanced")); connect(mAdvanced, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mTranslucency = new KTranslucencyConfig(false, mConfig, this, "KWin Translucency"); + mTranslucency = new KTranslucencyConfig(false, mConfig, this, "TWin Translucency"); mTranslucency->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mTranslucency, i18n("&Translucency")); connect(mTranslucency, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); @@ -191,7 +191,7 @@ TQString KWinOptions::quickHelp() const " moved, resized or clicked on. You can also specify a focus policy as well as a placement" " policy for new windows." "

Please note that this configuration will not take effect if you do not use" - " KWin as your window manager. If you do use a different window manager, please refer to its documentation" + " TWin as your window manager. If you do use a different window manager, please refer to its documentation" " for how to customize window behavior."); } @@ -210,12 +210,12 @@ TDEActionsOptions::TDEActionsOptions(TQWidget *parent, const char *name) tab = new TQTabWidget(this); layout->addWidget(tab); - mTitleBarActions = new KTitleBarActionsConfig(false, mConfig, this, "KWin TitleBar Actions"); + mTitleBarActions = new KTitleBarActionsConfig(false, mConfig, this, "TWin TitleBar Actions"); mTitleBarActions->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mTitleBarActions, i18n("&Titlebar Actions")); connect(mTitleBarActions, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mWindowActions = new KWindowActionsConfig(false, mConfig, this, "KWin Window Actions"); + mWindowActions = new KWindowActionsConfig(false, mConfig, this, "TWin Window Actions"); mWindowActions->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mWindowActions, i18n("Window Actio&ns")); connect(mWindowActions, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); diff --git a/twin/kcmtwin/twinrules/kcm.cpp b/twin/kcmtwin/twinrules/kcm.cpp index b137a7b09..2f28bc5dd 100644 --- a/twin/kcmtwin/twinrules/kcm.cpp +++ b/twin/kcmtwin/twinrules/kcm.cpp @@ -81,7 +81,7 @@ TQString KCMRules::quickHelp() const return i18n("

Window-specific Settings

Here you can customize window settings specifically only" " for some windows." "

Please note that this configuration will not take effect if you do not use" - " KWin as your window manager. If you do use a different window manager, please refer to its documentation" + " TWin as your window manager. If you do use a different window manager, please refer to its documentation" " for how to customize window behavior."); } diff --git a/twin/lib/kdecoration_plugins_p.cpp b/twin/lib/kdecoration_plugins_p.cpp index 319b7305e..0e2bc0d04 100644 --- a/twin/lib/kdecoration_plugins_p.cpp +++ b/twin/lib/kdecoration_plugins_p.cpp @@ -156,7 +156,7 @@ bool KDecorationPlugins::loadPlugin( TQString nameStr ) } if(!create_ptr) { - error( i18n( "The library %1 is not a KWin plugin." ).arg( path )); + error( i18n( "The library %1 is not a TWin plugin." ).arg( path )); library->unload(); return false; } diff --git a/twin/plugins.cpp b/twin/plugins.cpp index 10d3012d2..5f20b7018 100644 --- a/twin/plugins.cpp +++ b/twin/plugins.cpp @@ -29,8 +29,8 @@ PluginMgr::PluginMgr() void PluginMgr::error( const TQString &error_msg ) { - tqWarning( "%s", (i18n("KWin: ") + error_msg + - i18n("\nKWin will now exit...")).local8Bit().data() ); + tqWarning( "%s", (i18n("TWin: ") + error_msg + + i18n("\nTWin will now exit...")).local8Bit().data() ); exit(1); }