diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-03 22:24:23 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-03 22:24:23 -0500 |
commit | 14b75e943ab94f87e0361800ef61a637294d85e5 (patch) | |
tree | 87859ce7551f8b3044d359e5a14674185c2502cd /kviewshell | |
parent | 8c35cffcfdfc6d183d62de23dd470ff0b48905cb (diff) | |
download | tdegraphics-14b75e943ab94f87e0361800ef61a637294d85e5.tar.gz tdegraphics-14b75e943ab94f87e0361800ef61a637294d85e5.zip |
Branding cleanup: KDE -> TDE
Diffstat (limited to 'kviewshell')
-rw-r--r-- | kviewshell/kviewpart.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kviewshell/kviewpart.cpp b/kviewshell/kviewpart.cpp index 5ff8ba44..d9c4fb38 100644 --- a/kviewshell/kviewpart.cpp +++ b/kviewshell/kviewpart.cpp @@ -150,12 +150,12 @@ KViewPart::KViewPart(TQWidget *parentWidget, const char *widgetName, TQObject *p TQString text = i18n("<qt><p><b>Problem:</b> The document <b>%1</b> cannot be shown.</p>" "<p><b>Reason:</b> The software component <b>%2</b> which is required to " "display your files could not be initialized. This could point to " - "serious misconfiguration of your KDE system, or to damaged program files.</p>" + "serious misconfiguration of your TDE system, or to damaged program files.</p>" "<p><b>What you can do:</b> You could try to re-install the software packages in " "question. If that does not help, you could file an error report, either to the " "provider of your software (e.g. the vendor of your Linux distribution), or " "directly to the authors of the software. The entry <b>Report Bug...</b> in the " - "<b>Help</b> menu helps you to contact the KDE programmers.</p></qt>").arg(m_file).arg(service->library()); + "<b>Help</b> menu helps you to contact the TDE programmers.</p></qt>").arg(m_file).arg(service->library()); TQString caption = i18n("Error Initializing Software Component"); KMessageBox::detailedError(mainWidget, text, reason, caption); emit setStatusBarText(TQString()); @@ -492,7 +492,7 @@ TQStringList KViewPart::supportedMimeTypes() // The kviewshell is also able to read compressed files and to // uncompress them on the fly. - // Check if this version of KDE supports bzip2 + // Check if this version of TDE supports bzip2 bool bzip2Available = (KFilterBase::findFilterByMimeType( "application/x-bzip2" ) != 0L); supportedMimeTypes << "application/x-gzip"; @@ -544,9 +544,9 @@ TQStringList KViewPart::fileFormats() const // uncompress them on the fly. Thus, we modify the list of supported // file formats which we obtain from the multipages to include // compressed files like "*.dvi.gz". We add "*.dvi.bz2" if support - // for bzip2 is compiled into KDE. + // for bzip2 is compiled into TDE. - // Check if this version of KDE supports bzip2 + // Check if this version of TDE supports bzip2 bool bzip2Available = (KFilterBase::findFilterByMimeType( "application/x-bzip2" ) != 0L); TQStringList compressedPattern; @@ -826,13 +826,13 @@ bool KViewPart::openFile() TQString text = i18n("<qt><p><b>Problem:</b> The document <b>%1</b> cannot be shown.</p>" "<p><b>Reason:</b> The software " "component <b>%2</b> which is required to display files of type <b>%3</b> could " - "not be initialized. This could point to serious misconfiguration of your KDE " + "not be initialized. This could point to serious misconfiguration of your TDE " "system, or to damaged program files.</p>" "<p><b>What you can do:</b> You could try to re-install the software packages in " "question. If that does not help, you could file an error report, either to the " "provider of your software (e.g. the vendor of your Linux distribution), or " "directly to the authors of the software. The entry <b>Report Bug...</b> in the " - "<b>Help</b> menu helps you to contact the KDE programmers.</p></qt>").arg(m_file).arg(service->library()).arg(mimetype->name()); + "<b>Help</b> menu helps you to contact the TDE programmers.</p></qt>").arg(m_file).arg(service->library()).arg(mimetype->name()); TQString caption = i18n("Error Initializing Software Component"); if (reason.isEmpty()) KMessageBox::error(mainWidget, text, caption); |