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 352395161a Remove 'oldref' entries (work in progress) 352395161a is described below commit 352395161a1c0205b14f3012a44b3e6c40fe45ff Author: mseidel <msei...@apache.org> AuthorDate: Sat Feb 8 23:28:41 2025 +0100 Remove 'oldref' entries (work in progress) --- .../source/text/sbasic/shared/03020301.xhp | 65 +++++++++++----------- .../source/text/shared/01/05350300.xhp | 37 ++++++------ .../source/text/shared/guide/border_paragraph.xhp | 30 +++++----- .../source/text/swriter/01/04060000.xhp | 26 ++++----- 4 files changed, 78 insertions(+), 80 deletions(-) diff --git a/main/helpcontent2/source/text/sbasic/shared/03020301.xhp b/main/helpcontent2/source/text/sbasic/shared/03020301.xhp index dbee0fd71f..f920388a15 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03020301.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03020301.xhp @@ -33,42 +33,41 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3154598"> <bookmark_value>Eof function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3154598" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020301.xhp" name="Eof Function [Runtime]">Eof Function [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3147182" xml-lang="en-US" l10n="U" oldref="2">Determines if the file pointer has reached the end of a file.</paragraph> +<paragraph role="heading" id="hd_id3154598" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03020301.xhp" name="Eof Function [Runtime]">Eof Function [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3147182" xml-lang="en-US" l10n="U">Determines if the file pointer has reached the end of a file.</paragraph> </section> -<paragraph role="heading" id="hd_id3149119" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="code" id="par_id3147399" xml-lang="en-US" l10n="U" oldref="4">Eof (intexpression As Integer)</paragraph> -<paragraph role="heading" id="hd_id3153539" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph> -<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" l10n="U" oldref="6">Bool</paragraph> -<paragraph role="heading" id="hd_id3152924" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3153990" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file.</paragraph> -<paragraph role="paragraph" id="par_id3153527" xml-lang="en-US" l10n="U" oldref="9">Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value "True" (-1).</paragraph> +<paragraph role="heading" id="hd_id3149119" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3147399" xml-lang="en-US" l10n="U">Eof (intexpression As Integer)</paragraph> +<paragraph role="heading" id="hd_id3153539" xml-lang="en-US" level="2" l10n="U">Return value:</paragraph> +<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" l10n="U">Bool</paragraph> +<paragraph role="heading" id="hd_id3152924" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3153990" xml-lang="en-US" l10n="U"><emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file.</paragraph> +<paragraph role="paragraph" id="par_id3153527" xml-lang="en-US" l10n="U">Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value "True" (-1).</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> <embed href="text/sbasic/shared/00000003.xhp#err52"/> -<paragraph role="heading" id="hd_id3154046" xml-lang="en-US" level="2" l10n="U" oldref="10">Example:</paragraph> -<paragraph role="code" id="par_id3143270" xml-lang="en-US" l10n="U" oldref="11">Sub ExampleWorkWithAFile</paragraph> -<paragraph role="code" id="par_id3150670" xml-lang="en-US" l10n="U" oldref="12">Dim iNumber As Integer</paragraph> -<paragraph role="code" id="par_id3154143" xml-lang="en-US" l10n="U" oldref="13">Dim sLine As String</paragraph> -<paragraph role="code" id="par_id3148943" xml-lang="en-US" l10n="U" oldref="14">Dim aFile As String</paragraph> -<paragraph role="code" id="par_id3153897" xml-lang="en-US" l10n="U" oldref="37">Dim sMsg as String</paragraph> -<paragraph role="code" id="par_id3156344" xml-lang="en-US" l10n="U" oldref="15">aFile = "c:\data.txt"</paragraph> -<paragraph role="code" id="par_id3148663" xml-lang="en-US" l10n="U" oldref="17">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3153379" xml-lang="en-US" l10n="U" oldref="18">Open aFile For Output As #iNumber</paragraph> -<paragraph role="code" id="par_id3153360" xml-lang="en-US" l10n="U" oldref="19">Print #iNumber, "First line of text"</paragraph> -<paragraph role="code" id="par_id3148797" xml-lang="en-US" l10n="U" oldref="20">Print #iNumber, "Another line of text"</paragraph> -<paragraph role="code" id="par_id3154684" xml-lang="en-US" l10n="U" oldref="21">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3153104" xml-lang="en-US" l10n="U" oldref="25">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3144761" xml-lang="en-US" l10n="U" oldref="26">Open aFile For Input As iNumber</paragraph> -<paragraph role="code" id="par_id3153193" xml-lang="en-US" l10n="U" oldref="27">While not eof(iNumber)</paragraph> -<paragraph role="code" id="par_id3158408" xml-lang="en-US" l10n="U" oldref="28">Line Input #iNumber, sLine</paragraph> -<paragraph role="code" id="par_id3149203" xml-lang="en-US" l10n="U" oldref="29">If sLine <>"" then</paragraph> -<paragraph role="code" id="par_id3153770" xml-lang="en-US" l10n="U" oldref="30">sMsg = sMsg & sLine & chr(13)</paragraph> -<paragraph role="code" id="par_id3153367" xml-lang="en-US" l10n="U" oldref="32">end if</paragraph> -<paragraph role="code" id="par_id3147318" xml-lang="en-US" l10n="U" oldref="33">wend</paragraph> -<paragraph role="code" id="par_id3152939" xml-lang="en-US" l10n="U" oldref="34">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3153726" xml-lang="en-US" l10n="U" oldref="38">Msgbox sMsg</paragraph> -<paragraph role="code" id="par_id3153092" xml-lang="en-US" l10n="U" oldref="35">End Sub</paragraph> +<paragraph role="heading" id="hd_id3154046" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3143270" xml-lang="en-US" l10n="U">Sub ExampleWorkWithAFile</paragraph> +<paragraph role="code" id="par_id3150670" xml-lang="en-US" l10n="U">Dim iNumber As Integer</paragraph> +<paragraph role="code" id="par_id3154143" xml-lang="en-US" l10n="U">Dim sLine As String</paragraph> +<paragraph role="code" id="par_id3148943" xml-lang="en-US" l10n="U">Dim aFile As String</paragraph> +<paragraph role="code" id="par_id3153897" xml-lang="en-US" l10n="U">Dim sMsg as String</paragraph> +<paragraph role="code" id="par_id3156344" xml-lang="en-US" l10n="U">aFile = "c:\data.txt"</paragraph> +<paragraph role="code" id="par_id3148663" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3153379" xml-lang="en-US" l10n="U">Open aFile For Output As #iNumber</paragraph> +<paragraph role="code" id="par_id3153360" xml-lang="en-US" l10n="U">Print #iNumber, "First line of text"</paragraph> +<paragraph role="code" id="par_id3148797" xml-lang="en-US" l10n="U">Print #iNumber, "Another line of text"</paragraph> +<paragraph role="code" id="par_id3154684" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3153104" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3144761" xml-lang="en-US" l10n="U">Open aFile For Input As iNumber</paragraph> +<paragraph role="code" id="par_id3153193" xml-lang="en-US" l10n="U">While not eof(iNumber)</paragraph> +<paragraph role="code" id="par_id3158408" xml-lang="en-US" l10n="U">Line Input #iNumber, sLine</paragraph> +<paragraph role="code" id="par_id3149203" xml-lang="en-US" l10n="U">If sLine <>"" then</paragraph> +<paragraph role="code" id="par_id3153770" xml-lang="en-US" l10n="U">sMsg = sMsg & sLine & chr(13)</paragraph> +<paragraph role="code" id="par_id3153367" xml-lang="en-US" l10n="U">end if</paragraph> +<paragraph role="code" id="par_id3147318" xml-lang="en-US" l10n="U">wend</paragraph> +<paragraph role="code" id="par_id3152939" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3153726" xml-lang="en-US" l10n="U">Msgbox sMsg</paragraph> +<paragraph role="code" id="par_id3153092" xml-lang="en-US" l10n="U">End Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/01/05350300.xhp b/main/helpcontent2/source/text/shared/01/05350300.xhp index ea6abfdda3..fd1037a57c 100644 --- a/main/helpcontent2/source/text/shared/01/05350300.xhp +++ b/main/helpcontent2/source/text/shared/01/05350300.xhp @@ -31,42 +31,41 @@ <body> <section id="darstellung"> <bookmark xml-lang="en-US" branch="hid/svx:ImageButton:RID_SVXFLOAT_3D:BTN_REPRESENTATION" id="bm_id3156053" localize="false"/> -<paragraph role="heading" id="hd_id3148919" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/01/05350300.xhp" name="Shading">Shading</link></paragraph> -<paragraph role="paragraph" id="par_id3150008" xml-lang="en-US" l10n="U" oldref="2"><ahelp hid="SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_REPRESENTATION">Sets the shading and shadow options for the selected 3D object.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3148919" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/01/05350300.xhp" name="Shading">Shading</link></paragraph> +<paragraph role="paragraph" id="par_id3150008" xml-lang="en-US" l10n="U"><ahelp hid="SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_REPRESENTATION">Sets the shading and shadow options for the selected 3D object.</ahelp></paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00040500.xhp#3ddarstellung"/> </section> -<paragraph role="heading" id="hd_id3109847" xml-lang="en-US" level="2" l10n="U" oldref="4">Shading</paragraph> -<paragraph role="paragraph" id="par_id3148538" xml-lang="en-US" l10n="U" oldref="5">Specify the type of shading to apply to the selected 3D object.</paragraph> +<paragraph role="heading" id="hd_id3109847" xml-lang="en-US" level="2" l10n="U">Shading</paragraph> +<paragraph role="paragraph" id="par_id3148538" xml-lang="en-US" l10n="U">Specify the type of shading to apply to the selected 3D object.</paragraph> <bookmark xml-lang="en-US" branch="hid/svx:ListBox:RID_SVXFLOAT_3D:LB_SHADEMODE" id="bm_id3150772" localize="false"/> -<paragraph role="heading" id="hd_id3147276" xml-lang="en-US" level="3" l10n="U" oldref="6">Mode</paragraph> -<paragraph role="paragraph" id="par_id3155583" xml-lang="en-US" l10n="U" oldref="7"><ahelp hid="SVX:LISTBOX:RID_SVXFLOAT_3D:LB_SHADEMODE">Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147276" xml-lang="en-US" level="3" l10n="U">Mode</paragraph> +<paragraph role="paragraph" id="par_id3155583" xml-lang="en-US" l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXFLOAT_3D:LB_SHADEMODE">Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/svx:ImageButton:RID_SVXFLOAT_3D:BTN_SHADOW_3D" id="bm_id3149820" localize="false"/> -<paragraph role="heading" id="hd_id3150466" xml-lang="en-US" level="2" l10n="U" oldref="8">Shadow</paragraph> -<paragraph role="paragraph" id="par_id3154046" xml-lang="en-US" l10n="U" oldref="9"><ahelp hid="SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_SHADOW_3D">Adds or removes a shadow from the selected 3D object.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150466" xml-lang="en-US" level="2" l10n="U">Shadow</paragraph> +<paragraph role="paragraph" id="par_id3154046" xml-lang="en-US" l10n="U"><ahelp hid="SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_SHADOW_3D">Adds or removes a shadow from the selected 3D object.</ahelp></paragraph> <table id="tbl_id3159399"> <tablerow> <tablecell colspan="" rowspan=""> <paragraph role="paragraph" id="par_id3150254" xml-lang="en-US" l10n="E"> -<image id="img_id3159342" src="svx/res/shadow3d.png" width="0.1661inch" height="0.1661inch"><alt id="alt_id3159342" xml-lang="en-US">Icon</alt> -</image></paragraph> +<image id="img_id3159342" src="svx/res/shadow3d.png" width="0.1661inch" height="0.1661inch"><alt id="alt_id3159342" xml-lang="en-US">Icon</alt></image></paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3149796" xml-lang="en-US" l10n="U" oldref="10">3D Shadowing On/Off</paragraph> +<paragraph role="paragraph" id="par_id3149796" xml-lang="en-US" l10n="U">3D Shadowing On/Off</paragraph> </tablecell> </tablerow> </table> <bookmark xml-lang="en-US" branch="hid/svx:MetricField:RID_SVXFLOAT_3D:MTR_SLANT" id="bm_id3149165" localize="false"/> -<paragraph role="heading" id="hd_id3156153" xml-lang="en-US" level="3" l10n="U" oldref="11">Surface angle</paragraph> -<paragraph role="paragraph" id="par_id3150976" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_SLANT">Enter an angle from 0 to 90 degrees for casting the shadow.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3154905" xml-lang="en-US" level="2" l10n="U" oldref="13">Camera</paragraph> -<paragraph role="paragraph" id="par_id3161459" xml-lang="en-US" l10n="U" oldref="14">Set the camera options for the selected 3D object.</paragraph> +<paragraph role="heading" id="hd_id3156153" xml-lang="en-US" level="3" l10n="U">Surface angle</paragraph> +<paragraph role="paragraph" id="par_id3150976" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_SLANT">Enter an angle from 0 to 90 degrees for casting the shadow.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154905" xml-lang="en-US" level="2" l10n="U">Camera</paragraph> +<paragraph role="paragraph" id="par_id3161459" xml-lang="en-US" l10n="U">Set the camera options for the selected 3D object.</paragraph> <bookmark xml-lang="en-US" branch="hid/svx:MetricField:RID_SVXFLOAT_3D:MTR_DISTANCE" id="bm_id3154758" localize="false"/> -<paragraph role="heading" id="hd_id3148943" xml-lang="en-US" level="3" l10n="U" oldref="15">Distance</paragraph> -<paragraph role="paragraph" id="par_id3149047" xml-lang="en-US" l10n="U" oldref="16"><ahelp hid="SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DISTANCE">Enter the distance to leave between the camera and the center of the selected object.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3148943" xml-lang="en-US" level="3" l10n="U">Distance</paragraph> +<paragraph role="paragraph" id="par_id3149047" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DISTANCE">Enter the distance to leave between the camera and the center of the selected object.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/svx:MetricField:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH" id="bm_id3145068" localize="false"/> -<paragraph role="heading" id="hd_id3154346" xml-lang="en-US" level="3" l10n="U" oldref="17">Focal length</paragraph> -<paragraph role="paragraph" id="par_id3156344" xml-lang="en-US" l10n="U" oldref="18"><ahelp hid="SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH">Enter the focal length of the camera, where a small value corresponds to a "fisheye" lens, and a large value to a telephoto lens.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154346" xml-lang="en-US" level="3" l10n="U">Focal length</paragraph> +<paragraph role="paragraph" id="par_id3156344" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH">Enter the focal length of the camera, where a small value corresponds to a "fisheye" lens, and a large value to a telephoto lens.</ahelp></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/guide/border_paragraph.xhp b/main/helpcontent2/source/text/shared/guide/border_paragraph.xhp index 3f79f6405a..ea1f43bc8f 100644 --- a/main/helpcontent2/source/text/shared/guide/border_paragraph.xhp +++ b/main/helpcontent2/source/text/shared/guide/border_paragraph.xhp @@ -37,48 +37,48 @@ <bookmark_value>inserting;paragraph borders</bookmark_value> <bookmark_value>defining;paragraph borders</bookmark_value> </bookmark><comment>mw changed "adding;" to "inserting;"</comment> -<paragraph xml-lang="en-US" id="hd_id3147571" role="heading" level="1" l10n="U" oldref="15"><variable id="border_paragraph"><link href="text/shared/guide/border_paragraph.xhp" name="Defining Borders for Paragraphs">Defining Borders for Paragraphs</link> +<paragraph xml-lang="en-US" id="hd_id3147571" role="heading" level="1" l10n="U"><variable id="border_paragraph"><link href="text/shared/guide/border_paragraph.xhp" name="Defining Borders for Paragraphs">Defining Borders for Paragraphs</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="hd_id3159233" role="heading" level="2" l10n="U" oldref="1">Setting a Predefined Border Style</paragraph> +<paragraph xml-lang="en-US" id="hd_id3159233" role="heading" level="2" l10n="U">Setting a Predefined Border Style</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3156113" role="listitem" l10n="U" oldref="2">Place the cursor in the paragraph for which you want to define a border.</paragraph> +<paragraph xml-lang="en-US" id="par_id3156113" role="listitem" l10n="U">Place the cursor in the paragraph for which you want to define a border.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149398" role="listitem" l10n="U" oldref="3">Choose <emph>Format - Paragraph - Borders</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149398" role="listitem" l10n="U">Choose <emph>Format - Paragraph - Borders</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3156326" role="listitem" l10n="U" oldref="4">Select one of the default border styles in the <emph>Default</emph> area.</paragraph> +<paragraph xml-lang="en-US" id="par_id3156326" role="listitem" l10n="U">Select one of the default border styles in the <emph>Default</emph> area.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3154285" role="listitem" l10n="U" oldref="5">Select a line style and color for the selected border style in the <emph>Line</emph> area. These settings apply to all border lines that are included in the selected border style.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154285" role="listitem" l10n="U">Select a line style and color for the selected border style in the <emph>Line</emph> area. These settings apply to all border lines that are included in the selected border style.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153665" role="listitem" l10n="U" oldref="6">Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153665" role="listitem" l10n="U">Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153543" role="listitem" l10n="U" oldref="7">Click <emph>OK</emph> to apply the changes.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153543" role="listitem" l10n="U">Click <emph>OK</emph> to apply the changes.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3149237" role="heading" level="2" l10n="U" oldref="8">Setting a Customized Border Style</paragraph> +<paragraph xml-lang="en-US" id="hd_id3149237" role="heading" level="2" l10n="U">Setting a Customized Border Style</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3155388" role="listitem" l10n="U" oldref="9">Choose <emph>Format - Paragraph - Borders</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155388" role="listitem" l10n="U">Choose <emph>Format - Paragraph - Borders</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3148943" role="listitem" l10n="U" oldref="10">In the <emph>User-defined</emph> area select the edge(s) that you want to appear in a common layout. Click on an edge in the preview to toggle the selection of an edge.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148943" role="listitem" l10n="U">In the <emph>User-defined</emph> area select the edge(s) that you want to appear in a common layout. Click on an edge in the preview to toggle the selection of an edge.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3148948" role="listitem" l10n="U" oldref="11">Select a line style and color for the selected border style in the <emph>Line</emph> area. These settings apply to all border lines that are included in the selected border style.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148948" role="listitem" l10n="U">Select a line style and color for the selected border style in the <emph>Line</emph> area. These settings apply to all border lines that are included in the selected border style.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3152811" role="listitem" l10n="U" oldref="12">Repeat the last two steps for every border edge.</paragraph> +<paragraph xml-lang="en-US" id="par_id3152811" role="listitem" l10n="U">Repeat the last two steps for every border edge.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150793" role="listitem" l10n="U" oldref="13">Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150793" role="listitem" l10n="U">Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area. You can only change distances to edges that have a border line defined.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3151178" role="listitem" l10n="U" oldref="14">Click <emph>OK</emph> to apply the changes.</paragraph> +<paragraph xml-lang="en-US" id="par_id3151178" role="listitem" l10n="U">Click <emph>OK</emph> to apply the changes.</paragraph> </listitem> </list> <section id="relatedtopics"> diff --git a/main/helpcontent2/source/text/swriter/01/04060000.xhp b/main/helpcontent2/source/text/swriter/01/04060000.xhp index d54aa1fa78..58831dc5e3 100644 --- a/main/helpcontent2/source/text/swriter/01/04060000.xhp +++ b/main/helpcontent2/source/text/swriter/01/04060000.xhp @@ -32,30 +32,30 @@ <bookmark xml-lang="en-US" branch="hid/.uno:InsertCaptionDialog" id="bm_id764454" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:InsertCaptionDialog" id="bm_id3150762" localize="false"/> <bookmark xml-lang="en-US" branch="hid/SW_HID_DLG_CAPTION" id="bm_id3150765" localize="false"/> -<paragraph role="heading" id="hd_id3147173" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/swriter/01/04060000.xhp" name="Caption">Caption</link></paragraph> -<paragraph role="paragraph" id="par_id3149288" xml-lang="en-US" l10n="U" oldref="2"><variable id="beschrifttext"><ahelp hid="HID_DLG_CAPTION">Adds a numbered caption to a selected graphic, table, frame, text frame, or drawing object.</ahelp> You can also access this command by right-clicking the item that you want to add the caption to. +<paragraph role="heading" id="hd_id3147173" xml-lang="en-US" level="1" l10n="U"><link href="text/swriter/01/04060000.xhp" name="Caption">Caption</link></paragraph> +<paragraph role="paragraph" id="par_id3149288" xml-lang="en-US" l10n="U"><variable id="beschrifttext"><ahelp hid="HID_DLG_CAPTION">Adds a numbered caption to a selected graphic, table, frame, text frame, or drawing object.</ahelp> You can also access this command by right-clicking the item that you want to add the caption to. </variable></paragraph> <section id="howtoget"> <embed href="text/swriter/00/00000404.xhp#beschriftungein"/> </section> -<paragraph role="heading" id="hd_id3154098" xml-lang="en-US" level="2" l10n="U" oldref="3">Properties</paragraph> -<paragraph role="paragraph" id="par_id3149804" xml-lang="en-US" l10n="U" oldref="4">Set the caption options for the current selection.</paragraph> +<paragraph role="heading" id="hd_id3154098" xml-lang="en-US" level="2" l10n="U">Properties</paragraph> +<paragraph role="paragraph" id="par_id3149804" xml-lang="en-US" l10n="U">Set the caption options for the current selection.</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ComboBox:DLG_CAPTION:BOX_CATEGORY" id="bm_id3154567" localize="false"/> -<paragraph role="heading" id="hd_id3153533" xml-lang="en-US" level="3" l10n="U" oldref="5">Category</paragraph> -<paragraph role="paragraph" id="par_id3154574" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="SW:COMBOBOX:DLG_CAPTION:BOX_CATEGORY">Select the caption category, or type a name to create a new category. The category text appears before the caption number in the caption label. Each predefined caption category is formatted with a paragraph style of the same name.</ahelp> For example, the "Illustration" caption category is formatted with the "Illustration" paragraph style.</paragraph> +<paragraph role="heading" id="hd_id3153533" xml-lang="en-US" level="3" l10n="U">Category</paragraph> +<paragraph role="paragraph" id="par_id3154574" xml-lang="en-US" l10n="U"><ahelp hid="SW:COMBOBOX:DLG_CAPTION:BOX_CATEGORY">Select the caption category, or type a name to create a new category. The category text appears before the caption number in the caption label. Each predefined caption category is formatted with a paragraph style of the same name.</ahelp> For example, the "Illustration" caption category is formatted with the "Illustration" paragraph style.</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:DLG_CAPTION:BOX_FORMAT" id="bm_id3152956" localize="false"/> -<paragraph role="heading" id="hd_id3153675" xml-lang="en-US" level="3" l10n="U" oldref="7">Numbering</paragraph> -<paragraph role="paragraph" id="par_id3152962" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="SW:LISTBOX:DLG_CAPTION:BOX_FORMAT">Select the type of numbering that you want to use in the caption.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153675" xml-lang="en-US" level="3" l10n="U">Numbering</paragraph> +<paragraph role="paragraph" id="par_id3152962" xml-lang="en-US" l10n="U"><ahelp hid="SW:LISTBOX:DLG_CAPTION:BOX_FORMAT">Select the type of numbering that you want to use in the caption.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:Edit:DLG_CAPTION:EDT_TEXT" id="bm_id3155905" localize="false"/> -<paragraph role="heading" id="hd_id3155893" xml-lang="en-US" level="3" l10n="CHG" oldref="9">Caption</paragraph> -<paragraph role="paragraph" id="par_id3149688" xml-lang="en-US" l10n="U" oldref="10"><ahelp hid="SW:EDIT:DLG_CAPTION:EDT_TEXT">Type the text that you want to appear after the caption number.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155893" xml-lang="en-US" level="3" l10n="CHG">Caption</paragraph> +<paragraph role="paragraph" id="par_id3149688" xml-lang="en-US" l10n="U"><ahelp hid="SW:EDIT:DLG_CAPTION:EDT_TEXT">Type the text that you want to appear after the caption number.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:Edit:DLG_CAPTION:EDT_SEP" id="bm_id7607959" localize="false"/> <paragraph role="heading" id="par_idN1068A" xml-lang="en-US" level="3" l10n="NEW">Separator</paragraph> <paragraph role="paragraph" id="par_idN10690" xml-lang="en-US" l10n="NEW"><ahelp hid=".">Enter optional text characters to appear between the number and the caption text.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:DLG_CAPTION:BOX_POS" id="bm_id4664754" localize="false"/><comment>moved help id to here</comment> -<paragraph role="heading" id="hd_id3154199" xml-lang="en-US" level="3" l10n="U" oldref="11">Position</paragraph> -<paragraph role="paragraph" id="par_id3149486" xml-lang="en-US" l10n="CHG" oldref="12"><ahelp hid="SW:LISTBOX:DLG_CAPTION:BOX_POS">Adds the caption above or below the selected item. This option is only available for some objects.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3149043" xml-lang="en-US" level="2" l10n="U" oldref="29"><link href="text/swriter/01/04060100.xhp" name="Options">Options</link></paragraph> +<paragraph role="heading" id="hd_id3154199" xml-lang="en-US" level="3" l10n="U">Position</paragraph> +<paragraph role="paragraph" id="par_id3149486" xml-lang="en-US" l10n="CHG"><ahelp hid="SW:LISTBOX:DLG_CAPTION:BOX_POS">Adds the caption above or below the selected item. This option is only available for some objects.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149043" xml-lang="en-US" level="2" l10n="U"><link href="text/swriter/01/04060100.xhp" name="Options">Options</link></paragraph> <embed href="text/swriter/01/04060100.xhp#optionentext"/> <bookmark xml-lang="en-US" branch="hid/sw:PushButton:DLG_CAPTION:BTN_AUTOCAPTION" id="bm_id72939" localize="false"/> <paragraph role="heading" id="par_idN10744" xml-lang="en-US" level="2" l10n="NEW">AutoCaption</paragraph>