diff --git a/kpilot/kpilotConfigWizard.cc b/kpilot/kpilotConfigWizard.cc index 9df81b4..761098b 100644 --- a/kpilot/kpilotConfigWizard.cc +++ b/kpilot/kpilotConfigWizard.cc @@ -124,7 +124,7 @@ void ConfigWizard::accept() TQStringList conduits = KPilotSettings::installedConduits(); int version(0); #define APPEND_CONDUIT(a) if (!conduits.contains(a)) conduits.append(a) - TQString applicationName(i18n("general KDE-PIM")); + TQString applicationName(i18n("general TDE-PIM")); APPEND_CONDUIT("internal_fileinstall"); APPEND_CONDUIT("todo-conduit"); APPEND_CONDUIT("vcal-conduit"); @@ -163,7 +163,7 @@ void ConfigWizard::accept() break; // case eAppKontact: case eAppKDE: - applicationName=i18n("KDE's PIM suite", "Kontact"); + applicationName=i18n("TDE's PIM suite", "Kontact"); default: APPEND_CONDUIT("knotes-conduit"); APPEND_CONDUIT("abbrowser_conduit"); diff --git a/kpilot/listCat.h b/kpilot/listCat.h index ca6f43c..32c808a 100644 --- a/kpilot/listCat.h +++ b/kpilot/listCat.h @@ -51,8 +51,8 @@ class TQStringList; * ListCategorizer *lc = new ListCategorizer(this,colors); * lc->setColumnText(0,i18n("Color")); * lc->setColumnText(1,i18n("HTML")); - * TQListViewItem *stdKDE = lc->addCategory(i18n("Standard KDE")); - * (void) new TQListViewItem(stdKDE,i18n("red"),"#FF0000"); + * TQListViewItem *stdTDE = lc->addCategory(i18n("Standard TDE")); + * (void) new TQListViewItem(stdTDE,i18n("red"),"#FF0000"); * @endcode * to set sensible column headers for a list of colors * and their HTML equivalents (although why you would want @@ -150,7 +150,7 @@ public: * of the given item @p p. If you remembered a pointer to a * category, you can use * @code - * TQStringList l = lc->listSiblings(stdKDE->firstChild(),2); + * TQStringList l = lc->listSiblings(stdTDE->firstChild(),2); * @endcode * to get the list of strings in hidden column 2 under * the category you remembered.