diff options
author | Chris <xchrisx@uber.space> | 2019-10-13 22:11:11 +0200 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2019-10-19 13:56:46 +0000 |
commit | c06244f4f15839567a7de0c341ad50602cfaabef (patch) | |
tree | 18e649122084af59b9eae4f4898ac7bcf94e850f /kcontrol/iccconfig/iccconfig.cpp | |
parent | 3ada37e84914ad5694bad1bf2cfeb406f0a6ebd7 (diff) | |
download | tdebase-c06244f4f15839567a7de0c341ad50602cfaabef.tar.gz tdebase-c06244f4f15839567a7de0c341ad50602cfaabef.zip |
Streamline Color Profile module with the rest.
Signed-off-by: Chris <xchrisx@uber.space>
Diffstat (limited to 'kcontrol/iccconfig/iccconfig.cpp')
-rw-r--r-- | kcontrol/iccconfig/iccconfig.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kcontrol/iccconfig/iccconfig.cpp b/kcontrol/iccconfig/iccconfig.cpp index 2cf0a58f4..2ca108e3f 100644 --- a/kcontrol/iccconfig/iccconfig.cpp +++ b/kcontrol/iccconfig/iccconfig.cpp @@ -74,9 +74,9 @@ KICCConfig::KICCConfig(TQWidget *parent, const char *name, const TQStringList &) systemconfig = new KSimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/kicc/kiccconfigrc" )); TDEAboutData *about = - new TDEAboutData(I18N_NOOP("kcmiccconfig"), I18N_NOOP("TDE ICC Profile Control Module"), + new TDEAboutData(I18N_NOOP("kcmiccconfig"), I18N_NOOP("TDE Color Profile Control Module"), 0, 0, TDEAboutData::License_GPL, - I18N_NOOP("(c) 2009,2010 Timothy Pearson")); + I18N_NOOP("(c) 2009, 2010 Timothy Pearson\n(c) 2019 The Trinity Desktop Project")); about->addAuthor("Timothy Pearson", 0, "kb9vqf@pearsoncomputing.net"); setAboutData( about ); @@ -84,7 +84,7 @@ KICCConfig::KICCConfig(TQWidget *parent, const char *name, const TQStringList &) base = new ICCConfigBase(this); layout->add(base); - setRootOnlyMsg(i18n("<b>The global ICC color profile is a system wide setting, and requires administrator access</b><br>To alter the system's global ICC profile, click on the \"Administrator Mode\" button below.")); + setRootOnlyMsg(i18n("<b>The global color profile is a system wide setting, and requires administrator access</b><br>To alter the system's global profile, click on the \"Administrator Mode\" button below.")); // setUseRootOnlyMsg(true); // Setting this hides the Apply button! connect(base->systemEnableSupport, TQT_SIGNAL(clicked()), TQT_SLOT(changed())); @@ -165,7 +165,7 @@ void KICCConfig::renameProfile () { TQString _error; while (!_end) { - _new = KInputDialog::getText( i18n("ICC Profile Configuration"), _error + _text, TQString::null, &_ok, this); + _new = KInputDialog::getText( i18n("Color Profile Configuration"), _error + _text, TQString::null, &_ok, this); if (!_ok ) { _end = true; } else { @@ -200,7 +200,7 @@ void KICCConfig::addProfile () { TQString _error; while (!_end) { - _new = KInputDialog::getText( i18n("ICC Profile Configuration"), _error + _text, TQString::null, &_ok, this); + _new = KInputDialog::getText( i18n("Color Profile Configuration"), _error + _text, TQString::null, &_ok, this); if (!_ok ) { _end = true; } else { @@ -416,7 +416,7 @@ void KICCConfig::save() errorstr = randrsimple->clearIccConfiguration(); } if (errorstr != "") { - KMessageBox::error(this, TQString("Unable to apply ICC configuration:\n%1").arg(errorstr)); + KMessageBox::error(this, TQString("Unable to apply color profile configuration:\n%1").arg(errorstr)); } emit changed(false); @@ -429,8 +429,8 @@ void KICCConfig::defaults() TQString KICCConfig::quickHelp() const { - return i18n("<h1>ICC Profile Configuration</h1> This module allows you to configure TDE support" - " for ICC profiles. This allows you to easily color correct your monitor" + return i18n("<h1>Color Profile Configuration</h1> This module allows you to configure TDE support" + " for ICC color profiles. This allows you to easily color correct your monitor" " for a more lifelike and vibrant image."); } |