diff --git a/doc/en/about.docbook b/doc/en/about.docbook index 1bb7173..0c78c3a 100644 --- a/doc/en/about.docbook +++ b/doc/en/about.docbook @@ -2,7 +2,7 @@ About &kapp; -&kapp; is a KDE-based source-editing environment for C and C-style languages. Primarily, it is a front-end to the veteran Cscope, a source-code browser originally developed at Bell Labs. Cscope works by parsing a set of source files, creating a cross-reference database, and allowing the user to query this database. &kapp; extends the feature-set of Cscope with a contemporary user interface, editor integration, project management capabilities, multiple query result windows, call trees and graphs, and more. +&kapp; is a TDE-based source-editing environment for C and C-style languages. Primarily, it is a front-end to the veteran Cscope, a source-code browser originally developed at Bell Labs. Cscope works by parsing a set of source files, creating a cross-reference database, and allowing the user to query this database. &kapp; extends the feature-set of Cscope with a contemporary user interface, editor integration, project management capabilities, multiple query result windows, call trees and graphs, and more. diff --git a/doc/en/editing.docbook b/doc/en/editing.docbook index 2aeeece..133f7a3 100644 --- a/doc/en/editing.docbook +++ b/doc/en/editing.docbook @@ -5,7 +5,7 @@ The Editor -&kapp; does not provide its own editor. Instead, it utilises KDE's KTextEditor infrastructure to embed the system's default editor. This means that any editor that supports the KTextEditor interface (e.g., &kate;, KVim) can be used with &kapp;. The editor is defined in KDE's control centre. +&kapp; does not provide its own editor. Instead, it utilises TDE's KTextEditor infrastructure to embed the system's default editor. This means that any editor that supports the KTextEditor interface (e.g., &kate;, KVim) can be used with &kapp;. The editor is defined in TDE's control centre. In any matter related to operating or configuring the editor, please refer to the manual of the editor itself. diff --git a/doc/en/index.docbook b/doc/en/index.docbook index 705988d..ff1ab2f 100644 --- a/doc/en/index.docbook +++ b/doc/en/index.docbook @@ -66,16 +66,16 @@ Do NOT change these in the translation. --> -&kapp; is a source-editing environment for KDE, based on Cscope. +&kapp; is a source-editing environment for TDE, based on Cscope. -KDE +TDE KScope Cscope source @@ -92,7 +92,7 @@ document, and if there is no ID, the name of the generated HTML files will vary from time to time making it hard to manage for maintainers and for the CVS system. Any chapter labelled (OPTIONAL) may be left out at the author's discretion. Other chapters should not be left out in order to maintain a -consistent documentation style across all KDE apps. --> +consistent documentation style across all TDE apps. --> Introduction @@ -132,7 +132,7 @@ consistent documentation style across all KDE apps. --> Credits and License diff --git a/doc/en/quick_start.docbook b/doc/en/quick_start.docbook index 02ff501..515a4ef 100644 --- a/doc/en/quick_start.docbook +++ b/doc/en/quick_start.docbook @@ -2,7 +2,7 @@ Quick Start -This section provides information for the impatient user who would like to start using &kapp; right away. While using &kapp; should be straight-forward for anyone who has ever used similar tools in the past, and is familiar with KDE applications, there are, nonetheless, some points that require attention. Even if you do not have the time or patience to browse through this entire manual, please make sure to read at least this section. +This section provides information for the impatient user who would like to start using &kapp; right away. While using &kapp; should be straight-forward for anyone who has ever used similar tools in the past, and is familiar with TDE applications, there are, nonetheless, some points that require attention. Even if you do not have the time or patience to browse through this entire manual, please make sure to read at least this section. diff --git a/po/kscope.pot b/po/kscope.pot index 12f8ce6..20e38c2 100644 --- a/po/kscope.pot +++ b/po/kscope.pot @@ -443,7 +443,7 @@ msgstr "" #: main.cpp:36 msgid "" "KScope\n" -"A source-editing environment for KDE, based on Cscope" +"A source-editing environment for TDE, based on Cscope" msgstr "" #: main.cpp:42 diff --git a/po/zh_CN.po b/po/zh_CN.po index c60c706..fb1307c 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -457,7 +457,7 @@ msgstr "锁定/解锁(&L)" #: main.cpp:36 msgid "" "KScope\n" -"A source-editing environment for KDE, based on Cscope" +"A source-editing environment for TDE, based on Cscope" msgstr "" #: main.cpp:42 diff --git a/src/Makefile.am b/src/Makefile.am index 4b7cdd7..3600e74 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -# set the include path for X, qt and KDE +# set the include path for X, qt and TDE INCLUDES = $(all_includes) # these are the headers for your project diff --git a/src/editorpage.cpp b/src/editorpage.cpp index df69e0c..b9f5b96 100644 --- a/src/editorpage.cpp +++ b/src/editorpage.cpp @@ -662,7 +662,7 @@ void EditorPage::slotSetModified() m_bModified = true; emit modified(this, m_bModified); -#if KDE_IS_VERSION(3,3,0) +#if TDE_IS_VERSION(3,3,0) Kate::DocumentExt* pKateDoc; // If the editor is a Kate part, check whether it was modified on diff --git a/src/kscope.cpp b/src/kscope.cpp index 4444810..b1d6d76 100644 --- a/src/kscope.cpp +++ b/src/kscope.cpp @@ -892,7 +892,7 @@ void KScope::toggleQueryWindow(bool bShow) } /** - * Parses the command line, after it was stripped of its KDE options. + * Parses the command line, after it was stripped of its TDE options. * The command line may contain one of the following options: * 1. A project file (named cscope.proj) * 2. A Cscope cross-reference database diff --git a/src/kscope.h b/src/kscope.h index 20332fb..a9cbf89 100644 --- a/src/kscope.h +++ b/src/kscope.h @@ -105,7 +105,7 @@ private: /** The query results tabbed window. */ QueryWidget* m_pQueryWidget; - /** A KDE editor part manager, responsible for creating KTextEditor + /** A TDE editor part manager, responsible for creating KTextEditor parts. */ EditorManager* m_pEditMgr; diff --git a/src/kscopepixmaps.h b/src/kscopepixmaps.h index db27712..f284674 100644 --- a/src/kscopepixmaps.h +++ b/src/kscopepixmaps.h @@ -68,7 +68,7 @@ private: /** An array of pointers to the embedded pixmaps. */ TQPixmap** m_pPixArray; - /** An icon loader used to retrieve pixmaps through the KDE mechanism. */ + /** An icon loader used to retrieve pixmaps through the TDE mechanism. */ TDEIconLoader m_loader; }; diff --git a/src/main.cpp b/src/main.cpp index 9d88dfc..2b6b2fe 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -33,7 +33,7 @@ #include "kscopeconfig.h" static const char *description = - I18N_NOOP("KScope\nA source-editing environment for KDE, based on " + I18N_NOOP("KScope\nA source-editing environment for TDE, based on " "Cscope"); static TDECmdLineOptions options[] = diff --git a/src/progressdlg.h b/src/progressdlg.h index 3b29df6..995be48 100644 --- a/src/progressdlg.h +++ b/src/progressdlg.h @@ -34,7 +34,7 @@ /** * An improved progress dialog. - * This variation of the standard KDE progress dialog displays a busy + * This variation of the standard TDE progress dialog displays a busy * indicator while waiting for the first value greater than 0. * @author Elad Lahav */ diff --git a/src/tabwidget.h b/src/tabwidget.h index b83589e..4c79820 100644 --- a/src/tabwidget.h +++ b/src/tabwidget.h @@ -34,7 +34,7 @@ #include /** - * An extension to the standard KDE tab widget that allows the user to select + * An extension to the standard TDE tab widget that allows the user to select * a tab from a list displayed as a popup menu. * @author Elad Lahav */