summaryrefslogtreecommitdiffstats
path: root/doc/kdearch/index.docbook
diff options
context:
space:
mode:
Diffstat (limited to 'doc/kdearch/index.docbook')
-rw-r--r--doc/kdearch/index.docbook16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/kdearch/index.docbook b/doc/kdearch/index.docbook
index a17aaa87..fff7cd57 100644
--- a/doc/kdearch/index.docbook
+++ b/doc/kdearch/index.docbook
@@ -16,7 +16,7 @@
<author>
<firstname>Bernd</firstname>
<surname>Gehrmann</surname>
-<affiliation><address><email>bernd@kdevelop.org</email></address></affiliation>
+<affiliation><address><email>bernd@tdevelop.org</email></address></affiliation>
</author>
</authorgroup>
@@ -1451,7 +1451,7 @@ in this screenshot:
<para>
The XML file begins with a document type declaration. The DTD for kpartgui can
-be found in the kdelibs sources in <filename>tdeui/kpartgui.dtd</filename>. The
+be found in the tdelibs sources in <filename>tdeui/kpartgui.dtd</filename>. The
outermost element of the file contains the instance name of the application as
attribute. It can also contain a version number in the form "version=2". This
is useful when you release new versions of an application with a changed menu
@@ -1480,7 +1480,7 @@ declared as follows:
<para>
In KDE's automake framework, such titles are automatically extracted and put
-into the application's <ulink url="kde-i18n-howto.html"><literal>.po</literal></ulink>
+into the application's <ulink url="tde-i18n-howto.html"><literal>.po</literal></ulink>
file , so it is considered by translators. Note that you have to write the
accelerator marker "&amp;" in the form XML compliant form "&amp;amp;".
</para>
@@ -1503,7 +1503,7 @@ actions are created by the class
When you create such actions in your application (such as in the C++ example
above), they will automatically be inserted in a prescribed position, and
possibly with an icon and a shortcut key. You can look up these locations in
-the file <filename>tdeui/ui_standards.rc</filename> in the kdelibs sources.
+the file <filename>tdeui/ui_standards.rc</filename> in the tdelibs sources.
</para>
</simplesect>
@@ -1913,12 +1913,12 @@ snippet:
</para>
<programlisting>
-kde_servicetypesdir_DATA = kdeveloppart.desktop
+kde_servicetypesdir_DATA = tdeveloppart.desktop
EXTRA_DIST = $(kde_servicetypesdir_DATA)
</programlisting>
<para>
-The definition <filename>kdeveloppart.desktop</filename> of a
+The definition <filename>tdeveloppart.desktop</filename> of a
<application>KDevelop</application> part looks as follows:
</para>
@@ -2920,7 +2920,7 @@ cache, you can use:
<programlisting>
void FooClass::reloadPage()
{
- KURL url("http://www.kdevelop.org/index.html");
+ KURL url("http://www.tdevelop.org/index.html");
KIO::TransferJob *job = KIO::get(url, true, false);
job->addMetaData("cache", "reload");
...
@@ -3119,7 +3119,7 @@ extern "C" { int kdemain(int argc, char **argv); }
int kdemain(int argc, char **argv)
{
- KLocale::setMainCatalogue("kdelibs");
+ KLocale::setMainCatalogue("tdelibs");
KInstance instance("kio_ftp");
(void) KGlobal::locale();