diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-26 15:27:21 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-26 15:27:21 -0500 |
commit | 09adc49d974c8f046f82d5ef907898a8892c8e3b (patch) | |
tree | b6901850bac1f5ca435362c2bc481424085f2592 /kreadconfig | |
parent | e92e82b761f92754db582b5e98c0b3e788eba7d9 (diff) | |
download | tdebase-09adc49d974c8f046f82d5ef907898a8892c8e3b.tar.gz tdebase-09adc49d974c8f046f82d5ef907898a8892c8e3b.zip |
Fix kreadconfig and kwriteconfig --help branding.
Diffstat (limited to 'kreadconfig')
-rw-r--r-- | kreadconfig/kreadconfig.cpp | 4 | ||||
-rw-r--r-- | kreadconfig/kwriteconfig.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kreadconfig/kreadconfig.cpp b/kreadconfig/kreadconfig.cpp index 709d7b781..d08894658 100644 --- a/kreadconfig/kreadconfig.cpp +++ b/kreadconfig/kreadconfig.cpp @@ -11,7 +11,7 @@ * If --type is not set, the value of the key is simply printed to stdout. * * Usage examples: - * if kreadconfig --group KDE --key macStyle --type bool; then + * if kreadconfig --group TDE --key macStyle --type bool; then * echo "We're using Mac-Style menus." * else * echo "We're using normal menus." @@ -35,7 +35,7 @@ static KCmdLineOptions options[] = { { "file <file>", I18N_NOOP("Use <file> instead of global config"), 0 }, - { "group <group>", I18N_NOOP("Group to look in"), "KDE" }, + { "group <group>", I18N_NOOP("Group to look in"), "TDE" }, { "key <key>", I18N_NOOP("Key to look for"), 0 }, { "default <default>", I18N_NOOP("Default value"), 0 }, { "type <type>", I18N_NOOP("Type of variable"), 0 }, diff --git a/kreadconfig/kwriteconfig.cpp b/kreadconfig/kwriteconfig.cpp index 16d766871..0d1d7fc92 100644 --- a/kreadconfig/kwriteconfig.cpp +++ b/kreadconfig/kwriteconfig.cpp @@ -17,7 +17,7 @@ static KCmdLineOptions options[] = { { "file <file>", I18N_NOOP("Use <file> instead of global config"), 0 }, - { "group <group>", I18N_NOOP("Group to look in"), "KDE" }, + { "group <group>", I18N_NOOP("Group to look in"), "TDE" }, { "key <key>", I18N_NOOP("Key to look for"), 0 }, { "type <type>", I18N_NOOP("Type of variable. Use \"bool\" for a boolean, otherwise it is treated as a string"), 0 }, { "+value", I18N_NOOP( "The value to write. Mandatory, on a shell use '' for empty" ), 0 }, |