Fix koffice doctype declaration and entities for future maintenance of handbook files.

This partially resolves bug report 694.
pull/1/head
Darrell Anderson 12 jaren geleden
bovenliggende 47e6e18a1e
commit d996d88fdc

@ -2,7 +2,7 @@
<title>Menus</title>
<para>
Some of &chalk;'s menus are standard in &kde; or &koffice;, while others are
Some of &chalk;'s menus are standard in &tde; or &koffice;, while others are
particular to &chalk;. The <guimenu>File</guimenu> menu contains commands for
manipluating files. In the <guimenu>Edit</guimenu> menu, you can find commands
that do things with the current selection. With the commands from the
@ -49,7 +49,7 @@ action="simul">&Ctrl;<keycap>O</keycap></keycombo></shortcut>
<guimenuitem>Open...</guimenuitem>
</menuchoice></term>
<listitem><para><action>Opens an existing document.</action>
Because this uses the usual &kde; <guilabel>Open Document</guilabel>
Because this uses the usual &tde; <guilabel>Open Document</guilabel>
dialog to let you select a file, you can open files via various protocols
(ftp, fish, etcetera).
</para></listitem>
@ -85,7 +85,7 @@ its current name. </para></listitem>
<guimenuitem>Save As...</guimenuitem>
</menuchoice></term>
<listitem><para><action>Saves the document under a different name.</action>
The default &kde; dialog is used, so saving remotely via ftp
The default &tde; dialog is used, so saving remotely via ftp
or ssh (fish) is perfectly possible.</para> </listitem>
</varlistentry>
@ -128,7 +128,7 @@ As...</guimenuitem></menuchoice>.)
<guimenu>File</guimenu>
<guimenuitem>Mail...</guimenuitem>
</menuchoice></term>
<listitem><para><action>Sends the document via email.</action> The default &kde;
<listitem><para><action>Sends the document via email.</action> The default &tde;
mail compose window will be used.</para></listitem>
</varlistentry>
@ -140,7 +140,7 @@ action="simul">&Ctrl;<keycap>P</keycap></keycombo></shortcut>
<guimenuitem>Print...</guimenuitem>
</menuchoice></term>
<listitem><para><action>Prints the document.</action> You will see the usual
&kde; print dialog appear.</para></listitem>
&tde; print dialog appear.</para></listitem>
</varlistentry>
<varlistentry>
@ -235,7 +235,7 @@ action="simul">&Ctrl;<keycap>X</keycap></keycombo></shortcut>
<guimenuitem>Cut</guimenuitem>
</menuchoice></term>
<listitem><para><action>Cuts the selection to the
clipboard.</action> The current selection is put on the &kde;
clipboard.</action> The current selection is put on the &tde;
clipboard, and the selection is cleared.</para></listitem>
</varlistentry>
@ -2116,7 +2116,7 @@ toolbar.</action></para></listitem>
<guimenuitem>Configure Shortcuts...</guimenuitem>
</menuchoice></term>
<listitem><para><action>Opens the <guilabel>Configure Shortcuts
</guilabel> dialog.</action> This dialog is common to most &kde; applications
</guilabel> dialog.</action> This dialog is common to most &tde; applications
and allows you to configure shortcuts for all actions &chalk; has to
offer.</para></listitem>
</varlistentry>
@ -2127,7 +2127,7 @@ offer.</para></listitem>
<guimenuitem>Configure Toolbars...</guimenuitem>
</menuchoice></term>
<listitem><para><action>Opens the <guilabel>Configure Toolbars</guilabel>
dialog.</action> This dialog is common to most &kde; applications
dialog.</action> This dialog is common to most &tde; applications
and allows you to configure &chalk;'s toolbars.</para></listitem>
</varlistentry>

@ -34,7 +34,7 @@ instance) and a translated string for GUI purposes.
</para><para>
A word on compatibility: &chalk; is still in development. From &chalk; 1.5 to
1.6 not many API changes are expected, but there may be some. From &chalk; 1.6
to 2.0 we will move from &Qt;3 to &Qt;4, from &kde;3 to &kde;4, from
to 2.0 we will move from &Qt;3 to &Qt;4, from &tde;3 to &tde;4, from
<command>automake</command> to <command>cmake</command>: many changes are to
be expected. If you develop a plugin for &chalk; and choose to do so in
&chalk;s subversion repository, chances are excellent that well help you
@ -143,7 +143,7 @@ import/export filter could be a PDF filter. Filters are loaded by the
<title>Creating plugins</title>
<para>
Plugins are written in C++ and can use all of &kde; and &Qt; and the &chalk;
Plugins are written in C++ and can use all of &tde; and &Qt; and the &chalk;
developer API. Only viewplugins should use the &koffice; API. Dont worry:
&chalk;s APIs are quite clear and rather extensively documented (for free
software) and coding your first filter is really easy.
@ -152,7 +152,7 @@ If you do not want to use C++, you can write scripts in Python or Ruby; that
is a different thing altogether, though, and you cannot currently write tools,
colorspaces, paintops or import/export filters as scripts.
</para><para>
&chalk; plugins use &kde;'s parts mechanism for loading, so the parts
&chalk; plugins use &tde;'s parts mechanism for loading, so the parts
documentation at <ulink url="http://developer.kde.org" /> is relevant here, too.
</para><para>
Your distribution should have either installed the relevant header files with
@ -165,13 +165,13 @@ public API at <ulink url="http://koffice.org/developer/apidocs/chalk/html/" />.
<title>Automake (and CMake)</title>
<para>
&kde; 3.x and thus &koffice; 1.5 and 1.6 use <command>automake</command>;
&kde; 4.0 and &koffice; 2.0 use <command>cmake</command>. This tutorial
&tde; 3.x and thus &koffice; 1.5 and 1.6 use <command>automake</command>;
&tde; 4.0 and &koffice; 2.0 use <command>cmake</command>. This tutorial
describes the <command>automake</command> way of creating plugins.
<!-- If I have not updated this manual when we release KOffice 2.0, please
remind me to do so. -->
</para><para>
Plugins are &kde; modules and should be tagged as such in their
Plugins are &tde; modules and should be tagged as such in their
<filename>Makefile.am</filename>. Filters, tools, paintops, colorspaces and
import/export filters need <literal role="extension">.desktop</literal> files;
viewplugins need a <application>KXMLGui</application>
@ -187,7 +187,7 @@ so yet.
<para>
Let's look at the skeleton for a plugin module. First, the
<filename>Makefile.am</filename>. This is what &kde; uses to generate the
<filename>Makefile.am</filename>. This is what &tde; uses to generate the
makefile that builds your plugin:
<programlisting>
@ -213,7 +213,7 @@ set.
If your plugin is a viewplugin, you will likely also install a <literal
role="extension">.rc</literal> file with entries for menubars and toolbars.
Likewise, you may need to install cursors and icons. That is all done through
the ordinary &kde; <filename>Makefile.am</filename> magic incantantions:
the ordinary &tde; <filename>Makefile.am</filename> magic incantantions:
<programlisting>
chalkrcdir = $(kde_datadir)/chalk/chalkplugins
@ -267,7 +267,7 @@ need to be discussed separately.
<title>Boilerplate</title>
<para>
You also need a bit of boilerplate code that is called by the &kde; part
You also need a bit of boilerplate code that is called by the &tde; part
framework to instantiate the plugin &mdash; a header file and an implementation file.
</para><para>
A header file:

@ -121,7 +121,7 @@ information.
<sect1 id="introduction-manual">
<title>About this manual</title>
<para>
We are assuming you have got a good working knowledge of &kde; and of your
We are assuming you have got a good working knowledge of &tde; and of your
operating system. The first chapter will give you a quick tour of &chalk;'s
cool features; the other chapters will expand on that information.
</para>

@ -3,7 +3,7 @@
<para>
So, let's show you all the niceties. You can start &chalk; either on its own
or from the &koffice; shell. In your &kde; menus, &chalk; should be placed
or from the &koffice; shell. In your &tde; menus, &chalk; should be placed
either under Graphics or under Office &mdash; it depends a bit on who packaged
&koffice; for you. Or do what I do: press
<keycombo action="simul">&Alt;<keycap>F2</keycap></keycombo> (which opens the

@ -38,7 +38,7 @@ Please respect the format of the date (DD/MM/YYYY) and of the version
<abstract>
<para>
&karbon14; is a Scalable Graphics editer for &kde;.
&karbon14; is a Scalable Graphics editer for &tde;.
</para>
</abstract>
@ -51,11 +51,11 @@ Please respect the format of the date (DD/MM/YYYY) and of the version
</bookinfo>
<chapter id="introduction"> <title>Introduction</title> <para>
The documentation for &kappname; was not finished when &kde; was installed on
The documentation for &kappname; was not finished when &tde; was installed on
this computer.</para> <para>If you need help, please check <ulink
url="http://www.kde.org">The &kde; Website</ulink> for updates, or by
url="http://www.kde.org">The &tde; Website</ulink> for updates, or by
submitting your question to <ulink url="mailto:kde@kde.org">The
&kde; User Mailing list</ulink>.</para> <para><emphasis>The &kde;
&tde; User Mailing list</ulink>.</para> <para><emphasis>The &tde;
Team</emphasis></para>
&underFDL;

@ -97,7 +97,7 @@
<para>
Database objects (tables, queries, etc.) listed in the <guilabel>Project
Navigator</guilabel> can opened by clicking (or
double-clicking, depending upon your global &kde; settings) on their names.
double-clicking, depending upon your global &tde; settings) on their names.
</para>
<sect2 id="main-application-elements">

@ -45,7 +45,7 @@
<!-- TODO: Screenshot of IDEAl mode -->
<para>
IDEAl mode is the default MDI mode, and may be familiar from
other &kde; applications. In this mode, a single child window
other &tde; applications. In this mode, a single child window
is shown maximized within the &kexi; main window at once.
A tab bar, containing one tab for each child window, allows
other child windows to be viewed by simply clicking on the

@ -17,7 +17,7 @@
<sect1 id="opening">
<title>Opening a Document</title>
<para>To open a previously saved document select <menuchoice><guimenu>File</guimenu><guimenuitem>Open...</guimenuitem></menuchoice>, a standard &kde; file dialog box will appear.</para>
<para>To open a previously saved document select <menuchoice><guimenu>File</guimenu><guimenuitem>Open...</guimenuitem></menuchoice>, a standard &tde; file dialog box will appear.</para>
<para>Recently used documents are listed under <menuchoice><guimenu>File</guimenu><guisubmenu>Open Recent</guisubmenu></menuchoice>.</para>
</sect1>
@ -29,7 +29,7 @@
<sect1 id="printing">
<title>Printing</title>
<para>The document can be printed by selecting <menuchoice><guimenu>File</guimenu><guimenuitem>Print...</guimenuitem></menuchoice>. The standard &kde; printing dialog appears. A preview of the printed output can be obtained by selecting <menuchoice><guimenu>File</guimenu><guimenuitem>Print Preview...</guimenuitem></menuchoice>.</para>
<para>The document can be printed by selecting <menuchoice><guimenu>File</guimenu><guimenuitem>Print...</guimenuitem></menuchoice>. The standard &tde; printing dialog appears. A preview of the printed output can be obtained by selecting <menuchoice><guimenu>File</guimenu><guimenuitem>Print Preview...</guimenuitem></menuchoice>.</para>
</sect1>
<sect1 id="import-export">
@ -69,7 +69,7 @@
<sect1 id="page-export">
<title>Exporting a Page</title>
<para>Individual pages can be exported as bitmap graphics files. To export the current page select <menuchoice><guimenu>File</guimenu> <guimenuitem>Export...</guimenuitem></menuchoice> or <menuchoice><guimenu>File</guimenu> <guimenuitem>Save As...</guimenuitem></menuchoice>. A standard &kde; file dialog box appears. The export format is determined by the name extension you give the file, it must end with one of the extensions listed below.</para>
<para>Individual pages can be exported as bitmap graphics files. To export the current page select <menuchoice><guimenu>File</guimenu> <guimenuitem>Export...</guimenuitem></menuchoice> or <menuchoice><guimenu>File</guimenu> <guimenuitem>Save As...</guimenuitem></menuchoice>. A standard &tde; file dialog box appears. The export format is determined by the name extension you give the file, it must end with one of the extensions listed below.</para>
<para>The following formats are supported:</para>
<itemizedlist>

@ -33,7 +33,7 @@
<abstract>
<para>
&koffice; is an integrated office suite for the K Desktop Environment
(&kde;).
(&tde;).
</para>
</abstract>
@ -52,7 +52,7 @@
<para>
&koffice; is an integrated office suite for the K Desktop Environment
(&kde;). &koffice; currently consists of the following components:
(&tde;). &koffice; currently consists of the following components:
</para>
<itemizedlist>
@ -110,7 +110,7 @@ KParts</link>.
<para>
Despite offering so many components, &koffice; is very lightweight, fast and
has a rather low memory footprint. This is also achieved because &koffice; builds
on &kde;, which is already a very powerful application development framework.
on &tde;, which is already a very powerful application development framework.
</para>
<para>
A goal of &koffice; is also to not overload the user interface with features
@ -151,8 +151,8 @@ as native file format.
<sect2 id="featurekde">
<title>KDE Features</title>
<para>
Since &koffice; builds on &kde; all the features you would expect from a
&kde; application are also available in &koffice;. This includes DCOP, KParts,
Since &koffice; builds on &tde; all the features you would expect from a
&tde; application are also available in &koffice;. This includes DCOP, KParts,
Desktop Integration, Configurability and so on. All this makes the look and
feel of &koffice; very familiar and really integrates &koffice; into the
desktop environment, thus allowing seamless workflows.
@ -413,7 +413,7 @@ letters and use certain templates, there is no need for much more
functionality than saving, loading, printing, &etc;
</para>
<para> Thanks to the <quote>action</quote> concept of &Qt; and &kde;,
<para> Thanks to the <quote>action</quote> concept of &Qt; and &tde;,
you can freely customize &koffice; menubars and tool
bars. Unfortunately, at the moment, there are no easy-to-use dialogs
to do this. &koffice; stores its &GUI; configuration in &XML; files
@ -493,7 +493,7 @@ consult their respective manuals. <!-- (use ulink to help:/appname/ -->
<para>
The following links should be useful if you're looking for more information
about &kde; or &koffice;.
about &tde; or &koffice;.
</para>
<itemizedlist>
@ -506,11 +506,11 @@ install &koffice;, news about &koffice; development, screenshots &etc;
<para>
<ulink url="http://www.kde.org">The KDE Homepage</ulink>. KDE is the most advanced and
absolutely free desktop environment for unix-like operating systems.
&koffice; makes use of the &kde; libraries.
&koffice; makes use of the &tde; libraries.
</para></listitem>
<listitem>
<para><ulink url="http://www.trolltech.com">Trolltech</ulink>. The creators
of the C++-toolkit &Qt;. &kde; and &koffice; make use of &Qt;.
of the C++-toolkit &Qt;. &tde; and &koffice; make use of &Qt;.
</para></listitem>
</itemizedlist>
@ -531,8 +531,8 @@ be of interest:
<itemizedlist>
<listitem><para> At <ulink
url="http://developer.kde.org">http://developer.kde.org</ulink> you'll
find many documents about programming with &Qt; and &kde;. Here you can find
the online version of the complete &kde; library documentation.
find many documents about programming with &Qt; and &tde;. Here you can find
the online version of the complete &tde; library documentation.
</para></listitem>
<listitem><para>
In the &koffice; sources you'll find an example application in the
@ -611,7 +611,7 @@ http://www.koffice.org/people.php</ulink>.
<para>
This manual is copyright by Jost Schenck. It can be distributed
freely, as long as this copyright notice is included. You may change
it as long as you send me the changes or commit them to &kde;
it as long as you send me the changes or commit them to &tde;
<acronym>CVS</acronym>. I'll not be liable for anything resulting
from the use of this manual.
</para>
@ -647,9 +647,9 @@ The &Qt; 3.3 libraries from Trolltech. See
for more information.
</para></listitem>
<listitem><para>
The K Desktop Environment 3.3 (&kde; 3.3) or newer. &koffice; cannot be compiled
with earlier versions of &kde;. Information on obtaining and installing
&kde; can be found at: &kde-http;
The K Desktop Environment 3.3 (&tde; 3.3) or newer. &koffice; cannot be compiled
with earlier versions of &tde;. Information on obtaining and installing
&tde; can be found at: &tde-http;
</para></listitem>
<listitem><para>
Permission to install software on your computer. If you are on a
@ -659,7 +659,7 @@ using a networked computer, check with your administrator first.
</itemizedlist>
<para>
Please note that, while you need the &kde; 3.3 (or newer) libraries
Please note that, while you need the &tde; 3.3 (or newer) libraries
on your system, you can still use &koffice; in a different desktop
environment (for example, XFCE or GNOME).
</para>

@ -412,7 +412,7 @@ author.</action></para>
<chapter id="technology">
<title>Under The Hood</title>
<para>&koshell; makes extensive use of several &kde; key technologies, most
<para>&koshell; makes extensive use of several &tde; key technologies, most
notably KParts and &DCOP;.</para>
<para>The &GUI; integration of the components is done by plugins

@ -51,7 +51,7 @@ Please respect the format of the date (DD/MM/YYYY) and of the version
<abstract>
<para>
&kplato; is a project planning and management application for &kde;.
&kplato; is a project planning and management application for &tde;.
</para>
</abstract>

@ -11,7 +11,7 @@
<title>For Users with Disabilities</title>
<para>This section of the documentation discusses accessibility features in &kpresenter;
for users with disabilities. Some of these features apply to &kde; as a whole and are controlled from
for users with disabilities. Some of these features apply to &tde; as a whole and are controlled from
<ulink url="help:kcontrol">&kcontrolcenter;</ulink>. Some apply to all &koffice; applications,
and some are specific to &kpresenter;.</para>
@ -21,15 +21,15 @@ and some are specific to &kpresenter;.</para>
<para>
Most of the features described in this chapter are enabled by installing the
<command>tdeaccessibility</command> module.
The <command>tdeaccessibility</command> module is part of the &kde; project
The <command>tdeaccessibility</command> module is part of the &tde; project
<ulink url="http://www.kde.org">http://www.kde.org</ulink>. The <command>tdeaccessibility</command>
package can be obtained from &kde-ftp;, the
main ftp site of the &kde; project.
main ftp site of the &tde; project.
</para>
<para>Many distributions offer precompiled binaries on their ftp sites. Please check your distribution's web sites for more information.</para>
<para>More information about &kde; accessibility can be obtained by
<para>More information about &tde; accessibility can be obtained by
visiting <ulink url="http://accessibility.kde.org/">http://accessibility.kde.org/</ulink>.
</para>
</sect1>
@ -39,7 +39,7 @@ visiting <ulink url="http://accessibility.kde.org/">http://accessibility.kde.org
<indexterm><primary>Visual Impairments</primary></indexterm>
<note><para>&kpresenter; is not usable by totally blind users. It is hoped that
a general screen reader for the blind will be available in future versions of &kde;.
a general screen reader for the blind will be available in future versions of &tde;.
</para></note>
<sect2 id="a11y-theming">

@ -1,6 +1,6 @@
<!--
<?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
To edit or validate this document separately, uncomment this prolog
Be sure to comment it out again when you are done -->

@ -1,5 +1,5 @@
<!-- <?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1.2-Based Variant V1.1//EN"
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN"
"dtd/kdex.dtd">
To edit or validate this document separately, uncomment this prolog
@ -208,7 +208,7 @@ template for your presentation.
</menuchoice></term>
<listitem>
<para>
<action>Opens an existing presentation.</action> A standard &kde; file
<action>Opens an existing presentation.</action> A standard &tde; file
open dialog will appear, allowing you to choose a file to open.
</para>
</listitem>
@ -999,7 +999,7 @@ before or after the currently selected page.
</menuchoice>
</term>
<listitem>
<para><action>Insert an already existing presentation.</action> A standard &kde; file
<para><action>Insert an already existing presentation.</action> A standard &tde; file
open dialog will appear, allowing you to choose a <guilabel>&kpresenter; Document</guilabel> (.kpr) or a
<guilabel>OASIS OpenDocument Presentation</guilabel> (.odp), which will be inserted after the last slide in your current presentation.</para>
</listitem>

@ -1,5 +1,5 @@
<!-- <?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
To edit or validate this document separately, uncomment this prolog
Be sure to comment it out again when you are done -->
@ -238,7 +238,7 @@ logo to the title page. To do so, the first step is to click on the
<para>
This brings up a file selection dialog. To learn about this or other
standard &kde; dialog boxes in detail, please consult the &kde;
standard &tde; dialog boxes in detail, please consult the &tde;
documentation. You can browse by clicking on <guiicon>folder</guiicon>
icons or by using the <guiicon>browser</guiicon> style buttons on the
toolbar (highlighted in red.) Clicking the <guiicon>up arrow</guiicon>

@ -11,7 +11,7 @@
<title>For Users with Disabilities</title>
<para>This section of the documentation discusses accessibility features in &kspread;
for users with disabilities. Some of these features apply to &kde; as a whole and are controlled from
for users with disabilities. Some of these features apply to &tde; as a whole and are controlled from
<ulink url="help:kcontrol">&kcontrolcenter;</ulink>. Some apply to all &koffice; applications,
and some are specific to &kspread;.</para>
@ -21,15 +21,15 @@ and some are specific to &kspread;.</para>
<para>
Most of the features described in this chapter are enabled by installing the
<command>tdeaccessibility</command> module.
The <command>tdeaccessibility</command> module is part of the &kde; project
The <command>tdeaccessibility</command> module is part of the &tde; project
<ulink url="http://www.kde.org">http://www.kde.org</ulink>. The <command>tdeaccessibility</command>
package can be obtained from &kde-ftp;, the
main ftp site of the &kde; project.
main ftp site of the &tde; project.
</para>
<para>Many distributions offer precompiled binaries on their ftp sites. Please check your distribution's web sites for more information.</para>
<para>More information about &kde; accessibility can be obtained by
<para>More information about &tde; accessibility can be obtained by
visiting <ulink url="http://accessibility.kde.org/">http://accessibility.kde.org/</ulink>.
</para>
</sect1>
@ -39,7 +39,7 @@ visiting <ulink url="http://accessibility.kde.org/">http://accessibility.kde.org
<indexterm><primary>Visual Impairments</primary></indexterm>
<note><para>&kspread; is not usable by totally blind users. It is hoped that
a general screen reader for the blind will be available in future versions of &kde;.
a general screen reader for the blind will be available in future versions of &tde;.
</para></note>
<sect2 id="a11y-theming">

@ -13,7 +13,7 @@
</chapterinfo>
<title>&kspread; Basics</title>
<note><para>Like the rest of &kde;, &kspread; is highly configurable, which can
<note><para>Like the rest of &tde;, &kspread; is highly configurable, which can
cause problems for readers trying to compare the text in a document such as
this with what they see on the version of &kspread; running on their desktop.
To cut down on some of the possibilities for confusion, it it suggested that
@ -222,7 +222,7 @@ You can change the format back to <quote>Generic</quote> at any time.
<para>At first glance, &kspread;'s <guimenuitem>Cut</guimenuitem>,
<guimenuitem>Copy</guimenuitem> and <guimenuitem>Paste</guimenuitem> appear
to be similar to these functions in other &kde; applications. Having selected
to be similar to these functions in other &tde; applications. Having selected
a cell or cells, you can choose <guimenuitem>Copy</guimenuitem> or
<guimenuitem>Cut</guimenuitem> from the <guimenu>Edit</guimenu> menu or from
the drop down menu you get by holding the <mousebutton>right</mousebutton>
@ -517,7 +517,7 @@ Status bar and choosing an item from the pop up menu.</para>
worksheet, as a single document file.</para>
<para>If you have created a new document, or want to save an existing one
under a different name, use <menuchoice><guimenu>File</guimenu><guimenuitem>
Save As...</guimenuitem></menuchoice>. This will bring up &kde;'s common
Save As...</guimenuitem></menuchoice>. This will bring up &tde;'s common
<guilabel>Save Document As</guilabel> dialog box.
Choose the folder where you want to save the document and enter a
suitable file name into the <guilabel>Location:</guilabel> text box. &kspread;
@ -577,7 +577,7 @@ the dialog.</para>
<title>Printing a Spreadsheet</title>
<para>Printing a spreadsheet is basically done by selecting <menuchoice>
<guimenu>File</guimenu><guimenuitem>Print...</guimenuitem></menuchoice> which
brings up &kde;'s common <guilabel>Print</guilabel> dialog box where you can
brings up &tde;'s common <guilabel>Print</guilabel> dialog box where you can
choose, among other options, the printer to be used, the number of copies and
whether all or only selected pages are to be printed.</para>
<para>By default &kspread; will print all items in the current worksheet, but

@ -588,7 +588,7 @@ See the section
<guimenu>Insert</guimenu>
<guimenuitem>Picture</guimenuitem>
</menuchoice></term>
<listitem><para><action>Opens the standard &kde; file dialog</action>
<listitem><para><action>Opens the standard &tde; file dialog</action>
to insert a picture.
</para></listitem>
</varlistentry>

@ -345,7 +345,7 @@ checking programs that may be present on your computer.
<varlistentry>
<term><guilabel>Skip all uppercase words</guilabel></term>
<listitem><para>Check this box if you want the spellchecker to ignore
uppercase words, which are usually acronyms such as &kde;.
uppercase words, which are usually acronyms such as &tde;.
</para></listitem>
</varlistentry>

@ -92,13 +92,13 @@
url="http://www.bricklin.com/visicalc.htm">Visicalc.</ulink></para>
<para>
&kspread; is a full featured spreadsheet program. It is part of the &koffice;
productivity suite for the K Desktop Environment (&kde;).</para>
productivity suite for the K Desktop Environment (&tde;).</para>
<para>Other &koffice; applications include &kword;, (word processing),
&kpresenter; (slide presentation creator) and &kchart; (for producing charts
and graphs) among others.</para>
<para>You might care to visit <ulink url="http://www.kde.org">
http://www.kde.org</ulink> for more information about &kde; in general, or the
http://www.kde.org</ulink> for more information about &tde; in general, or the
&koffice; web site at <ulink url="http://www.koffice.org">
http://www.koffice.org</ulink></para>
@ -182,10 +182,10 @@ Documentation copyright 2002 Pamela Roberts
<appendix id="installation">
<title>Installation</title>
<para>&kspread; is part of &kde;'s &koffice; package and uses various
&koffice; libraries. &koffice; itself is part of &kde; and depends on the
general &kde; libraries.</para>
<para>For instructions on acquiring and installing &kde;, &koffice; and
<para>&kspread; is part of &tde;'s &koffice; package and uses various
&koffice; libraries. &koffice; itself is part of &tde; and depends on the
general &tde; libraries.</para>
<para>For instructions on acquiring and installing &tde;, &koffice; and
&kspread; please visit
<ulink url="http://www.kde.org">http://www.kde.org</ulink> and
<ulink url="http://www.koffice.org">http://www.koffice.org</ulink>.</para>

@ -1,6 +1,6 @@
<!-- To validate this document separately, uncomment this prolog
<?xml version="1.0" ?>
<!DOCTYPE appendix PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE appendix PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
-->
<sect1 id="kugardata-dtd">

@ -1,7 +1,7 @@
<!-- if you want to validate this file separately, uncomment this prolog:
<?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
-->

@ -2,7 +2,7 @@
this prolog
<?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
-->
<chapter id="designer-manual">

@ -79,7 +79,7 @@
<chapter id="introduction">
<title>Introduction</title>
<para> &kugar; is a report creation tool for &Qt; and &kde;. It includes
<para> &kugar; is a report creation tool for &Qt; and &tde;. It includes
a &GUI; report template designer, a report engine, a &konqueror; part
for easy report preview and a set of examples.</para>

@ -2,7 +2,7 @@
this prolog
<?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
-->
@ -69,7 +69,7 @@ for a detailed description.
</listitem>
</itemizedlist>
<para> The last two ways are acceptable for &Qt; and &kde; developers;
<para> The last two ways are acceptable for &Qt; and &tde; developers;
but &kugar; is designed to be a report generator, independent from a
programming language and/or <acronym>IDE</acronym>. It uses &XML;
format for describing report templates and data files. So any program
@ -120,8 +120,8 @@ Don't forget to include <filename class="headerfile">stdlib.h</filename>.
The &kugar; library includes two widgets for use.
</para>
<para>
The <classname>KReportViewer</classname> class is designed for &kde;
developers. It supports a &kde; printing system and &UNIX; localization
The <classname>KReportViewer</classname> class is designed for &tde;
developers. It supports a &tde; printing system and &UNIX; localization
via <function>i18n()</function> calls.
</para>
<para>
@ -136,7 +136,7 @@ with <filename>libkugar.so</filename> shared library, which is provided with the
</para>
<para>
Include files are <filename>kugarqt.h</filename> and <filename>kugar.h</filename>
for &Qt; and &kde; programs respectively.
for &Qt; and &tde; programs respectively.
</para>
<para>For a detailed example of how &kugar; classes can be used, look in the <filename class="directory">/shell</filename>
folder in the &kugar; sources.
@ -218,7 +218,7 @@ create a QIODevice successor and redefine all necessary functionality.
<para>
This is the example code of how a designer plugin is created. The code below creates a plugin for
a &kde; <classname>KReportViewer</classname> widget.
a &tde; <classname>KReportViewer</classname> widget.
</para>
<para>

@ -2,7 +2,7 @@
this prolog
<?xml version="1.0" ?>
<!DOCTYPE appendix PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE appendix PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
-->
<chapter id="starting">

@ -1,7 +1,7 @@
<!-- If you want to edit or validate this document separately, uncomment -->
<!-- this prolog
<?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
-->
<sect1 id="template-elements">
<sect1info>

@ -1,7 +1,7 @@
<!-- If you want to edit or validate this document separately, uncomment
this prolog
<?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
-->
<sect1 id="kugartemplate">
<sect1info>

@ -2,7 +2,7 @@
this prolog
<?xml version="1.0" ?>
<!DOCTYPE appendix PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE appendix PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
-->

@ -2,7 +2,7 @@
this prolog
<?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
-->
<chapter id="tutorial">

@ -11,7 +11,7 @@
<title>For Users with Disabilities</title>
<para>This section of the documentation discusses accessibility features in &kword;
for users with disabilities. Some of these features apply to &kde; as a whole and are controlled from
for users with disabilities. Some of these features apply to &tde; as a whole and are controlled from
<ulink url="help:kcontrol">&kcontrolcenter;</ulink>. Some apply to all &koffice; applications,
and some are specific to &kword;.</para>
@ -21,15 +21,15 @@ and some are specific to &kword;.</para>
<para>
Most of the features described in this chapter are enabled by installing the
<command>tdeaccessibility</command> module.
The <command>tdeaccessibility</command> module is part of the &kde; project
The <command>tdeaccessibility</command> module is part of the &tde; project
<ulink url="http://www.kde.org">http://www.kde.org</ulink>. The <command>tdeaccessibility</command>
package can be obtained from &kde-ftp;, the
main ftp site of the &kde; project.
main ftp site of the &tde; project.
</para>
<para>Many distributions offer precompiled binaries on their ftp sites. Please check your distribution's web sites for more information.</para>
<para>More information about &kde; accessibility can be obtained by
<para>More information about &tde; accessibility can be obtained by
visiting <ulink url="http://accessibility.kde.org/">http://accessibility.kde.org/</ulink>.
</para>
</sect1>
@ -39,7 +39,7 @@ visiting <ulink url="http://accessibility.kde.org/">http://accessibility.kde.org
<indexterm><primary>Visual Impairments</primary></indexterm>
<note><para>&kword; is not usable by totally blind users. It is hoped that
a general screen reader for the blind will be available in future versions of &kde;.
a general screen reader for the blind will be available in future versions of &tde;.
</para></note>
<sect2 id="a11y-theming">

@ -20,9 +20,9 @@ perform a group of similar features. When you examine the &kword;
window, it is divided into 5 major areas:</para>
<orderedlist numeration="arabic">
<listitem><para><link linkend="kde-frame">The &kde; Titlebar</link>
<listitem><para><link linkend="kde-frame">The &tde; Titlebar</link>
(which remains at the top of all programs run under
&kde;).</para></listitem>
&tde;).</para></listitem>
<listitem><para><link linkend="mb">The Menubar</link>.</para></listitem>
@ -45,9 +45,9 @@ Area</link>, including the rulers and scrollbars.</para></listitem>
<variablelist>
<varlistentry>
<term><emphasis><anchor id="kde-frame"/>The &kde; Titlebar</emphasis></term>
<listitem><para>The &kde; titlebar sits on top of all applications run under &kde;.
For more information on the titlebar, please see the &kde; User Guide.</para>
<term><emphasis><anchor id="kde-frame"/>The &tde; Titlebar</emphasis></term>
<listitem><para>The &tde; titlebar sits on top of all applications run under &tde;.
For more information on the titlebar, please see the &tde; User Guide.</para>
</listitem>
</varlistentry>
<varlistentry>
@ -98,7 +98,7 @@ Rulers</link>.</para>
<listitem><para><emphasis>Scrollbars</emphasis> - The scrollbars are used to move through a &kword; document
quickly. The &kword; scrollbars functions similar to all scrollbars in
&kde; or &Windows;.</para>
&tde; or &Windows;.</para>
<para>The scrollbars can be toggled on and off.
See the section on <link linkend="opt-ui">Configure &kword; User Interface</link>.</para>
</listitem>

@ -86,7 +86,7 @@ Compare this choice to <guimenuitem>Current date (fixed)</guimenuitem></para></l
<varlistentry>
<term><guilabel>Locale date format</guilabel></term>
<listitem><para>This inserts the date in the format specified in the
&kde; Control Center.</para>
&tde; Control Center.</para>
<para>To select this option, simply make sure the upper combo box says
<guilabel>Locale date format</guilabel>. A preview of the date format will appear above the
<guibutton>OK</guibutton> button. If satisfied click <guibutton>OK</guibutton>.
@ -239,7 +239,7 @@ Compare this choice to <guimenuitem>Current time (fixed)</guimenuitem></para></l
<varlistentry>
<term><guilabel>Locale format</guilabel></term>
<listitem><para>This inserts the time in the format specified in the
&kde; Control Center.</para>
&tde; Control Center.</para>
<para>To select this option, simply make sure the upper combo box says
<guilabel>Locale format</guilabel>. A preview of the current time
string is visible above the <guibutton>OK</guibutton> button. If satisfied click <guibutton>OK</guibutton>.
@ -398,7 +398,7 @@ are specific to the document. You can insert these variables by selecting
<tbody>
<row><entry>Author Name</entry><entry>Joseph User</entry><entry>The name of the author as specified in the <link linkend="documentinfo">Document information</link> box.</entry></row>
<row><entry>City</entry><entry>Philadelphia</entry><entry>The city specified in the <link linkend="documentinfo">Document information</link> box.</entry></row>
<row><entry>Company</entry><entry>&kde;</entry><entry>The company name specified in the <link linkend="documentinfo">Document information</link> box.</entry></row>
<row><entry>Company</entry><entry>&tde;</entry><entry>The company name specified in the <link linkend="documentinfo">Document information</link> box.</entry></row>
<row><entry>Country</entry><entry>United States</entry><entry>The country name specified in the <link linkend="documentinfo">Document information</link> box.</entry></row>
<row><entry>Directory Name</entry><entry>/home/juser/kword</entry><entry>This is the folder name for the document. The filename is not included in the folder name variable.</entry></row>
<row><entry>Directory &amp; Filename</entry><entry>/home/juser/kword/Resume.kwd</entry><entry>The folder and filename of the current file.</entry></row>

@ -1059,7 +1059,7 @@ to use shadow text and/or word by word underlining and strikethrough in the repl
<note><para>In order for this string example to work, a mark must be placed in the check box labeled
<guilabel>Regular expression</guilabel></para>
<para>Regular expressions are available by placing a mark in this checkbox. The use of regular expressions is beyond the
scope of this manual. For more information see the KDE Regular Expression Manual (Available in the &kde; help center).</para></note>
scope of this manual. For more information see the KDE Regular Expression Manual (Available in the &tde; help center).</para></note>
<para>Now in the <guilabel>Replace With</guilabel> section of the replace dialog, you place a mark in the check box labeled
<guilabel>Use placeholders</guilabel>. Click the <guibutton>Insert Placeholder</guibutton> button and select
<guilabel>Complete Match</guilabel>. &kword; will insert a <emphasis>\0</emphasis> in the

@ -129,7 +129,7 @@ work.</para></listitem>
<para>
All &koffice; applications were designed from the beginning to take
advantage of the features of &kde;. Because of this, &kword; (like
advantage of the features of &tde;. Because of this, &kword; (like
all of &koffice;), supports many advanced features you expect from todays desktop environment.
</para>
@ -451,10 +451,10 @@ there are many possible authors (employees) and hundreds (or thousands) of docum
<para>The second tab is labeled <guilabel>Author</guilabel> and has blanks to enter the authors name, <guilabel>Initials</guilabel>, <guilabel>Title</guilabel>, <guilabel>Position</guilabel>, <guilabel>Company</guilabel> and contact information (email address, telephone numbers and physical address).</para>
<tip><para>Every value entered in this dialog can be inserted as a
<link linkend="variables">document variables</link>.</para></tip>
<para>At the bottom of the dialog is a button labeled <guibutton>Load From Address Book</guibutton>. Clicking on this button will automatically insert your information contained in the &kde; address book into this &kword; document information dialog.</para>
<note><para>You must inform the &kde; address book which entry corresponds to your information. </para>
<para>To do this, open the &kde; address book, select the entry that contains your name and address. Now select <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Set as Personal Contact Data</guimenuitem></menuchoice>from the menubar in the &kde; address book. This only needs to be performed once.</para>
<para>At the bottom of the dialog is a button labeled <guibutton>Load From Address Book</guibutton>. Clicking on this button will automatically insert your information contained in the &tde; address book into this &kword; document information dialog.</para>
<note><para>You must inform the &tde; address book which entry corresponds to your information. </para>
<para>To do this, open the &tde; address book, select the entry that contains your name and address. Now select <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Set as Personal Contact Data</guimenuitem></menuchoice>from the menubar in the &tde; address book. This only needs to be performed once.</para>
<para>&kword; will now insert the entered information when the <guibutton>Load From Address Book</guibutton> button is clicked.</para></note>
<para>The second button <guibutton>Delete Personal Data</guibutton> allows you to remove all data of the entries on this page.</para>
<para>When finished entering the information, click <guibutton>OK</guibutton> to apply the changes.
@ -593,7 +593,7 @@ from the menubar.</para>
<listitem><para>Click <guibutton>OK</guibutton>.</para></listitem>
</orderedlist>
<para>Your PDF file will be created and saved at the location specified in <guilabel>Output file</guilabel>.</para>
<para>For more information on printing in &kde;, visit <ulink url="http://printing.kde.org">The &kde; Print web page</ulink>.</para>
<para>For more information on printing in &tde;, visit <ulink url="http://printing.kde.org">The &tde; Print web page</ulink>.</para>
</sect1>
@ -662,7 +662,7 @@ Any software updates, bug fixes or announcements of new releases of &koffice; wi
<para>How do themes affect &kword;?</para>
</question>
<answer>
<para>&kword; (like all of &koffice;) is completely themeable. You can use any QT or &kde; theme to customize the look of &kword;.</para>
<para>&kword; (like all of &koffice;) is completely themeable. You can use any QT or &tde; theme to customize the look of &kword;.</para>
</answer>
</qandaentry>
@ -787,10 +787,10 @@ Public License v2</ulink>.</para>
<sect1 id="getting-kword">
<title>How to obtain &kword;</title>
<para>&kword; is part of the &kde; project <ulink
<para>&kword; is part of the &tde; project <ulink
url="http://www.kde.org">http://www.kde.org</ulink>. &kword; is located
in the &koffice; package which can be obtained from &kde-ftp;, the
main ftp site of the &kde; project. </para>
main ftp site of the &tde; project. </para>
<para>Many distributions offer precompiled binaries on their ftp sites. Please check your distribution's web sites for more information.</para>
@ -813,13 +813,13 @@ url="http://www.trolltech.com">Trolltech</ulink>.</para>
</listitem>
<listitem>
<para>&kde; 3.3.0 libraries (tdelibs) and the &kde; 3.3.0 base package
<para>&tde; 3.3.0 libraries (tdelibs) and the &tde; 3.3.0 base package
(tdebase). These can be obtained from the <ulink
url="http://www.kde.org">&kde; web page.</ulink></para>
<tip><para>While &koffice; will compile and run with any version of &kde; 3.3.0 or later, it is recommended that you compile and install
&kde; 3.4 to take advantage of all the bug fixes that have occurred.</para>
url="http://www.kde.org">&tde; web page.</ulink></para>
<tip><para>While &koffice; will compile and run with any version of &tde; 3.3.0 or later, it is recommended that you compile and install
&tde; 3.4 to take advantage of all the bug fixes that have occurred.</para>
<para>It is also recommended that you install the arts package 1.3.2 from the
<ulink url="ftp://ftp.kde.org">&kde; &FTP; site</ulink>.</para></tip>
<ulink url="ftp://ftp.kde.org">&tde; &FTP; site</ulink>.</para></tip>
</listitem>
<listitem>
@ -875,7 +875,7 @@ the file to edit.</para>
<para><emphasis>Show &kword; version</emphasis></para>
<para>To see the version numbers for the QT toolkit, &kde;, and &kword; type:</para>
<para>To see the version numbers for the QT toolkit, &tde;, and &kword; type:</para>
<screen width="40">
<prompt>$</prompt> <userinput><command>kword -v</command></userinput>
@ -1643,9 +1643,9 @@ text which describes the object, and &kword; will make sure both the text and th
</glossentry>
<glossentry id="defkde2">
<glossterm>&kde;</glossterm>
<glossterm>&tde;</glossterm>
<glossdef>
<para>Stands for the <emphasis>K Desktop Environment</emphasis>. Part of &kde; is
<para>Stands for the <emphasis>K Desktop Environment</emphasis>. Part of &tde; is
required for &kword; to operate. The K Desktop Environment is a user
interface which allows users to manipulate files and operate programs
graphically. For more information, please visit <ulink

@ -28,7 +28,7 @@ SQL database for your data source.</para></listitem>
<itemizedlist>
<listitem><para>If you want to use an outside SQL database, click <link linkend="mail-merge-sql">here</link> for instructions.</para></listitem>
<listitem><para>If you want to use a &kspread; file for your data, click <link linkend="mail-merge-kspread">here</link>.</para></listitem>
<listitem><para>If you want use information from your &kde; Address Book, click <link linkend="mail-merge-ab">here</link>.</para></listitem>
<listitem><para>If you want use information from your &tde; Address Book, click <link linkend="mail-merge-ab">here</link>.</para></listitem>
<listitem><para>If you want to use the internal database of &kword;, click <link linkend="mail-merge-internal">here</link>.</para></listitem>
</itemizedlist>
@ -232,8 +232,8 @@ within the &kspread; document. Select the page (or worksheet) that contains the
</sect2>
<sect2 id="mail-merge-ab">
<title>Using your &kde; Address book as a data source</title>
<indexterm><primary>mail merge</primary><secondary>using &kde; Address Book</secondary></indexterm>
<title>Using your &tde; Address book as a data source</title>
<indexterm><primary>mail merge</primary><secondary>using &tde; Address Book</secondary></indexterm>
<para>&kword; can use data in your address book for personalizing documents.</para>
@ -267,7 +267,7 @@ the menubar. A dialog box will appear.</para>
</mediaobject>
</screenshot>
<para>Select <guilabel>&kde; Addressbook Plugin</guilabel> from the drop down box labeled <guilabel>Available sources:</guilabel> and click on
<para>Select <guilabel>&tde; Addressbook Plugin</guilabel> from the drop down box labeled <guilabel>Available sources:</guilabel> and click on
<guibutton>OK</guibutton>. A new dialog box will appear.</para>
<screenshot>
@ -282,7 +282,7 @@ the menubar. A dialog box will appear.</para>
<para>To remove an entry, select the entry in the right listbox by clicking with the &LMB;. Then click <guibutton>Remove</guibutton>.</para>
<tip><para>You can locate entries quickly by entering the first 2-3 letters of an entries name in the textbox labeled <guilabel>Filter on:</guilabel></para></tip>
<note><para>You can load the full address book application by clicking the <guibutton>Address Book...</guibutton> button.</para>
<para>You can also save a distribution list using the <guibutton>Save as Distribution List...</guibutton> button. For more information on distribution lists, see the documentation on the &kde; Addressbook.</para></note>
<para>You can also save a distribution list using the <guibutton>Save as Distribution List...</guibutton> button. For more information on distribution lists, see the documentation on the &tde; Addressbook.</para></note>
<para>When you have selected all the entries and distribution lists you want, click <guibutton>OK</guibutton>. &kword; will ask you if you want to replace the current data source. Click <guibutton>Yes</guibutton> to continue.</para>

@ -1,5 +1,5 @@
<!-- <?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.1-Based Variant V1.0//EN" "dtd/kdex.dtd">
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">
To work on this document standalone, uncomment the prolog.
Comment it out again when you are done -->

@ -22,7 +22,7 @@ saved document and printing a document.</para>
<itemizedlist>
<listitem>
<para>You can <link linkend="starting-kword">start &kword; from the
&kde; Panel</link>.</para>
&tde; Panel</link>.</para>
</listitem>
<listitem>
@ -382,7 +382,7 @@ on the toolbar.</para>
</listitem>
</itemizedlist>
<para>No matter how you do this, the &kde; print dialog will
<para>No matter how you do this, the &tde; print dialog will
appear.</para>
<screenshot>
@ -411,16 +411,16 @@ the filename into the text box labled <guilabel>Output file:</guilabel>.</para>
<para>The line labled <guilabel>Comment</guilabel> describes how
&kword; interacts with your computer (what driver and print system it is using). You can not change anything on this line. Complete setup of the &kde;
printing system is beyond the scope of this document. For more information see the &kde;
&kword; interacts with your computer (what driver and print system it is using). You can not change anything on this line. Complete setup of the &tde;
printing system is beyond the scope of this document. For more information see the &tde;
print web site at <ulink url="http://printing.kde.org">http://printing.kde.org</ulink>.</para>
<para>If you want to print all pages of your document and only one copy, you can click
<guibutton>Print</guibutton>. If you want to change the number of copies or only print selected
pages, click the <guibutton>Options &gt;&gt;</guibutton> button.</para>
<note><para>The <guibutton>System Options</guibutton> button allows a user to change the setup of the printers and &kde; print system. This is also beyond the scope of this manual.
If you need to make changes please refer to the &kde; print web site at <ulink url="http://printing.kde.org">http://printing.kde.org</ulink>.</para></note>
<note><para>The <guibutton>System Options</guibutton> button allows a user to change the setup of the printers and &tde; print system. This is also beyond the scope of this manual.
If you need to make changes please refer to the &tde; print web site at <ulink url="http://printing.kde.org">http://printing.kde.org</ulink>.</para></note>
<note><para>Depending on which printing system your computer uses, you may find that you have
more printing options then those described below. What is described here, is available on
@ -450,10 +450,10 @@ you want printed. You can either enter the number directly into the
box, or use the arrows to adjust the number. &kword; can print a maximum
of 999 copies at once.</para>
<para>You can have &kde; collate your documents by clicking on the
<guilabel>Collate</guilabel> check box. If selected, &kde; will print
<para>You can have &tde; collate your documents by clicking on the
<guilabel>Collate</guilabel> check box. If selected, &tde; will print
all of the pages for copy 1, then print all the pages for copy 2, &etc;
If not selected, &kde; will print all of the copies of the first page,
If not selected, &tde; will print all of the copies of the first page,
then all of the copies of the second page, &etc;</para>
<para>You can also determine if the document is printed in forward order

@ -86,7 +86,7 @@ within the &kword; document as separate files.</para>
<para>For more specific information on &kword; file storage or other
internal information, please see <ulink
url="http://www.koffice.org/developer">The KOffice API</ulink> and the
<ulink url="http://developer.kde.org">General &kde; developer information
<ulink url="http://developer.kde.org">General &tde; developer information
pages</ulink>.</para>
</sect2>
@ -147,7 +147,7 @@ url="http://www.koffice.org/DTD/document-info-1.2.dtd">http://koffice.kde.org/DT
<term><filename>mimetype</filename></term>
<listitem>
<para>This file contains the mimetype for &kword; files. This information
is used by &kde; to determine that this is a &kword; file.</para>
is used by &tde; to determine that this is a &kword; file.</para>
<para>This file always contains:
<emphasis>application/x-kword</emphasis></para>
</listitem>
@ -162,7 +162,7 @@ within the &kword; document as separate files.</para>
<para>For more specific information on &kword; file storage or other
internal information, please see <ulink
url="http://www.koffice.org/developer">The KOffice API</ulink> and the
<ulink url="http://developer.kde.org">General &kde; developer information
<ulink url="http://developer.kde.org">General &tde; developer information
pages</ulink>.</para>
</sect2>
@ -223,7 +223,7 @@ url="http://www.koffice.org/DTD/document-info-1.3.dtd">http://koffice.kde.org/DT
<term><filename>mimetype</filename></term>
<listitem>
<para>This file contains the mimetype for &kword; files. This information
is used by &kde; to determine that this is a &kword; file.</para>
is used by &tde; to determine that this is a &kword; file.</para>
<para>This file always contains:
<emphasis>application/x-kword</emphasis></para>
</listitem>
@ -238,7 +238,7 @@ within the &kword; document as separate files.</para>
<para>For more specific information on &kword; file storage or other
internal information, please see <ulink
url="http://www.koffice.org/developer">The KOffice API</ulink> and the
<ulink url="http://developer.kde.org">General &kde; developer information
<ulink url="http://developer.kde.org">General &tde; developer information
pages</ulink>.</para>
</sect2>

@ -93,7 +93,7 @@ is located.</para>
<para>When the pointer is located over toolbars, scrollbars, menu buttons or other areas
<emphasis>outside the document</emphasis>, the pointer is an arrow. You should already be
familiar with this type of pointer when using other &kde; programs. </para>
familiar with this type of pointer when using other &tde; programs. </para>
<para>When <emphasis>inside the document</emphasis>, there are two separate pointers which alternate automatically
based on how close to a frame edge the pointer is currently located.</para>
<para>When the mouse pointer is near the edge of a frame, the pointer will change into two intersecting lines

@ -93,10 +93,10 @@ meaning, so one word may appear in more than one list at the same time.</para></
</itemizedlist>
<para>On the other hand, a few words have been added (function words like <quote>if</quote>
and very few words specific to &kde;).</para>
and very few words specific to &tde;).</para>
<para>Please do <emphasis>not</emphasis> report bugs in the thesaurus
to the &wordnet; project, but to &kde;.</para>
to the &wordnet; project, but to &tde;.</para>
</chapter>

Laden…
Annuleren
Opslaan