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 3f706aad39 Remove 'oldref' entries (work in progress) 3f706aad39 is described below commit 3f706aad39b4824fa91669c0c3a21959701b2fd7 Author: mseidel <msei...@apache.org> AuthorDate: Sun Feb 23 23:00:57 2025 +0100 Remove 'oldref' entries (work in progress) --- .../source/text/sbasic/shared/03090101.xhp | 53 +++++++++++----------- .../source/text/scalc/guide/calc_series.xhp | 16 +++---- .../source/text/scalc/guide/consolidate.xhp | 40 ++++++++-------- .../source/text/scalc/guide/keyboard.xhp | 41 ++++++++--------- .../source/text/scalc/guide/value_with_name.xhp | 16 +++---- .../source/text/shared/guide/floating_toolbar.xhp | 6 +-- .../source/text/shared/guide/redlining_enter.xhp | 26 +++++------ .../source/text/simpress/01/01180001.xhp | 52 ++++++++++----------- .../source/text/simpress/01/04030000.xhp | 40 ++++++++-------- .../source/text/swriter/guide/arrange_chapters.xhp | 31 ++++++------- .../source/text/swriter/guide/background.xhp | 37 ++++++++------- .../source/text/swriter/guide/footnote_usage.xhp | 44 ++++++++---------- .../text/swriter/guide/header_pagestyles.xhp | 37 ++++++++------- .../source/text/swriter/guide/pagestyles.xhp | 45 +++++++++--------- main/helpcontent2/source/text/swriter/main0202.xhp | 22 ++++----- 15 files changed, 244 insertions(+), 262 deletions(-) diff --git a/main/helpcontent2/source/text/sbasic/shared/03090101.xhp b/main/helpcontent2/source/text/sbasic/shared/03090101.xhp index 5c3ff8197f..15f896a59d 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03090101.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03090101.xhp @@ -33,33 +33,32 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3154422"> <bookmark_value>If statement</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3154422" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03090101.xhp" name="If...Then...Else Statement [Runtime]">If...Then...Else Statement [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3155555" xml-lang="en-US" l10n="U" oldref="2">Defines one or more statement blocks that you only want to execute if a given condition is True.</paragraph> +<paragraph role="heading" id="hd_id3154422" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03090101.xhp" name="If...Then...Else Statement [Runtime]">If...Then...Else Statement [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3155555" xml-lang="en-US" l10n="U">Defines one or more statement blocks that you only want to execute if a given condition is True.</paragraph> </section> -<paragraph role="heading" id="hd_id3146957" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="paragraph" id="par_id3153126" xml-lang="en-US" l10n="CHG" oldref="4">If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf<br/>Instead of Else If you can write ElseIf, instead of End If you can write EndIf.</paragraph> -<paragraph role="heading" id="hd_id3155419" xml-lang="en-US" level="2" l10n="U" oldref="5">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3153062" xml-lang="en-US" l10n="U" oldref="6">The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic [...] -<paragraph role="paragraph" id="par_id3153192" xml-lang="en-US" l10n="U" oldref="7">You can nest multiple <emph>If...Then</emph> statements.</paragraph> -<paragraph role="paragraph" id="par_id3154684" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Else</emph> and <emph>ElseIf</emph> statements are optional.</paragraph> -<paragraph role="warning" id="par_id3152939" xml-lang="en-US" l10n="U" oldref="9">You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure.</paragraph> -<paragraph role="paragraph" id="par_id3153951" xml-lang="en-US" l10n="U" oldref="10">The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed.</paragraph> -<paragraph role="heading" id="hd_id3152576" xml-lang="en-US" level="2" l10n="U" oldref="11">Example:</paragraph> -<paragraph role="paragraph" id="par_id3150011" xml-lang="en-US" l10n="U" oldref="12">Sub ExampleIfThenDate</paragraph> -<paragraph role="paragraph" id="par_id3148645" xml-lang="en-US" l10n="U" oldref="13">Dim sDate as String</paragraph> -<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US" l10n="U" oldref="14">Dim sToday as String</paragraph> -<paragraph role="paragraph" id="par_id3154490" xml-lang="en-US" l10n="U" oldref="16">sDate = InputBox("Enter the expiration date (MM.DD.YYYY)")</paragraph> -<paragraph role="paragraph" id="par_id3154943" xml-lang="en-US" l10n="U" oldref="17">sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left$(sDate, 2)</paragraph> -<paragraph role="paragraph" id="par_id3154098" xml-lang="en-US" l10n="U" oldref="18">sToday = Date$</paragraph> -<paragraph role="paragraph" id="par_id3144765" xml-lang="en-US" l10n="U" oldref="19">sToday = Right$(sToday, 4)+ Mid$(sToday, 4, 2) + Left$(sToday, 2)</paragraph> -<paragraph role="paragraph" id="par_id3154792" xml-lang="en-US" l10n="U" oldref="20">If sDate < sToday Then</paragraph> -<paragraph role="paragraph" id="par_id3155601" xml-lang="en-US" l10n="U" oldref="21">MsgBox "The expiration date has passed"</paragraph> -<paragraph role="paragraph" id="par_id3146972" xml-lang="en-US" l10n="U" oldref="22">ElseIf sDate > sToday Then</paragraph> -<paragraph role="paragraph" id="par_id3146912" xml-lang="en-US" l10n="U" oldref="23">MsgBox "The expiration date has not yet passed"</paragraph> -<paragraph role="paragraph" id="par_id3153710" xml-lang="en-US" l10n="U" oldref="24">Else</paragraph> -<paragraph role="paragraph" id="par_id3154754" xml-lang="en-US" l10n="U" oldref="25">MsgBox "The expiration date is today"</paragraph> -<paragraph role="paragraph" id="par_id3154361" xml-lang="en-US" l10n="U" oldref="26">End If</paragraph> -<paragraph role="paragraph" id="par_id3148405" xml-lang="en-US" l10n="U" oldref="28">End Sub</paragraph> +<paragraph role="heading" id="hd_id3146957" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="paragraph" id="par_id3153126" xml-lang="en-US" l10n="CHG">If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf<br/>Instead of Else If you can write ElseIf, instead of End If you can write EndIf.</paragraph> +<paragraph role="heading" id="hd_id3155419" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3153062" xml-lang="en-US" l10n="U">The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the n [...] +<paragraph role="paragraph" id="par_id3153192" xml-lang="en-US" l10n="U">You can nest multiple <emph>If...Then</emph> statements.</paragraph> +<paragraph role="paragraph" id="par_id3154684" xml-lang="en-US" l10n="U"><emph>Else</emph> and <emph>ElseIf</emph> statements are optional.</paragraph> +<paragraph role="warning" id="par_id3152939" xml-lang="en-US" l10n="U">You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure.</paragraph> +<paragraph role="paragraph" id="par_id3153951" xml-lang="en-US" l10n="U">The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed.</paragraph> +<paragraph role="heading" id="hd_id3152576" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="paragraph" id="par_id3150011" xml-lang="en-US" l10n="U">Sub ExampleIfThenDate</paragraph> +<paragraph role="paragraph" id="par_id3148645" xml-lang="en-US" l10n="U">Dim sDate as String</paragraph> +<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US" l10n="U">Dim sToday as String</paragraph> +<paragraph role="paragraph" id="par_id3154490" xml-lang="en-US" l10n="U">sDate = InputBox("Enter the expiration date (MM.DD.YYYY)")</paragraph> +<paragraph role="paragraph" id="par_id3154943" xml-lang="en-US" l10n="U">sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left$(sDate, 2)</paragraph> +<paragraph role="paragraph" id="par_id3154098" xml-lang="en-US" l10n="U">sToday = Date$</paragraph> +<paragraph role="paragraph" id="par_id3144765" xml-lang="en-US" l10n="U">sToday = Right$(sToday, 4)+ Mid$(sToday, 4, 2) + Left$(sToday, 2)</paragraph> +<paragraph role="paragraph" id="par_id3154792" xml-lang="en-US" l10n="U">If sDate < sToday Then</paragraph> +<paragraph role="paragraph" id="par_id3155601" xml-lang="en-US" l10n="U">MsgBox "The expiration date has passed"</paragraph> +<paragraph role="paragraph" id="par_id3146972" xml-lang="en-US" l10n="U">ElseIf sDate > sToday Then</paragraph> +<paragraph role="paragraph" id="par_id3146912" xml-lang="en-US" l10n="U">MsgBox "The expiration date has not yet passed"</paragraph> +<paragraph role="paragraph" id="par_id3153710" xml-lang="en-US" l10n="U">Else</paragraph> +<paragraph role="paragraph" id="par_id3154754" xml-lang="en-US" l10n="U">MsgBox "The expiration date is today"</paragraph> +<paragraph role="paragraph" id="par_id3154361" xml-lang="en-US" l10n="U">End If</paragraph> +<paragraph role="paragraph" id="par_id3148405" xml-lang="en-US" l10n="U">End Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/guide/calc_series.xhp b/main/helpcontent2/source/text/scalc/guide/calc_series.xhp index 843e302ea0..bf47798d18 100644 --- a/main/helpcontent2/source/text/scalc/guide/calc_series.xhp +++ b/main/helpcontent2/source/text/scalc/guide/calc_series.xhp @@ -41,35 +41,35 @@ <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value> </bookmark><comment>mw made "powers of 2;..." a one level entry and changed "AutoFill" entry</comment><comment>MW changed "auto filling cells"</comment> -<paragraph xml-lang="en-US" id="hd_id3150769" role="heading" level="1" l10n="U" oldref="6"><variable id="calc_series"><link href="text/scalc/guide/calc_series.xhp" name="Automatically Calculating Series">Automatically Filling in Data Based on Adjacent Cells</link> +<paragraph xml-lang="en-US" id="hd_id3150769" role="heading" level="1" l10n="U"><variable id="calc_series"><link href="text/scalc/guide/calc_series.xhp" name="Automatically Calculating Series">Automatically Filling in Data Based on Adjacent Cells</link> </variable></paragraph> <paragraph xml-lang="en-US" id="par_idN106A8" role="paragraph" l10n="NEW">You can automatically fill cells with data with the AutoFill command or the Series command.</paragraph> <paragraph xml-lang="en-US" id="par_idN106D3" role="heading" level="2" l10n="NEW">Using AutoFill</paragraph> <paragraph xml-lang="en-US" id="par_idN106D7" role="paragraph" l10n="NEW">AutoFill automatically generates a data series based on a defined pattern.</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3154319" role="listitem" l10n="CHG" oldref="7">On a sheet, click in a cell, and type a number.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154319" role="listitem" l10n="CHG">On a sheet, click in a cell, and type a number.</paragraph> </listitem> <listitem> <paragraph xml-lang="en-US" id="par_idN106CB" role="listitem" l10n="NEW">Click in another cell and then click back in the cell where you typed the number.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3145272" role="listitem" l10n="CHG" oldref="16">Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button.</paragraph> -<paragraph xml-lang="en-US" id="par_id3145801" role="listitem" l10n="CHG" oldref="17">The cells are filled with ascending numbers.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145272" role="listitem" l10n="CHG">Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145801" role="listitem" l10n="CHG">The cells are filled with ascending numbers.</paragraph> </listitem> </list> <paragraph xml-lang="en-US" id="par_idN106EE" role="tip" l10n="NEW">To quickly create a list of consecutive days, enter <item type="literal">Monday</item> in a cell, and drag the fill handle.</paragraph> <paragraph xml-lang="en-US" id="par_id9720145" role="paragraph" l10n="NEW">Hold down <switchinline select="sys"><caseinline select="MAC">Command </caseinline><defaultinline>Ctrl </defaultinline></switchinline>if you do not want to fill the cells with different values.</paragraph> -<paragraph xml-lang="en-US" id="par_id3154490" role="note" l10n="CHG" oldref="18">If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type="menuitem"><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinl [...] +<paragraph xml-lang="en-US" id="par_id3154490" role="note" l10n="CHG">If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type="menuitem"><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switch [...] <paragraph xml-lang="en-US" id="par_idN10737" role="tip" l10n="NEW">You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12.</paragraph> <paragraph xml-lang="en-US" id="par_idN10713" role="heading" level="2" l10n="NEW">Using a Defined Series</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3150749" role="listitem" l10n="CHG" oldref="9">Select the cell range in the sheet that you want to fill.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150749" role="listitem" l10n="CHG">Select the cell range in the sheet that you want to fill.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3154754" role="listitem" l10n="CHG" oldref="19">Choose <item type="menuitem">Edit - Fill - Series</item>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154754" role="listitem" l10n="CHG">Choose <item type="menuitem">Edit - Fill - Series</item>.</paragraph> </listitem> <listitem> <paragraph xml-lang="en-US" id="par_idN10716" role="listitem" l10n="NEW">Select the parameters for the series.</paragraph> @@ -80,7 +80,7 @@ </list> <section id="relatedtopics"> <embed href="text/scalc/guide/sorted_list.xhp#sorted_list"/> -<paragraph xml-lang="en-US" id="par_id3159173" role="paragraph" l10n="U" oldref="20"><link href="text/shared/optionen/01060400.xhp" name="Sort lists">Sort lists</link></paragraph> +<paragraph xml-lang="en-US" id="par_id3159173" role="paragraph" l10n="U"><link href="text/shared/optionen/01060400.xhp" name="Sort lists">Sort lists</link></paragraph> </section> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/guide/consolidate.xhp b/main/helpcontent2/source/text/scalc/guide/consolidate.xhp index be0ee915d6..13a1b7204b 100644 --- a/main/helpcontent2/source/text/scalc/guide/consolidate.xhp +++ b/main/helpcontent2/source/text/scalc/guide/consolidate.xhp @@ -37,56 +37,56 @@ <bookmark_value>data; merging cell ranges</bookmark_value> <bookmark_value>merging;data ranges</bookmark_value> </bookmark><comment>mw deleted "values;"</comment> -<paragraph xml-lang="en-US" id="hd_id3150791" role="heading" level="1" l10n="U" oldref="5"><variable id="consolidate"><link href="text/scalc/guide/consolidate.xhp" name="Consolidating Data">Consolidating Data</link> +<paragraph xml-lang="en-US" id="hd_id3150791" role="heading" level="1" l10n="U"><variable id="consolidate"><link href="text/scalc/guide/consolidate.xhp" name="Consolidating Data">Consolidating Data</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3153191" role="paragraph" l10n="U" oldref="34">During consolidation, the contents of the cells from several sheets will be combined in one place.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153191" role="paragraph" l10n="U">During consolidation, the contents of the cells from several sheets will be combined in one place.</paragraph> <paragraph xml-lang="en-US" id="hd_id892056" role="heading" level="2" l10n="NEW">To Combine Cell Contents</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3151073" role="listitem" l10n="U" oldref="6">Open the document that contains the cell ranges to be consolidated.</paragraph> +<paragraph xml-lang="en-US" id="par_id3151073" role="listitem" l10n="U">Open the document that contains the cell ranges to be consolidated.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3154513" role="listitem" l10n="U" oldref="7">Choose <item type="menuitem">Data - Consolidate</item> to open the <emph>Consolidate</emph> dialog.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154513" role="listitem" l10n="U">Choose <item type="menuitem">Data - Consolidate</item> to open the <emph>Consolidate</emph> dialog.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147345" role="listitem" l10n="U" oldref="8">From the <emph>Source data area</emph> box select a source cell range to consolidate with other areas.</paragraph> -<paragraph xml-lang="en-US" id="par_id3149209" role="listitem" l10n="U" oldref="9">If the range is not named, click in the field next to the <emph>Source data area</emph>. A blinking text cursor appears. Type a reference for the first source data range or select the range with the mouse.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147345" role="listitem" l10n="U">From the <emph>Source data area</emph> box select a source cell range to consolidate with other areas.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149209" role="listitem" l10n="U">If the range is not named, click in the field next to the <emph>Source data area</emph>. A blinking text cursor appears. Type a reference for the first source data range or select the range with the mouse.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3155529" role="listitem" l10n="U" oldref="10">Click <emph>Add</emph> to insert the selected range in the <emph>Consolidation areas</emph> field.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155529" role="listitem" l10n="U">Click <emph>Add</emph> to insert the selected range in the <emph>Consolidation areas</emph> field.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153816" role="listitem" l10n="U" oldref="11">Select additional ranges and click <emph>Add</emph> after each selection.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153816" role="listitem" l10n="U">Select additional ranges and click <emph>Add</emph> after each selection.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3157983" role="listitem" l10n="U" oldref="12">Specify where you want to display the result by selecting a target range from the <emph>Copy results to</emph> box.</paragraph> -<paragraph xml-lang="en-US" id="par_id3150215" role="listitem" l10n="U" oldref="13">If the target range is not named, click in the field next to <emph>Copy results to</emph> and enter the reference of the target range. Alternatively, you can select the range using the mouse or position the cursor in the top left cell of the target range.</paragraph> +<paragraph xml-lang="en-US" id="par_id3157983" role="listitem" l10n="U">Specify where you want to display the result by selecting a target range from the <emph>Copy results to</emph> box.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150215" role="listitem" l10n="U">If the target range is not named, click in the field next to <emph>Copy results to</emph> and enter the reference of the target range. Alternatively, you can select the range using the mouse or position the cursor in the top left cell of the target range.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153813" role="listitem" l10n="U" oldref="14">Select a function from the <emph>Function</emph> box. The function specifies how the values of the consolidation ranges are linked. The "Sum" function is the default setting.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153813" role="listitem" l10n="U">Select a function from the <emph>Function</emph> box. The function specifies how the values of the consolidation ranges are linked. The "Sum" function is the default setting.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149315" role="listitem" l10n="U" oldref="15">Click <emph>OK</emph> to consolidate the ranges.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149315" role="listitem" l10n="U">Click <emph>OK</emph> to consolidate the ranges.</paragraph> </listitem> </list> <paragraph xml-lang="en-US" id="par_idN107DE" role="heading" level="2" l10n="NEW">Additional Settings</paragraph> -<paragraph xml-lang="en-US" id="par_id3147250" role="paragraph" l10n="U" oldref="16">Click <emph>More</emph> in the <emph>Consolidate</emph> dialog to display additional settings:</paragraph> +<paragraph xml-lang="en-US" id="par_id3147250" role="paragraph" l10n="U">Click <emph>More</emph> in the <emph>Consolidate</emph> dialog to display additional settings:</paragraph> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3156400" role="listitem" l10n="U" oldref="17">Select <emph>Link to source data</emph> to insert the formulas that generate the results in the target range, rather than the actual results. If you link the data, any values modified in the source range are automatically updated in the target range.</paragraph> -<paragraph xml-lang="en-US" id="par_id3150538" role="listitem" l10n="U" oldref="18">The corresponding cell references in the target range are inserted in consecutive rows, which are automatically ordered and then hidden from view. Only the final result, based on the selected function, is displayed.</paragraph> +<paragraph xml-lang="en-US" id="par_id3156400" role="listitem" l10n="U">Select <emph>Link to source data</emph> to insert the formulas that generate the results in the target range, rather than the actual results. If you link the data, any values modified in the source range are automatically updated in the target range.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150538" role="listitem" l10n="U">The corresponding cell references in the target range are inserted in consecutive rows, which are automatically ordered and then hidden from view. Only the final result, based on the selected function, is displayed.</paragraph> </listitem> </list> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3149945" role="listitem" l10n="U" oldref="19">Under <emph>Consolidate by</emph>, select either <emph>Row labels</emph> or <emph>Column labels</emph> if the cells of the source data range are not to be consolidated corresponding to the identical position of the cell in the range, but instead according to a matching row label or column label.</paragraph> -<paragraph xml-lang="en-US" id="par_id3157871" role="listitem" l10n="U" oldref="20">To consolidate by row labels or column labels, the label must be contained in the selected source ranges.</paragraph> -<paragraph xml-lang="en-US" id="par_id3150478" role="note" l10n="U" oldref="21">The text in the labels must be identical, so that rows or columns can be accurately matched. If the row or column label does not match any that exist in the target range, it will be appended as a new row or column.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149945" role="listitem" l10n="U">Under <emph>Consolidate by</emph>, select either <emph>Row labels</emph> or <emph>Column labels</emph> if the cells of the source data range are not to be consolidated corresponding to the identical position of the cell in the range, but instead according to a matching row label or column label.</paragraph> +<paragraph xml-lang="en-US" id="par_id3157871" role="listitem" l10n="U">To consolidate by row labels or column labels, the label must be contained in the selected source ranges.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150478" role="note" l10n="U">The text in the labels must be identical, so that rows or columns can be accurately matched. If the row or column label does not match any that exist in the target range, it will be appended as a new row or column.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="par_id3147468" role="paragraph" l10n="U" oldref="22">The data from the consolidation ranges and target range will be saved when you save the document. If you later open a document in which consolidation has been defined, this data will again be available.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147468" role="paragraph" l10n="U">The data from the consolidation ranges and target range will be saved when you save the document. If you later open a document in which consolidation has been defined, this data will again be available.</paragraph> <section id="relatedtopics"> -<paragraph xml-lang="en-US" id="par_id3153039" role="paragraph" l10n="U" oldref="33"><link href="text/scalc/01/12070000.xhp" name="Data - Consolidate">Data - Consolidate</link></paragraph> +<paragraph xml-lang="en-US" id="par_id3153039" role="paragraph" l10n="U"><link href="text/scalc/01/12070000.xhp" name="Data - Consolidate">Data - Consolidate</link></paragraph> </section> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/guide/keyboard.xhp b/main/helpcontent2/source/text/scalc/guide/keyboard.xhp index d594c8aff7..c0425159f3 100644 --- a/main/helpcontent2/source/text/scalc/guide/keyboard.xhp +++ b/main/helpcontent2/source/text/scalc/guide/keyboard.xhp @@ -33,11 +33,11 @@ <bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value> <bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3145120" xml-lang="en-US" level="1" l10n="U" oldref="1"><variable id="keyboard"><link href="text/scalc/guide/keyboard.xhp" name="Shortcut Keys (%PRODUCTNAME Calc Accessibility)">Shortcut Keys (<item type="productname">%PRODUCTNAME</item> Calc Accessibility)</link> +<paragraph role="heading" id="hd_id3145120" xml-lang="en-US" level="1" l10n="U"><variable id="keyboard"><link href="text/scalc/guide/keyboard.xhp" name="Shortcut Keys (%PRODUCTNAME Calc Accessibility)">Shortcut Keys (<item type="productname">%PRODUCTNAME</item> Calc Accessibility)</link> </variable></paragraph> -<paragraph role="paragraph" id="par_id3154760" xml-lang="en-US" l10n="U" oldref="13">Refer also to the lists of shortcut keys for <item type="productname">%PRODUCTNAME</item> Calc and <item type="productname">%PRODUCTNAME</item> in general.</paragraph> +<paragraph role="paragraph" id="par_id3154760" xml-lang="en-US" l10n="U">Refer also to the lists of shortcut keys for <item type="productname">%PRODUCTNAME</item> Calc and <item type="productname">%PRODUCTNAME</item> in general.</paragraph> <embed href="text/shared/00/00000099.xhp#keys"/> -<paragraph role="heading" id="hd_id3153360" xml-lang="en-US" level="2" l10n="U" oldref="12">Cell Selection Mode</paragraph> +<paragraph role="heading" id="hd_id3153360" xml-lang="en-US" level="2" l10n="U">Cell Selection Mode</paragraph> <table id="tbl_id3153968"> <tablerow> <tablecell colspan="" rowspan=""> @@ -46,53 +46,50 @@ </image></paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3154319" xml-lang="en-US" l10n="U" oldref="11">In a text box that has a button to minimize the dialog, press <item type="keycode">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type="keycode">F2</item> again to show the dialog.</paragraph> +<paragraph role="paragraph" id="par_id3154319" xml-lang="en-US" l10n="U">In a text box that has a button to minimize the dialog, press <item type="keycode">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type="keycode">F2</item> again to show the dialog.</paragraph> </tablecell> </tablerow> </table> -<paragraph role="paragraph" id="par_id3145272" xml-lang="en-US" l10n="U" oldref="10">In the cell selection mode, you can use the common navigation keys to select cells.</paragraph> -<paragraph role="heading" id="hd_id3148646" xml-lang="en-US" level="2" l10n="U" oldref="14">Controlling the Outline</paragraph> -<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US" l10n="U" oldref="15">You can use the keyboard in <link href="text/scalc/01/12080000.xhp" name="Outline">Outline</link>:</paragraph> +<paragraph role="paragraph" id="par_id3145272" xml-lang="en-US" l10n="U">In the cell selection mode, you can use the common navigation keys to select cells.</paragraph> +<paragraph role="heading" id="hd_id3148646" xml-lang="en-US" level="2" l10n="U">Controlling the Outline</paragraph> +<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US" l10n="U">You can use the keyboard in <link href="text/scalc/01/12080000.xhp" name="Outline">Outline</link>:</paragraph> <list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3147394" xml-lang="en-US" l10n="U" oldref="16">Press <item type="keycode">F6</item> or <item type="keycode">Shift+F6</item> until the vertical or horizontal outline window has the focus.</paragraph> +<paragraph role="listitem" id="par_id3147394" xml-lang="en-US" l10n="U">Press <item type="keycode">F6</item> or <item type="keycode">Shift+F6</item> until the vertical or horizontal outline window has the focus.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3149379" xml-lang="en-US" l10n="U" oldref="17"> -<item type="keycode">Tab</item> - cycle through all visible buttons from top to bottom or from left to right.</paragraph> +<paragraph role="listitem" id="par_id3149379" xml-lang="en-US" l10n="U"><item type="keycode">Tab</item> - cycle through all visible buttons from top to bottom or from left to right.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3156286" xml-lang="en-US" l10n="U" oldref="18"> -<item type="keycode">Shift+Tab</item> - cycle through all visible buttons in the opposite direction.</paragraph> +<paragraph role="listitem" id="par_id3156286" xml-lang="en-US" l10n="U"><item type="keycode">Shift+Tab</item> - cycle through all visible buttons in the opposite direction.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3149403" xml-lang="en-US" l10n="U" oldref="19"> -<switchinline select="sys"><caseinline select="MAC">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels.</paragraph> +<paragraph role="listitem" id="par_id3149403" xml-lang="en-US" l10n="U"><switchinline select="sys"><caseinline select="MAC">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3150329" xml-lang="en-US" l10n="U" oldref="20">Use <item type="keycode">+</item> or <item type="keycode">-</item> to show or hide the focused outline group.</paragraph> +<paragraph role="listitem" id="par_id3150329" xml-lang="en-US" l10n="U">Use <item type="keycode">+</item> or <item type="keycode">-</item> to show or hide the focused outline group.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3155446" xml-lang="en-US" l10n="U" oldref="21">Press <item type="keycode">Enter</item> to activate the focused button.</paragraph> +<paragraph role="listitem" id="par_id3155446" xml-lang="en-US" l10n="U">Press <item type="keycode">Enter</item> to activate the focused button.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3154253" xml-lang="en-US" l10n="U" oldref="22">Use <item type="keycode">Up</item>, <item type="keycode">Down</item>, <item type="keycode">Left</item>, or <item type="keycode">Right</item> arrow to cycle through all buttons in the current level.</paragraph> +<paragraph role="listitem" id="par_id3154253" xml-lang="en-US" l10n="U">Use <item type="keycode">Up</item>, <item type="keycode">Down</item>, <item type="keycode">Left</item>, or <item type="keycode">Right</item> arrow to cycle through all buttons in the current level.</paragraph> </listitem> </list> -<paragraph role="heading" id="hd_id3147343" xml-lang="en-US" level="2" l10n="U" oldref="8">Selecting a Drawing Object or a Graphic</paragraph> +<paragraph role="heading" id="hd_id3147343" xml-lang="en-US" level="2" l10n="U">Selecting a Drawing Object or a Graphic</paragraph> <list type="ordered"> <listitem> <paragraph role="listitem" id="par_idN107AA" xml-lang="en-US" l10n="NEW">Choose View - Toolbars - Drawing to open the Drawing toolbar.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3155333" xml-lang="en-US" l10n="CHG" oldref="7">Press <item type="keycode">F6</item> until the <emph>Drawing</emph> toolbar is selected.</paragraph> +<paragraph role="listitem" id="par_id3155333" xml-lang="en-US" l10n="CHG">Press <item type="keycode">F6</item> until the <emph>Drawing</emph> toolbar is selected.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3150345" xml-lang="en-US" l10n="U" oldref="4">If the selection tool is active, press <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet.</paragraph> +<paragraph role="listitem" id="par_id3150345" xml-lang="en-US" l10n="U">If the selection tool is active, press <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3159240" xml-lang="en-US" l10n="U" oldref="3">With <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document.</paragraph> -<paragraph role="listitem" id="par_id3155379" xml-lang="en-US" l10n="U" oldref="2">Now you can use <item type="keycode">Tab</item> to select the next drawing object or graphic and <item type="keycode">Shift+Tab</item> to select the previous one.</paragraph> +<paragraph role="listitem" id="par_id3159240" xml-lang="en-US" l10n="U">With <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document.</paragraph> +<paragraph role="listitem" id="par_id3155379" xml-lang="en-US" l10n="U">Now you can use <item type="keycode">Tab</item> to select the next drawing object or graphic and <item type="keycode">Shift+Tab</item> to select the previous one.</paragraph> </listitem> </list> <section id="relatedtopics"> diff --git a/main/helpcontent2/source/text/scalc/guide/value_with_name.xhp b/main/helpcontent2/source/text/scalc/guide/value_with_name.xhp index 9968ecf263..05e42c7f2a 100644 --- a/main/helpcontent2/source/text/scalc/guide/value_with_name.xhp +++ b/main/helpcontent2/source/text/scalc/guide/value_with_name.xhp @@ -43,8 +43,8 @@ <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value> -</bookmark><comment>mw changed "names;...", "addressing;..." and "references,..." entries.</comment><comment>mw added "renaming;"</comment> -<paragraph xml-lang="en-US" id="hd_id3147434" role="heading" level="1" l10n="U" oldref="1"><variable id="value_with_name"><link href="text/scalc/guide/value_with_name.xhp" name="Naming Cells">Naming Cells</link> +</bookmark><comment>mw changed "names;...", "addressing;..." and "references,..." entries.</comment><comment>mw added "renaming;"</comment> +<paragraph xml-lang="en-US" id="hd_id3147434" role="heading" level="1" l10n="U"><variable id="value_with_name"><link href="text/scalc/guide/value_with_name.xhp" name="Naming Cells">Naming Cells</link> </variable></paragraph> <paragraph xml-lang="en-US" id="hd_id4391918" role="heading" level="2" l10n="NEW">Allowed names</paragraph> <paragraph xml-lang="en-US" id="par_id2129581" role="paragraph" l10n="NEW">Names in Calc can contain letters, numeric characters, and some special characters. Names must start with a letter or an underline character.</paragraph> @@ -69,24 +69,24 @@ <paragraph xml-lang="en-US" id="par_id4889675" role="paragraph" l10n="NEW">Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3153954" role="listitem" l10n="U" oldref="3">Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153954" role="listitem" l10n="U">Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3156283" role="listitem" l10n="U" oldref="4">Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog.</paragraph> +<paragraph xml-lang="en-US" id="par_id3156283" role="listitem" l10n="U">Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog.</paragraph> </listitem> </list> <paragraph xml-lang="en-US" id="par_id5774101" role="paragraph" l10n="NEW">You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells.</paragraph> -<paragraph xml-lang="en-US" id="par_id3154942" role="paragraph" l10n="U" oldref="5">If you type the name in a formula, after the first few characters entered you will see the entire name as a tip.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154942" role="paragraph" l10n="U">If you type the name in a formula, after the first few characters entered you will see the entire name as a tip.</paragraph> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3154510" role="listitem" l10n="U" oldref="6">Press the Enter key in order to accept the name from the tip.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154510" role="listitem" l10n="U">Press the Enter key in order to accept the name from the tip.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150749" role="listitem" l10n="U" oldref="7">If more than one name starts with the same characters, you can scroll through all the names using the Tab key.<comment>mw copied contents from Calc guide address_byname.xhp</comment></paragraph> +<paragraph xml-lang="en-US" id="par_id3150749" role="listitem" l10n="U">If more than one name starts with the same characters, you can scroll through all the names using the Tab key.<comment>mw copied contents from Calc guide address_byname.xhp</comment></paragraph> </listitem> </list> <section id="relatedtopics"> -<paragraph xml-lang="en-US" id="par_id3153711" role="paragraph" l10n="U" oldref="8"><link href="text/scalc/01/04070100.xhp" name="Insert - Names - Define">Insert - Names - Define</link></paragraph> +<paragraph xml-lang="en-US" id="par_id3153711" role="paragraph" l10n="U"><link href="text/scalc/01/04070100.xhp" name="Insert - Names - Define">Insert - Names - Define</link></paragraph> <embed href="text/scalc/guide/goalseek.xhp#goalseek"/> <embed href="text/scalc/guide/relativ_absolut_ref.xhp#relativ_absolut_ref"/> <embed href="text/scalc/guide/address_auto.xhp#address_auto"/><comment>mw deleted one EMBED paragraph and copied two EMBED paragraphs from Calc guide address_byname.xhp</comment> diff --git a/main/helpcontent2/source/text/shared/guide/floating_toolbar.xhp b/main/helpcontent2/source/text/shared/guide/floating_toolbar.xhp index ecebc581d5..48b3d2219f 100644 --- a/main/helpcontent2/source/text/shared/guide/floating_toolbar.xhp +++ b/main/helpcontent2/source/text/shared/guide/floating_toolbar.xhp @@ -48,10 +48,10 @@ <bookmark_value>icon bars, see toolbars</bookmark_value> <bookmark_value>button bars, see toolbars</bookmark_value> </bookmark><comment>mw added one index entry and changed a "toolbars;" entry.</comment> -<paragraph role="heading" id="hd_id3152801" xml-lang="en-US" level="1" l10n="CHG" oldref="9"><variable id="floating_toolbar"><link href="text/shared/guide/floating_toolbar.xhp" name="Using Toolbars">Using Toolbars</link> +<paragraph role="heading" id="hd_id3152801" xml-lang="en-US" level="1" l10n="CHG"><variable id="floating_toolbar"><link href="text/shared/guide/floating_toolbar.xhp" name="Using Toolbars">Using Toolbars</link> </variable></paragraph> -<paragraph role="paragraph" id="par_id3143267" xml-lang="en-US" l10n="CHG" oldref="7">Some toolbar icons, for example the <emph>Font Color</emph> icon, can open another toolbar. Click the arrow next to the icon to open a toolbar containing further icons.</paragraph> -<paragraph role="paragraph" id="par_id3155450" xml-lang="en-US" l10n="CHG" oldref="8">You now have a choice: either click the icon that you want to activate, or seize the toolbar by its title bar and drag it while holding down the mouse button.</paragraph> +<paragraph role="paragraph" id="par_id3143267" xml-lang="en-US" l10n="CHG">Some toolbar icons, for example the <emph>Font Color</emph> icon, can open another toolbar. Click the arrow next to the icon to open a toolbar containing further icons.</paragraph> +<paragraph role="paragraph" id="par_id3155450" xml-lang="en-US" l10n="CHG">You now have a choice: either click the icon that you want to activate, or seize the toolbar by its title bar and drag it while holding down the mouse button.</paragraph> <paragraph role="heading" id="hd_id733970" xml-lang="en-US" level="2" l10n="NEW">Context of Toolbars</paragraph><comment>UFI: new CWS toolbarbehavior, #i50428 etc</comment><comment>UFI: #i63811</comment> <paragraph role="paragraph" id="par_id341196" xml-lang="en-US" l10n="NEW">Some toolbars open automatically depending on the context. For example, when you click inside a table in a text document, the Table toolbar opens. When you click inside a numbered paragraph, the Bullets and Numbering toolbar opens.</paragraph> <paragraph role="heading" id="hd_id4224372" xml-lang="en-US" level="3" l10n="NEW">To Close a Toolbar Temporarily</paragraph> diff --git a/main/helpcontent2/source/text/shared/guide/redlining_enter.xhp b/main/helpcontent2/source/text/shared/guide/redlining_enter.xhp index 15accf9d58..4b571dc7a5 100644 --- a/main/helpcontent2/source/text/shared/guide/redlining_enter.xhp +++ b/main/helpcontent2/source/text/shared/guide/redlining_enter.xhp @@ -35,41 +35,41 @@ <bookmark_value>comments; on changes</bookmark_value> <bookmark_value>review function;tracking changes</bookmark_value> </bookmark><comment>UFI: deleted index review function;recording changes</comment><comment>MW changed "settings;tracking changes" </comment> -<paragraph xml-lang="en-US" id="hd_id3155364" role="heading" level="1" l10n="U" oldref="7"><variable id="redlining_enter"><link href="text/shared/guide/redlining_enter.xhp" name="Recording Changes">Recording Changes</link> +<paragraph xml-lang="en-US" id="hd_id3155364" role="heading" level="1" l10n="U"><variable id="redlining_enter"><link href="text/shared/guide/redlining_enter.xhp" name="Recording Changes">Recording Changes</link> </variable></paragraph> <paragraph xml-lang="en-US" id="par_id7271645" role="note" l10n="NEW">The review function is available in %PRODUCTNAME for text documents and spreadsheet documents.</paragraph> -<paragraph xml-lang="en-US" id="par_id3145669" role="paragraph" l10n="CHG" oldref="8">Not all changes are recorded. For example, the changing of a tab stop from align left to align right is not recorded. However, all usual changes made by a proofreader are recorded, such as additions, deletions, text alterations, and usual formatting.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145669" role="paragraph" l10n="CHG">Not all changes are recorded. For example, the changing of a tab stop from align left to align right is not recorded. However, all usual changes made by a proofreader are recorded, such as additions, deletions, text alterations, and usual formatting.</paragraph> <table id="tbl_id3147399"> <tablerow> <tablecell> -<paragraph xml-lang="en-US" id="par_id3147088" role="paragraph" l10n="U" oldref="17">1.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147088" role="paragraph" l10n="U">1.</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3149095" role="paragraph" l10n="U" oldref="9">To start recording changes, open the document to be edited and choose <link href="text/shared/01/02230000.xhp" name="Edit - Changes"><emph>Edit - Changes</emph></link> and then choose <emph>Record</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149095" role="paragraph" l10n="U">To start recording changes, open the document to be edited and choose <link href="text/shared/01/02230000.xhp" name="Edit - Changes"><emph>Edit - Changes</emph></link> and then choose <emph>Record</emph>.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> -<paragraph xml-lang="en-US" id="par_id3154749" role="paragraph" l10n="U" oldref="18">2.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154749" role="paragraph" l10n="U">2.</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3163802" role="paragraph" l10n="U" oldref="10">Now start making your changes. You will note that all new text passages that you enter are underlined in color, while all text that you delete remains visible but is crossed out and shown in color.</paragraph> +<paragraph xml-lang="en-US" id="par_id3163802" role="paragraph" l10n="U">Now start making your changes. You will note that all new text passages that you enter are underlined in color, while all text that you delete remains visible but is crossed out and shown in color.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> -<paragraph xml-lang="en-US" id="par_id3152349" role="paragraph" l10n="U" oldref="19">3.</paragraph> +<paragraph xml-lang="en-US" id="par_id3152349" role="paragraph" l10n="U">3.</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3149578" role="paragraph" l10n="CHG" oldref="11">If you move to a marked change with the mouse pointer, you will see a reference to the type of change, the author, date and time of day for the change in the Help Tip. If the Extended Tips are also enabled, you will also see any available comments on this change.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149578" role="paragraph" l10n="CHG">If you move to a marked change with the mouse pointer, you will see a reference to the type of change, the author, date and time of day for the change in the Help Tip. If the Extended Tips are also enabled, you will also see any available comments on this change.</paragraph> </tablecell> </tablerow> </table> -<paragraph role="paragraph" id="par_id3156119" xml-lang="en-US" l10n="U" oldref="12">Changes in a spreadsheet document are highlighted by a border around the cells; when you point to the cell you can see more detailed information on this change in the Help Tip.</paragraph> -<paragraph role="paragraph" id="par_id3148473" xml-lang="en-US" l10n="U" oldref="13">You can enter a comment on each recorded change by placing the cursor in the area of the change and then choosing <emph>Edit - Changes - Comment</emph>. In addition to Extended Tips, the comment is also displayed in the list in the <link href="text/shared/01/02230400.xhp" name="Accept or Reject Changes"><emph>Accept or Reject Changes</emph></link> dialog.</paragraph> -<paragraph role="paragraph" id="par_id3153542" xml-lang="en-US" l10n="U" oldref="14">To stop recording changes, choose <emph>Edit - Changes - Record</emph> again. The check mark is removed and you can now save the document.</paragraph> -<paragraph role="paragraph" id="par_id3153627" xml-lang="en-US" l10n="U" oldref="15">In a text document, you can highlight all lines that you have changed with an additional colored marking. This can be in the form of a red line in the margin, for example.</paragraph> -<paragraph role="paragraph" id="par_id3147530" xml-lang="en-US" l10n="CHG" oldref="16">To change the settings for tracking changes, choose <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer</emph> - <link href="text/shared/optionen/01040700.xhp" name="Changes"><emph>Changes</emph></link> or on the <emph><switchinline select="sys"><caseinline select="MAC">%PROD [...] +<paragraph role="paragraph" id="par_id3156119" xml-lang="en-US" l10n="U">Changes in a spreadsheet document are highlighted by a border around the cells; when you point to the cell you can see more detailed information on this change in the Help Tip.</paragraph> +<paragraph role="paragraph" id="par_id3148473" xml-lang="en-US" l10n="U">You can enter a comment on each recorded change by placing the cursor in the area of the change and then choosing <emph>Edit - Changes - Comment</emph>. In addition to Extended Tips, the comment is also displayed in the list in the <link href="text/shared/01/02230400.xhp" name="Accept or Reject Changes"><emph>Accept or Reject Changes</emph></link> dialog.</paragraph> +<paragraph role="paragraph" id="par_id3153542" xml-lang="en-US" l10n="U">To stop recording changes, choose <emph>Edit - Changes - Record</emph> again. The check mark is removed and you can now save the document.</paragraph> +<paragraph role="paragraph" id="par_id3153627" xml-lang="en-US" l10n="U">In a text document, you can highlight all lines that you have changed with an additional colored marking. This can be in the form of a red line in the margin, for example.</paragraph> +<paragraph role="paragraph" id="par_id3147530" xml-lang="en-US" l10n="CHG">To change the settings for tracking changes, choose <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer</emph> - <link href="text/shared/optionen/01040700.xhp" name="Changes"><emph>Changes</emph></link> or on the <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Pr [...] <embed href="text/shared/00/00000004.xhp#related"/> <embed href="text/shared/guide/redlining.xhp#redlining"/> <embed href="text/shared/guide/redlining_accept.xhp#redlining_accept"/> diff --git a/main/helpcontent2/source/text/simpress/01/01180001.xhp b/main/helpcontent2/source/text/simpress/01/01180001.xhp index 85ce6b2a37..1f009b6a3b 100644 --- a/main/helpcontent2/source/text/simpress/01/01180001.xhp +++ b/main/helpcontent2/source/text/simpress/01/01180001.xhp @@ -34,8 +34,8 @@ <bookmark_value>slides; formatting</bookmark_value> <bookmark_value>formatting;slides</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3154011" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/simpress/01/01180001.xhp" name="Page">Page</link></paragraph> -<paragraph role="paragraph" id="par_id3153416" xml-lang="en-US" l10n="U" oldref="2">Sets page orientation, page margins, background and other layout options.</paragraph> +<paragraph role="heading" id="hd_id3154011" xml-lang="en-US" level="1" l10n="U"><link href="text/simpress/01/01180001.xhp" name="Page">Page</link></paragraph> +<paragraph role="paragraph" id="par_id3153416" xml-lang="en-US" l10n="U">Sets page orientation, page margins, background and other layout options.</paragraph> </section> <section id="howtoget"> <embed href="text/simpress/00/00000405.xhp#frtites"/> @@ -44,30 +44,30 @@ <paragraph role="heading" id="hd_id3154703" xml-lang="en-US" level="3" l10n="U">Format</paragraph> <paragraph role="paragraph" id="par_id3150299" xml-lang="en-US" l10n="U">Select a paper format supported by your printer. You can also create a custom page size by selecting <emph>User</emph> and entering the size dimensions in the <emph>Width</emph> and <emph>Height</emph> boxes.</paragraph> <paragraph role="heading" id="hd_id3154659" xml-lang="en-US" level="3" l10n="U">Width</paragraph> -<paragraph role="paragraph" id="par_id3152992" xml-lang="en-US" l10n="U" oldref="22">Shows the width of the paper format you selected in the <emph>Format</emph> box. If you selected the <emph>User</emph> format, enter a value for the width of the page.</paragraph> -<paragraph role="heading" id="hd_id3153816" xml-lang="en-US" level="3" l10n="U" oldref="23">Height</paragraph> -<paragraph role="paragraph" id="par_id3149945" xml-lang="en-US" l10n="U" oldref="24">Shows the height of the paper format you selected in the <emph>Format</emph> box. If you selected the <emph>User</emph> format, enter a value for the height of the page.</paragraph> -<paragraph role="heading" id="hd_id3159207" xml-lang="en-US" level="3" l10n="U" oldref="25">Portrait</paragraph> -<paragraph role="paragraph" id="par_id3153250" xml-lang="en-US" l10n="U" oldref="26">Page orientation is vertical.</paragraph> -<paragraph role="heading" id="hd_id3154766" xml-lang="en-US" level="3" l10n="U" oldref="27">Landscape</paragraph> -<paragraph role="paragraph" id="par_id3153812" xml-lang="en-US" l10n="U" oldref="28">Page orientation is horizontal.</paragraph> -<paragraph role="heading" id="hd_id3153075" xml-lang="en-US" level="3" l10n="U" oldref="29">Paper tray</paragraph> -<paragraph role="paragraph" id="par_id3145115" xml-lang="en-US" l10n="U" oldref="30">Select the paper source for your printer.</paragraph> -<paragraph role="tip" id="par_id3150652" xml-lang="en-US" l10n="U" oldref="39">If your document uses more than one paper format, you can select a different tray for each format.</paragraph> +<paragraph role="paragraph" id="par_id3152992" xml-lang="en-US" l10n="U">Shows the width of the paper format you selected in the <emph>Format</emph> box. If you selected the <emph>User</emph> format, enter a value for the width of the page.</paragraph> +<paragraph role="heading" id="hd_id3153816" xml-lang="en-US" level="3" l10n="U">Height</paragraph> +<paragraph role="paragraph" id="par_id3149945" xml-lang="en-US" l10n="U">Shows the height of the paper format you selected in the <emph>Format</emph> box. If you selected the <emph>User</emph> format, enter a value for the height of the page.</paragraph> +<paragraph role="heading" id="hd_id3159207" xml-lang="en-US" level="3" l10n="U">Portrait</paragraph> +<paragraph role="paragraph" id="par_id3153250" xml-lang="en-US" l10n="U">Page orientation is vertical.</paragraph> +<paragraph role="heading" id="hd_id3154766" xml-lang="en-US" level="3" l10n="U">Landscape</paragraph> +<paragraph role="paragraph" id="par_id3153812" xml-lang="en-US" l10n="U">Page orientation is horizontal.</paragraph> +<paragraph role="heading" id="hd_id3153075" xml-lang="en-US" level="3" l10n="U">Paper tray</paragraph> +<paragraph role="paragraph" id="par_id3145115" xml-lang="en-US" l10n="U">Select the paper source for your printer.</paragraph> +<paragraph role="tip" id="par_id3150652" xml-lang="en-US" l10n="U">If your document uses more than one paper format, you can select a different tray for each format.</paragraph> <embed href="text/shared/00/00000001.xhp#vorschau"/> -<paragraph role="heading" id="hd_id3150746" xml-lang="en-US" level="2" l10n="U" oldref="3">Margins</paragraph> -<paragraph role="paragraph" id="par_id3153037" xml-lang="en-US" l10n="U" oldref="4">Specify the distance between the edge of a printed page and the printable area.</paragraph> -<paragraph role="heading" id="hd_id3145591" xml-lang="en-US" level="3" l10n="U" oldref="5">Left</paragraph> -<paragraph role="paragraph" id="par_id3154561" xml-lang="en-US" l10n="U" oldref="6">Enter the distance between the left edge of the page and the data. You can see the result in the preview.</paragraph> -<paragraph role="heading" id="hd_id3153084" xml-lang="en-US" level="3" l10n="U" oldref="7">Right</paragraph> -<paragraph role="paragraph" id="par_id3153001" xml-lang="en-US" l10n="U" oldref="8">Enter the distance between the right edge of the page and the data. You can see the result in the preview.</paragraph> -<paragraph role="heading" id="hd_id3153565" xml-lang="en-US" level="3" l10n="U" oldref="9">Top</paragraph> -<paragraph role="paragraph" id="par_id3145167" xml-lang="en-US" l10n="U" oldref="10">Enter the distance between the top edge of the page and the data. You can see the result in the preview.</paragraph> -<paragraph role="heading" id="hd_id3150335" xml-lang="en-US" level="3" l10n="U" oldref="11">Bottom</paragraph> -<paragraph role="paragraph" id="par_id3153736" xml-lang="en-US" l10n="U" oldref="12">Enter the distance between the bottom edge of the page and the data. You can see the result in the preview.</paragraph> -<paragraph role="heading" id="hd_id3150018" xml-lang="en-US" level="3" l10n="U" oldref="15">Format</paragraph> -<paragraph role="paragraph" id="par_id3149877" xml-lang="en-US" l10n="U" oldref="16">Specify the format for page numbering.</paragraph> -<paragraph role="heading" id="hd_id3155439" xml-lang="en-US" level="3" l10n="U" oldref="36">Fit object to paper format</paragraph> -<paragraph role="paragraph" id="par_id3153042" xml-lang="en-US" l10n="U" oldref="37">Reduces the scale of objects and the size of the font on the page so that they print on the selected paper format.</paragraph> +<paragraph role="heading" id="hd_id3150746" xml-lang="en-US" level="2" l10n="U">Margins</paragraph> +<paragraph role="paragraph" id="par_id3153037" xml-lang="en-US" l10n="U">Specify the distance between the edge of a printed page and the printable area.</paragraph> +<paragraph role="heading" id="hd_id3145591" xml-lang="en-US" level="3" l10n="U">Left</paragraph> +<paragraph role="paragraph" id="par_id3154561" xml-lang="en-US" l10n="U">Enter the distance between the left edge of the page and the data. You can see the result in the preview.</paragraph> +<paragraph role="heading" id="hd_id3153084" xml-lang="en-US" level="3" l10n="U">Right</paragraph> +<paragraph role="paragraph" id="par_id3153001" xml-lang="en-US" l10n="U">Enter the distance between the right edge of the page and the data. You can see the result in the preview.</paragraph> +<paragraph role="heading" id="hd_id3153565" xml-lang="en-US" level="3" l10n="U">Top</paragraph> +<paragraph role="paragraph" id="par_id3145167" xml-lang="en-US" l10n="U">Enter the distance between the top edge of the page and the data. You can see the result in the preview.</paragraph> +<paragraph role="heading" id="hd_id3150335" xml-lang="en-US" level="3" l10n="U">Bottom</paragraph> +<paragraph role="paragraph" id="par_id3153736" xml-lang="en-US" l10n="U">Enter the distance between the bottom edge of the page and the data. You can see the result in the preview.</paragraph> +<paragraph role="heading" id="hd_id3150018" xml-lang="en-US" level="3" l10n="U">Format</paragraph> +<paragraph role="paragraph" id="par_id3149877" xml-lang="en-US" l10n="U">Specify the format for page numbering.</paragraph> +<paragraph role="heading" id="hd_id3155439" xml-lang="en-US" level="3" l10n="U">Fit object to paper format</paragraph> +<paragraph role="paragraph" id="par_id3153042" xml-lang="en-US" l10n="U">Reduces the scale of objects and the size of the font on the page so that they print on the selected paper format.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/simpress/01/04030000.xhp b/main/helpcontent2/source/text/simpress/01/04030000.xhp index d4383d822f..2d3128dbd2 100644 --- a/main/helpcontent2/source/text/simpress/01/04030000.xhp +++ b/main/helpcontent2/source/text/simpress/01/04030000.xhp @@ -37,35 +37,35 @@ </bookmark> <bookmark xml-lang="en-US" branch="hid/.uno:CapturePoint" id="bm_id1394129" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:CapturePoint" id="bm_id3155602" localize="false"/> -<paragraph role="heading" id="hd_id3145800" xml-lang="en-US" level="1" l10n="U" oldref="1">Snap Point/Line</paragraph> -<paragraph role="paragraph" id="par_id3150752" xml-lang="en-US" l10n="CHG" oldref="2"><variable id="fangtext"><ahelp hid=".uno:CapturePoint">Inserts a snap point or snap line (also known as guide) that you can use to quickly align objects.</ahelp> +<paragraph role="heading" id="hd_id3145800" xml-lang="en-US" level="1" l10n="U">Snap Point/Line</paragraph> +<paragraph role="paragraph" id="par_id3150752" xml-lang="en-US" l10n="CHG"><variable id="fangtext"><ahelp hid=".uno:CapturePoint">Inserts a snap point or snap line (also known as guide) that you can use to quickly align objects.</ahelp> </variable> Snap points and snap lines do not appear in printed output.</paragraph> <section id="howtoget"> <embed href="text/simpress/00/00000404.xhp#efgflp"/> </section> -<paragraph role="tip" id="par_id3145388" xml-lang="en-US" l10n="U" oldref="19">You can drag a snap line from the rulers and drop them on the page. To delete a snap line, drag it back to the ruler.</paragraph> -<paragraph role="paragraph" id="par_id3153815" xml-lang="en-US" l10n="U" oldref="3">Draw or move an object near a snap point or snap line to snap it in place.</paragraph> -<paragraph role="paragraph" id="par_id3157978" xml-lang="en-US" l10n="U" oldref="4">To set the snap range, choose <switchinline select="appl"><caseinline select="DRAW"><link href="text/shared/optionen/01070300.xhp" name="Drawing - Grid"><emph>%PRODUCTNAME Draw - Grid</emph></link> +<paragraph role="tip" id="par_id3145388" xml-lang="en-US" l10n="U">You can drag a snap line from the rulers and drop them on the page. To delete a snap line, drag it back to the ruler.</paragraph> +<paragraph role="paragraph" id="par_id3153815" xml-lang="en-US" l10n="U">Draw or move an object near a snap point or snap line to snap it in place.</paragraph> +<paragraph role="paragraph" id="par_id3157978" xml-lang="en-US" l10n="U">To set the snap range, choose <switchinline select="appl"><caseinline select="DRAW"><link href="text/shared/optionen/01070300.xhp" name="Drawing - Grid"><emph>%PRODUCTNAME Draw - Grid</emph></link> </caseinline><defaultinline><link href="text/shared/optionen/01070300.xhp" name="Presentation - Grid"><emph>%PRODUCTNAME Impress - Grid</emph></link></defaultinline></switchinline> in the Options dialog box.</paragraph> -<paragraph role="heading" id="hd_id3147402" xml-lang="en-US" level="2" l10n="U" oldref="5">Position</paragraph> -<paragraph role="paragraph" id="par_id3150533" xml-lang="en-US" l10n="U" oldref="6">Sets the position of a selected snap point or line relative to the top left corner of the page.</paragraph> -<paragraph role="note" id="par_id3153040" xml-lang="en-US" l10n="U" oldref="24">You can also drag a snap point or snap line to a new position.</paragraph> +<paragraph role="heading" id="hd_id3147402" xml-lang="en-US" level="2" l10n="U">Position</paragraph> +<paragraph role="paragraph" id="par_id3150533" xml-lang="en-US" l10n="U">Sets the position of a selected snap point or line relative to the top left corner of the page.</paragraph> +<paragraph role="note" id="par_id3153040" xml-lang="en-US" l10n="U">You can also drag a snap point or snap line to a new position.</paragraph> <bookmark xml-lang="en-US" branch="hid/sd:MetricField:DLG_SNAPLINE:MTR_FLD_X" id="bm_id3145593" localize="false"/> -<paragraph role="heading" id="hd_id3153078" xml-lang="en-US" level="3" l10n="U" oldref="7">X axis</paragraph> -<paragraph role="paragraph" id="par_id3149951" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="SD:METRICFIELD:DLG_SNAPLINE:MTR_FLD_X">Enter the amount of space you want between the snap point or line and the left edge of the page.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153078" xml-lang="en-US" level="3" l10n="U">X axis</paragraph> +<paragraph role="paragraph" id="par_id3149951" xml-lang="en-US" l10n="U"><ahelp hid="SD:METRICFIELD:DLG_SNAPLINE:MTR_FLD_X">Enter the amount of space you want between the snap point or line and the left edge of the page.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sd:MetricField:DLG_SNAPLINE:MTR_FLD_Y" id="bm_id3149512" localize="false"/> -<paragraph role="heading" id="hd_id3153932" xml-lang="en-US" level="3" l10n="U" oldref="9">Y axis</paragraph> -<paragraph role="paragraph" id="par_id3153113" xml-lang="en-US" l10n="U" oldref="10"><ahelp hid="SD:METRICFIELD:DLG_SNAPLINE:MTR_FLD_Y">Enter the amount of space you want between the snap point or line and the top edge of the page.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3145168" xml-lang="en-US" level="2" l10n="U" oldref="11">Type</paragraph> -<paragraph role="paragraph" id="par_id3154503" xml-lang="en-US" l10n="U" oldref="12">Specified the type of snap object you want to insert.</paragraph> +<paragraph role="heading" id="hd_id3153932" xml-lang="en-US" level="3" l10n="U">Y axis</paragraph> +<paragraph role="paragraph" id="par_id3153113" xml-lang="en-US" l10n="U"><ahelp hid="SD:METRICFIELD:DLG_SNAPLINE:MTR_FLD_Y">Enter the amount of space you want between the snap point or line and the top edge of the page.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3145168" xml-lang="en-US" level="2" l10n="U">Type</paragraph> +<paragraph role="paragraph" id="par_id3154503" xml-lang="en-US" l10n="U">Specified the type of snap object you want to insert.</paragraph> <bookmark xml-lang="en-US" branch="hid/sd:ImageRadioButton:DLG_SNAPLINE:RB_POINT" id="bm_id3150131" localize="false"/> -<paragraph role="heading" id="hd_id3147366" xml-lang="en-US" level="3" l10n="U" oldref="13">Point</paragraph> -<paragraph role="paragraph" id="par_id3155926" xml-lang="en-US" l10n="CHG" oldref="14"><ahelp hid="SD:IMAGERADIOBUTTON:DLG_SNAPLINE:RB_POINT">Inserts a snap point.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147366" xml-lang="en-US" level="3" l10n="U">Point</paragraph> +<paragraph role="paragraph" id="par_id3155926" xml-lang="en-US" l10n="CHG"><ahelp hid="SD:IMAGERADIOBUTTON:DLG_SNAPLINE:RB_POINT">Inserts a snap point.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sd:ImageRadioButton:DLG_SNAPLINE:RB_VERTICAL" id="bm_id3153733" localize="false"/> -<paragraph role="heading" id="hd_id3150014" xml-lang="en-US" level="3" l10n="U" oldref="15">Vertical</paragraph> -<paragraph role="paragraph" id="par_id3145241" xml-lang="en-US" l10n="U" oldref="16"><ahelp hid="SD:IMAGERADIOBUTTON:DLG_SNAPLINE:RB_VERTICAL">Inserts a vertical snap line.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150014" xml-lang="en-US" level="3" l10n="U">Vertical</paragraph> +<paragraph role="paragraph" id="par_id3145241" xml-lang="en-US" l10n="U"><ahelp hid="SD:IMAGERADIOBUTTON:DLG_SNAPLINE:RB_VERTICAL">Inserts a vertical snap line.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sd:ImageRadioButton:DLG_SNAPLINE:RB_HORIZONTAL" id="bm_id3148770" localize="false"/> -<paragraph role="heading" id="hd_id3148386" xml-lang="en-US" level="3" l10n="U" oldref="17">Horizontal</paragraph> -<paragraph role="paragraph" id="par_id3145348" xml-lang="en-US" l10n="U" oldref="18"><ahelp hid="SD:IMAGERADIOBUTTON:DLG_SNAPLINE:RB_HORIZONTAL">Inserts a horizontal snap line.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3148386" xml-lang="en-US" level="3" l10n="U">Horizontal</paragraph> +<paragraph role="paragraph" id="par_id3145348" xml-lang="en-US" l10n="U"><ahelp hid="SD:IMAGERADIOBUTTON:DLG_SNAPLINE:RB_HORIZONTAL">Inserts a horizontal snap line.</ahelp></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/swriter/guide/arrange_chapters.xhp b/main/helpcontent2/source/text/swriter/guide/arrange_chapters.xhp index 8c8f19f700..a1db949c46 100644 --- a/main/helpcontent2/source/text/swriter/guide/arrange_chapters.xhp +++ b/main/helpcontent2/source/text/swriter/guide/arrange_chapters.xhp @@ -39,51 +39,50 @@ <bookmark_value>arranging;headings</bookmark_value> <bookmark_value>outlines;arranging chapters</bookmark_value> </bookmark><comment>mw added "outlines;..." entry</comment> -<paragraph xml-lang="en-US" id="hd_id3149973" role="heading" level="1" l10n="CHG" -oldref="58"><variable id="arrange_chapters"><link href="text/swriter/guide/arrange_chapters.xhp" name="Rearranging a Document by Using the Navigator">Arranging Chapters in the Navigator</link> +<paragraph xml-lang="en-US" id="hd_id3149973" role="heading" level="1" l10n="CHG"><variable id="arrange_chapters"><link href="text/swriter/guide/arrange_chapters.xhp" name="Rearranging a Document by Using the Navigator">Arranging Chapters in the Navigator</link> </variable></paragraph> -<paragraph role="paragraph" id="par_id3147795" xml-lang="en-US" l10n="U" oldref="59">You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box [...] -<paragraph role="tip" id="par_id3145652" xml-lang="en-US" l10n="U" oldref="62">To quickly move the text cursor to a heading in the document, double-click the heading in the <emph>Navigator</emph> list.</paragraph> -<paragraph role="paragraph" id="par_id3155461" xml-lang="en-US" l10n="CHG" oldref="60">To dock the <emph>Navigator</emph>, drag the title bar to the edge of the workspace. To undock the <emph>Navigator</emph>, double-click its frame.</paragraph> -<paragraph role="heading" id="hd_id3151184" xml-lang="en-US" level="3" l10n="U" oldref="70">To Move a Heading Up or Down in the Document</paragraph> +<paragraph role="paragraph" id="par_id3147795" xml-lang="en-US" l10n="U">You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then d [...] +<paragraph role="tip" id="par_id3145652" xml-lang="en-US" l10n="U">To quickly move the text cursor to a heading in the document, double-click the heading in the <emph>Navigator</emph> list.</paragraph> +<paragraph role="paragraph" id="par_id3155461" xml-lang="en-US" l10n="CHG">To dock the <emph>Navigator</emph>, drag the title bar to the edge of the workspace. To undock the <emph>Navigator</emph>, double-click its frame.</paragraph> +<paragraph role="heading" id="hd_id3151184" xml-lang="en-US" level="3" l10n="U">To Move a Heading Up or Down in the Document</paragraph> <paragraph role="warning" id="par_id0915200809400790" xml-lang="en-US" l10n="NEW">Ensure that all heading levels are shown in the Navigator. By default all levels are shown. See steps below how to change the heading levels that are shown.</paragraph> <list type="ordered"> <listitem> -<paragraph role="listitem" id="par_id3151206" xml-lang="en-US" l10n="U" oldref="71">On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon +<paragraph role="listitem" id="par_id3151206" xml-lang="en-US" l10n="U">On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id="img_id5211883" src="res/commandimagelist/sc_navigator.png" width="0.564cm" height="0.564cm"><alt id="alt_id5211883" xml-lang="en-US">Icon</alt> </image> to open the <emph>Navigator</emph>.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3151238" xml-lang="en-US" l10n="U" oldref="72">On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon +<paragraph role="listitem" id="par_id3151238" xml-lang="en-US" l10n="U">On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id="img_id3156338" src="sw/imglst/sc20234.png" width="0.564cm" height="0.564cm"><alt id="alt_id3156338" xml-lang="en-US">Icon</alt> </image>.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3155089" xml-lang="en-US" l10n="U" oldref="74">Do one of the following:</paragraph> +<paragraph role="listitem" id="par_id3155089" xml-lang="en-US" l10n="U">Do one of the following:</paragraph> </listitem> </list> <list type="ordered"> <listitem> -<paragraph role="listitem" id="par_id3155114" xml-lang="en-US" l10n="U" oldref="63">Drag a heading to a new location in the <emph>Navigator</emph> list.</paragraph> +<paragraph role="listitem" id="par_id3155114" xml-lang="en-US" l10n="U">Drag a heading to a new location in the <emph>Navigator</emph> list.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3155139" xml-lang="en-US" l10n="U" oldref="75">Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id="img_id4217546" src="sw/imglst/sc20174.png"><alt id="alt_id4217546" xml-lang="en-US">Icon</alt> +<paragraph role="listitem" id="par_id3155139" xml-lang="en-US" l10n="U">Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id="img_id4217546" src="sw/imglst/sc20174.png"><alt id="alt_id4217546" xml-lang="en-US">Icon</alt> </image> or <emph>Demote Chapter</emph> icon <image id="img_id6505788" src="sw/imglst/sc20171.png"><alt id="alt_id6505788" xml-lang="en-US">Icon</alt></image>.</paragraph> </listitem> </list> -<paragraph role="note" id="par_id3145758" xml-lang="en-US" l10n="U" oldref="64">To move the heading without the subordinate text, hold down Ctrl while you drag or click the <emph>Promote Chapter</emph> or <emph>Demote Chapter</emph> icons.</paragraph> -<paragraph role="heading" id="hd_id3155402" xml-lang="en-US" level="3" l10n="U" oldref="76">To Promote or Demote the Level of a Heading</paragraph> +<paragraph role="note" id="par_id3145758" xml-lang="en-US" l10n="U">To move the heading without the subordinate text, hold down Ctrl while you drag or click the <emph>Promote Chapter</emph> or <emph>Demote Chapter</emph> icons.</paragraph> +<paragraph role="heading" id="hd_id3155402" xml-lang="en-US" level="3" l10n="U">To Promote or Demote the Level of a Heading</paragraph> <list type="ordered"> <listitem> -<paragraph role="listitem" id="par_id3155424" xml-lang="en-US" l10n="U" oldref="77">Select the heading in the <emph>Navigator</emph> list.</paragraph> +<paragraph role="listitem" id="par_id3155424" xml-lang="en-US" l10n="U">Select the heading in the <emph>Navigator</emph> list.</paragraph> </listitem> <listitem> <paragraph role="listitem" id="par_idN1081C" xml-lang="en-US" l10n="NEW">Click the <emph>Promote Level</emph> <image id="img_id5564488" src="sw/imglst/sc20172.png"><alt id="alt_id5564488" xml-lang="en-US">Icon</alt> </image> or <emph>Demote Level</emph> icon <image id="img_id3159363" src="sw/imglst/sc20173.png"><alt id="alt_id3159363" xml-lang="en-US">Icon</alt></image>.</paragraph> </listitem> </list> -<paragraph role="heading" id="hd_id3155525" xml-lang="en-US" level="3" l10n="U" oldref="78">To Change the Number of Heading Levels That Are Displayed</paragraph> -<paragraph role="paragraph" id="par_id3151352" xml-lang="en-US" l10n="U" oldref="79">Click the <emph>Heading Levels Shown</emph> icon +<paragraph role="heading" id="hd_id3155525" xml-lang="en-US" level="3" l10n="U">To Change the Number of Heading Levels That Are Displayed</paragraph> +<paragraph role="paragraph" id="par_id3151352" xml-lang="en-US" l10n="U">Click the <emph>Heading Levels Shown</emph> icon <image id="img_id3151310" src="sw/imglst/sc20236.png" width="0.564cm" height="0.564cm"><alt id="alt_id3151310" xml-lang="en-US">Icon</alt> </image>, and then select a number from the list.</paragraph> <section id="relatedtopics"> diff --git a/main/helpcontent2/source/text/swriter/guide/background.xhp b/main/helpcontent2/source/text/swriter/guide/background.xhp index f84dafa095..f6899a2526 100644 --- a/main/helpcontent2/source/text/swriter/guide/background.xhp +++ b/main/helpcontent2/source/text/swriter/guide/background.xhp @@ -38,57 +38,56 @@ <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>backgrounds;selecting</bookmark_value> </bookmark><comment>MW transferred 4 index entries from shared/guide/background.xhp and added 3 new entries</comment> -<paragraph xml-lang="en-US" id="hd_id3149346" role="heading" level="1" l10n="U" oldref="1"><variable id="background"><link href="text/swriter/guide/background.xhp" name="Defining Background Colors or Background Graphics">Defining Background Colors or Background Graphics</link> +<paragraph xml-lang="en-US" id="hd_id3149346" role="heading" level="1" l10n="U"><variable id="background"><link href="text/swriter/guide/background.xhp" name="Defining Background Colors or Background Graphics">Defining Background Colors or Background Graphics</link> </variable></paragraph><comment>MW built this file from splitting shared/guide/background.xhp</comment> <paragraph xml-lang="en-US" id="par_id7355265" role="paragraph" l10n="NEW">You can define a background color or use a graphic as a background for various objects in $[officename] Writer.</paragraph> -<paragraph xml-lang="en-US" id="hd_id3147653" role="heading" level="2" l10n="U" oldref="3">To Apply a Background To Text Characters</paragraph> +<paragraph xml-lang="en-US" id="hd_id3147653" role="heading" level="2" l10n="U">To Apply a Background To Text Characters</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3150669" role="listitem" l10n="U" oldref="4">Select the characters.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150669" role="listitem" l10n="U">Select the characters.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3155390" role="listitem" l10n="U" oldref="5">Choose <emph>Format - Character</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155390" role="listitem" l10n="U">Choose <emph>Format - Character</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153665" role="listitem" l10n="U" oldref="6">Click the <emph>Background</emph> tab, select the background color.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153665" role="listitem" l10n="U">Click the <emph>Background</emph> tab, select the background color.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3153541" role="heading" level="2" l10n="U" oldref="7">To Apply a Background To a Paragraph</paragraph> +<paragraph xml-lang="en-US" id="hd_id3153541" role="heading" level="2" l10n="U">To Apply a Background To a Paragraph</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3145119" role="listitem" l10n="U" oldref="8">Place the cursor in the paragraph or select several paragraphs.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145119" role="listitem" l10n="U">Place the cursor in the paragraph or select several paragraphs.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3158430" role="listitem" l10n="U" oldref="9">Choose <emph>Format - Paragraph</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3158430" role="listitem" l10n="U">Choose <emph>Format - Paragraph</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3151245" role="listitem" l10n="U" oldref="10">On the <emph>Area</emph> tab page, select the background color or a background graphic.</paragraph> +<paragraph xml-lang="en-US" id="par_id3151245" role="listitem" l10n="U">On the <emph>Area</emph> tab page, select the background color or a background graphic.</paragraph> </listitem> </list> <paragraph xml-lang="en-US" id="par_id0104201010554939" role="tip" l10n="NEW">To select an object in the background, hold down the <switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and click the object. Alternatively, use the Navigator to select the object.</paragraph> -<paragraph xml-lang="en-US" id="hd_id3149294" role="heading" level="2" l10n="U" -oldref="11">To Apply a Background To All or Part of a Table</paragraph> +<paragraph xml-lang="en-US" id="hd_id3149294" role="heading" level="2" l10n="U">To Apply a Background To All or Part of a Table</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3154346" role="listitem" l10n="U" oldref="12">Place the cursor in the table in your text document.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154346" role="listitem" l10n="U">Place the cursor in the table in your text document.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3148664" role="listitem" l10n="CHG" oldref="13">Choose <emph>Table - Table Properties</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148664" role="listitem" l10n="CHG">Choose <emph>Table - Table Properties</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3154938" role="listitem" l10n="U" oldref="14">On the <emph>Background</emph> tab page, select the background color or a background graphic.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154938" role="listitem" l10n="U">On the <emph>Background</emph> tab page, select the background color or a background graphic.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3156280" role="listitem" l10n="U" oldref="15">In the <emph>For</emph> box, choose whether the color or graphic should apply to the current cell, the current row or the whole table. If you select several cells or rows before opening the dialog, the change applies to the selection.</paragraph> +<paragraph xml-lang="en-US" id="par_id3156280" role="listitem" l10n="U">In the <emph>For</emph> box, choose whether the color or graphic should apply to the current cell, the current row or the whole table. If you select several cells or rows before opening the dialog, the change applies to the selection.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3151041" role="tip" l10n="U" oldref="31">You may also use an icon to apply a background to table parts.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3151041" role="tip" l10n="U">You may also use an icon to apply a background to table parts.</paragraph> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3150767" role="tip" l10n="U" oldref="32">To apply a background color to cells, select the cells and click the color on the <emph>Background Color</emph> toolbar.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150767" role="tip" l10n="U">To apply a background color to cells, select the cells and click the color on the <emph>Background Color</emph> toolbar.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147084" role="tip" l10n="U" oldref="33">To apply a background color to a text paragraph within a cell, place the cursor into the text paragraph, then click the color on the <item type="menuitem">Background Color</item> toolbar.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147084" role="tip" l10n="U">To apply a background color to a text paragraph within a cell, place the cursor into the text paragraph, then click the color on the <item type="menuitem">Background Color</item> toolbar.</paragraph> </listitem> </list> <section id="relatedtopics"> @@ -97,7 +96,7 @@ oldref="11">To Apply a Background To All or Part of a Table</paragraph> </case> </switch> <paragraph xml-lang="en-US" id="par_idN10A56" role="paragraph" l10n="NEW"><link href="text/shared/02/02160000.xhp">Highlighting icon</link></paragraph> -<paragraph xml-lang="en-US" id="par_id3156180" role="paragraph" l10n="U" oldref="30"><link href="text/shared/01/05030600.xhp" name="Background tab page">Background tab page</link></paragraph> +<paragraph xml-lang="en-US" id="par_id3156180" role="paragraph" l10n="U"><link href="text/shared/01/05030600.xhp" name="Background tab page">Background tab page</link></paragraph> <paragraph xml-lang="en-US" id="par_id4922025" role="paragraph" l10n="NEW"><link href="text/shared/guide/background.xhp">Watermarks</link></paragraph> <paragraph xml-lang="en-US" id="par_id478530" role="paragraph" l10n="NEW"><link href="text/swriter/guide/pagebackground.xhp">Page Backgrounds as Page Styles</link></paragraph> </section> diff --git a/main/helpcontent2/source/text/swriter/guide/footnote_usage.xhp b/main/helpcontent2/source/text/swriter/guide/footnote_usage.xhp index 7c0fe19afe..6b15650174 100644 --- a/main/helpcontent2/source/text/swriter/guide/footnote_usage.xhp +++ b/main/helpcontent2/source/text/swriter/guide/footnote_usage.xhp @@ -37,74 +37,70 @@ <bookmark_value>organizing;footnotes</bookmark_value> <bookmark_value>footnotes; inserting and editing</bookmark_value> </bookmark><comment>MW deleted "removing;.."</comment> -<paragraph xml-lang="en-US" id="hd_id3145819" role="heading" level="1" l10n="U" -oldref="16"><variable id="footnote_usage"><link href="text/swriter/guide/footnote_usage.xhp" name="Inserting and Editing Footnotes or Endnotes">Inserting and Editing Footnotes or Endnotes</link> +<paragraph xml-lang="en-US" id="hd_id3145819" role="heading" level="1" l10n="U"><variable id="footnote_usage"><link href="text/swriter/guide/footnote_usage.xhp" name="Inserting and Editing Footnotes or Endnotes">Inserting and Editing Footnotes or Endnotes</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3154258" role="paragraph" l10n="CHG" oldref="14">Footnotes reference more information about a topic at the bottom of a page and endnotes reference information at the end of the document. $[officename] automatically numbers the footnotes and endnotes.</paragraph> -<paragraph xml-lang="en-US" id="hd_id3155881" role="heading" level="2" l10n="U" -oldref="24">To Insert a Footnote or Endnote</paragraph> +<paragraph xml-lang="en-US" id="par_id3154258" role="paragraph" l10n="CHG">Footnotes reference more information about a topic at the bottom of a page and endnotes reference information at the end of the document. $[officename] automatically numbers the footnotes and endnotes.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3155881" role="heading" level="2" l10n="U">To Insert a Footnote or Endnote</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3155903" role="listitem" l10n="U" oldref="25">Click in your document where you want to place the anchor of the note.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155903" role="listitem" l10n="U">Click in your document where you want to place the anchor of the note.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147120" role="listitem" l10n="U" oldref="26">Choose <link href="text/swriter/01/04030000.xhp" name="Insert - Footnote"><emph>Insert - Footnote/Endnote</emph></link>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147120" role="listitem" l10n="U">Choose <link href="text/swriter/01/04030000.xhp" name="Insert - Footnote"><emph>Insert - Footnote/Endnote</emph></link>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150937" role="listitem" l10n="U" oldref="34">In the <item type="menuitem">Numbering</item> area, select the format that you want to use. If you select <item type="menuitem">Character</item>, click the browse button (<item type="menuitem">...</item>) and select the character that you want to use for the footnote.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150937" role="listitem" l10n="U">In the <item type="menuitem">Numbering</item> area, select the format that you want to use. If you select <item type="menuitem">Character</item>, click the browse button (<item type="menuitem">...</item>) and select the character that you want to use for the footnote.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150508" role="listitem" l10n="U" oldref="35">In the <item type="menuitem">Type</item> area, select <item type="menuitem">Footnote</item> or <item type="menuitem">Endnote</item>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150508" role="listitem" l10n="U">In the <item type="menuitem">Type</item> area, select <item type="menuitem">Footnote</item> or <item type="menuitem">Endnote</item>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150704" role="listitem" l10n="U" oldref="36">Click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150704" role="listitem" l10n="U">Click <emph>OK</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150729" role="listitem" l10n="U" oldref="37">Type the note.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150729" role="listitem" l10n="U">Type the note.</paragraph> </listitem> </list> <table id="tbl_id3150745"> <tablerow> <tablecell> <paragraph xml-lang="en-US" id="par_id3148843" role="paragraph" l10n="E"> -<image id="img_id3148857" src="res/commandimagelist/sc_insertfootnote.png" width="0.222in" height="0.222in"><alt xml-lang="en-US" id="alt_id3148857">Icon</alt> -</image></paragraph> +<image id="img_id3148857" src="res/commandimagelist/sc_insertfootnote.png" width="0.222in" height="0.222in"><alt xml-lang="en-US" id="alt_id3148857">Icon</alt></image></paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3153176" role="paragraph" l10n="CHG" oldref="27">You can also insert footnotes by clicking the <emph>Insert Footnote Directly</emph> icon on the <emph>Insert</emph> toolbar.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153176" role="paragraph" l10n="CHG">You can also insert footnotes by clicking the <emph>Insert Footnote Directly</emph> icon on the <emph>Insert</emph> toolbar.</paragraph> </tablecell> </tablerow> </table> -<paragraph xml-lang="en-US" id="hd_id3155543" role="heading" level="2" l10n="U" -oldref="28">To Edit a Footnote or Endnote</paragraph> +<paragraph xml-lang="en-US" id="hd_id3155543" role="heading" level="2" l10n="U">To Edit a Footnote or Endnote</paragraph> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3150167" role="listitem" l10n="U" oldref="6">The mouse pointer changes to a hand when you rest it over a footnote or endnote anchor in your document.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150167" role="listitem" l10n="U">The mouse pointer changes to a hand when you rest it over a footnote or endnote anchor in your document.</paragraph> </listitem> </list> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3155563" role="listitem" l10n="U" oldref="29">To edit the text of a footnote or endnote, click in the note, or click the anchor for the note in the text.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155563" role="listitem" l10n="U">To edit the text of a footnote or endnote, click in the note, or click the anchor for the note in the text.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3145029" role="listitem" l10n="U" oldref="40">To change the format of a footnote, click in the footnote, press <switchinline select="sys"><caseinline select="MAC">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the Styles and Formatting window, right-click "Footnote" in the list, and then choose <emph>Modify</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145029" role="listitem" l10n="U">To change the format of a footnote, click in the footnote, press <switchinline select="sys"><caseinline select="MAC">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the Styles and Formatting window, right-click "Footnote" in the list, and then choose <emph>Modify</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3145062" role="listitem" l10n="U" oldref="30">To jump from the footnote or endnote text to the note anchor in the text, press PageUp.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145062" role="listitem" l10n="U">To jump from the footnote or endnote text to the note anchor in the text, press PageUp.</paragraph> </listitem> </list> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3145081" role="listitem" l10n="U" oldref="4">To edit the numbering properties of a footnote or endnote anchor, click in front of the anchor, and choose <link href="text/swriter/01/02150000.xhp" name="Edit - Footnote"><emph>Edit - Footnote/Endnote</emph></link>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145081" role="listitem" l10n="U">To edit the numbering properties of a footnote or endnote anchor, click in front of the anchor, and choose <link href="text/swriter/01/02150000.xhp" name="Edit - Footnote"><emph>Edit - Footnote/Endnote</emph></link>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147776" role="listitem" l10n="U" oldref="3">To change the formatting that $[officename] applies to footnotes and endnotes, choose <link href="text/swriter/01/06080000.xhp" name="Tools - Footnotes"><emph>Tools - Footnotes/Endnotes</emph></link>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147776" role="listitem" l10n="U">To change the formatting that $[officename] applies to footnotes and endnotes, choose <link href="text/swriter/01/06080000.xhp" name="Tools - Footnotes"><emph>Tools - Footnotes/Endnotes</emph></link>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147813" role="listitem" l10n="U" oldref="15">To edit the properties of the text area for footnotes or endnotes, choose <emph>Format - Page</emph>, and then click the <link href="text/swriter/01/05040600.xhp" name="Footnote"><emph>Footnote</emph></link> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147813" role="listitem" l10n="U">To edit the properties of the text area for footnotes or endnotes, choose <emph>Format - Page</emph>, and then click the <link href="text/swriter/01/05040600.xhp" name="Footnote"><emph>Footnote</emph></link> tab.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147232" role="listitem" l10n="U" oldref="41">To remove a footnote, delete the footnote anchor in the text.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147232" role="listitem" l10n="U">To remove a footnote, delete the footnote anchor in the text.</paragraph> </listitem> </list> <embed href="text/shared/00/00000004.xhp#related"/> diff --git a/main/helpcontent2/source/text/swriter/guide/header_pagestyles.xhp b/main/helpcontent2/source/text/swriter/guide/header_pagestyles.xhp index 7933212549..8c33d3c371 100644 --- a/main/helpcontent2/source/text/swriter/guide/header_pagestyles.xhp +++ b/main/helpcontent2/source/text/swriter/guide/header_pagestyles.xhp @@ -36,54 +36,53 @@ <bookmark_value>defining; headers/footers</bookmark_value> <bookmark_value>mirrored page layout</bookmark_value> </bookmark> -<paragraph xml-lang="en-US" id="hd_id3155920" role="heading" level="1" l10n="U" -oldref="25"><variable id="header_pagestyles"><link href="text/swriter/guide/header_pagestyles.xhp" name="Defining Different Headers and Footers">Defining Different Headers and Footers</link> +<paragraph xml-lang="en-US" id="hd_id3155920" role="heading" level="1" l10n="U"><variable id="header_pagestyles"><link href="text/swriter/guide/header_pagestyles.xhp" name="Defining Different Headers and Footers">Defining Different Headers and Footers</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3154263" role="paragraph" l10n="U" oldref="26">You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style.</paragraph> -<paragraph xml-lang="en-US" id="par_id3147105" role="paragraph" l10n="U" oldref="27">You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type="menuitem">Format - Page</item>, click the <item type="menuitem">Page</item> tab, and in the <item type="menuitem">Layout settings</item> area, choose “Mirrored” in the <item type="menuitem">Page layout</item> box.</ [...] -<paragraph xml-lang="en-US" id="par_id3150224" role="paragraph" l10n="U" oldref="28">For example, you can use page styles to define different headers for even and odd pages in a document.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154263" role="paragraph" l10n="U">You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147105" role="paragraph" l10n="U">You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type="menuitem">Format - Page</item>, click the <item type="menuitem">Page</item> tab, and in the <item type="menuitem">Layout settings</item> area, choose “Mirrored” in the <item type="menuitem">Page layout</item> box.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150224" role="paragraph" l10n="U">For example, you can use page styles to define different headers for even and odd pages in a document.</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3150929" role="listitem" l10n="U" oldref="29">Open a new text document.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150929" role="listitem" l10n="U">Open a new text document.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150946" role="listitem" l10n="U" oldref="31">Choose <emph>Format - Styles and Formatting</emph> and click the <emph>Page Styles</emph> icon in the Styles and Formatting window.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150946" role="listitem" l10n="U">Choose <emph>Format - Styles and Formatting</emph> and click the <emph>Page Styles</emph> icon in the Styles and Formatting window.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150510" role="listitem" l10n="U" oldref="30">Right-click "Right Page" in the list of page styles and choose <emph>Modify</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150510" role="listitem" l10n="U">Right-click "Right Page" in the list of page styles and choose <emph>Modify</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150536" role="listitem" l10n="U" oldref="33">In the <item type="menuitem">Page Styles</item> dialog, click the <item type="menuitem">Header</item> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150536" role="listitem" l10n="U">In the <item type="menuitem">Page Styles</item> dialog, click the <item type="menuitem">Header</item> tab.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153750" role="listitem" l10n="U" oldref="34">Select <item type="menuitem">Header on</item> and click the <item type="menuitem">Organizer</item> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153750" role="listitem" l10n="U">Select <item type="menuitem">Header on</item> and click the <item type="menuitem">Organizer</item> tab.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3146865" role="listitem" l10n="U" oldref="35">In the <item type="menuitem">Next Style</item> box, select "Left Page".</paragraph> +<paragraph xml-lang="en-US" id="par_id3146865" role="listitem" l10n="U">In the <item type="menuitem">Next Style</item> box, select "Left Page".</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3146889" role="listitem" l10n="U" oldref="36">Click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3146889" role="listitem" l10n="U">Click <emph>OK</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150714" role="listitem" l10n="U" oldref="37">In the <emph>Styles and Formatting</emph> window, right-click "Left Page" in the list of page styles and choose <emph>Modify</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150714" role="listitem" l10n="U">In the <emph>Styles and Formatting</emph> window, right-click "Left Page" in the list of page styles and choose <emph>Modify</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150748" role="listitem" l10n="U" oldref="38">In the <item type="menuitem">Page Styles</item> dialog, click the <item type="menuitem">Header</item> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150748" role="listitem" l10n="U">In the <item type="menuitem">Page Styles</item> dialog, click the <item type="menuitem">Header</item> tab.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153172" role="listitem" l10n="U" oldref="39">Select <item type="menuitem">Header on</item> and click the <item type="menuitem">Organizer</item> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153172" role="listitem" l10n="U">Select <item type="menuitem">Header on</item> and click the <item type="menuitem">Organizer</item> tab.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147061" role="listitem" l10n="U" oldref="40">In the <item type="menuitem">Next Style</item> box, select "Right Page".</paragraph> +<paragraph xml-lang="en-US" id="par_id3147061" role="listitem" l10n="U">In the <item type="menuitem">Next Style</item> box, select "Right Page".</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147086" role="listitem" l10n="U" oldref="41">Click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147086" role="listitem" l10n="U">Click <emph>OK</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3145263" role="listitem" l10n="U" oldref="42">Double-click "Right Page" in the list of page styles to apply the style to the current page.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145263" role="listitem" l10n="U">Double-click "Right Page" in the list of page styles to apply the style to the current page.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3145284" role="listitem" l10n="U" oldref="43">Enter text or graphics in the header for the Left Page style. After the next page is added to your document, enter text or graphics in the header for the Right Page style.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145284" role="listitem" l10n="U">Enter text or graphics in the header for the Left Page style. After the next page is added to your document, enter text or graphics in the header for the Right Page style.</paragraph> </listitem> </list> <embed href="text/shared/00/00000004.xhp#related"/> diff --git a/main/helpcontent2/source/text/swriter/guide/pagestyles.xhp b/main/helpcontent2/source/text/swriter/guide/pagestyles.xhp index 08261dbd64..7f0f56ac25 100644 --- a/main/helpcontent2/source/text/swriter/guide/pagestyles.xhp +++ b/main/helpcontent2/source/text/swriter/guide/pagestyles.xhp @@ -34,79 +34,76 @@ <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value> </bookmark><comment>MW deleted "applying;" and added "styles;"</comment> -<paragraph xml-lang="en-US" id="hd_id3155182" role="heading" level="1" l10n="U" oldref="1"><variable id="pagestyles"><link href="text/swriter/guide/pagestyles.xhp" name="Creating and Applying Page Styles">Creating and Applying Page Styles</link> +<paragraph xml-lang="en-US" id="hd_id3155182" role="heading" level="1" l10n="U"><variable id="pagestyles"><link href="text/swriter/guide/pagestyles.xhp" name="Creating and Applying Page Styles">Creating and Applying Page Styles</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3149846" role="paragraph" l10n="U" oldref="10">$[officename] uses page styles to specify the layout of a page, including the page orientation, background, margins, headers, footers, and text columns. To change the layout of an individual page in a document, you must create and apply a custom page style to the page.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149846" role="paragraph" l10n="U">$[officename] uses page styles to specify the layout of a page, including the page orientation, background, margins, headers, footers, and text columns. To change the layout of an individual page in a document, you must create and apply a custom page style to the page.</paragraph> <paragraph xml-lang="en-US" id="par_idN1071A" role="paragraph" l10n="NEW"> <embedvar href="text/swriter/guide/pageorientation.xhp#pageorientation"/> </paragraph> <paragraph xml-lang="en-US" id="par_idN10722" role="paragraph" l10n="NEW"> <embedvar href="text/swriter/guide/pagebackground.xhp#pagebackground"/> </paragraph> -<paragraph xml-lang="en-US" id="hd_id3156109" role="heading" level="2" l10n="U" -oldref="11">To Define a New Page Style</paragraph> +<paragraph xml-lang="en-US" id="hd_id3156109" role="heading" level="2" l10n="U">To Define a New Page Style</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3153411" role="listitem" l10n="CHG" oldref="3">Choose <item type="menuitem">Format - Styles and Formatting</item> +<paragraph xml-lang="en-US" id="par_id3153411" role="listitem" l10n="CHG">Choose <item type="menuitem">Format - Styles and Formatting</item> <emph>.</emph> </paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153133" role="listitem" l10n="CHG" oldref="12">Click the <emph>Page Styles</emph> icon.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153133" role="listitem" l10n="CHG">Click the <emph>Page Styles</emph> icon.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149641" role="listitem" l10n="CHG" oldref="13">In the list of page styles, right-click an item, and then choose <emph>New</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149641" role="listitem" l10n="CHG">In the list of page styles, right-click an item, and then choose <emph>New</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149614" role="listitem" l10n="U" oldref="14">On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149614" role="listitem" l10n="U">On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3145110" role="listitem" l10n="U" oldref="15">Do one of the following:</paragraph> +<paragraph xml-lang="en-US" id="par_id3145110" role="listitem" l10n="U">Do one of the following:</paragraph> </listitem> </list> <list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3156252" xml-lang="en-US" l10n="U" oldref="16">To apply the custom page style to a single page, select the default page style that is used in your document in the <emph>Next Style</emph> box.</paragraph> +<paragraph role="listitem" id="par_id3156252" xml-lang="en-US" l10n="U">To apply the custom page style to a single page, select the default page style that is used in your document in the <emph>Next Style</emph> box.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3153376" xml-lang="en-US" l10n="U" oldref="17">To apply the custom page style to more than one page, select its name in the <emph>Next Style</emph> box. To stop using the style, insert a manual page break and assign it a different page style.</paragraph> +<paragraph role="listitem" id="par_id3153376" xml-lang="en-US" l10n="U">To apply the custom page style to more than one page, select its name in the <emph>Next Style</emph> box. To stop using the style, insert a manual page break and assign it a different page style.</paragraph> </listitem> </list> <list type="ordered" startwith="6"> <listitem> -<paragraph xml-lang="en-US" id="par_id3154252" role="listitem" l10n="U" oldref="20">Use the tabs in the dialog to set the layout options for the page style, and then click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154252" role="listitem" l10n="U">Use the tabs in the dialog to set the layout options for the page style, and then click <emph>OK</emph>.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3154851" role="heading" level="2" l10n="U" -oldref="21">To Apply a Page Style</paragraph> +<paragraph xml-lang="en-US" id="hd_id3154851" role="heading" level="2" l10n="U">To Apply a Page Style</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3154873" role="listitem" l10n="U" oldref="22">Click in the page that you want to apply the page style to.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154873" role="listitem" l10n="U">Click in the page that you want to apply the page style to.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3155888" role="listitem" l10n="CHG" oldref="23">Choose <item type="menuitem">Format - Styles and Formatting</item>, and then click the <item type="menuitem">Page Style</item> icon.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155888" role="listitem" l10n="CHG">Choose <item type="menuitem">Format - Styles and Formatting</item>, and then click the <item type="menuitem">Page Style</item> icon.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3148685" role="listitem" l10n="U" oldref="24">Double-click a name in the list.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148685" role="listitem" l10n="U">Double-click a name in the list.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3148701" role="heading" level="2" l10n="U" -oldref="18">To Apply a Page Style to a New Page</paragraph> +<paragraph xml-lang="en-US" id="hd_id3148701" role="heading" level="2" l10n="U">To Apply a Page Style to a New Page</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3147122" role="listitem" l10n="U" oldref="4">Click in the document where you want a new page to start.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147122" role="listitem" l10n="U">Click in the document where you want a new page to start.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150210" role="listitem" l10n="U" oldref="5">Choose <emph>Insert - Manual Break</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150210" role="listitem" l10n="U">Choose <emph>Insert - Manual Break</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150235" role="listitem" l10n="U" oldref="6">Select <emph>Page break</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150235" role="listitem" l10n="U">Select <emph>Page break</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150939" role="listitem" l10n="U" oldref="19">In the <item type="menuitem">Style</item> box, select the page style that you want to apply to the page that follows the manual break.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150939" role="listitem" l10n="U">In the <item type="menuitem">Style</item> box, select the page style that you want to apply to the page that follows the manual break.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150965" role="listitem" l10n="U" oldref="25">Click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150965" role="listitem" l10n="U">Click <emph>OK</emph>.</paragraph> </listitem> </list> <embed href="text/shared/00/00000004.xhp#related"/> diff --git a/main/helpcontent2/source/text/swriter/main0202.xhp b/main/helpcontent2/source/text/swriter/main0202.xhp index 03095b08e3..504e400349 100644 --- a/main/helpcontent2/source/text/swriter/main0202.xhp +++ b/main/helpcontent2/source/text/swriter/main0202.xhp @@ -31,9 +31,8 @@ <body> <section id="objektleisteeingabemodus"> <bookmark xml-lang="en-US" branch="hid/HID_TEXT_TOOLBOX" id="bm_id3154281" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3154270" role="heading" level="1" l10n="CHG" -oldref="1"><link href="text/swriter/main0202.xhp" name="Formatting Bar">Formatting Bar</link></paragraph> -<paragraph xml-lang="en-US" id="par_id3147762" role="paragraph" l10n="CHG" oldref="2"><ahelp hid="HID_TEXT_TOOLBOX">The Formatting bar contains several text formatting functions.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3154270" role="heading" level="1" l10n="CHG"><link href="text/swriter/main0202.xhp" name="Formatting Bar">Formatting Bar</link></paragraph> +<paragraph xml-lang="en-US" id="par_id3147762" role="paragraph" l10n="CHG"><ahelp hid="HID_TEXT_TOOLBOX">The Formatting bar contains several text formatting functions.</ahelp></paragraph> </section> <embed href="text/shared/02/01230000.xhp#stylist"/> <embed href="text/shared/02/01230000.xhp#systylist"/> @@ -65,26 +64,24 @@ oldref="1"><link href="text/swriter/main0202.xhp" name="Formatting Bar">Formatti <embed href="text/shared/02/02130000.xhp#syeinzvermindern"/> <embed href="text/shared/02/02140000.xhp#einzerhoehen"/> <embed href="text/shared/02/02140000.xhp#syeinzerhoehen"/> -<paragraph xml-lang="en-US" id="hd_id3149593" role="heading" level="2" l10n="U" oldref="9"><link href="text/shared/01/05020200.xhp" name="Font Color">Font Color</link></paragraph> +<paragraph xml-lang="en-US" id="hd_id3149593" role="heading" level="2" l10n="U"><link href="text/shared/01/05020200.xhp" name="Font Color">Font Color</link></paragraph> <embed href="text/shared/01/05020200.xhp#textfarbe"/> <embed href="text/shared/00/00000004.xhp#sytxtfarbe"/> <embed href="text/shared/02/02160000.xhp#zeichenhintergrund"/> <embed href="text/shared/02/02160000.xhp#syzeichenhintergrund"/> <embed href="text/shared/02/02170000.xhp#absatzhintergrund"/> <embed href="text/shared/02/02170000.xhp#syabsatzhintergrund"/> -<paragraph xml-lang="en-US" id="hd_id3149887" role="heading" level="2" l10n="U" -oldref="10">Additional icons</paragraph> +<paragraph xml-lang="en-US" id="hd_id3149887" role="heading" level="2" l10n="U">Additional icons</paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:Grow" id="bm_id0122200902451213" localize="false"/> <paragraph xml-lang="en-US" id="hd_id0122200903085320" role="heading" level="2" l10n="NEW">Increase Font</paragraph> <paragraph xml-lang="en-US" id="par_id0122200903085371" role="paragraph" l10n="NEW"><ahelp hid=".">Increases the font size of the selected text.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:Shrink" id="bm_id0122200902452932" localize="false"/> <paragraph xml-lang="en-US" id="hd_id012220090308532" role="heading" level="2" l10n="NEW">Reduce Font</paragraph> <paragraph xml-lang="en-US" id="par_id0122200903085351" role="paragraph" l10n="NEW"><ahelp hid=".">Reduces the font size of the selected text.</ahelp></paragraph> -<paragraph xml-lang="en-US" id="par_id3149900" role="paragraph" l10n="CHG" oldref="11">If <link href="text/shared/00/00000005.xhp#ctl" name="CTL">CTL</link> support is enabled, two additional icons are visible.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149900" role="paragraph" l10n="CHG">If <link href="text/shared/00/00000005.xhp#ctl" name="CTL">CTL</link> support is enabled, two additional icons are visible.</paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:ParaLeftToRight" id="bm_id2946959" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:ParaLeftToRight" id="bm_id3149957" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3149946" role="heading" level="2" l10n="U" -oldref="12">Left-To-Right</paragraph> +<paragraph xml-lang="en-US" id="hd_id3149946" role="heading" level="2" l10n="U">Left-To-Right</paragraph> <table id="tbl_id2270882"> <tablerow> <tablecell> @@ -93,14 +90,13 @@ oldref="12">Left-To-Right</paragraph> </image></paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3149964" role="paragraph" l10n="U" oldref="13"><ahelp hid=".uno:ParaLeftToRight">The text is entered from left to right.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="par_id3149964" role="paragraph" l10n="U"><ahelp hid=".uno:ParaLeftToRight">The text is entered from left to right.</ahelp></paragraph> </tablecell> </tablerow> </table> <bookmark xml-lang="en-US" branch="hid/.uno:ParaRightToLeft" id="bm_id25480" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:ParaRightToLeft" id="bm_id3147311" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3147300" role="heading" level="2" l10n="U" -oldref="14">Right-To-Left</paragraph> +<paragraph xml-lang="en-US" id="hd_id3147300" role="heading" level="2" l10n="U">Right-To-Left</paragraph> <table id="tbl_id3011566"> <tablerow> <tablecell> @@ -109,7 +105,7 @@ oldref="14">Right-To-Left</paragraph> </image></paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3147625" role="paragraph" l10n="U" oldref="15"><ahelp hid=".uno:ParaRightToLeft">The text formatted in a complex text layout language is entered from right to left.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="par_id3147625" role="paragraph" l10n="U"><ahelp hid=".uno:ParaRightToLeft">The text formatted in a complex text layout language is entered from right to left.</ahelp></paragraph> </tablecell> </tablerow> </table>