This is an automated email from the ASF dual-hosted git repository. mseidel pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push: new 0853c341d7 Remove 'oldref' entries (work in progress) 0853c341d7 is described below commit 0853c341d7fab14d25954b4c4e6d3acefef0abc4 Author: mseidel <msei...@apache.org> AuthorDate: Thu Jan 30 18:21:31 2025 +0100 Remove 'oldref' entries (work in progress) --- .../source/text/sbasic/shared/03090303.xhp | 60 +++++++++++----------- .../helpcontent2/source/text/scalc/00/00000406.xhp | 50 +++++++++--------- .../helpcontent2/source/text/scalc/01/12050200.xhp | 34 ++++++------ .../source/text/scalc/guide/print_landscape.xhp | 36 ++++++------- .../source/text/shared/01/01010303.xhp | 40 +++++++-------- .../source/text/shared/05/00000140.xhp | 30 +++++------ .../source/text/shared/autopi/01050300.xhp | 42 +++++++-------- .../text/shared/explorer/database/05030300.xhp | 42 +++++++-------- .../source/text/shared/guide/labels.xhp | 32 ++++++------ .../source/text/simpress/guide/orgchart.xhp | 42 +++++++-------- .../source/text/swriter/01/06080200.xhp | 42 +++++++-------- 11 files changed, 222 insertions(+), 228 deletions(-) diff --git a/main/helpcontent2/source/text/sbasic/shared/03090303.xhp b/main/helpcontent2/source/text/sbasic/shared/03090303.xhp index 77a48ff0fb..6645ac7701 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03090303.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03090303.xhp @@ -34,37 +34,35 @@ <bookmark_value>On...GoSub statement</bookmark_value> <bookmark_value>On...GoTo statement</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3153897" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03090303.xhp" name="On...GoSub Statement; On...GoTo Statement [Runtime]">On...GoSub Statement; On...GoTo Statement [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US" l10n="U" oldref="2">Branches to one of several specified lines in the program code, depending on the value of a numeric expression.</paragraph> +<paragraph role="heading" id="hd_id3153897" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03090303.xhp" name="On...GoSub Statement; On...GoTo Statement [Runtime]">On...GoSub Statement; On...GoTo Statement [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US" l10n="U">Branches to one of several specified lines in the program code, depending on the value of a numeric expression.</paragraph> </section> -<paragraph role="heading" id="hd_id3148798" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="paragraph" id="par_id3154366" xml-lang="en-US" l10n="U" oldref="4">On N GoSub Label1[, Label2[, Label3[,...]]]</paragraph> -<paragraph role="paragraph" id="par_id3150769" xml-lang="en-US" l10n="U" oldref="5">On NumExpression GoTo Label1[, Label2[, Label3[,...]]]</paragraph> -<paragraph role="heading" id="hd_id3156215" xml-lang="en-US" level="2" l10n="U" oldref="6">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3148673" xml-lang="en-US" l10n="U" oldref="7"> -<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)</paragraph> -<paragraph role="paragraph" id="par_id3153194" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Label:</emph> Target line according to <emph>GoTo</emph> or <emph>GoSub</emph> structure.</paragraph> -<paragraph role="note" id="par_id3156442" xml-lang="en-US" l10n="U" oldref="9">The <emph>GoTo</emph> or <emph>GoSub</emph> conventions are valid.</paragraph> -<paragraph role="heading" id="hd_id3148645" xml-lang="en-US" level="2" l10n="U" oldref="10">Example:</paragraph> -<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" l10n="U" oldref="12">Sub ExampleOnGosub</paragraph> -<paragraph role="paragraph" id="par_id3153158" xml-lang="en-US" l10n="U" oldref="13">Dim iVar As Integer</paragraph> -<paragraph role="paragraph" id="par_id3154490" xml-lang="en-US" l10n="U" oldref="14">Dim sVar As String</paragraph> -<paragraph role="paragraph" id="par_id3155417" xml-lang="en-US" l10n="U" oldref="15">iVar = 2</paragraph> -<paragraph role="paragraph" id="par_id3154730" xml-lang="en-US" l10n="U" oldref="16">sVar =""</paragraph> -<paragraph role="paragraph" id="par_id3154942" xml-lang="en-US" l10n="U" oldref="17">On iVar GoSub Sub1, Sub2</paragraph> -<paragraph role="paragraph" id="par_id3149378" xml-lang="en-US" l10n="U" oldref="18">On iVar GoTo Line1, Line2</paragraph> -<paragraph role="paragraph" id="par_id3153416" xml-lang="en-US" l10n="U" oldref="19">Exit Sub</paragraph> -<paragraph role="paragraph" id="par_id3154015" xml-lang="en-US" l10n="U" oldref="20">Sub1:</paragraph> -<paragraph role="paragraph" id="par_id3153948" xml-lang="en-US" l10n="U" oldref="21">sVar =sVar & " From Sub 1 to" : Return</paragraph> -<paragraph role="paragraph" id="par_id3150750" xml-lang="en-US" l10n="U" oldref="22">Sub2:</paragraph> -<paragraph role="paragraph" id="par_id3153708" xml-lang="en-US" l10n="U" oldref="23">sVar =sVar & " From Sub 2 to" : Return</paragraph> -<paragraph role="paragraph" id="par_id3155067" xml-lang="en-US" l10n="U" oldref="24">Line1:</paragraph> -<paragraph role="paragraph" id="par_id3150321" xml-lang="en-US" l10n="U" oldref="25">sVar =sVar & " Label 1" : GoTo Ende</paragraph> -<paragraph role="paragraph" id="par_id3149019" xml-lang="en-US" l10n="U" oldref="26">Line2:</paragraph> -<paragraph role="paragraph" id="par_id3155764" xml-lang="en-US" l10n="U" oldref="27">sVar =sVar & " Label 2"</paragraph> -<paragraph role="paragraph" id="par_id3153711" xml-lang="en-US" l10n="U" oldref="28">Ende:</paragraph> -<paragraph role="paragraph" id="par_id3154253" xml-lang="en-US" l10n="U" oldref="29">MsgBox sVar,0,"On...Gosub"</paragraph> -<paragraph role="paragraph" id="par_id3149565" xml-lang="en-US" l10n="U" oldref="30">End Sub</paragraph> +<paragraph role="heading" id="hd_id3148798" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="paragraph" id="par_id3154366" xml-lang="en-US" l10n="U">On N GoSub Label1[, Label2[, Label3[,...]]]</paragraph> +<paragraph role="paragraph" id="par_id3150769" xml-lang="en-US" l10n="U">On NumExpression GoTo Label1[, Label2[, Label3[,...]]]</paragraph> +<paragraph role="heading" id="hd_id3156215" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3148673" xml-lang="en-US" l10n="U"><emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)</paragraph> +<paragraph role="paragraph" id="par_id3153194" xml-lang="en-US" l10n="U"><emph>Label:</emph> Target line according to <emph>GoTo</emph> or <emph>GoSub</emph> structure.</paragraph> +<paragraph role="note" id="par_id3156442" xml-lang="en-US" l10n="U">The <emph>GoTo</emph> or <emph>GoSub</emph> conventions are valid.</paragraph> +<paragraph role="heading" id="hd_id3148645" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" l10n="U">Sub ExampleOnGosub</paragraph> +<paragraph role="paragraph" id="par_id3153158" xml-lang="en-US" l10n="U">Dim iVar As Integer</paragraph> +<paragraph role="paragraph" id="par_id3154490" xml-lang="en-US" l10n="U">Dim sVar As String</paragraph> +<paragraph role="paragraph" id="par_id3155417" xml-lang="en-US" l10n="U">iVar = 2</paragraph> +<paragraph role="paragraph" id="par_id3154730" xml-lang="en-US" l10n="U">sVar =""</paragraph> +<paragraph role="paragraph" id="par_id3154942" xml-lang="en-US" l10n="U">On iVar GoSub Sub1, Sub2</paragraph> +<paragraph role="paragraph" id="par_id3149378" xml-lang="en-US" l10n="U">On iVar GoTo Line1, Line2</paragraph> +<paragraph role="paragraph" id="par_id3153416" xml-lang="en-US" l10n="U">Exit Sub</paragraph> +<paragraph role="paragraph" id="par_id3154015" xml-lang="en-US" l10n="U">Sub1:</paragraph> +<paragraph role="paragraph" id="par_id3153948" xml-lang="en-US" l10n="U">sVar =sVar & " From Sub 1 to" : Return</paragraph> +<paragraph role="paragraph" id="par_id3150750" xml-lang="en-US" l10n="U">Sub2:</paragraph> +<paragraph role="paragraph" id="par_id3153708" xml-lang="en-US" l10n="U">sVar =sVar & " From Sub 2 to" : Return</paragraph> +<paragraph role="paragraph" id="par_id3155067" xml-lang="en-US" l10n="U">Line1:</paragraph> +<paragraph role="paragraph" id="par_id3150321" xml-lang="en-US" l10n="U">sVar =sVar & " Label 1" : GoTo Ende</paragraph> +<paragraph role="paragraph" id="par_id3149019" xml-lang="en-US" l10n="U">Line2:</paragraph> +<paragraph role="paragraph" id="par_id3155764" xml-lang="en-US" l10n="U">sVar =sVar & " Label 2"</paragraph> +<paragraph role="paragraph" id="par_id3153711" xml-lang="en-US" l10n="U">Ende:</paragraph> +<paragraph role="paragraph" id="par_id3154253" xml-lang="en-US" l10n="U">MsgBox sVar,0,"On...Gosub"</paragraph> +<paragraph role="paragraph" id="par_id3149565" xml-lang="en-US" l10n="U">End Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/00/00000406.xhp b/main/helpcontent2/source/text/scalc/00/00000406.xhp index 2555c6385d..3ad8e67eb0 100644 --- a/main/helpcontent2/source/text/scalc/00/00000406.xhp +++ b/main/helpcontent2/source/text/scalc/00/00000406.xhp @@ -29,61 +29,61 @@ </topic> </meta> <body> -<paragraph role="heading" id="hd_id3147264" xml-lang="en-US" level="1" l10n="U" oldref="1">Tools Menu</paragraph> -<paragraph role="paragraph" id="par_id3150541" xml-lang="en-US" l10n="U" oldref="2"><variable id="exdektv">Choose <emph>Tools - Detective</emph> +<paragraph role="heading" id="hd_id3147264" xml-lang="en-US" level="1" l10n="U">Tools Menu</paragraph> +<paragraph role="paragraph" id="par_id3150541" xml-lang="en-US" l10n="U"><variable id="exdektv">Choose <emph>Tools - Detective</emph> </variable></paragraph> <section id="exdszv"> -<paragraph role="paragraph" id="par_id3153194" xml-lang="en-US" l10n="U" oldref="3">Choose <emph>Tools - Detective - Trace Precedents</emph> +<paragraph role="paragraph" id="par_id3153194" xml-lang="en-US" l10n="U">Choose <emph>Tools - Detective - Trace Precedents</emph> </paragraph> -<paragraph role="paragraph" id="par_id3150447" xml-lang="en-US" l10n="U" oldref="29">Shift+F7</paragraph> +<paragraph role="paragraph" id="par_id3150447" xml-lang="en-US" l10n="U">Shift+F7</paragraph> </section> -<paragraph role="paragraph" id="par_id3154123" xml-lang="en-US" l10n="CHG" oldref="33"><variable id="silbentrennungc">Menu <emph>Tools - Language - Hyphenation</emph> +<paragraph role="paragraph" id="par_id3154123" xml-lang="en-US" l10n="CHG"><variable id="silbentrennungc">Menu <emph>Tools - Language - Hyphenation</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3145785" xml-lang="en-US" l10n="U" oldref="4"><variable id="exdvore">Choose <emph>Tools - Detective - Remove Precedents</emph> +<paragraph role="paragraph" id="par_id3145785" xml-lang="en-US" l10n="U"><variable id="exdvore">Choose <emph>Tools - Detective - Remove Precedents</emph> </variable></paragraph> <section id="exdsznf"> -<paragraph role="paragraph" id="par_id3155411" xml-lang="en-US" l10n="U" oldref="5">Choose <emph>Tools - Detective - Trace Dependents</emph> +<paragraph role="paragraph" id="par_id3155411" xml-lang="en-US" l10n="U">Choose <emph>Tools - Detective - Trace Dependents</emph> </paragraph> -<paragraph role="paragraph" id="par_id3153363" xml-lang="en-US" l10n="U" oldref="30">Shift+F5</paragraph> +<paragraph role="paragraph" id="par_id3153363" xml-lang="en-US" l10n="U">Shift+F5</paragraph> </section> -<paragraph role="paragraph" id="par_id3146984" xml-lang="en-US" l10n="U" oldref="6"><variable id="exdszne">Choose <emph>Tools - Detective - Remove Dependents</emph> +<paragraph role="paragraph" id="par_id3146984" xml-lang="en-US" l10n="U"><variable id="exdszne">Choose <emph>Tools - Detective - Remove Dependents</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" l10n="U" oldref="7"><variable id="exdase">Choose <emph>Tools - Detective - Remove All Traces</emph> +<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" l10n="U"><variable id="exdase">Choose <emph>Tools - Detective - Remove All Traces</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3153188" xml-lang="en-US" l10n="U" oldref="8"><variable id="exdszfe">Choose <emph>Tools - Detective - Trace Error</emph> +<paragraph role="paragraph" id="par_id3153188" xml-lang="en-US" l10n="U"><variable id="exdszfe">Choose <emph>Tools - Detective - Trace Error</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3149410" xml-lang="en-US" l10n="U" oldref="9"><variable id="fuellmodus">Choose <emph>Tools - Detective - Fill Mode</emph> +<paragraph role="paragraph" id="par_id3149410" xml-lang="en-US" l10n="U"><variable id="fuellmodus">Choose <emph>Tools - Detective - Fill Mode</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3156284" xml-lang="en-US" l10n="U" oldref="10"><variable id="dateneinkreisen">Choose <emph>Tools - Detective - Mark Invalid Data</emph> +<paragraph role="paragraph" id="par_id3156284" xml-lang="en-US" l10n="U"><variable id="dateneinkreisen">Choose <emph>Tools - Detective - Mark Invalid Data</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3153159" xml-lang="en-US" l10n="U" oldref="11"><variable id="spurenaktualisieren">Choose <emph>Tools - Detective - Refresh Traces</emph> +<paragraph role="paragraph" id="par_id3153159" xml-lang="en-US" l10n="U"><variable id="spurenaktualisieren">Choose <emph>Tools - Detective - Refresh Traces</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3147397" xml-lang="en-US" l10n="U" oldref="32"><variable id="automatisch">Choose <emph>Tools - Detective - AutoRefresh</emph> +<paragraph role="paragraph" id="par_id3147397" xml-lang="en-US" l10n="U"><variable id="automatisch">Choose <emph>Tools - Detective - AutoRefresh</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3154018" xml-lang="en-US" l10n="U" oldref="12"><variable id="exzws">Choose <emph>Tools - Goal Seek</emph> +<paragraph role="paragraph" id="par_id3154018" xml-lang="en-US" l10n="U"><variable id="exzws">Choose <emph>Tools - Goal Seek</emph> </variable></paragraph> <paragraph role="paragraph" id="par_id3269142" xml-lang="en-US" l10n="NEW"><variable id="solver">Choose Tools - Solver </variable></paragraph> <paragraph role="paragraph" id="par_id8554338" xml-lang="en-US" l10n="NEW"><variable id="solver_options">Choose Tools - Solver, Options button </variable></paragraph> -<paragraph role="paragraph" id="par_id3156277" xml-lang="en-US" l10n="U" oldref="13"><variable id="exsze">Choose <emph>Tools - Scenarios</emph> +<paragraph role="paragraph" id="par_id3156277" xml-lang="en-US" l10n="U"><variable id="exsze">Choose <emph>Tools - Scenarios</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3145640" xml-lang="en-US" l10n="U" oldref="14"><variable id="exdos">Choose <emph>Tools - Protect Document</emph> +<paragraph role="paragraph" id="par_id3145640" xml-lang="en-US" l10n="U"><variable id="exdos">Choose <emph>Tools - Protect Document</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3149020" xml-lang="en-US" l10n="U" oldref="15"><variable id="exdst">Choose <emph>Tools - Protect Document - Sheet</emph> +<paragraph role="paragraph" id="par_id3149020" xml-lang="en-US" l10n="U"><variable id="exdst">Choose <emph>Tools - Protect Document - Sheet</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3154256" xml-lang="en-US" l10n="U" oldref="16"><variable id="exdsd">Choose <emph>Tools - Protect Document - Document</emph> +<paragraph role="paragraph" id="par_id3154256" xml-lang="en-US" l10n="U"><variable id="exdsd">Choose <emph>Tools - Protect Document - Document</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3147363" xml-lang="en-US" l10n="U" oldref="17"><variable id="zellinhalte">Choose <emph>Tools - Cell Contents</emph> +<paragraph role="paragraph" id="par_id3147363" xml-lang="en-US" l10n="U"><variable id="zellinhalte">Choose <emph>Tools - Cell Contents</emph> </variable></paragraph> <section id="exnb"> -<paragraph role="paragraph" id="par_id3146919" xml-lang="en-US" l10n="U" oldref="18">Choose <emph>Tools - Cell Contents - Recalculate</emph> +<paragraph role="paragraph" id="par_id3146919" xml-lang="en-US" l10n="U">Choose <emph>Tools - Cell Contents - Recalculate</emph> </paragraph> -<paragraph role="paragraph" id="par_id3149257" xml-lang="en-US" l10n="U" oldref="31">F9</paragraph> +<paragraph role="paragraph" id="par_id3149257" xml-lang="en-US" l10n="U">F9</paragraph> </section> -<paragraph role="paragraph" id="par_id3150941" xml-lang="en-US" l10n="U" oldref="19"><variable id="exatmb">Choose <emph>Tools - Cell Contents - AutoCalculate</emph> +<paragraph role="paragraph" id="par_id3150941" xml-lang="en-US" l10n="U"><variable id="exatmb">Choose <emph>Tools - Cell Contents - AutoCalculate</emph> </variable></paragraph> -<paragraph role="paragraph" id="par_id3151276" xml-lang="en-US" l10n="U" oldref="20"><variable id="autoeingabe">Choose <emph>Tools - Cell Contents - AutoInput</emph> +<paragraph role="paragraph" id="par_id3151276" xml-lang="en-US" l10n="U"><variable id="autoeingabe">Choose <emph>Tools - Cell Contents - AutoInput</emph> </variable></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/01/12050200.xhp b/main/helpcontent2/source/text/scalc/01/12050200.xhp index 22252d1d32..ce39fbf290 100644 --- a/main/helpcontent2/source/text/scalc/01/12050200.xhp +++ b/main/helpcontent2/source/text/scalc/01/12050200.xhp @@ -34,34 +34,34 @@ <bookmark_value>subtotals; sorting options</bookmark_value> </bookmark> <bookmark xml-lang="en-US" branch="hid/SC_HID_SCPAGE_SUBT_OPTIONS" id="bm_id3150543" localize="false"/> -<paragraph role="heading" id="hd_id3154758" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/scalc/01/12050200.xhp" name="Options">Options</link></paragraph> -<paragraph role="paragraph" id="par_id3154124" xml-lang="en-US" l10n="U" oldref="2"><ahelp hid="HID_SCPAGE_SUBT_OPTIONS">Specify the settings for calculating and presenting subtotals.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154758" xml-lang="en-US" level="1" l10n="U"><link href="text/scalc/01/12050200.xhp" name="Options">Options</link></paragraph> +<paragraph role="paragraph" id="par_id3154124" xml-lang="en-US" l10n="U"><ahelp hid="HID_SCPAGE_SUBT_OPTIONS">Specify the settings for calculating and presenting subtotals.</ahelp></paragraph> </section> <section id="howtoget"> <embed href="text/scalc/00/00000412.xhp#dntopi"/> </section> <bookmark xml-lang="en-US" branch="hid/sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK" id="bm_id3155131" localize="false"/> -<paragraph role="heading" id="hd_id3156422" xml-lang="en-US" level="2" l10n="U" oldref="3">Page break between groups</paragraph> -<paragraph role="paragraph" id="par_id3147317" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK">Inserts a new page after each group of subtotaled data.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3156422" xml-lang="en-US" level="2" l10n="U">Page break between groups</paragraph> +<paragraph role="paragraph" id="par_id3147317" xml-lang="en-US" l10n="U"><ahelp hid="SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK">Inserts a new page after each group of subtotaled data.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE" id="bm_id3151115" localize="false"/> -<paragraph role="heading" id="hd_id3146985" xml-lang="en-US" level="2" l10n="U" oldref="5">Case sensitive</paragraph> -<paragraph role="paragraph" id="par_id3153190" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE">Recalculates subtotals when you change the case of a data label.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3146985" xml-lang="en-US" level="2" l10n="U">Case sensitive</paragraph> +<paragraph role="paragraph" id="par_id3153190" xml-lang="en-US" l10n="U"><ahelp hid="SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE">Recalculates subtotals when you change the case of a data label.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT" id="bm_id3152596" localize="false"/> -<paragraph role="heading" id="hd_id3151119" xml-lang="en-US" level="2" l10n="U" oldref="7">Pre-sort area according to groups</paragraph> -<paragraph role="paragraph" id="par_id3149664" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3153951" xml-lang="en-US" level="2" l10n="U" oldref="9">Sort</paragraph> +<paragraph role="heading" id="hd_id3151119" xml-lang="en-US" level="2" l10n="U">Pre-sort area according to groups</paragraph> +<paragraph role="paragraph" id="par_id3149664" xml-lang="en-US" l10n="U"><ahelp hid="SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153951" xml-lang="en-US" level="2" l10n="U">Sort</paragraph> <bookmark xml-lang="en-US" branch="hid/sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS" id="bm_id3147397" localize="false"/> -<paragraph role="heading" id="hd_id3145252" xml-lang="en-US" level="3" l10n="U" oldref="11">Include formats</paragraph> -<paragraph role="paragraph" id="par_id3147125" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS">Considers formatting attributes when sorting.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3145252" xml-lang="en-US" level="3" l10n="U">Include formats</paragraph> +<paragraph role="paragraph" id="par_id3147125" xml-lang="en-US" l10n="U"><ahelp hid="SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS">Considers formatting attributes when sorting.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_USERDEF" id="bm_id3154729" localize="false"/> <bookmark xml-lang="en-US" branch="hid/sc:ListBox:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF" id="bm_id3153877" localize="false"/> -<paragraph role="heading" id="hd_id3155418" xml-lang="en-US" level="3" l10n="U" oldref="13">Custom sort order</paragraph> -<paragraph role="paragraph" id="par_id3149400" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155418" xml-lang="en-US" level="3" l10n="U">Custom sort order</paragraph> +<paragraph role="paragraph" id="par_id3149400" xml-lang="en-US" l10n="U"><ahelp hid="SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sc:RadioButton:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING" id="bm_id3150327" localize="false"/> -<paragraph role="heading" id="hd_id3149121" xml-lang="en-US" level="3" l10n="U" oldref="15">Ascending</paragraph> -<paragraph role="paragraph" id="par_id3155068" xml-lang="en-US" l10n="CHG" oldref="16"><ahelp hid="SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages.</paragraph> +<paragraph role="heading" id="hd_id3149121" xml-lang="en-US" level="3" l10n="U">Ascending</paragraph> +<paragraph role="paragraph" id="par_id3155068" xml-lang="en-US" l10n="CHG"><ahelp hid="SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages.</paragraph> <bookmark xml-lang="en-US" branch="hid/sc:RadioButton:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING" id="bm_id3150324" localize="false"/> -<paragraph role="heading" id="hd_id3155443" xml-lang="en-US" level="3" l10n="U" oldref="17">Descending</paragraph> -<paragraph role="paragraph" id="par_id3153766" xml-lang="en-US" l10n="CHG" oldref="18"><ahelp hid="SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages.</paragraph> +<paragraph role="heading" id="hd_id3155443" xml-lang="en-US" level="3" l10n="U">Descending</paragraph> +<paragraph role="paragraph" id="par_id3153766" xml-lang="en-US" l10n="CHG"><ahelp hid="SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/guide/print_landscape.xhp b/main/helpcontent2/source/text/scalc/guide/print_landscape.xhp index 1da0ce5cad..1e7e0335dc 100644 --- a/main/helpcontent2/source/text/scalc/guide/print_landscape.xhp +++ b/main/helpcontent2/source/text/scalc/guide/print_landscape.xhp @@ -35,46 +35,42 @@ <bookmark_value>printing; landscape</bookmark_value> <bookmark_value>landscape printing</bookmark_value> </bookmark><comment>mw corrected a typo in "printing; sheet..."</comment> -<paragraph xml-lang="en-US" id="hd_id3153418" role="heading" level="1" l10n="U" oldref="1"><variable id="print_landscape"><link href="text/scalc/guide/print_landscape.xhp" name="Printing Sheets in Landscape Format">Printing Sheets in Landscape Format</link> +<paragraph xml-lang="en-US" id="hd_id3153418" role="heading" level="1" l10n="U"><variable id="print_landscape"><link href="text/scalc/guide/print_landscape.xhp" name="Printing Sheets in Landscape Format">Printing Sheets in Landscape Format</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3149257" role="paragraph" l10n="U" oldref="2">In order to print a sheet you have a number of interactive options available under <emph>View - Page Break Preview</emph>. Drag the delimiter lines to define the range of printed cells on each page.</paragraph> -<paragraph xml-lang="en-US" id="par_id3153963" role="paragraph" l10n="U" oldref="15">To print in landscape format, proceed as follows:</paragraph> +<paragraph xml-lang="en-US" id="par_id3149257" role="paragraph" l10n="U">In order to print a sheet you have a number of interactive options available under <emph>View - Page Break Preview</emph>. Drag the delimiter lines to define the range of printed cells on each page.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153963" role="paragraph" l10n="U">To print in landscape format, proceed as follows:</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3154020" role="listitem" l10n="U" oldref="3">Go to the sheet to be printed.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154020" role="listitem" l10n="U">Go to the sheet to be printed.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150786" role="listitem" l10n="U" oldref="4">Choose <emph>Format - Page</emph>.</paragraph> -<paragraph xml-lang="en-US" id="par_id3150089" role="listitem" l10n="U" oldref="5">The command is not visible if the sheet has been opened with write protection on. In that case, click the <emph>Edit File</emph> icon on the <emph>Standard</emph> bar.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150786" role="listitem" l10n="U">Choose <emph>Format - Page</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150089" role="listitem" l10n="U">The command is not visible if the sheet has been opened with write protection on. In that case, click the <emph>Edit File</emph> icon on the <emph>Standard</emph> bar.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3166430" role="listitem" l10n="U" oldref="6">Select the <emph>Page</emph> tab. Select the <emph>Landscape</emph> paper format and click OK.</paragraph> +<paragraph xml-lang="en-US" id="par_id3166430" role="listitem" l10n="U">Select the <emph>Page</emph> tab. Select the <emph>Landscape</emph> paper format and click OK.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150885" role="listitem" l10n="U" oldref="7">Choose <emph>File - Print</emph>. You will see the <emph>Print</emph> dialog.</paragraph> -<paragraph xml-lang="en-US" id="par_id3156288" role="listitem" l10n="U" oldref="8">Depending on the printer driver and the operating system, it may be necessary to click the <emph>Properties</emph> button and to change your printer to landscape format there.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150885" role="listitem" l10n="U">Choose <emph>File - Print</emph>. You will see the <emph>Print</emph> dialog.</paragraph> +<paragraph xml-lang="en-US" id="par_id3156288" role="listitem" l10n="U">Depending on the printer driver and the operating system, it may be necessary to click the <emph>Properties</emph> button and to change your printer to landscape format there.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149404" role="listitem" l10n="CHG" oldref="9">In the <emph>Print</emph> dialog in the <emph>General</emph> tab page, select the contents to be printed:</paragraph> -<paragraph xml-lang="en-US" id="par_id3153305" role="listitem" l10n="CHG" oldref="10"> -<emph>All sheets</emph> - All sheets will be printed.</paragraph> -<paragraph xml-lang="en-US" id="par_id3148871" role="listitem" l10n="CHG" oldref="12"> -<emph>Selected sheets</emph> - Only the selected sheets will be printed. All sheets whose names (at the bottom on the sheet tabs) are selected will be printed. By pressing <switchinline select="sys"><caseinline select="MAC">Command +<paragraph xml-lang="en-US" id="par_id3149404" role="listitem" l10n="CHG">In the <emph>Print</emph> dialog in the <emph>General</emph> tab page, select the contents to be printed:</paragraph> +<paragraph xml-lang="en-US" id="par_id3153305" role="listitem" l10n="CHG"><emph>All sheets</emph> - All sheets will be printed.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148871" role="listitem" l10n="CHG"><emph>Selected sheets</emph> - Only the selected sheets will be printed. All sheets whose names (at the bottom on the sheet tabs) are selected will be printed. By pressing <switchinline select="sys"><caseinline select="MAC">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> while clicking a sheet name you can change this selection.</paragraph> -<paragraph xml-lang="en-US" id="par_id3764763" role="listitem" l10n="NEW"> -<emph>Selected cells</emph> - All selected cells are printed.</paragraph> +<paragraph xml-lang="en-US" id="par_id3764763" role="listitem" l10n="NEW"><emph>Selected cells</emph> - All selected cells are printed.</paragraph> </listitem> <listitem> <paragraph xml-lang="en-US" id="par_id5538804" role="listitem" l10n="NEW">From all the paper pages that result from the above selection, you can select the range of paper pages to be printed:</paragraph> <paragraph xml-lang="en-US" id="par_id14343" role="listitem" l10n="NEW"> <emph>All pages</emph> - Print all resulting pages.</paragraph> -<paragraph xml-lang="en-US" id="par_id3148699" role="listitem" l10n="U" oldref="11"> -<emph>Pages</emph> - Enter the pages to be printed. The pages will also be numbered from the first sheet onwards. If you see in the Page Break Preview that Sheet1 will be printed on 4 pages and you want to print the first two pages of Sheet2, enter 5-6 here.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148699" role="listitem" l10n="U"><emph>Pages</emph> - Enter the pages to be printed. The pages will also be numbered from the first sheet onwards. If you see in the Page Break Preview that Sheet1 will be printed on 4 pages and you want to print the first two pages of Sheet2, enter 5-6 here.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="par_id3145076" role="paragraph" l10n="U" oldref="13">If under <emph>Format - Print ranges</emph> you have defined one or more print ranges, only the contents of these print ranges will be printed.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145076" role="paragraph" l10n="U">If under <emph>Format - Print ranges</emph> you have defined one or more print ranges, only the contents of these print ranges will be printed.</paragraph> <section id="relatedtopics"> -<paragraph xml-lang="en-US" id="par_id3156019" role="paragraph" l10n="U" oldref="14"><link href="text/scalc/01/03100000.xhp" name="View - Page Break Preview">View - Page Break Preview</link></paragraph> +<paragraph xml-lang="en-US" id="par_id3156019" role="paragraph" l10n="U"><link href="text/scalc/01/03100000.xhp" name="View - Page Break Preview">View - Page Break Preview</link></paragraph> <paragraph xml-lang="en-US" id="par_id8254646" role="paragraph" l10n="NEW"><link href="text/scalc/guide/printranges.xhp">Defining Print Ranges on a Sheet</link></paragraph> <embed href="text/scalc/guide/print_exact.xhp#print_exact"/> </section> diff --git a/main/helpcontent2/source/text/shared/01/01010303.xhp b/main/helpcontent2/source/text/shared/01/01010303.xhp index e1d6dc265e..a67f264aca 100644 --- a/main/helpcontent2/source/text/shared/01/01010303.xhp +++ b/main/helpcontent2/source/text/shared/01/01010303.xhp @@ -30,41 +30,41 @@ </meta> <body> <section id="privat"> -<paragraph role="heading" id="hd_id3149031" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/01/01010303.xhp" name="Private">Private</link></paragraph> -<paragraph role="paragraph" id="par_id3148731" xml-lang="en-US" l10n="CHG" oldref="2"><ahelp hid=".">Contains personal contact information for business cards. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp></paragraph><comment>removed switched note about autotext not supplied with OOo</comment></section> +<paragraph role="heading" id="hd_id3149031" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/01/01010303.xhp" name="Private">Private</link></paragraph> +<paragraph role="paragraph" id="par_id3148731" xml-lang="en-US" l10n="CHG"><ahelp hid=".">Contains personal contact information for business cards. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp></paragraph><comment>removed switched note about autotext not supplied with OOo</comment></section> <section id="howtoget"> <embed href="text/shared/00/00000401.xhp#viskartpriv"/> </section> -<paragraph role="heading" id="hd_id3159201" xml-lang="en-US" level="2" l10n="U" oldref="3">Private data</paragraph> -<paragraph role="paragraph" id="par_id3147399" xml-lang="en-US" l10n="U" oldref="4">Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>.</paragraph> +<paragraph role="heading" id="hd_id3159201" xml-lang="en-US" level="2" l10n="U">Private data</paragraph> +<paragraph role="paragraph" id="par_id3147399" xml-lang="en-US" l10n="U">Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>.</paragraph> <embed href="text/shared/optionen/01010100.xhp#datena"/> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_PRIVATE_DATA:ED_FIRSTNAME_2" id="bm_id3145314" localize="false"/> -<paragraph role="heading" id="hd_id3156427" xml-lang="en-US" level="3" l10n="U" oldref="15">First name 2</paragraph> -<paragraph role="paragraph" id="par_id3149750" xml-lang="en-US" l10n="U" oldref="16"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_FIRSTNAME_2">Enter the first name of the person, whom you want to use as a second contact.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3156427" xml-lang="en-US" level="3" l10n="U">First name 2</paragraph> +<paragraph role="paragraph" id="par_id3149750" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_FIRSTNAME_2">Enter the first name of the person, whom you want to use as a second contact.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_PRIVATE_DATA:ED_NAME_2" id="bm_id3155941" localize="false"/> -<paragraph role="heading" id="hd_id3145345" xml-lang="en-US" level="3" l10n="U" oldref="17">Last name 2</paragraph> -<paragraph role="paragraph" id="par_id3154288" xml-lang="en-US" l10n="U" oldref="18"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_NAME_2">Enter the last name of the person, whom you want to use as a second contact.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3145345" xml-lang="en-US" level="3" l10n="U">Last name 2</paragraph> +<paragraph role="paragraph" id="par_id3154288" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_NAME_2">Enter the last name of the person, whom you want to use as a second contact.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_PRIVATE_DATA:ED_SHORTCUT_2" id="bm_id3153663" localize="false"/> -<paragraph role="heading" id="hd_id3150774" xml-lang="en-US" level="3" l10n="U" oldref="19">Initials 2</paragraph> -<paragraph role="paragraph" id="par_id3151110" xml-lang="en-US" l10n="U" oldref="20"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_SHORTCUT_2">Enter the initials of the person, whom you want to use as a second contact.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150774" xml-lang="en-US" level="3" l10n="U">Initials 2</paragraph> +<paragraph role="paragraph" id="par_id3151110" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_SHORTCUT_2">Enter the initials of the person, whom you want to use as a second contact.</ahelp></paragraph> <embed href="text/shared/optionen/01010100.xhp#strplzort"/> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_PRIVATE_DATA:ED_STATE" id="bm_id3149955" localize="false"/> -<paragraph role="heading" id="hd_id3153543" xml-lang="en-US" level="3" l10n="U" oldref="5">Country</paragraph> -<paragraph role="paragraph" id="par_id3150085" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_STATE">Enter the name of the country in which you live.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153543" xml-lang="en-US" level="3" l10n="U">Country</paragraph> +<paragraph role="paragraph" id="par_id3150085" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_STATE">Enter the name of the country in which you live.</ahelp></paragraph> <embed href="text/shared/optionen/01010100.xhp#datenb"/> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_PRIVATE_DATA:ED_PROFESSION" id="bm_id3155504" localize="false"/> -<paragraph role="heading" id="hd_id3155449" xml-lang="en-US" level="3" l10n="U" oldref="7">Profession</paragraph> -<paragraph role="paragraph" id="par_id3156192" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_PROFESSION">Enter the title of your profession.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155449" xml-lang="en-US" level="3" l10n="U">Profession</paragraph> +<paragraph role="paragraph" id="par_id3156192" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_PROFESSION">Enter the title of your profession.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_PRIVATE_DATA:ED_PHONE" id="bm_id3148491" localize="false"/> -<paragraph role="heading" id="hd_id3147336" xml-lang="en-US" level="3" l10n="U" oldref="9">Phone</paragraph> -<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" l10n="U" oldref="10"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_PHONE">Enter your home telephone number.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147336" xml-lang="en-US" level="3" l10n="U">Phone</paragraph> +<paragraph role="paragraph" id="par_id3145315" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_PHONE">Enter your home telephone number.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_PRIVATE_DATA:ED_MOBILE" id="bm_id3152349" localize="false"/> -<paragraph role="heading" id="hd_id3149763" xml-lang="en-US" level="3" l10n="U" oldref="11">Mobile</paragraph> -<paragraph role="paragraph" id="par_id3156155" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_MOBILE">Enter your mobile telephone number.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149763" xml-lang="en-US" level="3" l10n="U">Mobile</paragraph> +<paragraph role="paragraph" id="par_id3156155" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_MOBILE">Enter your mobile telephone number.</ahelp></paragraph> <embed href="text/shared/optionen/01010100.xhp#datend"/> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_PRIVATE_DATA:ED_WWW" id="bm_id3155261" localize="false"/> -<paragraph role="heading" id="hd_id3154306" xml-lang="en-US" level="3" l10n="U" oldref="13">Homepage</paragraph> -<paragraph role="paragraph" id="par_id3153666" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_WWW">Enter the address of your internet homepage.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154306" xml-lang="en-US" level="3" l10n="U">Homepage</paragraph> +<paragraph role="paragraph" id="par_id3153666" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_PRIVATE_DATA:ED_WWW">Enter the address of your internet homepage.</ahelp></paragraph> <embed href="text/shared/optionen/01010100.xhp#datene"/> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/05/00000140.xhp b/main/helpcontent2/source/text/shared/05/00000140.xhp index a607c1c954..f45f77534d 100644 --- a/main/helpcontent2/source/text/shared/05/00000140.xhp +++ b/main/helpcontent2/source/text/shared/05/00000140.xhp @@ -34,28 +34,28 @@ <bookmark_value>Help; full-text search</bookmark_value> <bookmark_value>full-text search in Help</bookmark_value> </bookmark> -<paragraph role="paragraph" id="par_id3148532" xml-lang="en-US" l10n="E" oldref="1" localize="false"/> -<paragraph role="heading" id="hd_id3148523" xml-lang="en-US" level="1" l10n="U" oldref="7"><variable id="00000140"><link href="text/shared/05/00000140.xhp" name="Find - The Full-Text Search">Find - The Full-Text Search</link> +<paragraph role="paragraph" id="par_id3148532" xml-lang="en-US" l10n="E" localize="false"/> +<paragraph role="heading" id="hd_id3148523" xml-lang="en-US" level="1" l10n="U"><variable id="00000140"><link href="text/shared/05/00000140.xhp" name="Find - The Full-Text Search">Find - The Full-Text Search</link> </variable></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:ComboBox:TP_HELP_SEARCH:ED_SEARCH" id="bm_id3151100" localize="false"/> -<paragraph role="paragraph" id="par_id3155599" xml-lang="en-US" l10n="U" oldref="2"><ahelp hid="SFX2_COMBOBOX_TP_HELP_SEARCH_ED_SEARCH" visibility="hidden">Enter the search term here. The search is not case-sensitive.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3155599" xml-lang="en-US" l10n="U"><ahelp hid="SFX2_COMBOBOX_TP_HELP_SEARCH_ED_SEARCH" visibility="hidden">Enter the search term here. The search is not case-sensitive.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:PushButton:TP_HELP_SEARCH:PB_SEARCH" id="bm_id3109850" localize="false"/> -<paragraph role="paragraph" id="par_id3153323" xml-lang="en-US" l10n="U" oldref="3"><ahelp hid="SFX2_PUSHBUTTON_TP_HELP_SEARCH_PB_SEARCH" visibility="hidden">Click to start a full-text search for the term you entered.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3153323" xml-lang="en-US" l10n="U"><ahelp hid="SFX2_PUSHBUTTON_TP_HELP_SEARCH_PB_SEARCH" visibility="hidden">Click to start a full-text search for the term you entered.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:ListBox:TP_HELP_SEARCH:LB_RESULT" id="bm_id3149140" localize="false"/> -<paragraph role="paragraph" id="par_id3150499" xml-lang="en-US" l10n="CHG" oldref="4"><ahelp hid="SFX2_LISTBOX_TP_HELP_SEARCH_LB_RESULT" visibility="hidden">Lists the headings of the pages found in your full-text search. To display a page, double-click its entry.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3150499" xml-lang="en-US" l10n="CHG"><ahelp hid="SFX2_LISTBOX_TP_HELP_SEARCH_LB_RESULT" visibility="hidden">Lists the headings of the pages found in your full-text search. To display a page, double-click its entry.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:CheckBox:TP_HELP_SEARCH:CB_FULLWORDS" id="bm_id3154673" localize="false"/> -<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="SFX2_CHECKBOX_TP_HELP_SEARCH_CB_FULLWORDS" visibility="hidden">Specifies whether to carry out an exact search for the word you entered. Incomplete words will not be found.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" l10n="U"><ahelp hid="SFX2_CHECKBOX_TP_HELP_SEARCH_CB_FULLWORDS" visibility="hidden">Specifies whether to carry out an exact search for the word you entered. Incomplete words will not be found.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:CheckBox:TP_HELP_SEARCH:CB_SCOPE" id="bm_id3147835" localize="false"/> -<paragraph role="paragraph" id="par_id3155552" xml-lang="en-US" l10n="U" oldref="5"><ahelp hid="SFX2_CHECKBOX_TP_HELP_SEARCH_CB_SCOPE" visibility="hidden">Specifies whether to only search in document headings for the search term.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3155552" xml-lang="en-US" l10n="U"><ahelp hid="SFX2_CHECKBOX_TP_HELP_SEARCH_CB_SCOPE" visibility="hidden">Specifies whether to only search in document headings for the search term.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:PushButton:TP_HELP_SEARCH:PB_OPEN_SEARCH" id="bm_id3145346" localize="false"/> -<paragraph role="paragraph" id="par_id3155555" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="SFX2_PUSHBUTTON_TP_HELP_SEARCH_PB_OPEN_SEARCH" visibility="hidden">Displays the entry selected in the list.</ahelp></paragraph> -<paragraph role="paragraph" id="par_id3152552" xml-lang="en-US" l10n="U" oldref="8">The full text search function in $[officename] Help allows you to find Help documents that contain any combination of search terms. To do this, type one or more words into the <emph>Search term</emph> text field.</paragraph> -<paragraph role="paragraph" id="par_id3153345" xml-lang="en-US" l10n="U" oldref="9">The <emph>Search term</emph> text field stores the words you entered last. To repeat a previous search, click the arrow icon and select the term from the list.</paragraph> -<paragraph role="paragraph" id="par_id3155941" xml-lang="en-US" l10n="CHG" oldref="10">After the search has been carried out, the document headings of the results appear in a list. Either double-click an entry, or select it and click <emph>Display</emph> to load the corresponding Help document.</paragraph> -<paragraph role="paragraph" id="par_id3157958" xml-lang="en-US" l10n="U" oldref="11">Use the check box <emph>Find in headings only</emph> to limit the search to document headings.</paragraph> -<paragraph role="paragraph" id="par_id3147210" xml-lang="en-US" l10n="U" oldref="15">The <emph>Complete words only</emph> check box allows you to perform an exact search. If this box is marked, incomplete words will not be found. Do not mark this check box if the search term you enter should also be found as part of a longer word.</paragraph> -<paragraph role="paragraph" id="par_id3146798" xml-lang="en-US" l10n="U" oldref="12">You can enter any combination of search terms, separated by spaces. Searching is not case-sensitive.</paragraph> -<paragraph role="tip" id="par_id3149732" xml-lang="en-US" l10n="CHG" oldref="13">The index and full-text searches always apply to the currently selected %PRODUCTNAME application. Select the appropriate application using the list box on the help viewer's toolbar.</paragraph> +<paragraph role="paragraph" id="par_id3155555" xml-lang="en-US" l10n="U"><ahelp hid="SFX2_PUSHBUTTON_TP_HELP_SEARCH_PB_OPEN_SEARCH" visibility="hidden">Displays the entry selected in the list.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3152552" xml-lang="en-US" l10n="U">The full text search function in $[officename] Help allows you to find Help documents that contain any combination of search terms. To do this, type one or more words into the <emph>Search term</emph> text field.</paragraph> +<paragraph role="paragraph" id="par_id3153345" xml-lang="en-US" l10n="U">The <emph>Search term</emph> text field stores the words you entered last. To repeat a previous search, click the arrow icon and select the term from the list.</paragraph> +<paragraph role="paragraph" id="par_id3155941" xml-lang="en-US" l10n="CHG">After the search has been carried out, the document headings of the results appear in a list. Either double-click an entry, or select it and click <emph>Display</emph> to load the corresponding Help document.</paragraph> +<paragraph role="paragraph" id="par_id3157958" xml-lang="en-US" l10n="U">Use the check box <emph>Find in headings only</emph> to limit the search to document headings.</paragraph> +<paragraph role="paragraph" id="par_id3147210" xml-lang="en-US" l10n="U">The <emph>Complete words only</emph> check box allows you to perform an exact search. If this box is marked, incomplete words will not be found. Do not mark this check box if the search term you enter should also be found as part of a longer word.</paragraph> +<paragraph role="paragraph" id="par_id3146798" xml-lang="en-US" l10n="U">You can enter any combination of search terms, separated by spaces. Searching is not case-sensitive.</paragraph> +<paragraph role="tip" id="par_id3149732" xml-lang="en-US" l10n="CHG">The index and full-text searches always apply to the currently selected %PRODUCTNAME 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/00000160.xhp#doc_title"/> diff --git a/main/helpcontent2/source/text/shared/autopi/01050300.xhp b/main/helpcontent2/source/text/shared/autopi/01050300.xhp index b4ba1ea284..14df041af7 100644 --- a/main/helpcontent2/source/text/shared/autopi/01050300.xhp +++ b/main/helpcontent2/source/text/shared/autopi/01050300.xhp @@ -31,21 +31,21 @@ <body> <section id="autopilotseite3"> <bookmark xml-lang="en-US" branch="hid/SD_HID_SD_AUTOPILOT_PAGE3" id="bm_id3150445" localize="false"/> -<paragraph role="heading" id="hd_id3153323" xml-lang="en-US" level="1" l10n="U" oldref="21"><link href="text/shared/autopi/01050300.xhp" name="Presentation Wizard Page 3">Presentation Wizard Page 3</link></paragraph> +<paragraph role="heading" id="hd_id3153323" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/autopi/01050300.xhp" name="Presentation Wizard Page 3">Presentation Wizard Page 3</link></paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00000401.xhp#dtapsd"/> </section> -<paragraph role="heading" id="hd_id3159201" xml-lang="en-US" level="2" l10n="U" oldref="2">Select a slide transition</paragraph> -<paragraph role="paragraph" id="par_id3145669" xml-lang="en-US" l10n="U" oldref="3"><ahelp hid="HID_SD_AUTOPILOT_PAGE3">Assigns special effects to your presentation and determines its speed.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3159201" xml-lang="en-US" level="2" l10n="U">Select a slide transition</paragraph> +<paragraph role="paragraph" id="par_id3145669" xml-lang="en-US" l10n="U"><ahelp hid="HID_SD_AUTOPILOT_PAGE3">Assigns special effects to your presentation and determines its speed.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sd:ListBox:DLG_ASS:LB_PAGE3_EFFECT" id="bm_id3155535" localize="false"/> -<paragraph role="heading" id="hd_id3147088" xml-lang="en-US" level="3" l10n="U" oldref="4">Effect</paragraph> -<paragraph role="paragraph" id="par_id3153683" xml-lang="en-US" l10n="U" oldref="5"><ahelp hid="SD:LISTBOX:DLG_ASS:LB_PAGE3_EFFECT">Specifies an effect for your presentation.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147088" xml-lang="en-US" level="3" l10n="U">Effect</paragraph> +<paragraph role="paragraph" id="par_id3153683" xml-lang="en-US" l10n="U"><ahelp hid="SD:LISTBOX:DLG_ASS:LB_PAGE3_EFFECT">Specifies an effect for your presentation.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sd:ListBox:DLG_ASS:LB_PAGE3_SPEED" id="bm_id3155892" localize="false"/> -<paragraph role="heading" id="hd_id3153346" xml-lang="en-US" level="3" l10n="U" oldref="6">Speed</paragraph> -<paragraph role="paragraph" id="par_id3153311" xml-lang="en-US" l10n="U" oldref="7"><ahelp hid="SD:LISTBOX:DLG_ASS:LB_PAGE3_SPEED">Determines the effect speed.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3147275" xml-lang="en-US" level="2" l10n="U" oldref="8">Select the presentation type</paragraph> -<paragraph role="paragraph" id="par_id3153662" xml-lang="en-US" l10n="U" oldref="9">Determines the timing for the presentation.</paragraph> +<paragraph role="heading" id="hd_id3153346" xml-lang="en-US" level="3" l10n="U">Speed</paragraph> +<paragraph role="paragraph" id="par_id3153311" xml-lang="en-US" l10n="U"><ahelp hid="SD:LISTBOX:DLG_ASS:LB_PAGE3_SPEED">Determines the effect speed.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147275" xml-lang="en-US" level="2" l10n="U">Select the presentation type</paragraph> +<paragraph role="paragraph" id="par_id3153662" xml-lang="en-US" l10n="U">Determines the timing for the presentation.</paragraph> <switch select="appl"> <case select="WRITER"> </case> @@ -56,24 +56,24 @@ <case select="MATH"> </case> <default> -<paragraph role="paragraph" id="par_id3150984" xml-lang="en-US" l10n="U" oldref="22">You can change the settings later under the menu <link href="text/simpress/main0114.xhp" name="Presentation">Presentation</link>.</paragraph> +<paragraph role="paragraph" id="par_id3150984" xml-lang="en-US" l10n="U">You can change the settings later under the menu <link href="text/simpress/main0114.xhp" name="Presentation">Presentation</link>.</paragraph> </default> </switch> <bookmark xml-lang="en-US" branch="hid/sd:RadioButton:DLG_ASS:RB_PAGE3_LIVE" id="bm_id3155136" localize="false"/> -<paragraph role="heading" id="hd_id3149784" xml-lang="en-US" level="3" l10n="U" oldref="10">Default</paragraph> -<paragraph role="paragraph" id="par_id3150503" xml-lang="en-US" l10n="U" oldref="11"><ahelp hid="SD:RADIOBUTTON:DLG_ASS:RB_PAGE3_LIVE">The <emph>Default</emph> option runs the presentation as a full screen presentation with the specified speed.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149784" xml-lang="en-US" level="3" l10n="U">Default</paragraph> +<paragraph role="paragraph" id="par_id3150503" xml-lang="en-US" l10n="U"><ahelp hid="SD:RADIOBUTTON:DLG_ASS:RB_PAGE3_LIVE">The <emph>Default</emph> option runs the presentation as a full screen presentation with the specified speed.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sd:RadioButton:DLG_ASS:RB_PAGE3_KIOSK" id="bm_id3156153" localize="false"/> -<paragraph role="heading" id="hd_id3154047" xml-lang="en-US" level="3" l10n="U" oldref="12">Automatic</paragraph> -<paragraph role="paragraph" id="par_id3149578" xml-lang="en-US" l10n="CHG" oldref="13"><ahelp hid="SD:RADIOBUTTON:DLG_ASS:RB_PAGE3_KIOSK">Runs the presentation automatically, and restarts it again after a break.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154047" xml-lang="en-US" level="3" l10n="U">Automatic</paragraph> +<paragraph role="paragraph" id="par_id3149578" xml-lang="en-US" l10n="CHG"><ahelp hid="SD:RADIOBUTTON:DLG_ASS:RB_PAGE3_KIOSK">Runs the presentation automatically, and restarts it again after a break.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sd:TimeField:DLG_ASS:TMF_PAGE3_TIME" id="bm_id3155434" localize="false"/> -<paragraph role="heading" id="hd_id3150085" xml-lang="en-US" level="3" l10n="U" oldref="14">Duration of page</paragraph> -<paragraph role="paragraph" id="par_id3153562" xml-lang="en-US" l10n="U" oldref="15"><ahelp hid="SD:TIMEFIELD:DLG_ASS:TMF_PAGE3_TIME">Defines the duration of each presentation page.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150085" xml-lang="en-US" level="3" l10n="U">Duration of page</paragraph> +<paragraph role="paragraph" id="par_id3153562" xml-lang="en-US" l10n="U"><ahelp hid="SD:TIMEFIELD:DLG_ASS:TMF_PAGE3_TIME">Defines the duration of each presentation page.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sd:TimeField:DLG_ASS:TMF_PAGE3_BREAK" id="bm_id3144510" localize="false"/> -<paragraph role="heading" id="hd_id3155922" xml-lang="en-US" level="3" l10n="U" oldref="16">Duration of pause</paragraph> -<paragraph role="paragraph" id="par_id3153061" xml-lang="en-US" l10n="U" oldref="17"><ahelp hid="SD:TIMEFIELD:DLG_ASS:TMF_PAGE3_BREAK">Defines the pause between each presentation.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155922" xml-lang="en-US" level="3" l10n="U">Duration of pause</paragraph> +<paragraph role="paragraph" id="par_id3153061" xml-lang="en-US" l10n="U"><ahelp hid="SD:TIMEFIELD:DLG_ASS:TMF_PAGE3_BREAK">Defines the pause between each presentation.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sd:CheckBox:DLG_ASS:CB_PAGE3_LOGO" id="bm_id3149047" localize="false"/> -<paragraph role="heading" id="hd_id3148946" xml-lang="en-US" level="3" l10n="U" oldref="18">Show logo</paragraph> -<paragraph role="paragraph" id="par_id3145068" xml-lang="en-US" l10n="U" oldref="19"><ahelp hid="SD:CHECKBOX:DLG_ASS:CB_PAGE3_LOGO">Specifies whether to display the $[officename] logo during the pause between each presentation.</ahelp></paragraph> -<paragraph role="paragraph" id="par_id3151054" xml-lang="en-US" l10n="U" oldref="20">Click here to continue to <link href="text/shared/autopi/01050400.xhp" name="page 4 of the Presentation Wizard">page 4 of the Presentation Wizard</link>. The wizard ends here if you selected the "Empty presentation" option on page 1 of the Wizard.</paragraph> +<paragraph role="heading" id="hd_id3148946" xml-lang="en-US" level="3" l10n="U">Show logo</paragraph> +<paragraph role="paragraph" id="par_id3145068" xml-lang="en-US" l10n="U"><ahelp hid="SD:CHECKBOX:DLG_ASS:CB_PAGE3_LOGO">Specifies whether to display the $[officename] logo during the pause between each presentation.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3151054" xml-lang="en-US" l10n="U">Click here to continue to <link href="text/shared/autopi/01050400.xhp" name="page 4 of the Presentation Wizard">page 4 of the Presentation Wizard</link>. The wizard ends here if you selected the "Empty presentation" option on page 1 of the Wizard.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/explorer/database/05030300.xhp b/main/helpcontent2/source/text/shared/explorer/database/05030300.xhp index 96a7316d67..f5ca9719f0 100644 --- a/main/helpcontent2/source/text/shared/explorer/database/05030300.xhp +++ b/main/helpcontent2/source/text/shared/explorer/database/05030300.xhp @@ -30,36 +30,36 @@ </meta> <body> <section id="tabkop3"> -<paragraph role="heading" id="hd_id3163829" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/explorer/database/05030300.xhp" name="Type formatting">Type formatting</link></paragraph> -<paragraph role="paragraph" id="par_id3150247" xml-lang="en-US" l10n="U" oldref="2">In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The <emph>Type formatting</emph> dialog is the third window of the <emph>Copy table</emph> dialog.</paragraph> +<paragraph role="heading" id="hd_id3163829" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/explorer/database/05030300.xhp" name="Type formatting">Type formatting</link></paragraph> +<paragraph role="paragraph" id="par_id3150247" xml-lang="en-US" l10n="U">In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The <emph>Type formatting</emph> dialog is the third window of the <emph>Copy table</emph> dialog.</paragraph> </section> <bookmark xml-lang="en-US" branch="hid/dbaccess:MultiListBox:TAB_WIZ_TYPE_SELECT:LB_NEW_COLUMN_NAMES" id="bm_id3147291" localize="false"/> -<paragraph role="heading" id="hd_id3152801" xml-lang="en-US" level="2" l10n="U" oldref="3">List box</paragraph> -<paragraph role="paragraph" id="par_id3145313" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="DBACCESS_MULTILISTBOX_TAB_WIZ_TYPE_SELECT_LB_NEW_COLUMN_NAMES">Lists the data fields that will be included in to the copied table.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="2" l10n="U" oldref="5">Column information</paragraph> +<paragraph role="heading" id="hd_id3152801" xml-lang="en-US" level="2" l10n="U">List box</paragraph> +<paragraph role="paragraph" id="par_id3145313" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_MULTILISTBOX_TAB_WIZ_TYPE_SELECT_LB_NEW_COLUMN_NAMES">Lists the data fields that will be included in to the copied table.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="2" l10n="U">Column information</paragraph> <bookmark xml-lang="en-US" branch="hid/DBACCESS_HID_TAB_ENT_COLUMNNAME" id="bm_id3153311" localize="false"/> -<paragraph role="heading" id="hd_id3156426" xml-lang="en-US" level="3" l10n="U" oldref="7">Field name</paragraph> -<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="HID_TAB_ENT_COLUMNNAME">Displays the name of the selected data field. If you want, you can enter a new name.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3156426" xml-lang="en-US" level="3" l10n="U">Field name</paragraph> +<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US" l10n="U"><ahelp hid="HID_TAB_ENT_COLUMNNAME">Displays the name of the selected data field. If you want, you can enter a new name.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/DBACCESS_HID_TAB_ENT_TYPE" id="bm_id3154749" localize="false"/> -<paragraph role="heading" id="hd_id3156113" xml-lang="en-US" level="3" l10n="U" oldref="9">Field type</paragraph> -<paragraph role="paragraph" id="par_id3149811" xml-lang="en-US" l10n="U" oldref="10"><ahelp hid="HID_TAB_ENT_TYPE">Select a field type.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3156113" xml-lang="en-US" level="3" l10n="U">Field type</paragraph> +<paragraph role="paragraph" id="par_id3149811" xml-lang="en-US" l10n="U"><ahelp hid="HID_TAB_ENT_TYPE">Select a field type.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/DBACCESS_HID_TAB_ENT_TEXT_LEN" id="bm_id3149795" localize="false"/> <bookmark xml-lang="en-US" branch="hid/DBACCESS_HID_TAB_ENT_LEN" id="bm_id3149516" localize="false"/> -<paragraph role="heading" id="hd_id3149763" xml-lang="en-US" level="3" l10n="U" oldref="11">Length</paragraph> -<paragraph role="paragraph" id="par_id3155449" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="HID_TAB_ENT_LEN">Enter the number of characters for the data field.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149763" xml-lang="en-US" level="3" l10n="U">Length</paragraph> +<paragraph role="paragraph" id="par_id3155449" xml-lang="en-US" l10n="U"><ahelp hid="HID_TAB_ENT_LEN">Enter the number of characters for the data field.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/DBACCESS_HID_TAB_ENT_SCALE" id="bm_id3154285" localize="false"/> -<paragraph role="heading" id="hd_id3159176" xml-lang="en-US" level="3" l10n="U" oldref="13">Decimal places</paragraph> -<paragraph role="paragraph" id="par_id3153666" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="HID_TAB_ENT_SCALE">Enter the number of decimal places for the data field. This option is only available for numerical or decimal data fields.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3159176" xml-lang="en-US" level="3" l10n="U">Decimal places</paragraph> +<paragraph role="paragraph" id="par_id3153666" xml-lang="en-US" l10n="U"><ahelp hid="HID_TAB_ENT_SCALE">Enter the number of decimal places for the data field. This option is only available for numerical or decimal data fields.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/DBACCESS_HID_TAB_ENT_BOOL_DEFAULT" id="bm_id3156155" localize="false"/> -<paragraph role="heading" id="hd_id3150276" xml-lang="en-US" level="3" l10n="U" oldref="15">Default value</paragraph> -<paragraph role="paragraph" id="par_id3147620" xml-lang="en-US" l10n="U" oldref="16"><ahelp hid="HID_TAB_ENT_BOOL_DEFAULT">Select the default value for a Yes/No field.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3153087" xml-lang="en-US" level="2" l10n="U" oldref="17">Automatic type recognition</paragraph> -<paragraph role="paragraph" id="par_id3153561" xml-lang="en-US" l10n="U" oldref="18">$[officename] can automatically recognize field contents when you copy database tables by drag and drop.</paragraph> +<paragraph role="heading" id="hd_id3150276" xml-lang="en-US" level="3" l10n="U">Default value</paragraph> +<paragraph role="paragraph" id="par_id3147620" xml-lang="en-US" l10n="U"><ahelp hid="HID_TAB_ENT_BOOL_DEFAULT">Select the default value for a Yes/No field.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153087" xml-lang="en-US" level="2" l10n="U">Automatic type recognition</paragraph> +<paragraph role="paragraph" id="par_id3153561" xml-lang="en-US" l10n="U">$[officename] can automatically recognize field contents when you copy database tables by drag and drop.</paragraph> <bookmark xml-lang="en-US" branch="hid/dbaccess:NumericField:TAB_WIZ_TYPE_SELECT:ET_AUTO" id="bm_id3153061" localize="false"/> -<paragraph role="heading" id="hd_id3156023" xml-lang="en-US" level="3" l10n="U" oldref="19">(max.) lines</paragraph> -<paragraph role="paragraph" id="par_id3155923" xml-lang="en-US" l10n="U" oldref="20"><ahelp hid="DBACCESS_NUMERICFIELD_TAB_WIZ_TYPE_SELECT_ET_AUTO">Enter the number of lines to use for automatic type recognition.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3156023" xml-lang="en-US" level="3" l10n="U">(max.) lines</paragraph> +<paragraph role="paragraph" id="par_id3155923" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_NUMERICFIELD_TAB_WIZ_TYPE_SELECT_ET_AUTO">Enter the number of lines to use for automatic type recognition.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/dbaccess:PushButton:TAB_WIZ_TYPE_SELECT:PB_AUTO" id="bm_id3148946" localize="false"/> -<paragraph role="heading" id="hd_id3154347" xml-lang="en-US" level="3" l10n="U" oldref="21">Auto</paragraph> -<paragraph role="paragraph" id="par_id3152361" xml-lang="en-US" l10n="U" oldref="22"><ahelp hid="DBACCESS_PUSHBUTTON_TAB_WIZ_TYPE_SELECT_PB_AUTO">Enables automatic type recognition.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154347" xml-lang="en-US" level="3" l10n="U">Auto</paragraph> +<paragraph role="paragraph" id="par_id3152361" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_PUSHBUTTON_TAB_WIZ_TYPE_SELECT_PB_AUTO">Enables automatic type recognition.</ahelp></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/guide/labels.xhp b/main/helpcontent2/source/text/shared/guide/labels.xhp index ea105c9be3..5413db988e 100644 --- a/main/helpcontent2/source/text/shared/guide/labels.xhp +++ b/main/helpcontent2/source/text/shared/guide/labels.xhp @@ -34,39 +34,39 @@ <bookmark_value>business cards; creating and synchronizing</bookmark_value> <bookmark_value>synchronizing;labels and business cards</bookmark_value> </bookmark><comment>mw made "synchronizing..." a two level entry</comment> -<paragraph role="heading" id="hd_id3150774" xml-lang="en-US" level="1" l10n="U" oldref="4"><variable id="labels"><link href="text/shared/guide/labels.xhp" name="Creating and Printing Labels and Business Cards">Creating and Printing Labels and Business Cards</link> +<paragraph role="heading" id="hd_id3150774" xml-lang="en-US" level="1" l10n="U"><variable id="labels"><link href="text/shared/guide/labels.xhp" name="Creating and Printing Labels and Business Cards">Creating and Printing Labels and Business Cards</link> </variable></paragraph> -<paragraph role="heading" id="hd_id3153345" xml-lang="en-US" level="2" l10n="U" oldref="81">Designing Business Cards Through a Dialog</paragraph> -<paragraph role="paragraph" id="par_id3146798" xml-lang="en-US" l10n="U" oldref="70">Choose <link href="text/shared/01/01010300.xhp" name="File - New - Business Cards"><emph>File - New - Business Cards</emph></link> to open the <emph>Business Cards</emph> dialog, which allows you to choose how your business cards will look.</paragraph> -<paragraph role="heading" id="hd_id3147654" xml-lang="en-US" level="2" l10n="U" oldref="82">Designing Labels and Business Cards</paragraph> -<paragraph role="paragraph" id="par_id3152349" xml-lang="en-US" l10n="U" oldref="71">You can design both labels and business cards through the <emph>Labels</emph> dialog.</paragraph> +<paragraph role="heading" id="hd_id3153345" xml-lang="en-US" level="2" l10n="U">Designing Business Cards Through a Dialog</paragraph> +<paragraph role="paragraph" id="par_id3146798" xml-lang="en-US" l10n="U">Choose <link href="text/shared/01/01010300.xhp" name="File - New - Business Cards"><emph>File - New - Business Cards</emph></link> to open the <emph>Business Cards</emph> dialog, which allows you to choose how your business cards will look.</paragraph> +<paragraph role="heading" id="hd_id3147654" xml-lang="en-US" level="2" l10n="U">Designing Labels and Business Cards</paragraph> +<paragraph role="paragraph" id="par_id3152349" xml-lang="en-US" l10n="U">You can design both labels and business cards through the <emph>Labels</emph> dialog.</paragraph> <list type="ordered"> <listitem> -<paragraph role="listitem" id="par_id3153880" xml-lang="en-US" l10n="U" oldref="5">Choose <link href="text/shared/01/01010200.xhp" name="File - New - Labels"><emph>File - New - Labels</emph></link> to open the <emph>Labels</emph> dialog.</paragraph> +<paragraph role="listitem" id="par_id3153880" xml-lang="en-US" l10n="U">Choose <link href="text/shared/01/01010200.xhp" name="File - New - Labels"><emph>File - New - Labels</emph></link> to open the <emph>Labels</emph> dialog.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3149233" xml-lang="en-US" l10n="U" oldref="32">On the <emph>Labels</emph> tab, under <emph>Format</emph>, define the label format.</paragraph> -<paragraph role="listitem" id="par_id3145674" xml-lang="en-US" l10n="U" oldref="83">$[officename] Writer contains many formats of commercially available sheets for labels, badges, and business cards. You can also add other, user-defined formats.</paragraph> +<paragraph role="listitem" id="par_id3149233" xml-lang="en-US" l10n="U">On the <emph>Labels</emph> tab, under <emph>Format</emph>, define the label format.</paragraph> +<paragraph role="listitem" id="par_id3145674" xml-lang="en-US" l10n="U">$[officename] Writer contains many formats of commercially available sheets for labels, badges, and business cards. You can also add other, user-defined formats.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3143271" xml-lang="en-US" l10n="U" oldref="28">On the <emph>Labels</emph> tab, under <emph>Inscription</emph>, you can choose what you want written on the labels.</paragraph> -<paragraph role="listitem" id="par_id3145610" xml-lang="en-US" l10n="U" oldref="84">This often involves database fields, so that the labels can be printed with varying content, when sending "Form Letters" for example. It is also possible to have the same text printed on every label.</paragraph> -<paragraph role="listitem" id="par_id3151385" xml-lang="en-US" l10n="U" oldref="85">Use the <emph>Database</emph> and <emph>Table</emph> list boxes to select the database and table from which the data fields are obtained. Click on the arrow button to transfer the selected data field into the inscription area. Press Enter to insert a line break. You can also enter spaces and any other fixed text.</paragraph> -<paragraph role="listitem" id="par_id3147560" xml-lang="en-US" l10n="CHG" oldref="6">On the <emph>Format</emph> tab you can define your own label formats, not covered by the predefined formats. To do this, select "User" from the <emph>Type</emph> list box. On the <emph>Options</emph> tab, you can specify whether all labels or only certain ones are to be created.</paragraph> +<paragraph role="listitem" id="par_id3143271" xml-lang="en-US" l10n="U">On the <emph>Labels</emph> tab, under <emph>Inscription</emph>, you can choose what you want written on the labels.</paragraph> +<paragraph role="listitem" id="par_id3145610" xml-lang="en-US" l10n="U">This often involves database fields, so that the labels can be printed with varying content, when sending "Form Letters" for example. It is also possible to have the same text printed on every label.</paragraph> +<paragraph role="listitem" id="par_id3151385" xml-lang="en-US" l10n="U">Use the <emph>Database</emph> and <emph>Table</emph> list boxes to select the database and table from which the data fields are obtained. Click on the arrow button to transfer the selected data field into the inscription area. Press Enter to insert a line break. You can also enter spaces and any other fixed text.</paragraph> +<paragraph role="listitem" id="par_id3147560" xml-lang="en-US" l10n="CHG">On the <emph>Format</emph> tab you can define your own label formats, not covered by the predefined formats. To do this, select "User" from the <emph>Type</emph> list box. On the <emph>Options</emph> tab, you can specify whether all labels or only certain ones are to be created.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3150358" xml-lang="en-US" l10n="U" oldref="33">On the <emph>Options</emph> tab page, make sure that the <emph>Synchronize contents</emph> box is selected. If this is selected, a label only has to be entered (on the top left label) and edited once.</paragraph> +<paragraph role="listitem" id="par_id3150358" xml-lang="en-US" l10n="U">On the <emph>Options</emph> tab page, make sure that the <emph>Synchronize contents</emph> box is selected. If this is selected, a label only has to be entered (on the top left label) and edited once.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3156424" xml-lang="en-US" l10n="U" oldref="86">As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet.</paragraph> +<paragraph role="listitem" id="par_id3156424" xml-lang="en-US" l10n="U">As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3149767" xml-lang="en-US" l10n="U" oldref="29">Click on <emph>New Document</emph> to create a new document with the settings you have entered.</paragraph> +<paragraph role="listitem" id="par_id3149767" xml-lang="en-US" l10n="U">Click on <emph>New Document</emph> to create a new document with the settings you have entered.</paragraph> </listitem> </list> <embed href="text/shared/00/00000004.xhp#related"/> <embed href="text/shared/guide/labels_database.xhp#labels_database"/> <embed href="text/shared/guide/data_new.xhp#data_new"/> -<paragraph role="paragraph" id="par_id3150449" xml-lang="en-US" l10n="U" oldref="88"><link href="text/shared/01/01010300.xhp" name="Business Cards">Business Cards</link></paragraph> +<paragraph role="paragraph" id="par_id3150449" xml-lang="en-US" l10n="U"><link href="text/shared/01/01010300.xhp" name="Business Cards">Business Cards</link></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/simpress/guide/orgchart.xhp b/main/helpcontent2/source/text/simpress/guide/orgchart.xhp index e9d49a4ac3..0b15f46f7d 100644 --- a/main/helpcontent2/source/text/simpress/guide/orgchart.xhp +++ b/main/helpcontent2/source/text/simpress/guide/orgchart.xhp @@ -36,56 +36,56 @@ <bookmark_value>hot spots in flowcharts</bookmark_value> <bookmark_value>interactions; hot spots</bookmark_value> </bookmark><comment>changed orgcharts (Google about 1 million pages) to organization charts (about 33 million pages)</comment> -<paragraph role="heading" id="hd_id3150439" xml-lang="en-US" level="1" l10n="U" oldref="3"><variable id="orgchart"><link href="text/simpress/guide/orgchart.xhp" name="Creating a Flowchart">Creating a Flowchart</link> +<paragraph role="heading" id="hd_id3150439" xml-lang="en-US" level="1" l10n="U"><variable id="orgchart"><link href="text/simpress/guide/orgchart.xhp" name="Creating a Flowchart">Creating a Flowchart</link> </variable></paragraph> -<paragraph role="heading" id="hd_id3159153" xml-lang="en-US" level="3" l10n="U" oldref="39">To create a flowchart:</paragraph> +<paragraph role="heading" id="hd_id3159153" xml-lang="en-US" level="3" l10n="U">To create a flowchart:</paragraph> <list type="ordered"> <listitem> -<paragraph role="listitem" id="par_id3152482" xml-lang="en-US" l10n="CHG" oldref="40">Select a tool from the <emph>Flowchart</emph> toolbar on the <emph>Drawing</emph> bar.</paragraph> +<paragraph role="listitem" id="par_id3152482" xml-lang="en-US" l10n="CHG">Select a tool from the <emph>Flowchart</emph> toolbar on the <emph>Drawing</emph> bar.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3150715" xml-lang="en-US" l10n="U" oldref="41">Drag a shape in your slide.</paragraph> +<paragraph role="listitem" id="par_id3150715" xml-lang="en-US" l10n="U">Drag a shape in your slide.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3154486" xml-lang="en-US" l10n="CHG" oldref="42">To add more shapes, repeat the last steps.</paragraph> +<paragraph role="listitem" id="par_id3154486" xml-lang="en-US" l10n="CHG">To add more shapes, repeat the last steps.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3146967" xml-lang="en-US" l10n="CHG" oldref="43">Open the <emph>Connectors</emph> toolbar on the <emph>Drawing</emph> bar, and select a connector line.</paragraph> +<paragraph role="listitem" id="par_id3146967" xml-lang="en-US" l10n="CHG">Open the <emph>Connectors</emph> toolbar on the <emph>Drawing</emph> bar, and select a connector line.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3149945" xml-lang="en-US" l10n="U" oldref="44">Move the pointer over the edge of a shape so that the connection sites appear.</paragraph> +<paragraph role="listitem" id="par_id3149945" xml-lang="en-US" l10n="U">Move the pointer over the edge of a shape so that the connection sites appear.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3146871" xml-lang="en-US" l10n="U" oldref="45">Click a connection site, drag to a connection site on another shape, and then release.</paragraph> +<paragraph role="listitem" id="par_id3146871" xml-lang="en-US" l10n="U">Click a connection site, drag to a connection site on another shape, and then release.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3145824" xml-lang="en-US" l10n="U" oldref="46">To add more connectors, repeat the last steps.</paragraph> +<paragraph role="listitem" id="par_id3145824" xml-lang="en-US" l10n="U">To add more connectors, repeat the last steps.</paragraph> </listitem> </list> -<paragraph role="paragraph" id="par_id3153036" xml-lang="en-US" l10n="U" oldref="47">You now have the basic outline for your flowchart.</paragraph> -<paragraph role="heading" id="hd_id3155255" xml-lang="en-US" level="3" l10n="U" oldref="48">To add text to the shapes on your flowchart</paragraph> -<paragraph role="paragraph" id="par_id3150865" xml-lang="en-US" l10n="U" oldref="49">Do one of the following:</paragraph> +<paragraph role="paragraph" id="par_id3153036" xml-lang="en-US" l10n="U">You now have the basic outline for your flowchart.</paragraph> +<paragraph role="heading" id="hd_id3155255" xml-lang="en-US" level="3" l10n="U">To add text to the shapes on your flowchart</paragraph> +<paragraph role="paragraph" id="par_id3150865" xml-lang="en-US" l10n="U">Do one of the following:</paragraph> <list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3145592" xml-lang="en-US" l10n="U" oldref="50">Double-click the shape, and type or paste your text.</paragraph> +<paragraph role="listitem" id="par_id3145592" xml-lang="en-US" l10n="U">Double-click the shape, and type or paste your text.</paragraph> </listitem> </list> <list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3154504" xml-lang="en-US" l10n="CHG" oldref="51">Click the <emph>Text</emph> icon on the <emph>Drawing</emph> bar, and drag a text object over the shape. Type or paste your text into the text object.</paragraph> +<paragraph role="listitem" id="par_id3154504" xml-lang="en-US" l10n="CHG">Click the <emph>Text</emph> icon on the <emph>Drawing</emph> bar, and drag a text object over the shape. Type or paste your text into the text object.</paragraph> </listitem> </list> -<paragraph role="heading" id="hd_id3153730" xml-lang="en-US" level="3" l10n="U" oldref="52">To add a color fill to a shape:</paragraph> +<paragraph role="heading" id="hd_id3153730" xml-lang="en-US" level="3" l10n="U">To add a color fill to a shape:</paragraph> <list type="ordered"> <listitem> -<paragraph role="listitem" id="par_id3155930" xml-lang="en-US" l10n="U" oldref="53">Select the shape, and choose <emph>Format - Area</emph>.</paragraph> +<paragraph role="listitem" id="par_id3155930" xml-lang="en-US" l10n="U">Select the shape, and choose <emph>Format - Area</emph>.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3145348" xml-lang="en-US" l10n="U" oldref="54">Select <emph>Color</emph>, and then click a color in the list.</paragraph> +<paragraph role="listitem" id="par_id3145348" xml-lang="en-US" l10n="U">Select <emph>Color</emph>, and then click a color in the list.</paragraph> </listitem> </list> -<paragraph role="heading" id="hd_id3150934" xml-lang="en-US" level="3" l10n="U" oldref="56">To add some hot spots that call other slides:</paragraph> -<paragraph role="listitem" id="par_id3145300" xml-lang="en-US" l10n="CHG" oldref="57">Assign <link href="text/simpress/01/06070000.xhp" name="interactions">interactions</link> to some objects on your slide.</paragraph> +<paragraph role="heading" id="hd_id3150934" xml-lang="en-US" level="3" l10n="U">To add some hot spots that call other slides:</paragraph> +<paragraph role="listitem" id="par_id3145300" xml-lang="en-US" l10n="CHG">Assign <link href="text/simpress/01/06070000.xhp" name="interactions">interactions</link> to some objects on your slide.</paragraph> <list type="ordered"> <listitem> <paragraph role="listitem" id="par_idN10898" xml-lang="en-US" l10n="NEW">Select the object, then choose <emph>Slide Show - Interaction</emph>.</paragraph> @@ -95,8 +95,8 @@ </listitem> </list> <section id="relatedtopics"> -<paragraph role="paragraph" id="par_id3153922" xml-lang="en-US" l10n="U" oldref="32"><link href="text/simpress/02/10100000.xhp" name="Connectors">Connectors</link></paragraph> -<paragraph role="paragraph" id="par_id3156257" xml-lang="en-US" l10n="U" oldref="33"><link href="text/simpress/02/10030200.xhp" name="Glue points">Glue points</link></paragraph> +<paragraph role="paragraph" id="par_id3153922" xml-lang="en-US" l10n="U"><link href="text/simpress/02/10100000.xhp" name="Connectors">Connectors</link></paragraph> +<paragraph role="paragraph" id="par_id3156257" xml-lang="en-US" l10n="U"><link href="text/simpress/02/10030200.xhp" name="Glue points">Glue points</link></paragraph> </section> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/swriter/01/06080200.xhp b/main/helpcontent2/source/text/swriter/01/06080200.xhp index 92b3d44be2..c4455cef58 100644 --- a/main/helpcontent2/source/text/swriter/01/06080200.xhp +++ b/main/helpcontent2/source/text/swriter/01/06080200.xhp @@ -31,39 +31,39 @@ <body> <section id="endnoten"> <bookmark xml-lang="en-US" branch="hid/SW_HID_ENDNOTE_OPTIONS" id="bm_id3154644" localize="false"/> -<paragraph role="heading" id="hd_id3156321" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/swriter/01/06080200.xhp" name="Endnotes">Endnotes</link></paragraph> -<paragraph role="paragraph" id="par_id3151182" xml-lang="en-US" l10n="U" oldref="2"><ahelp hid="HID_ENDNOTE_OPTIONS">Specifies the formatting for endnotes.</ahelp> The type of endnote numbering and the Styles to apply are the options available.</paragraph> +<paragraph role="heading" id="hd_id3156321" xml-lang="en-US" level="1" l10n="U"><link href="text/swriter/01/06080200.xhp" name="Endnotes">Endnotes</link></paragraph> +<paragraph role="paragraph" id="par_id3151182" xml-lang="en-US" l10n="U"><ahelp hid="HID_ENDNOTE_OPTIONS">Specifies the formatting for endnotes.</ahelp> The type of endnote numbering and the Styles to apply are the options available.</paragraph> </section> <section id="howtoget"> <embed href="text/swriter/00/00000406.xhp#endnoten"/> </section> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_ENDNOTEOPTION:LB_NUMVIEW" id="bm_id3149757" localize="false"/> -<paragraph role="heading" id="hd_id3149292" xml-lang="en-US" level="2" l10n="U" oldref="3">AutoNumbering</paragraph> +<paragraph role="heading" id="hd_id3149292" xml-lang="en-US" level="2" l10n="U">AutoNumbering</paragraph> <embed href="text/swriter/01/06080100.xhp#endnotennumerierung"/> <bookmark xml-lang="en-US" branch="hid/sw:NumericField:TP_ENDNOTEOPTION:FLD_OFFSET" id="bm_id3145421" localize="false"/> -<paragraph role="heading" id="hd_id3151178" xml-lang="en-US" level="3" l10n="U" oldref="4">Start at</paragraph> -<paragraph role="paragraph" id="par_id3147512" xml-lang="en-US" l10n="U" oldref="5"><ahelp hid="SW:NUMERICFIELD:TP_ENDNOTEOPTION:FLD_OFFSET">Enter the number for the first endnote in the document.</ahelp> This is useful if want the endnote numbering to span more than one document.</paragraph> +<paragraph role="heading" id="hd_id3151178" xml-lang="en-US" level="3" l10n="U">Start at</paragraph> +<paragraph role="paragraph" id="par_id3147512" xml-lang="en-US" l10n="U"><ahelp hid="SW:NUMERICFIELD:TP_ENDNOTEOPTION:FLD_OFFSET">Enter the number for the first endnote in the document.</ahelp> This is useful if want the endnote numbering to span more than one document.</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_ENDNOTEOPTION:ED_PREFIX" id="bm_id3150714" localize="false"/> -<paragraph role="heading" id="hd_id3150702" xml-lang="en-US" level="3" l10n="U" oldref="13">Before</paragraph> -<paragraph role="paragraph" id="par_id3152943" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="SW:EDIT:TP_ENDNOTEOPTION:ED_PREFIX">Enter the text that you want to display in front of the endnote number in the note text.</ahelp> For example, type "re: " to display "re: 1".</paragraph> +<paragraph role="heading" id="hd_id3150702" xml-lang="en-US" level="3" l10n="U">Before</paragraph> +<paragraph role="paragraph" id="par_id3152943" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_ENDNOTEOPTION:ED_PREFIX">Enter the text that you want to display in front of the endnote number in the note text.</ahelp> For example, type "re: " to display "re: 1".</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_ENDNOTEOPTION:ED_SUFFIX" id="bm_id3153529" localize="false"/> -<paragraph role="heading" id="hd_id3149804" xml-lang="en-US" level="3" l10n="U" oldref="15">After</paragraph> -<paragraph role="paragraph" id="par_id3153535" xml-lang="en-US" l10n="U" oldref="16"><ahelp hid="SW:EDIT:TP_ENDNOTEOPTION:ED_SUFFIX">Enter the text that you want to display after the endnote number in the note text.</ahelp> For example, type ")" to display "1)".</paragraph> -<paragraph role="heading" id="hd_id3152952" xml-lang="en-US" level="2" l10n="U" oldref="6">Styles</paragraph> -<paragraph role="paragraph" id="par_id3150970" xml-lang="en-US" l10n="U" oldref="7">To ensure a uniform appearance for the endnotes in your document, assign a paragraph style to the footnotes.</paragraph> +<paragraph role="heading" id="hd_id3149804" xml-lang="en-US" level="3" l10n="U">After</paragraph> +<paragraph role="paragraph" id="par_id3153535" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:TP_ENDNOTEOPTION:ED_SUFFIX">Enter the text that you want to display after the endnote number in the note text.</ahelp> For example, type ")" to display "1)".</paragraph> +<paragraph role="heading" id="hd_id3152952" xml-lang="en-US" level="2" l10n="U">Styles</paragraph> +<paragraph role="paragraph" id="par_id3150970" xml-lang="en-US" l10n="U">To ensure a uniform appearance for the endnotes in your document, assign a paragraph style to the footnotes.</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_ENDNOTEOPTION:LB_PARA_TEMPL" id="bm_id3147520" localize="false"/> -<paragraph role="heading" id="hd_id3151312" xml-lang="en-US" level="3" l10n="U" oldref="8">Paragraph</paragraph> -<paragraph role="paragraph" id="par_id3147526" xml-lang="en-US" l10n="U" oldref="9"><ahelp hid="SW:LISTBOX:TP_ENDNOTEOPTION:LB_PARA_TEMPL">Select the paragraph style for the endnote text.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3151312" xml-lang="en-US" level="3" l10n="U">Paragraph</paragraph> +<paragraph role="paragraph" id="par_id3147526" xml-lang="en-US" l10n="U"><ahelp hid="SW:LISTBOX:TP_ENDNOTEOPTION:LB_PARA_TEMPL">Select the paragraph style for the endnote text.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_ENDNOTEOPTION:LB_PAGE_TEMPL" id="bm_id3154482" localize="false"/> -<paragraph role="heading" id="hd_id3154470" xml-lang="en-US" level="3" l10n="U" oldref="11">Page</paragraph> -<paragraph role="paragraph" id="par_id3154569" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="SW:LISTBOX:TP_ENDNOTEOPTION:LB_PAGE_TEMPL">Select the page style that you want to use for endnotes.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3155901" xml-lang="en-US" level="2" l10n="U" oldref="20">Character Styles</paragraph> -<paragraph role="paragraph" id="par_id3149692" xml-lang="en-US" l10n="U" oldref="21">You can assign styles to endnote anchors and text. You can use the predefined endnote styles, or use a different style.</paragraph> +<paragraph role="heading" id="hd_id3154470" xml-lang="en-US" level="3" l10n="U">Page</paragraph> +<paragraph role="paragraph" id="par_id3154569" xml-lang="en-US" l10n="U"><ahelp hid="SW:LISTBOX:TP_ENDNOTEOPTION:LB_PAGE_TEMPL">Select the page style that you want to use for endnotes.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155901" xml-lang="en-US" level="2" l10n="U">Character Styles</paragraph> +<paragraph role="paragraph" id="par_id3149692" xml-lang="en-US" l10n="U">You can assign styles to endnote anchors and text. You can use the predefined endnote styles, or use a different style.</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_ENDNOTEOPTION:LB_ANCHR_CHARFMT" id="bm_id3159195" localize="false"/> -<paragraph role="heading" id="hd_id3154198" xml-lang="en-US" level="3" l10n="U" oldref="22">Text area</paragraph> -<paragraph role="paragraph" id="par_id3159200" xml-lang="en-US" l10n="U" oldref="23"><ahelp hid="SW:LISTBOX:TP_ENDNOTEOPTION:LB_ANCHR_CHARFMT">Select the character style that you want to use for endnote anchors in the text area of your document.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154198" xml-lang="en-US" level="3" l10n="U">Text area</paragraph> +<paragraph role="paragraph" id="par_id3159200" xml-lang="en-US" l10n="U"><ahelp hid="SW:LISTBOX:TP_ENDNOTEOPTION:LB_ANCHR_CHARFMT">Select the character style that you want to use for endnote anchors in the text area of your document.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_ENDNOTEOPTION:LB_TEXT_CHARFMT" id="bm_id3155175" localize="false"/> -<paragraph role="heading" id="hd_id3151326" xml-lang="en-US" level="3" l10n="U" oldref="18">Endnote area</paragraph> -<paragraph role="paragraph" id="par_id3155182" xml-lang="en-US" l10n="U" oldref="19"><ahelp hid="SW_LISTBOX_TP_ENDNOTEOPTION_LB_TEXT_CHARFMT">Select the character style that you want to use for the endnote numbers in the endnote area.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3151326" xml-lang="en-US" level="3" l10n="U">Endnote area</paragraph> +<paragraph role="paragraph" id="par_id3155182" xml-lang="en-US" l10n="U"><ahelp hid="SW_LISTBOX_TP_ENDNOTEOPTION_LB_TEXT_CHARFMT">Select the character style that you want to use for the endnote numbers in the endnote area.</ahelp></paragraph> </body> </helpdocument>