This is an automated email from the ASF dual-hosted git repository. mseidel pushed a commit to branch AOO42X in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push: new 094ed0e852 Remove 'oldref' entries (work in progress) 094ed0e852 is described below commit 094ed0e85271817647746eaadc0e99bcf5e06fbc Author: mseidel <msei...@apache.org> AuthorDate: Sat Nov 16 19:24:11 2024 +0100 Remove 'oldref' entries (work in progress) (cherry picked from commit d2503534dd4a803136e7e91c99a9ce9749376ca2) --- .../source/text/sbasic/shared/03020402.xhp | 23 ++++++------- .../source/text/sbasic/shared/03020406.xhp | 26 +++++++------- .../source/text/sbasic/shared/03120302.xhp | 33 +++++++++--------- .../source/text/sbasic/shared/03120310.xhp | 35 +++++++++---------- .../helpcontent2/source/text/scalc/01/05040200.xhp | 12 +++---- .../helpcontent2/source/text/scalc/02/18020000.xhp | 16 ++++----- .../source/text/scalc/guide/edit_multitables.xhp | 8 ++--- .../source/text/shared/01/05010000.xhp | 11 +++--- .../source/text/shared/02/12030000.xhp | 16 ++++----- .../source/text/shared/02/13020000.xhp | 40 ++++++++++------------ .../source/text/shared/05/00000130.xhp | 14 ++++---- .../source/text/shared/autopi/01170400.xhp | 8 ++--- main/helpcontent2/source/text/shared/guide/ctl.xhp | 28 +++++++-------- .../source/text/shared/guide/data_addressbook.xhp | 2 +- .../source/text/shared/optionen/01110100.xhp | 16 ++++----- .../source/text/swriter/01/01160300.xhp | 13 ++++--- 16 files changed, 144 insertions(+), 157 deletions(-) diff --git a/main/helpcontent2/source/text/sbasic/shared/03020402.xhp b/main/helpcontent2/source/text/sbasic/shared/03020402.xhp index 33ba3b6ee4..22ca12a457 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03020402.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03020402.xhp @@ -33,23 +33,22 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3145068"> <bookmark_value>ChDrive statement</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3145068" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020402.xhp" name="ChDrive Statement [Runtime]">ChDrive Statement [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3149656" xml-lang="en-US" l10n="U" oldref="2">Changes the current drive.</paragraph> +<paragraph role="heading" id="hd_id3145068" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03020402.xhp" name="ChDrive Statement [Runtime]">ChDrive Statement [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3149656" xml-lang="en-US" l10n="U">Changes the current drive.</paragraph> </section> <embed href="text/sbasic/shared/03020401.xhp#i30692"/> -<paragraph role="heading" id="hd_id3154138" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="code" id="par_id3154685" xml-lang="en-US" l10n="U" oldref="4">ChDrive Text As String</paragraph> -<paragraph role="heading" id="hd_id3156423" xml-lang="en-US" level="2" l10n="U" oldref="5">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3145172" xml-lang="en-US" l10n="U" oldref="6"> -<emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href="text/sbasic/shared/00000002.xhp" name="URL notation">URL notation</link>.</paragraph> -<paragraph role="paragraph" id="par_id3145785" xml-lang="en-US" l10n="U" oldref="7">The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement.</paragraph> +<paragraph role="heading" id="hd_id3154138" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3154685" xml-lang="en-US" l10n="U">ChDrive Text As String</paragraph> +<paragraph role="heading" id="hd_id3156423" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3145172" xml-lang="en-US" l10n="U"><emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href="text/sbasic/shared/00000002.xhp" name="URL notation">URL notation</link>.</paragraph> +<paragraph role="paragraph" id="par_id3145785" xml-lang="en-US" l10n="U">The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement.</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> <embed href="text/sbasic/shared/00000003.xhp#err68"/> <embed href="text/sbasic/shared/00000003.xhp#err76"/> -<paragraph role="heading" id="hd_id3153188" xml-lang="en-US" level="2" l10n="U" oldref="8">Example:</paragraph> -<paragraph role="code" id="par_id3151113" xml-lang="en-US" l10n="U" oldref="9">Sub ExampleCHDrive</paragraph> -<paragraph role="code" id="par_id3152576" xml-lang="en-US" l10n="U" oldref="10">ChDrive "D" REM Only possible if a drive 'D' exists.</paragraph> -<paragraph role="code" id="par_id3156441" xml-lang="en-US" l10n="U" oldref="11">End Sub</paragraph> +<paragraph role="heading" id="hd_id3153188" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3151113" xml-lang="en-US" l10n="U">Sub ExampleCHDrive</paragraph> +<paragraph role="code" id="par_id3152576" xml-lang="en-US" l10n="U">ChDrive "D" REM Only possible if a drive 'D' exists.</paragraph> +<paragraph role="code" id="par_id3156441" xml-lang="en-US" l10n="U">End Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03020406.xhp b/main/helpcontent2/source/text/sbasic/shared/03020406.xhp index 4e7f6835de..2cc657c542 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03020406.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03020406.xhp @@ -33,23 +33,21 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3154840"> <bookmark_value>FileCopy statement</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3154840" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020406.xhp" name="FileCopy Statement [Runtime]">FileCopy Statement [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3149497" xml-lang="en-US" l10n="U" oldref="2">Copies a file.</paragraph> +<paragraph role="heading" id="hd_id3154840" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03020406.xhp" name="FileCopy Statement [Runtime]">FileCopy Statement [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3149497" xml-lang="en-US" l10n="U">Copies a file.</paragraph> </section> -<paragraph role="heading" id="hd_id3147443" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="code" id="par_id3146957" xml-lang="en-US" l10n="U" oldref="4">FileCopy TextFrom As String, TextTo As String</paragraph> -<paragraph role="heading" id="hd_id3153825" xml-lang="en-US" level="2" l10n="U" oldref="5">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3155390" xml-lang="en-US" l10n="U" oldref="6"> -<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href="text/sbasic/shared/00000002.xhp" name="URL notation">URL notation</link>.</paragraph> -<paragraph role="paragraph" id="par_id3150669" xml-lang="en-US" l10n="U" oldref="7"> -<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation.</paragraph> -<paragraph role="note" id="par_id3150791" xml-lang="en-US" l10n="U" oldref="8">You can only use the FileCopy statement to copy files that are not opened.</paragraph> +<paragraph role="heading" id="hd_id3147443" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3146957" xml-lang="en-US" l10n="U">FileCopy TextFrom As String, TextTo As String</paragraph> +<paragraph role="heading" id="hd_id3153825" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3155390" xml-lang="en-US" l10n="U"><emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href="text/sbasic/shared/00000002.xhp" name="URL notation">URL notation</link>.</paragraph> +<paragraph role="paragraph" id="par_id3150669" xml-lang="en-US" l10n="U"><emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation.</paragraph> +<paragraph role="note" id="par_id3150791" xml-lang="en-US" l10n="U">You can only use the FileCopy statement to copy files that are not opened.</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> <embed href="text/sbasic/shared/00000003.xhp#err76"/> -<paragraph role="heading" id="hd_id3125863" xml-lang="en-US" level="2" l10n="U" oldref="9">Example:</paragraph> -<paragraph role="code" id="par_id3150869" xml-lang="en-US" l10n="U" oldref="10">Sub ExampleFilecopy</paragraph> -<paragraph role="code" id="par_id3154685" xml-lang="en-US" l10n="U" oldref="11">Filecopy "c:\autoexec.bat", "c:\Temp\Autoexec.sav"</paragraph> -<paragraph role="code" id="par_id3154123" xml-lang="en-US" l10n="U" oldref="12">end sub</paragraph> +<paragraph role="heading" id="hd_id3125863" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3150869" xml-lang="en-US" l10n="U">Sub ExampleFilecopy</paragraph> +<paragraph role="code" id="par_id3154685" xml-lang="en-US" l10n="U">Filecopy "c:\autoexec.bat", "c:\Temp\Autoexec.sav"</paragraph> +<paragraph role="code" id="par_id3154123" xml-lang="en-US" l10n="U">end sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03120302.xhp b/main/helpcontent2/source/text/sbasic/shared/03120302.xhp index 239c28e7fe..20a8a96835 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03120302.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03120302.xhp @@ -33,25 +33,24 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3152363"> <bookmark_value>LCase function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3152363" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03120302.xhp" name="LCase Function [Runtime]">LCase Function [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="U" oldref="2">Converts all uppercase letters in a string to lowercase.</paragraph> +<paragraph role="heading" id="hd_id3152363" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03120302.xhp" name="LCase Function [Runtime]">LCase Function [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="U">Converts all uppercase letters in a string to lowercase.</paragraph> </section> -<paragraph role="paragraph" id="par_id3154347" xml-lang="en-US" l10n="U" oldref="3">See also: <link href="text/sbasic/shared/03120310.xhp" name="UCase">UCase</link> Function</paragraph> -<paragraph role="heading" id="hd_id3149456" xml-lang="en-US" level="2" l10n="U" oldref="4">Syntax:</paragraph> -<paragraph role="paragraph" id="par_id3150791" xml-lang="en-US" l10n="U" oldref="5">LCase (Text As String)</paragraph> -<paragraph role="heading" id="hd_id3154940" xml-lang="en-US" level="2" l10n="U" oldref="6">Return value:</paragraph> -<paragraph role="paragraph" id="par_id3144760" xml-lang="en-US" l10n="U" oldref="7">String</paragraph> -<paragraph role="heading" id="hd_id3151043" xml-lang="en-US" level="2" l10n="U" oldref="8">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3153193" xml-lang="en-US" l10n="U" oldref="9"> -<emph>Text:</emph> Any string expression that you want to convert.</paragraph> +<paragraph role="paragraph" id="par_id3154347" xml-lang="en-US" l10n="U">See also: <link href="text/sbasic/shared/03120310.xhp" name="UCase">UCase</link> Function</paragraph> +<paragraph role="heading" id="hd_id3149456" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="paragraph" id="par_id3150791" xml-lang="en-US" l10n="U">LCase (Text As String)</paragraph> +<paragraph role="heading" id="hd_id3154940" xml-lang="en-US" level="2" l10n="U">Return value:</paragraph> +<paragraph role="paragraph" id="par_id3144760" xml-lang="en-US" l10n="U">String</paragraph> +<paragraph role="heading" id="hd_id3151043" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3153193" xml-lang="en-US" l10n="U"><emph>Text:</emph> Any string expression that you want to convert.</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> -<paragraph role="heading" id="hd_id3148451" xml-lang="en-US" level="2" l10n="U" oldref="10">Example:</paragraph> -<paragraph role="paragraph" id="par_id3149203" xml-lang="en-US" l10n="U" oldref="11">Sub ExampleLUCase</paragraph> -<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U" oldref="12">Dim sVar As String</paragraph> -<paragraph role="paragraph" id="par_id3153367" xml-lang="en-US" l10n="U" oldref="13">sVar = "Las Vegas"</paragraph> -<paragraph role="paragraph" id="par_id3146121" xml-lang="en-US" l10n="U" oldref="14">Print LCase(sVar) REM Returns "las vegas"</paragraph> -<paragraph role="paragraph" id="par_id3146986" xml-lang="en-US" l10n="U" oldref="15">Print UCase(sVar) REM Returns "LAS VEGAS"</paragraph> -<paragraph role="paragraph" id="par_id3153575" xml-lang="en-US" l10n="U" oldref="16">end Sub</paragraph> +<paragraph role="heading" id="hd_id3148451" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="paragraph" id="par_id3149203" xml-lang="en-US" l10n="U">Sub ExampleLUCase</paragraph> +<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U">Dim sVar As String</paragraph> +<paragraph role="paragraph" id="par_id3153367" xml-lang="en-US" l10n="U">sVar = "Las Vegas"</paragraph> +<paragraph role="paragraph" id="par_id3146121" xml-lang="en-US" l10n="U">Print LCase(sVar) REM Returns "las vegas"</paragraph> +<paragraph role="paragraph" id="par_id3146986" xml-lang="en-US" l10n="U">Print UCase(sVar) REM Returns "LAS VEGAS"</paragraph> +<paragraph role="paragraph" id="par_id3153575" xml-lang="en-US" l10n="U">end Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03120310.xhp b/main/helpcontent2/source/text/sbasic/shared/03120310.xhp index a1eb209a0f..6c994fc182 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03120310.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03120310.xhp @@ -33,27 +33,24 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3153527"> <bookmark_value>UCase function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3153527" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03120310.xhp" name="UCase Function [Runtime]">UCase Function [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3155420" xml-lang="en-US" l10n="U" oldref="2">Converts lowercase characters in a string to uppercase.</paragraph> +<paragraph role="heading" id="hd_id3153527" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03120310.xhp" name="UCase Function [Runtime]">UCase Function [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3155420" xml-lang="en-US" l10n="U">Converts lowercase characters in a string to uppercase.</paragraph> </section> -<paragraph role="paragraph" id="par_id3150771" xml-lang="en-US" l10n="U" oldref="3">See also: <link href="text/sbasic/shared/03120302.xhp" name="LCase Function">LCase Function</link></paragraph> -<paragraph role="paragraph" id="par_id3149233" xml-lang="en-US" l10n="U" oldref="4"> -<emph>Syntax</emph>:</paragraph> -<paragraph role="paragraph" id="par_id3153061" xml-lang="en-US" l10n="U" oldref="5">UCase (Text As String)</paragraph> -<paragraph role="paragraph" id="par_id3159414" xml-lang="en-US" l10n="U" oldref="6"> -<emph>Return value</emph>:</paragraph> -<paragraph role="paragraph" id="par_id3146795" xml-lang="en-US" l10n="U" oldref="7">String</paragraph> -<paragraph role="heading" id="hd_id3149457" xml-lang="en-US" level="2" l10n="U" oldref="8">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3150791" xml-lang="en-US" l10n="U" oldref="9"> -<emph>Text:</emph> Any string expression that you want to convert.</paragraph> +<paragraph role="paragraph" id="par_id3150771" xml-lang="en-US" l10n="U">See also: <link href="text/sbasic/shared/03120302.xhp" name="LCase Function">LCase Function</link></paragraph> +<paragraph role="paragraph" id="par_id3149233" xml-lang="en-US" l10n="U"><emph>Syntax</emph>:</paragraph> +<paragraph role="paragraph" id="par_id3153061" xml-lang="en-US" l10n="U">UCase (Text As String)</paragraph> +<paragraph role="paragraph" id="par_id3159414" xml-lang="en-US" l10n="U"><emph>Return value</emph>:</paragraph> +<paragraph role="paragraph" id="par_id3146795" xml-lang="en-US" l10n="U">String</paragraph> +<paragraph role="heading" id="hd_id3149457" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3150791" xml-lang="en-US" l10n="U"><emph>Text:</emph> Any string expression that you want to convert.</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> -<paragraph role="heading" id="hd_id3154125" xml-lang="en-US" level="2" l10n="U" oldref="10">Example:</paragraph> -<paragraph role="paragraph" id="par_id3147229" xml-lang="en-US" l10n="U" oldref="11">Sub ExampleLUCase</paragraph> -<paragraph role="paragraph" id="par_id3151381" xml-lang="en-US" l10n="U" oldref="12">Dim sVar As String</paragraph> -<paragraph role="paragraph" id="par_id3153194" xml-lang="en-US" l10n="U" oldref="13">sVar = "Las Vegas"</paragraph> -<paragraph role="paragraph" id="par_id3149204" xml-lang="en-US" l10n="U" oldref="14">Print LCase(sVar) REM returns "las vegas"</paragraph> -<paragraph role="paragraph" id="par_id3156280" xml-lang="en-US" l10n="U" oldref="15">Print UCase(sVar) REM returns "LAS VEGAS"</paragraph> -<paragraph role="paragraph" id="par_id3156422" xml-lang="en-US" l10n="U" oldref="16">end Sub</paragraph> +<paragraph role="heading" id="hd_id3154125" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="paragraph" id="par_id3147229" xml-lang="en-US" l10n="U">Sub ExampleLUCase</paragraph> +<paragraph role="paragraph" id="par_id3151381" xml-lang="en-US" l10n="U">Dim sVar As String</paragraph> +<paragraph role="paragraph" id="par_id3153194" xml-lang="en-US" l10n="U">sVar = "Las Vegas"</paragraph> +<paragraph role="paragraph" id="par_id3149204" xml-lang="en-US" l10n="U">Print LCase(sVar) REM returns "las vegas"</paragraph> +<paragraph role="paragraph" id="par_id3156280" xml-lang="en-US" l10n="U">Print UCase(sVar) REM returns "LAS VEGAS"</paragraph> +<paragraph role="paragraph" id="par_id3156422" xml-lang="en-US" l10n="U">end Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/01/05040200.xhp b/main/helpcontent2/source/text/scalc/01/05040200.xhp index 49d68aedc2..bc991ddff7 100644 --- a/main/helpcontent2/source/text/scalc/01/05040200.xhp +++ b/main/helpcontent2/source/text/scalc/01/05040200.xhp @@ -38,17 +38,17 @@ <bookmark xml-lang="en-US" branch="hid/.uno:SetOptimalColumnWidth" id="bm_id3156326" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:SetOptimalColumnWidthDirect" id="bm_id6407209" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:SetOptimalColumnWidthDirect" id="bm_id3153254" localize="false"/> -<paragraph role="heading" id="hd_id3155628" xml-lang="en-US" level="1" l10n="U" oldref="1">Optimal Column Width</paragraph> -<paragraph role="paragraph" id="par_id3145068" xml-lang="en-US" l10n="U" oldref="2"><variable id="optitext"><ahelp hid=".uno:SetOptimalColumnWidthDi">Defines the optimal column width for selected columns.</ahelp> +<paragraph role="heading" id="hd_id3155628" xml-lang="en-US" level="1" l10n="U">Optimal Column Width</paragraph> +<paragraph role="paragraph" id="par_id3145068" xml-lang="en-US" l10n="U"><variable id="optitext"><ahelp hid=".uno:SetOptimalColumnWidthDi">Defines the optimal column width for selected columns.</ahelp> </variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href="text/shared/00/00000003.xhp#metrik" name="measurement units">measurement units</link>.</paragraph> <section id="howtoget"> <embed href="text/scalc/00/00000405.xhp#fospob"/> </section> <bookmark xml-lang="en-US" branch="hid/sc:MetricField:RID_SCDLG_COL_OPT:ED_VALUE" id="bm_id3153192" localize="false"/> -<paragraph role="heading" id="hd_id3150767" xml-lang="en-US" level="2" l10n="U" oldref="3">Add</paragraph> -<paragraph role="paragraph" id="par_id3150449" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150767" xml-lang="en-US" level="2" l10n="U">Add</paragraph> +<paragraph role="paragraph" id="par_id3150449" xml-lang="en-US" l10n="U"><ahelp hid="SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sc:CheckBox:RID_SCDLG_COL_OPT:BTN_DEFVAL" id="bm_id3155855" localize="false"/> -<paragraph role="heading" id="hd_id3145785" xml-lang="en-US" level="2" l10n="U" oldref="5">Default value</paragraph> -<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in.</paragraph> +<paragraph role="heading" id="hd_id3145785" xml-lang="en-US" level="2" l10n="U">Default value</paragraph> +<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US" l10n="U"><ahelp hid="SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/02/18020000.xhp b/main/helpcontent2/source/text/scalc/02/18020000.xhp index 1d97a9d169..ed3ecff4ef 100644 --- a/main/helpcontent2/source/text/scalc/02/18020000.xhp +++ b/main/helpcontent2/source/text/scalc/02/18020000.xhp @@ -35,22 +35,22 @@ </bookmark> <bookmark xml-lang="en-US" branch="hid/.uno:InsCellsCtrl" id="bm_id3670488" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:InsCellsCtrl" id="bm_id3156329" localize="false"/> -<paragraph role="heading" id="hd_id3150275" xml-lang="en-US" level="1" l10n="CHG" oldref="1"><link href="text/scalc/02/18020000.xhp" name="Insert Cells">Insert Cells</link></paragraph> -<paragraph role="paragraph" id="par_id3156024" xml-lang="en-US" l10n="CHG" oldref="2"><ahelp hid=".uno:InsCellsCtrl">Click the arrow next to the icon to open the <emph>Insert Cells</emph> toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150275" xml-lang="en-US" level="1" l10n="CHG"><link href="text/scalc/02/18020000.xhp" name="Insert Cells">Insert Cells</link></paragraph> +<paragraph role="paragraph" id="par_id3156024" xml-lang="en-US" l10n="CHG"><ahelp hid=".uno:InsCellsCtrl">Click the arrow next to the icon to open the <emph>Insert Cells</emph> toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp></paragraph> </section> -<paragraph role="paragraph" id="par_id3150398" xml-lang="en-US" l10n="CHG" oldref="3">Tools bar icon:</paragraph> +<paragraph role="paragraph" id="par_id3150398" xml-lang="en-US" l10n="CHG">Tools bar icon:</paragraph> <embed href="text/scalc/00/00000404.xhp#syzelleneinfuegen"/> -<paragraph role="paragraph" id="par_id3150767" xml-lang="en-US" l10n="U" oldref="5">You can select the following icons:</paragraph> -<paragraph role="heading" id="hd_id3150439" xml-lang="en-US" level="2" l10n="U" oldref="6"><link href="text/scalc/01/04020000.xhp" name="Insert Cells Down">Insert Cells Down</link></paragraph> +<paragraph role="paragraph" id="par_id3150767" xml-lang="en-US" l10n="U">You can select the following icons:</paragraph> +<paragraph role="heading" id="hd_id3150439" xml-lang="en-US" level="2" l10n="U"><link href="text/scalc/01/04020000.xhp" name="Insert Cells Down">Insert Cells Down</link></paragraph> <embed href="text/scalc/01/04020000.xhp#zellenuntentext"/> <embed href="text/scalc/00/00000404.xhp#syzellenunten"/> -<paragraph role="heading" id="hd_id3146119" xml-lang="en-US" level="2" l10n="U" oldref="7"><link href="text/scalc/01/04020000.xhp" name="Insert Cells Right">Insert Cells Right</link></paragraph> +<paragraph role="heading" id="hd_id3146119" xml-lang="en-US" level="2" l10n="U"><link href="text/scalc/01/04020000.xhp" name="Insert Cells Right">Insert Cells Right</link></paragraph> <embed href="text/scalc/01/04020000.xhp#zellenrechtstext"/> <embed href="text/scalc/00/00000404.xhp#syzellenrechts"/> -<paragraph role="heading" id="hd_id3153190" xml-lang="en-US" level="2" l10n="CHG" oldref="8"><link href="text/scalc/01/04020000.xhp" name="Rows">Rows</link></paragraph> +<paragraph role="heading" id="hd_id3153190" xml-lang="en-US" level="2" l10n="CHG"><link href="text/scalc/01/04020000.xhp" name="Rows">Rows</link></paragraph> <embed href="text/scalc/01/04020000.xhp#zeilenganzetext"/> <embed href="text/scalc/00/00000404.xhp#syzeilenganze"/> -<paragraph role="heading" id="hd_id3153726" xml-lang="en-US" level="2" l10n="CHG" oldref="9"><link href="text/scalc/01/04020000.xhp" name="Columns">Columns</link></paragraph> +<paragraph role="heading" id="hd_id3153726" xml-lang="en-US" level="2" l10n="CHG"><link href="text/scalc/01/04020000.xhp" name="Columns">Columns</link></paragraph> <embed href="text/scalc/01/04020000.xhp#spaltenganzetext"/> <embed href="text/scalc/00/00000404.xhp#syspaltenganze"/> </body> diff --git a/main/helpcontent2/source/text/scalc/guide/edit_multitables.xhp b/main/helpcontent2/source/text/scalc/guide/edit_multitables.xhp index b5c1d4bc13..3da295ea6a 100644 --- a/main/helpcontent2/source/text/scalc/guide/edit_multitables.xhp +++ b/main/helpcontent2/source/text/scalc/guide/edit_multitables.xhp @@ -36,16 +36,16 @@ <bookmark_value>sheets; simultaneous multiple filling</bookmark_value> </bookmark> <comment>mw moved "multiple sheets" and "selecting;" to multitables.xhp, transferred "sheets;" from there and deleted "sheets;transferring.."</comment> -<paragraph xml-lang="en-US" id="hd_id3149456" role="heading" level="1" l10n="U" oldref="3"><variable id="edit_multitables"><link href="text/scalc/guide/edit_multitables.xhp" name="Copying to Multiple Sheets">Copying to Multiple Sheets</link> +<paragraph xml-lang="en-US" id="hd_id3149456" role="heading" level="1" l10n="U"><variable id="edit_multitables"><link href="text/scalc/guide/edit_multitables.xhp" name="Copying to Multiple Sheets">Copying to Multiple Sheets</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3150868" role="paragraph" l10n="U" oldref="6">In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150868" role="paragraph" l10n="U">In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document.</paragraph> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3153768" role="listitem" l10n="U" oldref="8">Select all desired sheets by holding down the <switchinline select="sys"><caseinline select="MAC">Command </caseinline><defaultinline>Ctrl </defaultinline></switchinline>key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153768" role="listitem" l10n="U">Select all desired sheets by holding down the <switchinline select="sys"><caseinline select="MAC">Command </caseinline><defaultinline>Ctrl </defaultinline></switchinline>key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white.</paragraph> <paragraph xml-lang="en-US" id="par_idN10614" role="paragraph" l10n="NEW">You can use Shift+<switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147435" role="listitem" l10n="U" oldref="7">Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147435" role="listitem" l10n="U">Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet.</paragraph> </listitem> </list> <section id="relatedtopics"> diff --git a/main/helpcontent2/source/text/shared/01/05010000.xhp b/main/helpcontent2/source/text/shared/01/05010000.xhp index d0c8f6e915..c0b1c6f84d 100644 --- a/main/helpcontent2/source/text/shared/01/05010000.xhp +++ b/main/helpcontent2/source/text/shared/01/05010000.xhp @@ -43,20 +43,19 @@ <bookmark xml-lang="en-US" branch="hid/.uno:StandardTextAttributes" id="bm_id2575480" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:StandardTextAttributes" id="bm_id3150008" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:ResetAttributes" id="bm_id6007568" localize="false"/> -<paragraph role="heading" id="hd_id3153391" xml-lang="en-US" level="1" l10n="CHG" oldref="1"><link href="text/shared/01/05010000.xhp" name="Default Formatting">Default Formatting</link></paragraph> -<paragraph role="paragraph" id="par_id3145829" xml-lang="en-US" l10n="CHG" oldref="2"><ahelp hid=".uno:StandardTextAttributes">Removes direct formatting and formatting by character styles from the selection.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153391" xml-lang="en-US" level="1" l10n="CHG"><link href="text/shared/01/05010000.xhp" name="Default Formatting">Default Formatting</link></paragraph> +<paragraph role="paragraph" id="par_id3145829" xml-lang="en-US" l10n="CHG"><ahelp hid=".uno:StandardTextAttributes">Removes direct formatting and formatting by character styles from the selection.</ahelp></paragraph> </section> -<paragraph role="paragraph" id="par_id3147261" xml-lang="en-US" l10n="U" oldref="5"><switchinline select="appl"><caseinline select="CHART"> +<paragraph role="paragraph" id="par_id3147261" xml-lang="en-US" l10n="U"><switchinline select="appl"><caseinline select="CHART"> </caseinline><defaultinline>Direct formatting is formatting that you applied without using styles, such as setting bold typeface by clicking the <emph>Bold</emph> icon.</defaultinline></switchinline></paragraph> <section id="howtoget"> <embed href="text/shared/00/00040500.xhp#standard"/> </section> <switch select="appl"> <case select="WRITER"> -<paragraph role="tip" id="par_id3157959" xml-lang="en-US" l10n="U" oldref="3">To stop applying a direct format, such as underlining, while you type new text at the end of a line, press the right arrow key.</paragraph> +<paragraph role="tip" id="par_id3157959" xml-lang="en-US" l10n="U">To stop applying a direct format, such as underlining, while you type new text at the end of a line, press the right arrow key.</paragraph> </case> </switch> -<paragraph role="tip" id="par_id3146797" xml-lang="en-US" l10n="U" oldref="4">You can change all hyperlinks in the selected text back to normal text by choosing <emph>Format - Default Formatting.</emph> -</paragraph> +<paragraph role="tip" id="par_id3146797" xml-lang="en-US" l10n="U">You can change all hyperlinks in the selected text back to normal text by choosing <emph>Format - Default Formatting</emph>.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/02/12030000.xhp b/main/helpcontent2/source/text/shared/02/12030000.xhp index 9329691bb4..5e60d86d52 100644 --- a/main/helpcontent2/source/text/shared/02/12030000.xhp +++ b/main/helpcontent2/source/text/shared/02/12030000.xhp @@ -32,26 +32,26 @@ <section id="autofilter"> <bookmark xml-lang="en-US" branch="hid/.uno:AutoFilter" id="bm_id8419293" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:AutoFilter" id="bm_id3153323" localize="false"/> -<paragraph role="heading" id="hd_id3149495" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/02/12030000.xhp" name="AutoFilter">AutoFilter</link></paragraph> -<paragraph role="paragraph" id="par_id3148983" xml-lang="en-US" l10n="U" oldref="2"><ahelp hid=".uno:AutoFilter">Filters the records, based on the content of the currently selected data field.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149495" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/02/12030000.xhp" name="AutoFilter">AutoFilter</link></paragraph> +<paragraph role="paragraph" id="par_id3148983" xml-lang="en-US" l10n="U"><ahelp hid=".uno:AutoFilter">Filters the records, based on the content of the currently selected data field.</ahelp></paragraph> </section> <section id="syautofilter"> <table id="tbl_id3147143"> <tablerow> <tablecell colspan="" rowspan=""> <paragraph role="paragraph" id="par_id3151234" xml-lang="en-US" l10n="E"> -<image id="img_id3147261" src="res/commandimagelist/sc_formfiltered.png" width="0.222inch" height="0.222inch"><alt id="alt_id3147261" xml-lang="en-US">Icon</alt> +<image id="img_id3147261" src="res/commandimagelist/sc_formfiltered.png"><alt id="alt_id3147261" xml-lang="en-US">Icon</alt> </image></paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3147043" xml-lang="en-US" l10n="U" oldref="3">AutoFilter</paragraph> +<paragraph role="paragraph" id="par_id3147043" xml-lang="en-US" l10n="U">AutoFilter</paragraph> </tablecell> </tablerow> </table> </section> -<paragraph role="paragraph" id="par_id3155355" xml-lang="en-US" l10n="U" oldref="4">Place the cursor in a field name whose content you want to filter and then click the <emph>AutoFilter</emph> icon. Only those records with content identical to the selected field name are visible.</paragraph> -<paragraph role="paragraph" id="par_id3159234" xml-lang="en-US" l10n="U" oldref="5">For example, to view all the customers from New York, click a field name with the entry "New York". AutoFilter then filters all customers from New York from the database.</paragraph> -<paragraph role="paragraph" id="par_id3153577" xml-lang="en-US" l10n="U" oldref="6">You can remove the current AutoFilter with the <link href="text/shared/02/12040000.xhp" name="Remove Filter/Sorting">Remove Filter/Sorting</link> icon or with <emph>Data - Filter - Remove Filter</emph>.</paragraph> -<paragraph role="paragraph" id="par_id3145345" xml-lang="en-US" l10n="U" oldref="7">To filter with several field names simultaneously, click the <emph>Default Filter</emph> icon. The <link href="text/shared/02/12090000.xhp" name="Default Filter dialog">Default Filter</link> dialog appears, in which you can combine several filter criteria.</paragraph> +<paragraph role="paragraph" id="par_id3155355" xml-lang="en-US" l10n="U">Place the cursor in a field name whose content you want to filter and then click the <emph>AutoFilter</emph> icon. Only those records with content identical to the selected field name are visible.</paragraph> +<paragraph role="paragraph" id="par_id3159234" xml-lang="en-US" l10n="U">For example, to view all the customers from New York, click a field name with the entry "New York". AutoFilter then filters all customers from New York from the database.</paragraph> +<paragraph role="paragraph" id="par_id3153577" xml-lang="en-US" l10n="U">You can remove the current AutoFilter with the <link href="text/shared/02/12040000.xhp" name="Remove Filter/Sorting">Remove Filter/Sorting</link> icon or with <emph>Data - Filter - Remove Filter</emph>.</paragraph> +<paragraph role="paragraph" id="par_id3145345" xml-lang="en-US" l10n="U">To filter with several field names simultaneously, click the <emph>Default Filter</emph> icon. The <link href="text/shared/02/12090000.xhp" name="Default Filter dialog">Default Filter</link> dialog appears, in which you can combine several filter criteria.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/02/13020000.xhp b/main/helpcontent2/source/text/shared/02/13020000.xhp index f30bb30c36..77d8eee2b9 100644 --- a/main/helpcontent2/source/text/shared/02/13020000.xhp +++ b/main/helpcontent2/source/text/shared/02/13020000.xhp @@ -35,21 +35,21 @@ <bookmark_value>columns; setting with the mouse</bookmark_value> <bookmark_value>paragraphs; indents, margins and columns</bookmark_value> </bookmark><comment>MW deleted "text;"</comment> -<paragraph role="heading" id="hd_id3148668" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/02/13020000.xhp" name="Setting Indents, Margins, and Columns">Setting Indents, Margins, and Columns</link></paragraph> -<paragraph role="paragraph" id="par_id3155364" xml-lang="en-US" l10n="U" oldref="2">You can define the indents and margins for the current paragraph, or for all selected paragraphs, using the mouse.</paragraph> +<paragraph role="heading" id="hd_id3148668" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/02/13020000.xhp" name="Setting Indents, Margins, and Columns">Setting Indents, Margins, and Columns</link></paragraph> +<paragraph role="paragraph" id="par_id3155364" xml-lang="en-US" l10n="U">You can define the indents and margins for the current paragraph, or for all selected paragraphs, using the mouse.</paragraph> </section> -<paragraph role="paragraph" id="par_id3152594" xml-lang="en-US" l10n="U" oldref="3">If you split the page into columns, or the cursor is placed in a multiple-column text frame, you can change the column width and the column spacing by dragging them on the ruler with the mouse.</paragraph> -<paragraph role="paragraph" id="par_id3154398" xml-lang="en-US" l10n="U" oldref="4">When an object, an image, or a draw object is selected, you will see the borders of the object in the ruler. You can change the borders by dragging them on the ruler with the mouse.</paragraph> -<paragraph role="paragraph" id="par_id3146130" xml-lang="en-US" l10n="U" oldref="5">If the cursor is placed in a table cell, you can change the indents for the contents of the cell by dragging them with the mouse on the ruler. You can change the boundary lines of the table on the ruler or by dragging the actual boundary line.</paragraph> +<paragraph role="paragraph" id="par_id3152594" xml-lang="en-US" l10n="U">If you split the page into columns, or the cursor is placed in a multiple-column text frame, you can change the column width and the column spacing by dragging them on the ruler with the mouse.</paragraph> +<paragraph role="paragraph" id="par_id3154398" xml-lang="en-US" l10n="U">When an object, an image, or a draw object is selected, you will see the borders of the object in the ruler. You can change the borders by dragging them on the ruler with the mouse.</paragraph> +<paragraph role="paragraph" id="par_id3146130" xml-lang="en-US" l10n="U">If the cursor is placed in a table cell, you can change the indents for the contents of the cell by dragging them with the mouse on the ruler. You can change the boundary lines of the table on the ruler or by dragging the actual boundary line.</paragraph> <table id="tbl_id3157896"> <tablerow> <tablecell colspan="" rowspan=""> <paragraph role="paragraph" id="par_id3156136" xml-lang="en-US" l10n="E"> -<image id="img_id3153750" src="res/helpimg/linleft.png" width="0.1665inch" height="0.2291inch"><alt id="alt_id3153750" xml-lang="en-US">Icon</alt> +<image id="img_id3153750" src="res/helpimg/linleft.png"><alt id="alt_id3153750" xml-lang="en-US">Icon</alt> </image></paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3150693" xml-lang="en-US" l10n="U" oldref="6">These icons mark the left indent for the first line of the current paragraph (top triangle) and the left indent for the other lines of the paragraph (bottom triangle).</paragraph> +<paragraph role="paragraph" id="par_id3150693" xml-lang="en-US" l10n="U">These icons mark the left indent for the first line of the current paragraph (top triangle) and the left indent for the other lines of the paragraph (bottom triangle).</paragraph> </tablecell> </tablerow> <tablerow> @@ -59,49 +59,45 @@ </image></paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3166460" xml-lang="en-US" l10n="U" oldref="7">This icon on the right of the ruler marks the right indent of the current paragraph.</paragraph> +<paragraph role="paragraph" id="par_id3166460" xml-lang="en-US" l10n="U">This icon on the right of the ruler marks the right indent of the current paragraph.</paragraph> </tablecell> </tablerow> </table> <table id="tbl_id3148538"> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3146949" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Task</emph> -</paragraph> +<paragraph role="paragraph" id="par_id3146949" xml-lang="en-US" l10n="U"><emph>Task</emph></paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3153087" xml-lang="en-US" l10n="U" oldref="9"> -<emph>Procedure</emph> -</paragraph> +<paragraph role="paragraph" id="par_id3153087" xml-lang="en-US" l10n="U"><emph>Procedure</emph></paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3154143" xml-lang="en-US" l10n="U" oldref="10">Set left indent</paragraph> +<paragraph role="paragraph" id="par_id3154143" xml-lang="en-US" l10n="U">Set left indent</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3154307" xml-lang="en-US" l10n="U" oldref="11">Drag the bottom left mark to the right while pressing the mouse button</paragraph> +<paragraph role="paragraph" id="par_id3154307" xml-lang="en-US" l10n="U">Drag the bottom left mark to the right while pressing the mouse button</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3155449" xml-lang="en-US" l10n="U" oldref="12">Set left indent of first line</paragraph> +<paragraph role="paragraph" id="par_id3155449" xml-lang="en-US" l10n="U">Set left indent of first line</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3145673" xml-lang="en-US" l10n="U" oldref="13">Drag the top left mark to the right while pressing the mouse button</paragraph> +<paragraph role="paragraph" id="par_id3145673" xml-lang="en-US" l10n="U">Drag the top left mark to the right while pressing the mouse button</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3156156" xml-lang="en-US" l10n="U" oldref="14">Set right indent</paragraph> +<paragraph role="paragraph" id="par_id3156156" xml-lang="en-US" l10n="U">Set right indent</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3153761" xml-lang="en-US" l10n="U" oldref="15">Drag the mark on the right to the left while pressing the mouse button</paragraph> +<paragraph role="paragraph" id="par_id3153761" xml-lang="en-US" l10n="U">Drag the mark on the right to the left while pressing the mouse button</paragraph> </tablecell> </tablerow> </table> -<paragraph role="tip" id="par_id3154760" xml-lang="en-US" l10n="U" oldref="16">In order to change the left indent starting with the second line of a paragraph, hold down the <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl </defaultinline></switchinline> key, click the triangle on the bottom left, and drag it to the right.</paragraph> -<paragraph role="note" id="par_id3148453" xml-lang="en-US" l10n="U" oldref="17">Tabs that have been set are not changed when indenting a paragraph. If the set tabs end up outside the margins of the paragraph, they are no longer displayed, but they still exist.</paragraph> +<paragraph role="tip" id="par_id3154760" xml-lang="en-US" l10n="U">In order to change the left indent starting with the second line of a paragraph, hold down the <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl </defaultinline></switchinline> key, click the triangle on the bottom left, and drag it to the right.</paragraph> +<paragraph role="note" id="par_id3148453" xml-lang="en-US" l10n="U">Tabs that have been set are not changed when indenting a paragraph. If the set tabs end up outside the margins of the paragraph, they are no longer displayed, but they still exist.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/05/00000130.xhp b/main/helpcontent2/source/text/shared/05/00000130.xhp index 9419fdc544..575293f37f 100644 --- a/main/helpcontent2/source/text/shared/05/00000130.xhp +++ b/main/helpcontent2/source/text/shared/05/00000130.xhp @@ -33,16 +33,16 @@ <bookmark_value>Index tab in Help</bookmark_value> <bookmark_value>Help; keywords</bookmark_value> </bookmark> -<paragraph role="paragraph" id="par_id3149428" xml-lang="en-US" l10n="E" oldref="2" localize="false"/> -<paragraph role="heading" id="hd_id3153884" xml-lang="en-US" level="1" l10n="U" oldref="5"><variable id="00000130"><link href="text/shared/05/00000130.xhp" name="Index - Keyword Search in the Help">Index - Keyword Search in the Help</link> +<paragraph role="paragraph" id="par_id3149428" xml-lang="en-US" l10n="E" localize="false"/> +<paragraph role="heading" id="hd_id3153884" xml-lang="en-US" level="1" l10n="U"><variable id="00000130"><link href="text/shared/05/00000130.xhp" name="Index - Keyword Search in the Help">Index - Keyword Search in the Help</link> </variable></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:ComboBox:TP_HELP_INDEX:CB_INDEX" id="bm_id3149662" localize="false"/> -<paragraph role="paragraph" id="par_id3150960" xml-lang="en-US" l10n="U" oldref="3"><ahelp hid="SFX2_COMBOBOX_TP_HELP_INDEX_CB_INDEX" visibility="hidden">Double-click an entry or type the word you want to find in the index.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3150960" xml-lang="en-US" l10n="U"><ahelp hid="SFX2_COMBOBOX_TP_HELP_INDEX_CB_INDEX" visibility="hidden">Double-click an entry or type the word you want to find in the index.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:PushButton:TP_HELP_INDEX:PB_OPEN_INDEX" id="bm_id3150476" localize="false"/> -<paragraph role="paragraph" id="par_id3148668" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="SFX2_PUSHBUTTON_TP_HELP_INDEX_PB_OPEN_INDEX" visibility="hidden">Click to display the selected topic.</ahelp></paragraph> -<paragraph role="paragraph" id="par_id3155934" xml-lang="en-US" l10n="U" oldref="1">You can search for a specific topic by typing a word into the <emph>Search term</emph> text box. The window contains an alphabetical list of index terms.</paragraph> -<paragraph role="paragraph" id="par_id3145669" xml-lang="en-US" l10n="U" oldref="6">If the cursor is in the index list when you type the search term, the display will jump directly to the next match. When you type a word in the <emph>Search term</emph> text box, the focus will jump to the best match in the index list.</paragraph> -<paragraph role="tip" id="par_id3147653" xml-lang="en-US" l10n="CHG" oldref="7">The index and full-text searches always apply to the currently selected <item type="productname">%PRODUCTNAME</item> application. Select the appropriate application using the list box on the help viewer's toolbar.</paragraph> +<paragraph role="paragraph" id="par_id3148668" xml-lang="en-US" l10n="U"><ahelp hid="SFX2_PUSHBUTTON_TP_HELP_INDEX_PB_OPEN_INDEX" visibility="hidden">Click to display the selected topic.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3155934" xml-lang="en-US" l10n="U">You can search for a specific topic by typing a word into the <emph>Search term</emph> text box. The window contains an alphabetical list of index terms.</paragraph> +<paragraph role="paragraph" id="par_id3145669" xml-lang="en-US" l10n="U">If the cursor is in the index list when you type the search term, the display will jump directly to the next match. When you type a word in the <emph>Search term</emph> text box, the focus will jump to the best match in the index list.</paragraph> +<paragraph role="tip" id="par_id3147653" xml-lang="en-US" l10n="CHG">The index and full-text searches always apply to the currently selected <item type="productname">%PRODUCTNAME</item> application. Select the appropriate application using the list box on the help viewer's toolbar.</paragraph> <section id="relatedtopics"> <embed href="text/shared/05/00000110.xhp#00000110"/> <embed href="text/shared/05/00000120.xhp#00000120"/> diff --git a/main/helpcontent2/source/text/shared/autopi/01170400.xhp b/main/helpcontent2/source/text/shared/autopi/01170400.xhp index a36f87ce4a..1ef50493ee 100644 --- a/main/helpcontent2/source/text/shared/autopi/01170400.xhp +++ b/main/helpcontent2/source/text/shared/autopi/01170400.xhp @@ -30,8 +30,8 @@ </meta> <body> <section id="datquetitel"> -<paragraph role="heading" id="hd_id3147000" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/autopi/01170400.xhp" name="Data Source Name">Data Source Name</link></paragraph> -<paragraph role="paragraph" id="par_id3144740" xml-lang="en-US" l10n="CHG" oldref="2"><ahelp hid=".">Specifies a location for the address book file and a name under which the data source will be listed in the data source explorer.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147000" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/autopi/01170400.xhp" name="Data Source Name">Data Source Name</link></paragraph> +<paragraph role="paragraph" id="par_id3144740" xml-lang="en-US" l10n="CHG"><ahelp hid=".">Specifies a location for the address book file and a name under which the data source will be listed in the data source explorer.</ahelp></paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00000401.xhp#addressimport4"/> @@ -46,7 +46,7 @@ <paragraph role="heading" id="par_idN105C5" xml-lang="en-US" level="2" l10n="NEW">Make this address book available to all modules in %PRODUCTNAME</paragraph> <paragraph role="paragraph" id="par_idN105C9" xml-lang="en-US" l10n="NEW"><ahelp hid=".">Registers the newly created database file in %PRODUCTNAME. The database will then be listed in the data source window (F4). If this check box is cleared, the database will be available only by opening the database file.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/extensions:Edit:RID_PAGE_FINAL:ET_DATASOURCENAME" id="bm_id3150808" localize="false"/> -<paragraph role="heading" id="hd_id3144436" xml-lang="en-US" level="2" l10n="CHG" oldref="3">Address book name</paragraph> -<paragraph role="paragraph" id="par_id3154673" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="extensions:Edit:RID_PAGE_FINAL:ET_DATASOURCENAME">Specifies the data source name.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3144436" xml-lang="en-US" level="2" l10n="CHG">Address book name</paragraph> +<paragraph role="paragraph" id="par_id3154673" xml-lang="en-US" l10n="U"><ahelp hid="extensions:Edit:RID_PAGE_FINAL:ET_DATASOURCENAME">Specifies the data source name.</ahelp></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/guide/ctl.xhp b/main/helpcontent2/source/text/shared/guide/ctl.xhp index f413ed7e0b..62515d4687 100644 --- a/main/helpcontent2/source/text/shared/guide/ctl.xhp +++ b/main/helpcontent2/source/text/shared/guide/ctl.xhp @@ -42,38 +42,38 @@ <bookmark_value>Arabic;entering text</bookmark_value> <bookmark_value>Thai;entering text</bookmark_value> </bookmark><comment>mw made "text layout;" a one level entry</comment> -<paragraph role="heading" id="hd_id3153662" xml-lang="en-US" level="1" l10n="U" oldref="13"><variable id="ctl"><link href="text/shared/guide/ctl.xhp" name="Languages Using Complex Text Layout">Languages Using Complex Text Layout</link> +<paragraph role="heading" id="hd_id3153662" xml-lang="en-US" level="1" l10n="U"><variable id="ctl"><link href="text/shared/guide/ctl.xhp" name="Languages Using Complex Text Layout">Languages Using Complex Text Layout</link> </variable></paragraph> -<paragraph role="paragraph" id="par_id3147618" xml-lang="en-US" l10n="U" oldref="10">Currently, $[officename] supports Hindi, Thai, Hebrew, and Arabic as <link href="text/shared/00/00000005.xhp#ctl" name="CTL languages">CTL languages</link>.</paragraph> -<paragraph role="paragraph" id="par_id3155420" xml-lang="en-US" l10n="U" oldref="11">If you select the text flow from right to left, embedded Western text still runs from left to right. The cursor responds to the arrow keys in that Right Arrow moves it "to the text end" and Left Arrow "to the text start".</paragraph> -<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="U" oldref="1">You can change the text writing direction directly be pressing one of the following keys:</paragraph> +<paragraph role="paragraph" id="par_id3147618" xml-lang="en-US" l10n="U">Currently, $[officename] supports Hindi, Thai, Hebrew, and Arabic as <link href="text/shared/00/00000005.xhp#ctl" name="CTL languages">CTL languages</link>.</paragraph> +<paragraph role="paragraph" id="par_id3155420" xml-lang="en-US" l10n="U">If you select the text flow from right to left, embedded Western text still runs from left to right. The cursor responds to the arrow keys in that Right Arrow moves it "to the text end" and Left Arrow "to the text start".</paragraph> +<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="U">You can change the text writing direction directly be pressing one of the following keys:</paragraph> <list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3154758" xml-lang="en-US" l10n="U" oldref="2"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+D or <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Shift Key - switch to right-to-left text entry</paragraph> +<paragraph role="listitem" id="par_id3154758" xml-lang="en-US" l10n="U"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+D or <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Shift Key - switch to right-to-left text entry</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3149047" xml-lang="en-US" l10n="U" oldref="3"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+A or <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Shift Key - switch to left-to-right text entry</paragraph> +<paragraph role="listitem" id="par_id3149047" xml-lang="en-US" l10n="U"><switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+A or <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Shift Key - switch to left-to-right text entry</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3149656" xml-lang="en-US" l10n="U" oldref="4">The modifier-only key combinations only work when CTL support is enabled.</paragraph> +<paragraph role="listitem" id="par_id3149656" xml-lang="en-US" l10n="U">The modifier-only key combinations only work when CTL support is enabled.</paragraph> </listitem> </list> -<paragraph role="paragraph" id="par_id3150541" xml-lang="en-US" l10n="U" oldref="5">In multicolumn pages, sections or frames that are formatted with text flow from right to left, the first column is the right column and the last column is the left column.</paragraph> -<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" l10n="U" oldref="6">In $[officename] Writer text formatted in <emph>Thai language</emph> has the following features:</paragraph> +<paragraph role="paragraph" id="par_id3150541" xml-lang="en-US" l10n="U">In multicolumn pages, sections or frames that are formatted with text flow from right to left, the first column is the right column and the last column is the left column.</paragraph> +<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" l10n="U">In $[officename] Writer text formatted in <emph>Thai language</emph> has the following features:</paragraph> <list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3156280" xml-lang="en-US" l10n="U" oldref="7">In paragraphs with justified alignment, the characters are stretched to flush the lines at the margins. In other languages the spaces between words are stretched.</paragraph> +<paragraph role="listitem" id="par_id3156280" xml-lang="en-US" l10n="U">In paragraphs with justified alignment, the characters are stretched to flush the lines at the margins. In other languages the spaces between words are stretched.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3154909" xml-lang="en-US" l10n="U" oldref="8">Use the Delete key to delete a whole composite character. Use the Backspace key to delete the last part of the previous composite character.</paragraph> +<paragraph role="listitem" id="par_id3154909" xml-lang="en-US" l10n="U">Use the Delete key to delete a whole composite character. Use the Backspace key to delete the last part of the previous composite character.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3149809" xml-lang="en-US" l10n="U" oldref="9">Use the Right or Left Arrow key to jump to the next or previous whole composite character. To position the cursor into a composite character, use <switchinline select="sys"><caseinline select="MAC">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Arrow key.</paragraph> +<paragraph role="listitem" id="par_id3149809" xml-lang="en-US" l10n="U">Use the Right or Left Arrow key to jump to the next or previous whole composite character. To position the cursor into a composite character, use <switchinline select="sys"><caseinline select="MAC">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Arrow key.</paragraph> </listitem> </list> <embed href="text/shared/00/00000004.xhp#related"/> <embed href="text/shared/guide/language_select.xhp#language_select"/> -<paragraph role="paragraph" id="par_id3145786" xml-lang="en-US" l10n="U" oldref="12"><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href="text/shared/optionen/01140000.xhp" name="Language Settings - Languages">Language Settings - Languages</link></paragraph> -<paragraph role="paragraph" id="par_id3153770" xml-lang="en-US" l10n="U" oldref="14"><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href="text/shared/optionen/01150300.xhp" name="Language Settings - Complex Text Layout">Language Settings - Complex Text Layout</link></paragraph> +<paragraph role="paragraph" id="par_id3145786" xml-lang="en-US" l10n="U"><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href="text/shared/optionen/01140000.xhp" name="Language Settings - Languages">Language Settings - Languages</link></paragraph> +<paragraph role="paragraph" id="par_id3153770" xml-lang="en-US" l10n="U"><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href="text/shared/optionen/01150300.xhp" name="Language Settings - Complex Text Layout">Language Settings - Complex Text Layout</link></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/guide/data_addressbook.xhp b/main/helpcontent2/source/text/shared/guide/data_addressbook.xhp index a13c04a2b0..4b8b677f42 100644 --- a/main/helpcontent2/source/text/shared/guide/data_addressbook.xhp +++ b/main/helpcontent2/source/text/shared/guide/data_addressbook.xhp @@ -57,7 +57,7 @@ <paragraph role="paragraph" id="par_id3148491" xml-lang="en-US" l10n="U" oldref="10">In the <emph>Data source</emph> combo box, select the system address book or the data source you want to use as an address book.</paragraph> </listitem> <listitem> -<paragraph role="paragraph" id="par_id3149669" xml-lang="en-US" l10n="CHG" oldref="11">If you have not yet registered the system address book in <item type="productname">%PRODUCTNAME</item> as the data source, click the <emph>Address Data Source ...</emph> button. This takes you to the <emph>Address Book Data Source Wizard</emph>, in which you can register your address book as a new data source in <item type="productname">%PRODUCTNAME</item>.</paragraph> +<paragraph role="paragraph" id="par_id3149669" xml-lang="en-US" l10n="CHG" oldref="11">If you have not yet registered the system address book in <item type="productname">%PRODUCTNAME</item> as the data source, click the <emph>Address Data Source</emph> button. This takes you to the <emph>Address Book Data Source Wizard</emph>, in which you can register your address book as a new data source in <item type="productname">%PRODUCTNAME</item>.</paragraph> </listitem> <listitem> <paragraph role="paragraph" id="par_id3154365" xml-lang="en-US" l10n="U" oldref="13">In the <emph>Table</emph> combo box, select the database table you want to use as the address book.</paragraph> diff --git a/main/helpcontent2/source/text/shared/optionen/01110100.xhp b/main/helpcontent2/source/text/shared/optionen/01110100.xhp index fa01d8e823..9fde6ed88e 100644 --- a/main/helpcontent2/source/text/shared/optionen/01110100.xhp +++ b/main/helpcontent2/source/text/shared/optionen/01110100.xhp @@ -34,21 +34,21 @@ <bookmark_value>charts; colors</bookmark_value> <bookmark_value>colors;charts</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3149760" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/optionen/01110100.xhp" name="Default colors">Default colors</link></paragraph> -<paragraph role="paragraph" id="par_id3150713" xml-lang="en-US" l10n="U" oldref="2">Assigns colors to the data rows. The settings only apply for all newly created charts.</paragraph> +<paragraph role="heading" id="hd_id3149760" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/optionen/01110100.xhp" name="Default colors">Default colors</link></paragraph> +<paragraph role="paragraph" id="par_id3150713" xml-lang="en-US" l10n="U">Assigns colors to the data rows. The settings only apply for all newly created charts.</paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00000406.xhp#diagrgfarbe"/> </section> <!-- removed HID SCH:LISTBOX:TP_DEF_COLOR:LB_CHART_COLOR_LIST --> <bookmark xml-lang="en-US" branch="hid/cui:ListBox:RID_OPTPAGE_CHART_DEFCOLORS:LB_CHART_COLOR_LIST" id="bm_id4940946" localize="false"/> -<paragraph role="heading" id="hd_id3154751" xml-lang="en-US" level="2" l10n="U" oldref="3">Chart colors</paragraph> -<paragraph role="paragraph" id="par_id3145345" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="SCH:LISTBOX:TP_DEF_COLOR:LB_CHART_COLOR_LIST">Displays all the colors available for the data series.</ahelp> Select a data series to change its color. Select the desired color from the adjacent color table.</paragraph> -<paragraph role="heading" id="hd_id3154823" xml-lang="en-US" level="2" l10n="U" oldref="5">Color table</paragraph> -<paragraph role="paragraph" id="par_id3149398" xml-lang="en-US" l10n="U" oldref="6">This table is used as a means of replacing the chart colors for the selected data rows. For example, if you selected data row 6 and then click on the color green 8, the old color of the data row is replaced by green 8. The name of the selected color is shown below the color table.</paragraph> +<paragraph role="heading" id="hd_id3154751" xml-lang="en-US" level="2" l10n="U">Chart colors</paragraph> +<paragraph role="paragraph" id="par_id3145345" xml-lang="en-US" l10n="U"><ahelp hid="SCH:LISTBOX:TP_DEF_COLOR:LB_CHART_COLOR_LIST">Displays all the colors available for the data series.</ahelp> Select a data series to change its color. Select the desired color from the adjacent color table.</paragraph> +<paragraph role="heading" id="hd_id3154823" xml-lang="en-US" level="2" l10n="U">Color table</paragraph> +<paragraph role="paragraph" id="par_id3149398" xml-lang="en-US" l10n="U">This table is used as a means of replacing the chart colors for the selected data rows. For example, if you selected data row 6 and then click on the color green 8, the old color of the data row is replaced by green 8. The name of the selected color is shown below the color table.</paragraph> <!-- removed HID SCH:PUSHBUTTON:TP_DEF_COLOR:PB_RESET_TO_DEFAULT --> <bookmark xml-lang="en-US" branch="hid/cui:PushButton:RID_OPTPAGE_CHART_DEFCOLORS:PB_RESET_TO_DEFAULT" id="bm_id5361491" localize="false"/> -<paragraph role="heading" id="hd_id3147242" xml-lang="en-US" level="2" l10n="U" oldref="7">Default</paragraph> -<paragraph role="paragraph" id="par_id3156347" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="SCH:PUSHBUTTON:TP_DEF_COLOR:PB_RESET_TO_DEFAULT">Restores the color settings that were defined when the program was installed.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147242" xml-lang="en-US" level="2" l10n="U">Default</paragraph> +<paragraph role="paragraph" id="par_id3156347" xml-lang="en-US" l10n="U"><ahelp hid="SCH:PUSHBUTTON:TP_DEF_COLOR:PB_RESET_TO_DEFAULT">Restores the color settings that were defined when the program was installed.</ahelp></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/swriter/01/01160300.xhp b/main/helpcontent2/source/text/swriter/01/01160300.xhp index e30da7a0b3..6824a25e37 100644 --- a/main/helpcontent2/source/text/swriter/01/01160300.xhp +++ b/main/helpcontent2/source/text/swriter/01/01160300.xhp @@ -31,18 +31,17 @@ <body> <bookmark xml-lang="en-US" branch="hid/.uno:CreateAbstract" id="bm_id9059848" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:CreateAbstract" id="bm_id3145247" localize="false"/> -<paragraph role="heading" id="hd_id3148570" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/swriter/01/01160300.xhp" name="Create AutoAbstract">Create AutoAbstract</link></paragraph> -<paragraph role="paragraph" id="par_id3149286" xml-lang="en-US" l10n="U" oldref="2"> -<variable id="autoabstracttext"><ahelp hid=".uno:CreateAbstract">Copies the headings and a number of subsequent paragraphs in the active document to a new AutoAbstract text document. An AutoAbstract is useful for obtaining an overview of long documents.</ahelp> You can specify the number of outline levels as well as the number of paragraphs displayed therein. All levels and paragraphs under the respective settings are hidden. +<paragraph role="heading" id="hd_id3148570" xml-lang="en-US" level="1" l10n="U"><link href="text/swriter/01/01160300.xhp" name="Create AutoAbstract">Create AutoAbstract</link></paragraph> +<paragraph role="paragraph" id="par_id3149286" xml-lang="en-US" l10n="U"><variable id="autoabstracttext"><ahelp hid=".uno:CreateAbstract">Copies the headings and a number of subsequent paragraphs in the active document to a new AutoAbstract text document. An AutoAbstract is useful for obtaining an overview of long documents.</ahelp> You can specify the number of outline levels as well as the number of paragraphs displayed therein. All levels and paragraphs under the respective settings a [...] </variable></paragraph> <section id="howtoget"> <embed href="text/swriter/00/00000401.xhp#sendenautoabstract"/> </section> <bookmark xml-lang="en-US" branch="hid/sw:NumericField:DLG_INSERT_ABSTRACT:NF_LEVEL" id="bm_id3154106" localize="false"/> -<paragraph role="heading" id="hd_id3147516" xml-lang="en-US" level="2" l10n="U" oldref="3">Included Outline Levels</paragraph> -<paragraph role="paragraph" id="par_id3149804" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="SW:NUMERICFIELD:DLG_INSERT_ABSTRACT:NF_LEVEL">Enter the extent of the outline levels to be copied to the new document.</ahelp> For example, if you choose 4 levels, all paragraphs formatted with Heading 1 to Heading 4 are included, along with the number of subsequent paragraphs specified in <emph>Subpoints per Level</emph>.</paragraph> +<paragraph role="heading" id="hd_id3147516" xml-lang="en-US" level="2" l10n="U">Included Outline Levels</paragraph> +<paragraph role="paragraph" id="par_id3149804" xml-lang="en-US" l10n="U"><ahelp hid="SW:NUMERICFIELD:DLG_INSERT_ABSTRACT:NF_LEVEL">Enter the extent of the outline levels to be copied to the new document.</ahelp> For example, if you choose 4 levels, all paragraphs formatted with Heading 1 to Heading 4 are included, along with the number of subsequent paragraphs specified in <emph>Subpoints per Level</emph>.</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:NumericField:DLG_INSERT_ABSTRACT:NF_PARA" id="bm_id3154570" localize="false"/> -<paragraph role="heading" id="hd_id3151316" xml-lang="en-US" level="2" l10n="U" oldref="5">Subpoints per Level</paragraph> -<paragraph role="paragraph" id="par_id3155892" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="SW:NUMERICFIELD:DLG_INSERT_ABSTRACT:NF_PARA">Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading.</ahelp> All of the paragraphs up to the maximum defined are included until the next paragraph with a Heading Style is reached.</paragraph> +<paragraph role="heading" id="hd_id3151316" xml-lang="en-US" level="2" l10n="U">Subpoints per Level</paragraph> +<paragraph role="paragraph" id="par_id3155892" xml-lang="en-US" l10n="U"><ahelp hid="SW:NUMERICFIELD:DLG_INSERT_ABSTRACT:NF_PARA">Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading.</ahelp> All of the paragraphs up to the maximum defined are included until the next paragraph with a Heading Style is reached.</paragraph> </body> </helpdocument>