diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-11 18:01:51 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-11 18:01:51 -0600 |
commit | 98fd239bd75a129965c0d4f56a4cc5bad3e0a175 (patch) | |
tree | 8796b248573950cb8731210dc3445a3b60452e5d | |
parent | 787f04b0c65349aea026b8bc2b8b2fdedc648438 (diff) | |
download | tdelibs-98fd239bd75a129965c0d4f56a4cc5bad3e0a175.tar.gz tdelibs-98fd239bd75a129965c0d4f56a4cc5bad3e0a175.zip |
Update TDE control module branding
This closes Bug 621
-rw-r--r-- | kcmshell/main.cpp | 2 | ||||
-rw-r--r-- | kio/kcmodule.desktop | 2 | ||||
-rw-r--r-- | tdecore/README.kiosk | 2 | ||||
-rw-r--r-- | tdecore/kapplication.cpp | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/kcmshell/main.cpp b/kcmshell/main.cpp index 4bd1ace4d..14b2caa1f 100644 --- a/kcmshell/main.cpp +++ b/kcmshell/main.cpp @@ -198,7 +198,7 @@ static void setIcon(TQWidget *w, const TQString &iconName) extern "C" KDE_EXPORT int kdemain(int _argc, char *_argv[]) { - KAboutData aboutData( "kcmshell", I18N_NOOP("KDE Control Module"), + KAboutData aboutData( "kcmshell", I18N_NOOP("TDE Control Module"), 0, I18N_NOOP("A tool to start single KDE control modules"), KAboutData::License_GPL, diff --git a/kio/kcmodule.desktop b/kio/kcmodule.desktop index 01e0b7aa2..5a560afc7 100644 --- a/kio/kcmodule.desktop +++ b/kio/kcmodule.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Type=ServiceType X-KDE-ServiceType=KCModule -Name=KDE Control Module +Name=TDE Control Module Name[af]=KDE Beheer Module Name[ar]=وحدة تحكم كيدي Name[az]=KDE İdarə Modulu diff --git a/tdecore/README.kiosk b/tdecore/README.kiosk index 351173231..38a59a929 100644 --- a/tdecore/README.kiosk +++ b/tdecore/README.kiosk @@ -607,7 +607,7 @@ Center by editing the menu structure, such modules will then still be available to applications. A better way is to use the control module restrictions offered by KIOSK: -[KDE Control Module Restrictions][$i] +[TDE Control Module Restrictions][$i] <menu-id>=false Some example menu-ids are: diff --git a/tdecore/kapplication.cpp b/tdecore/kapplication.cpp index 38ee6190a..ea16f00f8 100644 --- a/tdecore/kapplication.cpp +++ b/tdecore/kapplication.cpp @@ -3352,14 +3352,14 @@ bool KApplication::authorizeControlModule(const TQString &menuId) if (menuId.isEmpty() || kde_kiosk_exception) return true; KConfig *config = KGlobal::config(); - KConfigGroupSaver saver( config, "KDE Control Module Restrictions" ); + KConfigGroupSaver saver( config, "TDE Control Module Restrictions" ); return config->readBoolEntry(menuId, true); } TQStringList KApplication::authorizeControlModules(const TQStringList &menuIds) { KConfig *config = KGlobal::config(); - KConfigGroupSaver saver( config, "KDE Control Module Restrictions" ); + KConfigGroupSaver saver( config, "TDE Control Module Restrictions" ); TQStringList result; for(TQStringList::ConstIterator it = menuIds.begin(); it != menuIds.end(); ++it) |