summaryrefslogtreecommitdiffstats
path: root/kcontrol/access
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-03-09 02:43:01 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2012-03-09 02:43:01 -0600
commit2fda65a10a664e07d312477a4e4a2688fe11c4e4 (patch)
tree5ec65bb4eb7c6d6914a27cdae28fbb65f87e317b /kcontrol/access
parent56a663b7c2cf18978a349015b6e19f1d898e8bb9 (diff)
downloadtdebase-2fda65a10a664e07d312477a4e4a2688fe11c4e4.tar.gz
tdebase-2fda65a10a664e07d312477a4e4a2688fe11c4e4.zip
Fix KControl KDE->TDE branding issues.
Diffstat (limited to 'kcontrol/access')
-rw-r--r--kcontrol/access/kcmaccess.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kcontrol/access/kcmaccess.cpp b/kcontrol/access/kcmaccess.cpp
index d7e114c55..2279c9a78 100644
--- a/kcontrol/access/kcmaccess.cpp
+++ b/kcontrol/access/kcmaccess.cpp
@@ -226,7 +226,7 @@ KAccessConfig::KAccessConfig(TQWidget *parent, const char *)
{
KAboutData *about =
- new KAboutData(I18N_NOOP("kaccess"), I18N_NOOP("KDE Accessibility Tool"),
+ new KAboutData(I18N_NOOP("kaccess"), I18N_NOOP("TDE Accessibility Tool"),
0, 0, KAboutData::License_GPL,
I18N_NOOP("(c) 2000, Matthias Hoelzer-Kluepfel"));
@@ -382,7 +382,7 @@ KAccessConfig::KAccessConfig(TQWidget *parent, const char *)
toggleKeysBeep = new TQCheckBox(i18n("Use system bell whenever a locking key gets activated or deactivated"), grp);
vvbox->addWidget(toggleKeysBeep);
- kNotifyModifiers = new TQCheckBox(i18n("Use KDE's system notification mechanism whenever a modifier or locking key changes its state"), grp);
+ kNotifyModifiers = new TQCheckBox(i18n("Use TDE's system notification mechanism whenever a modifier or locking key changes its state"), grp);
vvbox->addWidget(kNotifyModifiers);
hbox = new TQHBoxLayout(vvbox, KDialog::spacingHint());
@@ -528,9 +528,9 @@ KAccessConfig::KAccessConfig(TQWidget *parent, const char *)
gestureConfirmation = new TQCheckBox(i18n("Show a confirmation dialog whenever a keyboard accessibility feature is turned on or off"), grp);
vvbox->addWidget(gestureConfirmation);
- TQWhatsThis::add (gestureConfirmation, i18n("If this option is checked, KDE will show a confirmation dialog whenever a keyboard accessibility feature is turned on or off.\nBe sure you know what you are doing if you uncheck it, as the keyboard accessibility settings will then always be applied without confirmation.") );
+ TQWhatsThis::add (gestureConfirmation, i18n("If this option is checked, TDE will show a confirmation dialog whenever a keyboard accessibility feature is turned on or off.\nBe sure you know what you are doing if you uncheck it, as the keyboard accessibility settings will then always be applied without confirmation.") );
- kNotifyAccessX = new TQCheckBox(i18n("Use KDE's system notification mechanism whenever a keyboard accessibility feature is turned on or off"), grp);
+ kNotifyAccessX = new TQCheckBox(i18n("Use TDE's system notification mechanism whenever a keyboard accessibility feature is turned on or off"), grp);
vvbox->addWidget(kNotifyAccessX);
hbox = new TQHBoxLayout(vvbox, KDialog::spacingHint());
@@ -564,7 +564,7 @@ KAccessConfig::~KAccessConfig()
void KAccessConfig::configureKNotify()
{
KAboutData about(I18N_NOOP("kaccess"),
- I18N_NOOP("KDE Accessibility Tool"),
+ I18N_NOOP("TDE Accessibility Tool"),
0);
KNotifyDialog::configure (this, 0, &about);
}