summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-06-03 21:47:09 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-06-03 21:47:09 -0500
commit0f1209c4bbd383acb68a22128b6b323f78c7fcb3 (patch)
tree1fe793a9da5b636da0f2e7c185c232a51990aa16
parentbe91eb61cf327d204eb087b1b0e62209362f670f (diff)
downloadtdelibs-0f1209c4.tar.gz
tdelibs-0f1209c4.zip
Branding cleanup: KDE -> TDE
-rw-r--r--interfaces/ktexteditor/templateinterface.cpp2
-rw-r--r--kab/README4
-rw-r--r--kab/README.FORMAT2
-rw-r--r--kab/README.KABAPI2
-rw-r--r--kab/TODO4
-rw-r--r--kab/addressbook.cc8
-rw-r--r--kab/addressbook.h8
-rw-r--r--kab/kabapi.cc2
-rw-r--r--kab/kabapi.h2
-rw-r--r--kab/qconfigDB.cc2
-rw-r--r--kab/qconfigDB.h2
-rw-r--r--kab/template.kab2
-rw-r--r--khtml/khtml_part.cpp2
-rw-r--r--kutils/kcmoduleloader.cpp4
-rw-r--r--tdeprint/kmvirtualmanager.cpp2
-rw-r--r--tdeprint/kprinterimpl.cpp6
-rw-r--r--tdeprint/tdeprintd.cpp2
17 files changed, 28 insertions, 28 deletions
diff --git a/interfaces/ktexteditor/templateinterface.cpp b/interfaces/ktexteditor/templateinterface.cpp
index 0cb52db75..894d23f6a 100644
--- a/interfaces/ktexteditor/templateinterface.cpp
+++ b/interfaces/ktexteditor/templateinterface.cpp
@@ -58,7 +58,7 @@ void TemplateInterface::setTemplateInterfaceDCOPSuffix ( const TQCString &suffix
userAddress=addrBook->whoAmI(); \
if (userAddress.isEmpty()) { \
if ( KMessageBox::questionYesNo(parentWindow, \
- i18n( "This template uses personal data that is stored in the KDE addressbook, but you have not selected a personal entry. You can still use the template without one, but you will have to type personal data. Would you like to select one now?" ), \
+ i18n( "This template uses personal data that is stored in the TDE addressbook, but you have not selected a personal entry. You can still use the template without one, but you will have to type personal data. Would you like to select one now?" ), \
"Personal data requested", \
KStdGuiItem::yes(), KStdGuiItem::no(), "select personal data entry") == KMessageBox::Yes ) { \
userAddress = KABC::AddresseeDialog::getAddressee(parentWindow); \
diff --git a/kab/README b/kab/README
index 2db8822a0..8ddc6ecec 100644
--- a/kab/README
+++ b/kab/README
@@ -6,11 +6,11 @@ Cornelius Schumacher, February 2002.
-The KDE addressbook
+The TDE addressbook
===================
This directory contains the sources for the kab API provided by "libkab.so".
-kab is the KDE addressbook, users usually know it by one of the applications
+kab is the TDE addressbook, users usually know it by one of the applications
using the kab API, kab itselfes. But kab intends to do more, it tries to be
a central database to store personal information for as much KDE
applications as possible.
diff --git a/kab/README.FORMAT b/kab/README.FORMAT
index 7cce2f402..f3cb0504a 100644
--- a/kab/README.FORMAT
+++ b/kab/README.FORMAT
@@ -1,4 +1,4 @@
-The KDE addressbook
+The TDE addressbook
===================
The format that kab uses is plain ASCII, written by an QConfigDB object.
diff --git a/kab/README.KABAPI b/kab/README.KABAPI
index 45f4be6d9..e8a74d690 100644
--- a/kab/README.KABAPI
+++ b/kab/README.KABAPI
@@ -1,4 +1,4 @@
-The KDE addressbook
+The TDE addressbook
===================
The kab API is a binary interface for application developers that want to
diff --git a/kab/TODO b/kab/TODO
index a40448244..37913ceb7 100644
--- a/kab/TODO
+++ b/kab/TODO
@@ -1,4 +1,4 @@
-The KDE addressbook
+The TDE addressbook
================================================================================
If you want kab to be extended, please send a mail to me. Also
contact me if you want to comment some of the features mentioned
@@ -6,7 +6,7 @@ below. Send the mail to mirko@kde.org
Thanks.
PS: I am still looking for volunteers who try writing the import filters.
Most often I do not have the different other addressbook programs myselfes.
-PS1: This TODO list deals with tasks to add to the KDE addressbook
+PS1: This TODO list deals with tasks to add to the TDE addressbook
library. If you want the application to be extended, read tdeutils/kab/TODO.
--------------------------------------------------------------------------------
° [done] change mail addresses to an unlimited list with selection before
diff --git a/kab/addressbook.cc b/kab/addressbook.cc
index ec5f97244..0408a4db7 100644
--- a/kab/addressbook.cc
+++ b/kab/addressbook.cc
@@ -1,8 +1,8 @@
/* -*- C++ -*-
This file implements the basic personal information management class
- used in the KDE addressbook.
+ used in the TDE addressbook.
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
@@ -439,7 +439,7 @@ AddressBook::AddressBook(TQWidget* parent, const char* name, bool loadit)
"could not be created. kab will probably not "
"work correctly without it.\n"
"Make sure you have not removed write permission "
- "from your local KDE directory (usually ~/.kde).").arg(filename));
+ "from your local TDE directory (usually ~/.trinity).").arg(filename));
state=PermDenied;
}
}
@@ -463,7 +463,7 @@ AddressBook::AddressBook(TQWidget* parent, const char* name, bool loadit)
"could not be created. kab will probably not "
"work correctly without it.\n"
"Make sure you have not removed write permission "
- "from your local KDE directory (usually ~/.kde).").arg(filename));
+ "from your local TDE directory (usually ~/.trinity).").arg(filename));
state=PermDenied;
} else {
KMessageBox::information
diff --git a/kab/addressbook.h b/kab/addressbook.h
index f87c25124..e4ac73823 100644
--- a/kab/addressbook.h
+++ b/kab/addressbook.h
@@ -1,8 +1,8 @@
/* -*- C++ -*-
This file declares the basic personal information management class
- used in the KDE addressbook.
+ used in the TDE addressbook.
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
@@ -102,7 +102,7 @@ class CategoriesMap : public TQMap<int, TQString>
#define KAB_STATE "final"
// -----------------------------------------------------------------------------
-/** The class AddressBook implements the base class for the KDE addressbook.
+/** The class AddressBook implements the base class for the TDE addressbook.
* \par Overview
* It
* is used by the KabAPI to make the interface to kab files available to
@@ -119,7 +119,7 @@ class CategoriesMap : public TQMap<int, TQString>
* File changes are watched by the program, so every instance will automatically
* update its database on a change of the opened file.
*
- * \par The KDE addressbook database system
+ * \par The TDE addressbook database system
* kab manages entries in address databases based on a key system where the
* program assigns keys to added entries. These keys are not reused in one file,
* so API users can rely on a key to be unique and identifying until the entry
diff --git a/kab/kabapi.cc b/kab/kabapi.cc
index a6b6da682..622fc708d 100644
--- a/kab/kabapi.cc
+++ b/kab/kabapi.cc
@@ -3,7 +3,7 @@
for using kab's addressbook files within other programs.
Parse it with kdoc to get the API documentation.
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
diff --git a/kab/kabapi.h b/kab/kabapi.h
index 9289d3f98..cc73f6744 100644
--- a/kab/kabapi.h
+++ b/kab/kabapi.h
@@ -2,7 +2,7 @@
Dialog widget using the addressbook,
provided for inclusion in other programs.
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
diff --git a/kab/qconfigDB.cc b/kab/qconfigDB.cc
index a5d13b815..283dfddef 100644
--- a/kab/qconfigDB.cc
+++ b/kab/qconfigDB.cc
@@ -1,6 +1,6 @@
/* the Configuration Database library, Version II
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
diff --git a/kab/qconfigDB.h b/kab/qconfigDB.h
index 1da422920..12fdac3f5 100644
--- a/kab/qconfigDB.h
+++ b/kab/qconfigDB.h
@@ -4,7 +4,7 @@
/* the Configuration Database library, Version II
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
diff --git a/kab/template.kab b/kab/template.kab
index d4ad1c1fa..e739c24e9 100644
--- a/kab/template.kab
+++ b/kab/template.kab
@@ -1,4 +1,4 @@
-# Template file for the KDE addressbook, version 2.
+# Template file for the TDE addressbook, version 2.
# All new database files kab creates are copies of this file.
[config]
user_headline="(User fields)"
diff --git a/khtml/khtml_part.cpp b/khtml/khtml_part.cpp
index 3fec96803..a2843a53a 100644
--- a/khtml/khtml_part.cpp
+++ b/khtml/khtml_part.cpp
@@ -4867,7 +4867,7 @@ void KHTMLPart::submitForm( const char *action, const TQString &url, const TQByt
}
if (triedToAttach)
- KMessageBox::information(NULL, i18n("This site attempted to attach a file from your computer in the form submission. The attachment was removed for your protection."), i18n("KDE"), "WarnTriedAttach");
+ KMessageBox::information(NULL, i18n("This site attempted to attach a file from your computer in the form submission. The attachment was removed for your protection."), i18n("TDE"), "WarnTriedAttach");
// 2) Append body=
TQString bodyEnc;
diff --git a/kutils/kcmoduleloader.cpp b/kutils/kcmoduleloader.cpp
index 642e6f1bc..99d2f88a2 100644
--- a/kutils/kcmoduleloader.cpp
+++ b/kutils/kcmoduleloader.cpp
@@ -219,7 +219,7 @@ void KCModuleLoader::showLastLoaderError(TQWidget *parent)
KMessageBox::detailedError(parent,
i18n("There was an error loading the module."),i18n("<qt><p>The diagnostics is:<br>%1"
"<p>Possible reasons:</p><ul><li>An error occurred during your last "
- "KDE upgrade leaving an orphaned control module<li>You have old third party "
+ "TDE upgrade leaving an orphaned control module<li>You have old third party "
"modules lying around.</ul><p>Check these points carefully and try to remove "
"the module mentioned in the error message. If this fails, consider contacting "
"your distributor or packager.</p></qt>")
@@ -287,7 +287,7 @@ KCModule* KCModuleLoader::reportError( ErrorReporting report, const TQString & t
if( details.isNull() )
details = i18n("<qt><p>The diagnostics is:<br>%1"
"<p>Possible reasons:</p><ul><li>An error occurred during your last "
- "KDE upgrade leaving an orphaned control module<li>You have old third party "
+ "TDE upgrade leaving an orphaned control module<li>You have old third party "
"modules lying around.</ul><p>Check these points carefully and try to remove "
"the module mentioned in the error message. If this fails, consider contacting "
"your distributor or packager.</p></qt>").arg(KLibLoader::self()->lastErrorMessage());
diff --git a/tdeprint/kmvirtualmanager.cpp b/tdeprint/kmvirtualmanager.cpp
index dca3271be..2f1d80e54 100644
--- a/tdeprint/kmvirtualmanager.cpp
+++ b/tdeprint/kmvirtualmanager.cpp
@@ -159,7 +159,7 @@ void KMVirtualManager::setAsDefault(KMPrinter *p, const TQString& name, TQWidget
{
if ( KMessageBox::warningContinueCancel( parent,
i18n( "<qt>You are about to set a pseudo-printer as your personal default. "
- "This setting is specific to KDE and will not be available outside KDE "
+ "This setting is specific to TDE and will not be available outside TDE "
"applications. Note that this will only make your personal default printer "
"as undefined for non-TDE applications and should not prevent you from "
"printing normally. Do you really want to set <b>%1</b> as your personal default?</qt>" ).arg( instname ),
diff --git a/tdeprint/kprinterimpl.cpp b/tdeprint/kprinterimpl.cpp
index 467982383..05e1aa0df 100644
--- a/tdeprint/kprinterimpl.cpp
+++ b/tdeprint/kprinterimpl.cpp
@@ -384,7 +384,7 @@ int KPrinterImpl::doFilterFiles(KPrinter *printer, TQStringList& files, const TQ
if (KMessageBox::warningContinueCancel(0,
"<p>" + i18n("The MIME type %1 is not supported as input of the filter chain "
"(this may happen with non-CUPS spoolers when performing page selection "
- "on a non-PostScript file). Do you want KDE to convert the file to a supported "
+ "on a non-PostScript file). Do you want TDE to convert the file to a supported "
"format?</p>").arg(mime),
TQString::null, i18n("Convert")) == KMessageBox::Continue)
{
@@ -497,14 +497,14 @@ int KPrinterImpl::autoConvertFiles(KPrinter *printer, TQStringList& files, bool
i18n("<qt>The file format <em> %1 </em> is not directly supported by the current print system. You "
"now have 3 options: "
"<ul> "
- "<li> KDE can attempt to convert this file automatically to a supported format. "
+ "<li> TDE can attempt to convert this file automatically to a supported format. "
"(Select <em>Convert</em>) </li>"
"<li> You can try to send the file to the printer without any conversion. "
"(Select <em>Keep</em>) </li>"
"<li> You can cancel the printjob. "
"(Select <em>Cancel</em>) </li>"
"</ul> "
- "Do you want KDE to attempt and convert this file to %2?</qt>").arg(mime).arg(primaryMimeType),
+ "Do you want TDE to attempt and convert this file to %2?</qt>").arg(mime).arg(primaryMimeType),
TQString::null,
i18n("Convert"),
i18n("Keep"),
diff --git a/tdeprint/tdeprintd.cpp b/tdeprint/tdeprintd.cpp
index 2711ffdbf..86c8375cb 100644
--- a/tdeprint/tdeprintd.cpp
+++ b/tdeprint/tdeprintd.cpp
@@ -173,7 +173,7 @@ bool KDEPrintd::checkFiles(TQString& cmd, const TQStringList& files)
if (::access(TQFile::encodeName(*it).data(), R_OK) != 0)
{
if (KMessageBox::warningContinueCancel(0,
- i18n("Some of the files to print are not readable by the KDE "
+ i18n("Some of the files to print are not readable by the TDE "
"print daemon. This may happen if you are trying to print "
"as a different user to the one currently logged in. To continue "
"printing, you need to provide root's password."),