This is an automated email from the ASF dual-hosted git repository. mseidel pushed a commit to branch AOO42X in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push: new d976dd1343 Remove 'oldref' entries (work in progress) d976dd1343 is described below commit d976dd134322019ea57afb0ad8c17ca1e5c310f6 Author: mseidel <msei...@apache.org> AuthorDate: Sun Jan 12 21:34:08 2025 +0100 Remove 'oldref' entries (work in progress) (cherry picked from commit 3fe80fe07dc49d76077cbcd305003388ef5bc6c0) --- .../source/text/sbasic/shared/03020104.xhp | 60 +++++++++++----------- .../source/text/sbasic/shared/03080701.xhp | 45 ++++++++-------- .../source/text/sbasic/shared/03090403.xhp | 45 ++++++++-------- .../source/text/sbasic/shared/03120401.xhp | 46 ++++++++--------- .../helpcontent2/source/text/scalc/01/04080000.xhp | 19 ++++--- .../source/text/scalc/01/func_yearfrac.xhp | 44 ++++++++-------- .../source/text/shared/01/password_main.xhp | 16 +++--- .../source/text/shared/autopi/01010100.xhp | 22 ++++---- .../source/text/shared/autopi/01050000.xhp | 22 ++++---- .../source/text/shared/guide/autocorr_url.xhp | 26 +++++----- .../source/text/shared/guide/redlining.xhp | 12 ++--- .../source/text/swriter/guide/border_page.xhp | 31 ++++++----- .../text/swriter/guide/form_letters_main.xhp | 5 +- .../source/text/swriter/guide/header_footer.xhp | 20 ++++---- .../source/text/swriter/guide/textdoc_inframe.xhp | 30 +++++------ 15 files changed, 212 insertions(+), 231 deletions(-) diff --git a/main/helpcontent2/source/text/sbasic/shared/03020104.xhp b/main/helpcontent2/source/text/sbasic/shared/03020104.xhp index 58475cdfcd..fbdeb7be1d 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03020104.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03020104.xhp @@ -33,36 +33,36 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3154141"> <bookmark_value>Reset statement</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3154141" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020104.xhp">Reset Statement [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3156423" xml-lang="en-US" l10n="U" oldref="2">Closes all open files and writes the contents of all file buffers to the harddisk.</paragraph> +<paragraph role="heading" id="hd_id3154141" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03020104.xhp">Reset Statement [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3156423" xml-lang="en-US" l10n="U">Closes all open files and writes the contents of all file buffers to the harddisk.</paragraph> </section> -<paragraph role="heading" id="hd_id3154124" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="code" id="par_id3156281" xml-lang="en-US" l10n="U" oldref="4">Reset</paragraph> -<paragraph role="heading" id="hd_id3161831" xml-lang="en-US" level="2" l10n="U" oldref="5">Example:</paragraph> -<paragraph role="code" id="par_id3151113" xml-lang="en-US" l10n="U" oldref="37">Sub ExampleReset</paragraph> -<paragraph role="code" id="par_id3148575" xml-lang="en-US" l10n="U" oldref="38">On Error Goto ErrorHandler</paragraph> -<paragraph role="code" id="par_id3153093" xml-lang="en-US" l10n="U" oldref="39">Dim iNumber As Integer</paragraph> -<paragraph role="code" id="par_id3150011" xml-lang="en-US" l10n="U" oldref="40">Dim iCount As Integer</paragraph> -<paragraph role="code" id="par_id3153363" xml-lang="en-US" l10n="U" oldref="41">Dim sLine As String</paragraph> -<paragraph role="code" id="par_id3154320" xml-lang="en-US" l10n="U" oldref="42">Dim aFile As String</paragraph> -<paragraph role="code" id="par_id3163712" xml-lang="en-US" l10n="U" oldref="43">aFile = "c:\data.txt"</paragraph> -<paragraph role="code" id="par_id3146121" xml-lang="en-US" l10n="U" oldref="45">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3154491" xml-lang="en-US" l10n="U" oldref="46">Open aFile For Output As #iNumber</paragraph> -<paragraph role="code" id="par_id3148455" xml-lang="en-US" l10n="U" oldref="47">Print #iNumber, "This is a new line of text"</paragraph> -<paragraph role="code" id="par_id3145646" xml-lang="en-US" l10n="U" oldref="48">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3149410" xml-lang="en-US" l10n="U" oldref="50">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3147126" xml-lang="en-US" l10n="U" oldref="51">Open aFile For Input As iNumber</paragraph> -<paragraph role="code" id="par_id3154510" xml-lang="en-US" l10n="U" oldref="52">For iCount = 1 to 5</paragraph> -<paragraph role="code" id="par_id3146971" xml-lang="en-US" l10n="U" oldref="53">Line Input #iNumber, sLine</paragraph> -<paragraph role="code" id="par_id3156277" xml-lang="en-US" l10n="U" oldref="54">If sLine <>"" then</paragraph> -<paragraph role="code" id="par_id3153707" xml-lang="en-US" l10n="U" oldref="55">rem</paragraph> -<paragraph role="code" id="par_id3150322" xml-lang="en-US" l10n="U" oldref="56">end if</paragraph> -<paragraph role="code" id="par_id3148405" xml-lang="en-US" l10n="U" oldref="57">Next iCount</paragraph> -<paragraph role="code" id="par_id3153711" xml-lang="en-US" l10n="U" oldref="58">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3156382" xml-lang="en-US" l10n="U" oldref="59">Exit Sub</paragraph> -<paragraph role="code" id="par_id3159264" xml-lang="en-US" l10n="U" oldref="60">ErrorHandler:</paragraph> -<paragraph role="code" id="par_id3145147" xml-lang="en-US" l10n="U" oldref="61">Reset</paragraph> -<paragraph role="code" id="par_id3163805" xml-lang="en-US" l10n="U" oldref="62">MsgBox "All files will be closed",0,"Error"</paragraph> -<paragraph role="code" id="par_id3147364" xml-lang="en-US" l10n="U" oldref="63">End Sub</paragraph> +<paragraph role="heading" id="hd_id3154124" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3156281" xml-lang="en-US" l10n="U">Reset</paragraph> +<paragraph role="heading" id="hd_id3161831" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3151113" xml-lang="en-US" l10n="U">Sub ExampleReset</paragraph> +<paragraph role="code" id="par_id3148575" xml-lang="en-US" l10n="U">On Error Goto ErrorHandler</paragraph> +<paragraph role="code" id="par_id3153093" xml-lang="en-US" l10n="U">Dim iNumber As Integer</paragraph> +<paragraph role="code" id="par_id3150011" xml-lang="en-US" l10n="U">Dim iCount As Integer</paragraph> +<paragraph role="code" id="par_id3153363" xml-lang="en-US" l10n="U">Dim sLine As String</paragraph> +<paragraph role="code" id="par_id3154320" xml-lang="en-US" l10n="U">Dim aFile As String</paragraph> +<paragraph role="code" id="par_id3163712" xml-lang="en-US" l10n="U">aFile = "c:\data.txt"</paragraph> +<paragraph role="code" id="par_id3146121" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3154491" xml-lang="en-US" l10n="U">Open aFile For Output As #iNumber</paragraph> +<paragraph role="code" id="par_id3148455" xml-lang="en-US" l10n="U">Print #iNumber, "This is a new line of text"</paragraph> +<paragraph role="code" id="par_id3145646" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3149410" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3147126" xml-lang="en-US" l10n="U">Open aFile For Input As iNumber</paragraph> +<paragraph role="code" id="par_id3154510" xml-lang="en-US" l10n="U">For iCount = 1 to 5</paragraph> +<paragraph role="code" id="par_id3146971" xml-lang="en-US" l10n="U">Line Input #iNumber, sLine</paragraph> +<paragraph role="code" id="par_id3156277" xml-lang="en-US" l10n="U">If sLine <>"" then</paragraph> +<paragraph role="code" id="par_id3153707" xml-lang="en-US" l10n="U">rem</paragraph> +<paragraph role="code" id="par_id3150322" xml-lang="en-US" l10n="U">end if</paragraph> +<paragraph role="code" id="par_id3148405" xml-lang="en-US" l10n="U">Next iCount</paragraph> +<paragraph role="code" id="par_id3153711" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3156382" xml-lang="en-US" l10n="U">Exit Sub</paragraph> +<paragraph role="code" id="par_id3159264" xml-lang="en-US" l10n="U">ErrorHandler:</paragraph> +<paragraph role="code" id="par_id3145147" xml-lang="en-US" l10n="U">Reset</paragraph> +<paragraph role="code" id="par_id3163805" xml-lang="en-US" l10n="U">MsgBox "All files will be closed",0,"Error"</paragraph> +<paragraph role="code" id="par_id3147364" xml-lang="en-US" l10n="U">End Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03080701.xhp b/main/helpcontent2/source/text/sbasic/shared/03080701.xhp index d154f10051..133f120a8b 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03080701.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03080701.xhp @@ -33,57 +33,56 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3148474"> <bookmark_value>Sgn function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3148474" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03080701.xhp" name="Sgn Function [Runtime]">Sgn Function [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3148686" xml-lang="en-US" l10n="U" oldref="2">Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero.</paragraph> +<paragraph role="heading" id="hd_id3148474" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03080701.xhp" name="Sgn Function [Runtime]">Sgn Function [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3148686" xml-lang="en-US" l10n="U">Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero.</paragraph> </section> -<paragraph role="heading" id="hd_id3156023" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="paragraph" id="par_id3153897" xml-lang="en-US" l10n="U" oldref="4">Sgn (Number)</paragraph> -<paragraph role="heading" id="hd_id3145069" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph> -<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US" l10n="U" oldref="6">Integer</paragraph> -<paragraph role="heading" id="hd_id3150543" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3154365" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Number:</emph> Numeric expression that determines the value that is returned by the function.</paragraph> +<paragraph role="heading" id="hd_id3156023" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="paragraph" id="par_id3153897" xml-lang="en-US" l10n="U">Sgn (Number)</paragraph> +<paragraph role="heading" id="hd_id3145069" xml-lang="en-US" level="2" l10n="U">Return value:</paragraph> +<paragraph role="paragraph" id="par_id3150359" xml-lang="en-US" l10n="U">Integer</paragraph> +<paragraph role="heading" id="hd_id3150543" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3154365" xml-lang="en-US" l10n="U"><emph>Number:</emph> Numeric expression that determines the value that is returned by the function.</paragraph> <table id="tbl_id3156281"> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3150767" xml-lang="en-US" l10n="U" oldref="9">NumExpression</paragraph> +<paragraph role="paragraph" id="par_id3150767" xml-lang="en-US" l10n="U">NumExpression</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3150441" xml-lang="en-US" l10n="U" oldref="10">Return value</paragraph> +<paragraph role="paragraph" id="par_id3150441" xml-lang="en-US" l10n="U">Return value</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3161833" xml-lang="en-US" l10n="U" oldref="11">negative</paragraph> +<paragraph role="paragraph" id="par_id3161833" xml-lang="en-US" l10n="U">negative</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3155306" xml-lang="en-US" l10n="U" oldref="12">Sgn returns -1.</paragraph> +<paragraph role="paragraph" id="par_id3155306" xml-lang="en-US" l10n="U">Sgn returns -1.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3145271" xml-lang="en-US" l10n="U" oldref="13">0</paragraph> +<paragraph role="paragraph" id="par_id3145271" xml-lang="en-US" l10n="U">0</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3146119" xml-lang="en-US" l10n="U" oldref="14">Sgn returns 0.</paragraph> +<paragraph role="paragraph" id="par_id3146119" xml-lang="en-US" l10n="U">Sgn returns 0.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3153139" xml-lang="en-US" l10n="U" oldref="15">positive</paragraph> +<paragraph role="paragraph" id="par_id3153139" xml-lang="en-US" l10n="U">positive</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3154319" xml-lang="en-US" l10n="U" oldref="16">Sgn returns 1.</paragraph> +<paragraph role="paragraph" id="par_id3154319" xml-lang="en-US" l10n="U">Sgn returns 1.</paragraph> </tablecell> </tablerow> </table> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> -<paragraph role="heading" id="hd_id3152576" xml-lang="en-US" level="2" l10n="U" oldref="17">Example:</paragraph> -<paragraph role="paragraph" id="par_id3154791" xml-lang="en-US" l10n="U" oldref="18">Sub ExampleSgn</paragraph> -<paragraph role="paragraph" id="par_id3155416" xml-lang="en-US" l10n="U" oldref="19">Print sgn(-10) REM returns -1</paragraph> -<paragraph role="paragraph" id="par_id3154096" xml-lang="en-US" l10n="U" oldref="20">Print sgn(0) REM returns 0</paragraph> -<paragraph role="paragraph" id="par_id3148457" xml-lang="en-US" l10n="U" oldref="21">Print sgn(10) REM returns 1</paragraph> -<paragraph role="paragraph" id="par_id3144765" xml-lang="en-US" l10n="U" oldref="22">end sub</paragraph> +<paragraph role="heading" id="hd_id3152576" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="paragraph" id="par_id3154791" xml-lang="en-US" l10n="U">Sub ExampleSgn</paragraph> +<paragraph role="paragraph" id="par_id3155416" xml-lang="en-US" l10n="U">Print sgn(-10) REM returns -1</paragraph> +<paragraph role="paragraph" id="par_id3154096" xml-lang="en-US" l10n="U">Print sgn(0) REM returns 0</paragraph> +<paragraph role="paragraph" id="par_id3148457" xml-lang="en-US" l10n="U">Print sgn(10) REM returns 1</paragraph> +<paragraph role="paragraph" id="par_id3144765" xml-lang="en-US" l10n="U">end sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03090403.xhp b/main/helpcontent2/source/text/sbasic/shared/03090403.xhp index 7ee72db6eb..993fb7c7a3 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03090403.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03090403.xhp @@ -33,34 +33,29 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3148473"> <bookmark_value>Declare statement</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3148473" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03090403.xhp" name="Declare Statement [Runtime]">Declare Statement [Runtime]</link></paragraph> +<paragraph role="heading" id="hd_id3148473" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03090403.xhp" name="Declare Statement [Runtime]">Declare Statement [Runtime]</link></paragraph> <bookmark xml-lang="en-US" branch="index" id="bm_id3145316"> <bookmark_value>DLL (Dynamic Link Library)</bookmark_value> </bookmark> -<paragraph role="paragraph" id="par_id3145316" xml-lang="en-US" l10n="CHG" oldref="2">Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic.</paragraph> +<paragraph role="paragraph" id="par_id3145316" xml-lang="en-US" l10n="CHG">Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic.</paragraph> </section> -<paragraph role="paragraph" id="par_id3146795" xml-lang="en-US" l10n="U" oldref="3">See also: <link href="text/sbasic/shared/03090405.xhp" name="FreeLibrary">FreeLibrary</link></paragraph> -<paragraph role="heading" id="hd_id3156344" xml-lang="en-US" level="2" l10n="U" oldref="4">Syntax:</paragraph> -<paragraph role="paragraph" id="par_id3148664" xml-lang="en-US" l10n="U" oldref="5">Declare {Sub | Function} Name Lib "Libname" [Alias "Aliasname"] [Parameter] [As Type]</paragraph> -<paragraph role="heading" id="hd_id3153360" xml-lang="en-US" level="2" l10n="U" oldref="6">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3154140" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic.</paragraph> -<paragraph role="paragraph" id="par_id3150870" xml-lang="en-US" l10n="U" oldref="9"> -<emph>Aliasname:</emph> Name of the subroutine as defined in the DLL.</paragraph> -<paragraph role="paragraph" id="par_id3154684" xml-lang="en-US" l10n="U" oldref="10"> -<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used.</paragraph> -<paragraph role="paragraph" id="par_id3148452" xml-lang="en-US" l10n="U" oldref="11"> -<emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure.</paragraph> -<paragraph role="paragraph" id="par_id3147289" xml-lang="en-US" l10n="U" oldref="12"> -<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name.</paragraph> -<paragraph role="warning" id="par_id3146922" xml-lang="en-US" l10n="U" oldref="13">To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>.</paragraph> -<paragraph role="heading" id="hd_id3153951" xml-lang="en-US" level="2" l10n="U" oldref="14">Example:</paragraph> -<paragraph role="paragraph" id="par_id3154320" xml-lang="en-US" l10n="U" oldref="15">Declare Sub MyMessageBeep Lib "user32.dll" Alias "MessageBeep" ( long )</paragraph> -<paragraph role="paragraph" id="par_id3150417" xml-lang="en-US" l10n="U" oldref="17">Sub ExampleDeclare</paragraph> -<paragraph role="paragraph" id="par_id3149959" xml-lang="en-US" l10n="U" oldref="18">Dim lValue As Long</paragraph> -<paragraph role="paragraph" id="par_id3145647" xml-lang="en-US" l10n="U" oldref="19">lValue = 5000</paragraph> -<paragraph role="paragraph" id="par_id3145801" xml-lang="en-US" l10n="U" oldref="20">MyMessageBeep( lValue )</paragraph> -<paragraph role="paragraph" id="par_id3145253" xml-lang="en-US" l10n="U" oldref="21">FreeLibrary("user32.dll" )</paragraph> -<paragraph role="paragraph" id="par_id3149402" xml-lang="en-US" l10n="U" oldref="22">End Sub</paragraph> +<paragraph role="paragraph" id="par_id3146795" xml-lang="en-US" l10n="U">See also: <link href="text/sbasic/shared/03090405.xhp" name="FreeLibrary">FreeLibrary</link></paragraph> +<paragraph role="heading" id="hd_id3156344" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="paragraph" id="par_id3148664" xml-lang="en-US" l10n="U">Declare {Sub | Function} Name Lib "Libname" [Alias "Aliasname"] [Parameter] [As Type]</paragraph> +<paragraph role="heading" id="hd_id3153360" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3154140" xml-lang="en-US" l10n="U"><emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic.</paragraph> +<paragraph role="paragraph" id="par_id3150870" xml-lang="en-US" l10n="U"><emph>Aliasname:</emph> Name of the subroutine as defined in the DLL.</paragraph> +<paragraph role="paragraph" id="par_id3154684" xml-lang="en-US" l10n="U"><emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used.</paragraph> +<paragraph role="paragraph" id="par_id3148452" xml-lang="en-US" l10n="U"><emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure.</paragraph> +<paragraph role="paragraph" id="par_id3147289" xml-lang="en-US" l10n="U"><emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name.</paragraph> +<paragraph role="warning" id="par_id3146922" xml-lang="en-US" l10n="U">To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>.</paragraph> +<paragraph role="heading" id="hd_id3153951" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="paragraph" id="par_id3154320" xml-lang="en-US" l10n="U">Declare Sub MyMessageBeep Lib "user32.dll" Alias "MessageBeep" ( long )</paragraph> +<paragraph role="paragraph" id="par_id3150417" xml-lang="en-US" l10n="U">Sub ExampleDeclare</paragraph> +<paragraph role="paragraph" id="par_id3149959" xml-lang="en-US" l10n="U">Dim lValue As Long</paragraph> +<paragraph role="paragraph" id="par_id3145647" xml-lang="en-US" l10n="U">lValue = 5000</paragraph> +<paragraph role="paragraph" id="par_id3145801" xml-lang="en-US" l10n="U">MyMessageBeep( lValue )</paragraph> +<paragraph role="paragraph" id="par_id3145253" xml-lang="en-US" l10n="U">FreeLibrary("user32.dll" )</paragraph> +<paragraph role="paragraph" id="par_id3149402" xml-lang="en-US" l10n="U">End Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03120401.xhp b/main/helpcontent2/source/text/sbasic/shared/03120401.xhp index e40aa9d334..5ab08d49cd 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03120401.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03120401.xhp @@ -33,33 +33,29 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3155934"> <bookmark_value>InStr function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3155934" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03120401.xhp" name="InStr Function [Runtime]">InStr Function [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3153990" xml-lang="en-US" l10n="U" oldref="2">Returns the position of a string within another string.</paragraph> +<paragraph role="heading" id="hd_id3155934" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03120401.xhp" name="InStr Function [Runtime]">InStr Function [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3153990" xml-lang="en-US" l10n="U">Returns the position of a string within another string.</paragraph> </section> -<paragraph role="paragraph" id="par_id3147303" xml-lang="en-US" l10n="U" oldref="3">The Instr function returns the position at which the match was found. If the string was not found, the function returns 0.</paragraph> -<paragraph role="heading" id="hd_id3145090" xml-lang="en-US" level="2" l10n="U" oldref="4">Syntax:</paragraph> -<paragraph role="code" id="par_id3146957" xml-lang="en-US" l10n="U" oldref="5">InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])</paragraph> -<paragraph role="heading" id="hd_id3148538" xml-lang="en-US" level="2" l10n="U" oldref="6">Return value:</paragraph> -<paragraph role="paragraph" id="par_id3149763" xml-lang="en-US" l10n="U" oldref="7">Integer</paragraph> -<paragraph role="heading" id="hd_id3148473" xml-lang="en-US" level="2" l10n="U" oldref="8">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3153126" xml-lang="en-US" l10n="CHG" oldref="9"> -<emph>Start:</emph> A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535.<comment>UFI: see #i17928#</comment></paragraph> -<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="U" oldref="10"> -<emph>Text1:</emph> The string expression that you want to search.</paragraph> -<paragraph role="paragraph" id="par_id3147559" xml-lang="en-US" l10n="U" oldref="11"> -<emph>Text2:</emph> The string expression that you want to search for.</paragraph> -<paragraph role="paragraph" id="par_id3154758" xml-lang="en-US" l10n="CHG" oldref="12"> -<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive.<comment>UFI: fixes #i17929#</comment></paragraph> -<paragraph role="paragraph" id="par_id3153361" xml-lang="en-US" l10n="U" oldref="13">To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted.</paragraph> +<paragraph role="paragraph" id="par_id3147303" xml-lang="en-US" l10n="U">The Instr function returns the position at which the match was found. If the string was not found, the function returns 0.</paragraph> +<paragraph role="heading" id="hd_id3145090" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3146957" xml-lang="en-US" l10n="U">InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])</paragraph> +<paragraph role="heading" id="hd_id3148538" xml-lang="en-US" level="2" l10n="U">Return value:</paragraph> +<paragraph role="paragraph" id="par_id3149763" xml-lang="en-US" l10n="U">Integer</paragraph> +<paragraph role="heading" id="hd_id3148473" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3153126" xml-lang="en-US" l10n="CHG"><emph>Start:</emph> A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535.<comment>UFI: see #i17928#</comment></paragraph> +<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="U"><emph>Text1:</emph> The string expression that you want to search.</paragraph> +<paragraph role="paragraph" id="par_id3147559" xml-lang="en-US" l10n="U"><emph>Text2:</emph> The string expression that you want to search for.</paragraph> +<paragraph role="paragraph" id="par_id3154758" xml-lang="en-US" l10n="CHG"><emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive.<comment>UFI: fixes #i17929#</comment></paragraph> +<paragraph role="paragraph" id="par_id3153361" xml-lang="en-US" l10n="U">To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted.</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> -<paragraph role="heading" id="hd_id3154366" xml-lang="en-US" level="2" l10n="U" oldref="14">Example:</paragraph> -<paragraph role="code" id="par_id3154217" xml-lang="en-US" l10n="U" oldref="15">Sub ExamplePosition</paragraph> -<paragraph role="code" id="par_id3154685" xml-lang="en-US" l10n="U" oldref="16">Dim sInput As String</paragraph> -<paragraph role="code" id="par_id3151042" xml-lang="en-US" l10n="U" oldref="17">Dim iPos as Integer</paragraph> -<paragraph role="code" id="par_id3144760" xml-lang="en-US" l10n="CHG" oldref="19">sInput = "Office"</paragraph> -<paragraph role="code" id="par_id3154125" xml-lang="en-US" l10n="CHG" oldref="20">iPos = Instr(sInput,"c")</paragraph> -<paragraph role="code" id="par_id3145173" xml-lang="en-US" l10n="U" oldref="21">print iPos</paragraph> -<paragraph role="code" id="par_id3145786" xml-lang="en-US" l10n="U" oldref="22">end sub</paragraph> +<paragraph role="heading" id="hd_id3154366" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3154217" xml-lang="en-US" l10n="U">Sub ExamplePosition</paragraph> +<paragraph role="code" id="par_id3154685" xml-lang="en-US" l10n="U">Dim sInput As String</paragraph> +<paragraph role="code" id="par_id3151042" xml-lang="en-US" l10n="U">Dim iPos as Integer</paragraph> +<paragraph role="code" id="par_id3144760" xml-lang="en-US" l10n="CHG">sInput = "Office"</paragraph> +<paragraph role="code" id="par_id3154125" xml-lang="en-US" l10n="CHG">iPos = Instr(sInput,"c")</paragraph> +<paragraph role="code" id="par_id3145173" xml-lang="en-US" l10n="U">print iPos</paragraph> +<paragraph role="code" id="par_id3145786" xml-lang="en-US" l10n="U">end sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/01/04080000.xhp b/main/helpcontent2/source/text/scalc/01/04080000.xhp index e13d3bd6e4..0e43d8bea6 100644 --- a/main/helpcontent2/source/text/scalc/01/04080000.xhp +++ b/main/helpcontent2/source/text/scalc/01/04080000.xhp @@ -37,30 +37,29 @@ <!-- removed HID HID_SC_FUNCTIONLIST --> <bookmark xml-lang="en-US" branch="hid/.uno:FunctionBox" id="bm_id998166" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:FunctionBox" id="bm_id7607654" localize="false"/> -<paragraph role="heading" id="hd_id3154126" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/scalc/01/04080000.xhp" name="Function List">Function List</link></paragraph> -<paragraph role="paragraph" id="par_id3151118" xml-lang="en-US" l10n="CHG" oldref="2"><variable id="funktionslistetext"><ahelp hid="HID_SC_FUNCTIONLIST">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp> +<paragraph role="heading" id="hd_id3154126" xml-lang="en-US" level="1" l10n="U"><link href="text/scalc/01/04080000.xhp" name="Function List">Function List</link></paragraph> +<paragraph role="paragraph" id="par_id3151118" xml-lang="en-US" l10n="CHG"><variable id="funktionslistetext"><ahelp hid="HID_SC_FUNCTIONLIST">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp> </variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href="text/scalc/01/04060000.xhp" name="Function Wizard">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values.</paragraph> <section id="howtoget"> <embed href="text/scalc/00/00000404.xhp#funktionsliste"/> </section> -<paragraph role="paragraph" id="par_id3152576" xml-lang="en-US" l10n="U" oldref="3">The <emph>Function List</emph> window is a resizable <link href="text/shared/00/00000005.xhp#andocken" name="dockable window">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters.</paragraph> +<paragraph role="paragraph" id="par_id3152576" xml-lang="en-US" l10n="U">The <emph>Function List</emph> window is a resizable <link href="text/shared/00/00000005.xhp#andocken" name="dockable window">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters.</paragraph> <bookmark xml-lang="en-US" branch="hid/sc:ListBox:FID_FUNCTION_BOX:CB_CAT" id="bm_id3149960" localize="false"/> -<paragraph role="heading" id="hd_id3145799" xml-lang="en-US" level="2" l10n="U" oldref="4">Category List</paragraph> +<paragraph role="heading" id="hd_id3145799" xml-lang="en-US" level="2" l10n="U">Category List</paragraph> <embed href="text/scalc/01/04060000.xhp#kategorienliste"/> <bookmark xml-lang="en-US" branch="hid/sc:ListBox:FID_FUNCTION_BOX:LB_FUNC" id="bm_id3147126" localize="false"/> -<paragraph role="heading" id="hd_id3153160" xml-lang="en-US" level="2" l10n="U" oldref="5">Function List</paragraph> -<paragraph role="paragraph" id="par_id3149412" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon.</paragraph> +<paragraph role="heading" id="hd_id3153160" xml-lang="en-US" level="2" l10n="U">Function List</paragraph> +<paragraph role="paragraph" id="par_id3149412" xml-lang="en-US" l10n="U"><ahelp hid="SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon.</paragraph> <bookmark xml-lang="en-US" branch="hid/sc:ImageButton:FID_FUNCTION_BOX:IMB_INSERT" id="bm_id3150752" localize="false"/> -<paragraph role="heading" id="hd_id3146971" xml-lang="en-US" level="2" l10n="U" oldref="7">Insert Function into calculation sheet</paragraph> +<paragraph role="heading" id="hd_id3146971" xml-lang="en-US" level="2" l10n="U">Insert Function into calculation sheet</paragraph> <table id="tbl_id3153711"> <tablerow> <tablecell colspan="" rowspan=""> <paragraph role="paragraph" id="par_id3150043" xml-lang="en-US" l10n="E"> -<image id="img_id3159267" src="sc/res/fx.png" width="0.1945inch" height="0.1945inch"><alt id="alt_id3159267" xml-lang="en-US">Icon</alt> -</image></paragraph> +<image id="img_id3159267" src="sc/res/fx.png" width="0.1945inch" height="0.1945inch"><alt id="alt_id3159267" xml-lang="en-US">Icon</alt></image></paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3147345" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT">Inserts the selected function into the document.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3147345" xml-lang="en-US" l10n="U"><ahelp hid="SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT">Inserts the selected function into the document.</ahelp></paragraph> </tablecell> </tablerow> </table> diff --git a/main/helpcontent2/source/text/scalc/01/func_yearfrac.xhp b/main/helpcontent2/source/text/scalc/01/func_yearfrac.xhp index 46260ad8f4..14ce626632 100644 --- a/main/helpcontent2/source/text/scalc/01/func_yearfrac.xhp +++ b/main/helpcontent2/source/text/scalc/01/func_yearfrac.xhp @@ -33,69 +33,67 @@ <bookmark_value>YEARFRAC function</bookmark_value> </bookmark> <bookmark xml-lang="en-US" branch="hid/SC_HID_AAI_FUNC_YEARFRAC" id="bm_id3149251" localize="false"/> -<paragraph role="heading" id="hd_id3148735" xml-lang="en-US" level="2" l10n="U" oldref="196"><variable id="yearfrac"><link href="text/scalc/01/func_yearfrac.xhp">YEARFRAC</link> +<paragraph role="heading" id="hd_id3148735" xml-lang="en-US" level="2" l10n="U"><variable id="yearfrac"><link href="text/scalc/01/func_yearfrac.xhp">YEARFRAC</link> </variable></paragraph> -<paragraph role="paragraph" id="par_id3150899" xml-lang="en-US" l10n="U" oldref="197"><ahelp hid="HID_AAI_FUNC_YEARFRAC"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3155259" xml-lang="en-US" level="3" l10n="U" oldref="198">Syntax</paragraph> -<paragraph role="code" id="par_id3155823" xml-lang="en-US" l10n="U" oldref="199">YEARFRAC(StartDate; EndDate; Basis)</paragraph> -<paragraph role="paragraph" id="par_id3145144" xml-lang="en-US" l10n="U" oldref="200"> -<emph>StartDate</emph> and <emph>EndDate</emph> are two date values.</paragraph> +<paragraph role="paragraph" id="par_id3150899" xml-lang="en-US" l10n="U"><ahelp hid="HID_AAI_FUNC_YEARFRAC"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155259" xml-lang="en-US" level="3" l10n="U">Syntax</paragraph> +<paragraph role="code" id="par_id3155823" xml-lang="en-US" l10n="U">YEARFRAC(StartDate; EndDate; Basis)</paragraph> +<paragraph role="paragraph" id="par_id3145144" xml-lang="en-US" l10n="U"><emph>StartDate</emph> and <emph>EndDate</emph> are two date values.</paragraph> <section id="basis"> -<paragraph role="paragraph" id="par_id3149954" xml-lang="en-US" l10n="U" oldref="201"> -<emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated.</paragraph> +<paragraph role="paragraph" id="par_id3149954" xml-lang="en-US" l10n="U"><emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated.</paragraph> <table id="tbl_id3145590"> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="tablehead" id="par_id3146847" xml-lang="en-US" l10n="U" oldref="202">Basis</paragraph> +<paragraph role="tablehead" id="par_id3146847" xml-lang="en-US" l10n="U">Basis</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="tablehead" id="par_id3155956" xml-lang="en-US" l10n="U" oldref="203">Calculation</paragraph> +<paragraph role="tablehead" id="par_id3155956" xml-lang="en-US" l10n="U">Calculation</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3154502" xml-lang="en-US" l10n="U" oldref="204">0 or missing</paragraph> +<paragraph role="tablecontent" id="par_id3154502" xml-lang="en-US" l10n="U">0 or missing</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3149877" xml-lang="en-US" l10n="U" oldref="205">US method (NASD), 12 months of 30 days each</paragraph> +<paragraph role="tablecontent" id="par_id3149877" xml-lang="en-US" l10n="U">US method (NASD), 12 months of 30 days each</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3148766" xml-lang="en-US" l10n="U" oldref="250">1</paragraph> +<paragraph role="tablecontent" id="par_id3148766" xml-lang="en-US" l10n="U">1</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3154326" xml-lang="en-US" l10n="U" oldref="206">Exact number of days in months, exact number of days in year</paragraph> +<paragraph role="tablecontent" id="par_id3154326" xml-lang="en-US" l10n="U">Exact number of days in months, exact number of days in year</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3145245" xml-lang="en-US" l10n="U" oldref="251">2</paragraph> +<paragraph role="tablecontent" id="par_id3145245" xml-lang="en-US" l10n="U">2</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3155620" xml-lang="en-US" l10n="U" oldref="207">Exact number of days in month, year has 360 days</paragraph> +<paragraph role="tablecontent" id="par_id3155620" xml-lang="en-US" l10n="U">Exact number of days in month, year has 360 days</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3145297" xml-lang="en-US" l10n="U" oldref="252">3</paragraph> +<paragraph role="tablecontent" id="par_id3145297" xml-lang="en-US" l10n="U">3</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3148394" xml-lang="en-US" l10n="U" oldref="208">Exact number of days in month, year has 365 days</paragraph> +<paragraph role="tablecontent" id="par_id3148394" xml-lang="en-US" l10n="U">Exact number of days in month, year has 365 days</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3151022" xml-lang="en-US" l10n="U" oldref="253">4</paragraph> +<paragraph role="tablecontent" id="par_id3151022" xml-lang="en-US" l10n="U">4</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="tablecontent" id="par_id3150931" xml-lang="en-US" l10n="U" oldref="209">European method, 12 months of 30 days each</paragraph> +<paragraph role="tablecontent" id="par_id3150931" xml-lang="en-US" l10n="U">European method, 12 months of 30 days each</paragraph> </tablecell> </tablerow> </table> </section> -<paragraph role="heading" id="hd_id3145626" xml-lang="en-US" level="3" l10n="U" oldref="210">Example</paragraph> -<paragraph role="paragraph" id="par_id3149007" xml-lang="en-US" l10n="CHG" oldref="211">What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?</paragraph> -<paragraph role="code" id="par_id3154632" xml-lang="en-US" l10n="CHG" oldref="212">=YEARFRAC("2008-01-01"; "2008-07-01";0) returns 0.50.</paragraph> +<paragraph role="heading" id="hd_id3145626" xml-lang="en-US" level="3" l10n="U">Example</paragraph> +<paragraph role="paragraph" id="par_id3149007" xml-lang="en-US" l10n="CHG">What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?</paragraph> +<paragraph role="code" id="par_id3154632" xml-lang="en-US" l10n="CHG">=YEARFRAC("2008-01-01"; "2008-07-01";0) returns 0.50.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/01/password_main.xhp b/main/helpcontent2/source/text/shared/01/password_main.xhp index e851cc5e10..645d718e55 100644 --- a/main/helpcontent2/source/text/shared/01/password_main.xhp +++ b/main/helpcontent2/source/text/shared/01/password_main.xhp @@ -30,12 +30,12 @@ </meta> <body> <section id="password_main"> -<paragraph xml-lang="en-US" id="hd_id3154183" role="heading" level="1" l10n="U" oldref="1"><variable id="password_maintitle"><link href="text/shared/01/password_main.xhp" name="Enter Master Password">Enter Master Password</link> +<paragraph xml-lang="en-US" id="hd_id3154183" role="heading" level="1" l10n="U"><variable id="password_maintitle"><link href="text/shared/01/password_main.xhp" name="Enter Master Password">Enter Master Password</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3154841" role="paragraph" l10n="U" oldref="2"><ahelp hid="">Assign a master password to protect the access to a saved password.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="par_id3154841" role="paragraph" l10n="U"><ahelp hid="">Assign a master password to protect the access to a saved password.</ahelp></paragraph> <section id="password_text"> -<paragraph xml-lang="en-US" id="par_id3146857" role="paragraph" l10n="CHG" oldref="3">You can save some passwords for the duration of a session, or permanently to a file protected by a master password.<comment> For example, passwords for accessing WebDAV or FTP servers are stored permanently if you enter a master password when prompted. Otherwise, they are only stored for the current session.</comment><comment>removed text see i71792</comment></paragraph> -<paragraph xml-lang="en-US" id="par_id3147000" role="paragraph" l10n="U" oldref="6">You must enter the master password to access a file or service that is protected by a saved password. You only need to enter the master password once during a session.</paragraph> +<paragraph xml-lang="en-US" id="par_id3146857" role="paragraph" l10n="CHG">You can save some passwords for the duration of a session, or permanently to a file protected by a master password.<comment> For example, passwords for accessing WebDAV or FTP servers are stored permanently if you enter a master password when prompted. Otherwise, they are only stored for the current session.</comment><comment>removed text see i71792</comment></paragraph> +<paragraph xml-lang="en-US" id="par_id3147000" role="paragraph" l10n="U">You must enter the master password to access a file or service that is protected by a saved password. You only need to enter the master password once during a session.</paragraph> </section> <section id="password_rules"> <paragraph xml-lang="en-US" id="par_id0608200910545958" role="paragraph" l10n="NEW">You should only use passwords that are hard to find by other persons or programs. A password should follow these rules:</paragraph> @@ -56,11 +56,11 @@ </section> <!-- removed HID UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_CRT --> <!-- removed HID UUI_EDIT_DLG_UUI_PASSWORD_ED_MASTERPASSWORD --> -<paragraph xml-lang="en-US" id="hd_id3147588" role="heading" level="2" l10n="U" oldref="7">Master password</paragraph> -<paragraph xml-lang="en-US" id="par_id3148731" role="paragraph" l10n="U" oldref="8"><ahelp hid="UUI_EDIT_DLG_UUI_PASSWORD_ED_MASTERPASSWORD">Type a master password to prevent unauthorized users from accessing stored passwords.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3147588" role="heading" level="2" l10n="U">Master password</paragraph> +<paragraph xml-lang="en-US" id="par_id3148731" role="paragraph" l10n="U"><ahelp hid="UUI_EDIT_DLG_UUI_PASSWORD_ED_MASTERPASSWORD">Type a master password to prevent unauthorized users from accessing stored passwords.</ahelp></paragraph> <!-- removed HID UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_REPEAT --> -<paragraph xml-lang="en-US" id="hd_id3144436" role="heading" level="2" l10n="U" oldref="9">Confirm master password</paragraph> -<paragraph xml-lang="en-US" id="par_id3145129" role="paragraph" l10n="U" oldref="10"><ahelp hid="UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_REPEAT">Re-enter the master password.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3144436" role="heading" level="2" l10n="U">Confirm master password</paragraph> +<paragraph xml-lang="en-US" id="par_id3145129" role="paragraph" l10n="U"><ahelp hid="UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_REPEAT">Re-enter the master password.</ahelp></paragraph> </section> <section id="relatedtopics"> <embed href="text/shared/guide/protection.xhp#protection"/> diff --git a/main/helpcontent2/source/text/shared/autopi/01010100.xhp b/main/helpcontent2/source/text/shared/autopi/01010100.xhp index 75ff4660a2..af786c51a1 100644 --- a/main/helpcontent2/source/text/shared/autopi/01010100.xhp +++ b/main/helpcontent2/source/text/shared/autopi/01010100.xhp @@ -32,31 +32,31 @@ <body> <section id="seite1"> <bookmark xml-lang="en-US" branch="hid/SW_HID_LETTER_PAGE1" id="bm_id3147291" localize="false"/> -<paragraph role="heading" id="hd_id3147102" xml-lang="en-US" level="1" l10n="CHG" oldref="1"><link href="text/shared/autopi/01010100.xhp" name="Letter Wizard - Page design">Letter Wizard - Page design</link></paragraph> -<paragraph role="paragraph" id="par_id3147226" xml-lang="en-US" l10n="U" oldref="2"><ahelp hid="HID_LETTER_PAGE1">Specifies whether you want to create a personal or a business letter.</ahelp> The available options on the following pages vary depending on your choice.</paragraph> +<paragraph role="heading" id="hd_id3147102" xml-lang="en-US" level="1" l10n="CHG"><link href="text/shared/autopi/01010100.xhp" name="Letter Wizard - Page design">Letter Wizard - Page design</link></paragraph> +<paragraph role="paragraph" id="par_id3147226" xml-lang="en-US" l10n="U"><ahelp hid="HID_LETTER_PAGE1">Specifies whether you want to create a personal or a business letter.</ahelp> The available options on the following pages vary depending on your choice.</paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00000401.xhp#autopilotbrief1"/> </section> -<paragraph role="heading" id="hd_id3149183" xml-lang="en-US" level="2" l10n="CHG" oldref="3">Please choose the type of letter and page design</paragraph> -<paragraph role="paragraph" id="par_id3145346" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid=".">Specify whether you want to create a business or personal letter template.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149183" xml-lang="en-US" level="2" l10n="CHG">Please choose the type of letter and page design</paragraph> +<paragraph role="paragraph" id="par_id3145346" xml-lang="en-US" l10n="U"><ahelp hid=".">Specify whether you want to create a business or personal letter template.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_OPTBUSINESSLETTER" id="bm_id4119998" localize="false"/> -<paragraph role="heading" id="hd_id3155941" xml-lang="en-US" level="3" l10n="U" oldref="5">Business letter</paragraph> -<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="HID_LTRWIZ_OPTBUSINESSLETTER">Specifies that you want to create a business letter template.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155941" xml-lang="en-US" level="3" l10n="U">Business letter</paragraph> +<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US" l10n="U"><ahelp hid="HID_LTRWIZ_OPTBUSINESSLETTER">Specifies that you want to create a business letter template.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_OPTPRIVOFFICIALLETTER" id="bm_id8321481" localize="false"/> <paragraph role="heading" id="par_idN10616" xml-lang="en-US" level="3" l10n="NEW">Formal personal letter</paragraph> <paragraph role="paragraph" id="par_idN1061D" xml-lang="en-US" l10n="NEW"><ahelp hid="HID_LTRWIZ_OPTPRIVOFFICIALLETTER">Specifies that you want to create a formal personal letter.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_OPTPRIVATELETTER" id="bm_id7438276" localize="false"/> -<paragraph role="heading" id="hd_id3147275" xml-lang="en-US" level="3" l10n="U" oldref="7">Personal letter</paragraph> -<paragraph role="paragraph" id="par_id3148538" xml-lang="en-US" l10n="CHG" oldref="8"><ahelp hid="HID_LTRWIZ_OPTPRIVATELETTER">Specifies that you want to create a personal letter.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147275" xml-lang="en-US" level="3" l10n="U">Personal letter</paragraph> +<paragraph role="paragraph" id="par_id3148538" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_LTRWIZ_OPTPRIVATELETTER">Specifies that you want to create a personal letter.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_LSTBUSINESSSTYLE" id="bm_id9794915" localize="false"/> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_LSTPRIVOFFICIALSTYLE" id="bm_id1822870" localize="false"/> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_LSTPRIVATESTYLE" id="bm_id5860774" localize="false"/> -<paragraph role="heading" id="hd_id3155628" xml-lang="en-US" level="2" l10n="CHG" oldref="9">Page design</paragraph> -<paragraph role="paragraph" id="par_id3149415" xml-lang="en-US" l10n="CHG" oldref="10"><ahelp hid="HID_LTRWIZ_LSTBUSINESSSTYLE">Select the design for your letter template.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155628" xml-lang="en-US" level="2" l10n="CHG">Page design</paragraph> +<paragraph role="paragraph" id="par_id3149415" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_LTRWIZ_LSTBUSINESSSTYLE">Select the design for your letter template.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_CHKBUSINESSPAPER" id="bm_id1687673" localize="false"/> <paragraph role="heading" id="par_idN106A7" xml-lang="en-US" level="3" l10n="NEW">Use letterhead paper with pre-printed elements</paragraph> <paragraph role="paragraph" id="par_idN106AB" xml-lang="en-US" l10n="NEW"><ahelp hid="HID_LTRWIZ_CHKBUSINESSPAPER">Specifies whether paper is used that already contains an imprinted logo, address, or footer line. The Wizard shows the Letterhead layout page next.</ahelp></paragraph> -<paragraph role="paragraph" id="par_id3150254" xml-lang="en-US" l10n="CHG" oldref="17"><link href="text/shared/autopi/01010200.xhp" name="Go to Letter Wizard - Letterhead layout">Go to Letter Wizard - Letterhead layout</link></paragraph> +<paragraph role="paragraph" id="par_id3150254" xml-lang="en-US" l10n="CHG"><link href="text/shared/autopi/01010200.xhp" name="Go to Letter Wizard - Letterhead layout">Go to Letter Wizard - Letterhead layout</link></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/autopi/01050000.xhp b/main/helpcontent2/source/text/shared/autopi/01050000.xhp index e6b7dd09ef..94f8010f6c 100644 --- a/main/helpcontent2/source/text/shared/autopi/01050000.xhp +++ b/main/helpcontent2/source/text/shared/autopi/01050000.xhp @@ -36,27 +36,27 @@ <bookmark xml-lang="en-US" branch="hid/slot:10425" id="bm_id7406537" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:AutoPilotPresentations" id="bm_id3928952" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:NewPresentation" id="bm_id9551683" localize="false"/> -<paragraph role="heading" id="hd_id3159224" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/autopi/01050000.xhp" name="Presentation Wizard">Presentation Wizard</link></paragraph> -<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" l10n="U" oldref="2"><variable id="autopilot"><ahelp hid="SID_AUTOPILOT">Use the wizard to interactively create a presentation. With the wizard, you can modify the sample templates to suit your needs.</ahelp> +<paragraph role="heading" id="hd_id3159224" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/autopi/01050000.xhp" name="Presentation Wizard">Presentation Wizard</link></paragraph> +<paragraph role="paragraph" id="par_id3156027" xml-lang="en-US" l10n="U"><variable id="autopilot"><ahelp hid="SID_AUTOPILOT">Use the wizard to interactively create a presentation. With the wizard, you can modify the sample templates to suit your needs.</ahelp> </variable> The wizard takes you step by step through the design elements and offers various editing options.</paragraph> <section id="howtoget"> <embed href="text/shared/00/00000401.xhp#dtapt"/> </section> -<paragraph role="tip" id="par_id3154289" xml-lang="en-US" l10n="U" oldref="11">The Presentation Wizard starts automatically when you open a new presentation. You can deactivate this function if you choose <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href="text/shared/optionen/01070500.xhp" name="Presentation - General">%PRODUCTNAME Impress - General</link></emph> and [...] -<paragraph role="paragraph" id="par_id3166410" xml-lang="en-US" l10n="U" oldref="3">Within each wizard page, you can undo, modify, or skip altogether the editing steps. If you decide to skip over one of the pages, the wizard uses the default settings.</paragraph> +<paragraph role="tip" id="par_id3154289" xml-lang="en-US" l10n="U">The Presentation Wizard starts automatically when you open a new presentation. You can deactivate this function if you choose <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href="text/shared/optionen/01070500.xhp" name="Presentation - General">%PRODUCTNAME Impress - General</link></emph> and deselect the [...] +<paragraph role="paragraph" id="par_id3166410" xml-lang="en-US" l10n="U">Within each wizard page, you can undo, modify, or skip altogether the editing steps. If you decide to skip over one of the pages, the wizard uses the default settings.</paragraph> <embed href="text/shared/autopi/01050100.xhp#autopilotseite1"/> <embed href="text/shared/autopi/01050200.xhp#autopilotseite2"/> <embed href="text/shared/autopi/01050300.xhp#autopilotseite3"/> <embed href="text/shared/autopi/01050400.xhp#autopilotseite4"/> <embed href="text/shared/autopi/01050500.xhp#autopilotseite5"/> <bookmark xml-lang="en-US" branch="hid/sd:PushButton:DLG_ASS:BUT_LAST" id="bm_id3156002" localize="false"/> -<paragraph role="heading" id="hd_id3159269" xml-lang="en-US" level="2" l10n="U" oldref="4">< Back</paragraph> -<paragraph role="paragraph" id="par_id3150504" xml-lang="en-US" l10n="U" oldref="5"><ahelp hid="SD:PUSHBUTTON:DLG_ASS:BUT_LAST">Returns to the previous step without deleting your current settings.</ahelp> You can only select this button after the second editing step.</paragraph> +<paragraph role="heading" id="hd_id3159269" xml-lang="en-US" level="2" l10n="U">< Back</paragraph> +<paragraph role="paragraph" id="par_id3150504" xml-lang="en-US" l10n="U"><ahelp hid="SD:PUSHBUTTON:DLG_ASS:BUT_LAST">Returns to the previous step without deleting your current settings.</ahelp> You can only select this button after the second editing step.</paragraph> <bookmark xml-lang="en-US" branch="hid/sd:PushButton:DLG_ASS:BUT_NEXT" id="bm_id3153665" localize="false"/> -<paragraph role="heading" id="hd_id3153349" xml-lang="en-US" level="2" l10n="U" oldref="6">Next ></paragraph> -<paragraph role="paragraph" id="par_id3156307" xml-lang="en-US" l10n="U" oldref="7"><ahelp hid="SD:PUSHBUTTON:DLG_ASS:BUT_NEXT">Accepts the new settings and moves to the next page.</ahelp> You will not be able to select this button in the last editing step.</paragraph> -<paragraph role="heading" id="hd_id3156327" xml-lang="en-US" level="2" l10n="U" oldref="8">Create</paragraph> -<paragraph role="paragraph" id="par_id3153087" xml-lang="en-US" l10n="U" oldref="9">The wizard creates a new document based on the specified settings. You can later specify a name for the document and save it.</paragraph> -<paragraph role="note" id="par_id3149656" xml-lang="en-US" l10n="U" oldref="10">$[officename] saves the current wizard settings and uses them as default the next time you open the wizard.</paragraph> +<paragraph role="heading" id="hd_id3153349" xml-lang="en-US" level="2" l10n="U">Next ></paragraph> +<paragraph role="paragraph" id="par_id3156307" xml-lang="en-US" l10n="U"><ahelp hid="SD:PUSHBUTTON:DLG_ASS:BUT_NEXT">Accepts the new settings and moves to the next page.</ahelp> You will not be able to select this button in the last editing step.</paragraph> +<paragraph role="heading" id="hd_id3156327" xml-lang="en-US" level="2" l10n="U">Create</paragraph> +<paragraph role="paragraph" id="par_id3153087" xml-lang="en-US" l10n="U">The wizard creates a new document based on the specified settings. You can later specify a name for the document and save it.</paragraph> +<paragraph role="note" id="par_id3149656" xml-lang="en-US" l10n="U">$[officename] saves the current wizard settings and uses them as default the next time you open the wizard.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/guide/autocorr_url.xhp b/main/helpcontent2/source/text/shared/guide/autocorr_url.xhp index 0d297ce347..c41c8a6c4a 100644 --- a/main/helpcontent2/source/text/shared/guide/autocorr_url.xhp +++ b/main/helpcontent2/source/text/shared/guide/autocorr_url.xhp @@ -38,35 +38,35 @@ <bookmark_value>links;turning off automatic recognition</bookmark_value> <bookmark_value>predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion</bookmark_value> </bookmark> -<paragraph xml-lang="en-US" id="hd_id3149346" role="heading" level="1" l10n="U" oldref="6"><variable id="autocorr_url"><link href="text/shared/guide/autocorr_url.xhp" name="Turning off Automatic URL Recognition">Turning off Automatic URL Recognition</link> +<paragraph xml-lang="en-US" id="hd_id3149346" role="heading" level="1" l10n="U"><variable id="autocorr_url"><link href="text/shared/guide/autocorr_url.xhp" name="Turning off Automatic URL Recognition">Turning off Automatic URL Recognition</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3166410" role="paragraph" l10n="U" oldref="7">When you enter text, $[officename] automatically recognizes a word that may be a <link href="text/shared/00/00000002.xhp#url" name="URL">URL</link> and replaces the word with a hyperlink. $[officename] formats the hyperlink with direct font attributes (color and underline) the properties of which are obtained from certain Character Styles.</paragraph> -<paragraph xml-lang="en-US" id="par_id3153561" role="paragraph" l10n="U" oldref="2">If you do not want $[officename] to automatically recognize URLs as you are typing, there are several ways of turning off this feature.</paragraph> -<paragraph xml-lang="en-US" id="hd_id3154306" role="heading" level="2" l10n="U" oldref="8">Undo URL Recognition</paragraph> +<paragraph xml-lang="en-US" id="par_id3166410" role="paragraph" l10n="U">When you enter text, $[officename] automatically recognizes a word that may be a <link href="text/shared/00/00000002.xhp#url" name="URL">URL</link> and replaces the word with a hyperlink. $[officename] formats the hyperlink with direct font attributes (color and underline) the properties of which are obtained from certain Character Styles.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153561" role="paragraph" l10n="U">If you do not want $[officename] to automatically recognize URLs as you are typing, there are several ways of turning off this feature.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3154306" role="heading" level="2" l10n="U">Undo URL Recognition</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3149233" role="listitem" l10n="U" oldref="3">When you are typing and notice that a text has just been automatically converted into a hyperlink, press <switchinline select="sys"><caseinline select="MAC">Command +<paragraph xml-lang="en-US" id="par_id3149233" role="listitem" l10n="U">When you are typing and notice that a text has just been automatically converted into a hyperlink, press <switchinline select="sys"><caseinline select="MAC">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z to undo this formatting.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149235" role="listitem" l10n="CHG" oldref="4">If you do not notice this conversion until later, select the hyperlink and choose the menu command <emph>Format - Default Formatting</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149235" role="listitem" l10n="CHG">If you do not notice this conversion until later, select the hyperlink and choose the menu command <emph>Format - Default Formatting</emph>.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3152350" role="heading" level="2" l10n="U" oldref="9">Turn off URL Recognition</paragraph> +<paragraph xml-lang="en-US" id="hd_id3152350" role="heading" level="2" l10n="U">Turn off URL Recognition</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3149514" role="listitem" l10n="U" oldref="10">Load a document of the type for which you want to modify the URL recognition.</paragraph> -<paragraph xml-lang="en-US" id="par_id3151246" role="listitem" l10n="U" oldref="11">If you want to modify the URL recognition for text documents, open a text document.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149514" role="listitem" l10n="U">Load a document of the type for which you want to modify the URL recognition.</paragraph> +<paragraph xml-lang="en-US" id="par_id3151246" role="listitem" l10n="U">If you want to modify the URL recognition for text documents, open a text document.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3159413" role="listitem" l10n="U" oldref="12">Choose <emph>Tools - AutoCorrect Options</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3159413" role="listitem" l10n="U">Choose <emph>Tools - AutoCorrect Options</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3148550" role="listitem" l10n="U" oldref="13">In the <emph>AutoCorrect</emph> dialog, select the <emph>Options</emph> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148550" role="listitem" l10n="U">In the <emph>AutoCorrect</emph> dialog, select the <emph>Options</emph> tab.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153360" role="listitem" l10n="U" oldref="14">If you unmark <emph>URL Recognition</emph>, words will no longer be automatically replaced with hyperlinks.</paragraph> -<paragraph xml-lang="en-US" id="par_id3156423" role="listitem" l10n="U" oldref="15">In $[officename] Writer there are two check boxes in front of <emph>URL Recognition</emph>. The box in the first column is for later post-editing and the box in the second column is for AutoCorrect as you type.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153360" role="listitem" l10n="U">If you unmark <emph>URL Recognition</emph>, words will no longer be automatically replaced with hyperlinks.</paragraph> +<paragraph xml-lang="en-US" id="par_id3156423" role="listitem" l10n="U">In $[officename] Writer there are two check boxes in front of <emph>URL Recognition</emph>. The box in the first column is for later post-editing and the box in the second column is for AutoCorrect as you type.</paragraph> </listitem> </list> <section id="relatedtopics"> diff --git a/main/helpcontent2/source/text/shared/guide/redlining.xhp b/main/helpcontent2/source/text/shared/guide/redlining.xhp index a3a9a0c4a0..568f1b3616 100644 --- a/main/helpcontent2/source/text/shared/guide/redlining.xhp +++ b/main/helpcontent2/source/text/shared/guide/redlining.xhp @@ -36,14 +36,14 @@ <bookmark_value>review function; recording changes example</bookmark_value> <bookmark_value>Track Changes, see review function</bookmark_value> </bookmark><comment>MW addes a cross-reference</comment><comment>MW added "highlighting changes"</comment> -<paragraph xml-lang="en-US" id="hd_id3150499" role="heading" level="1" l10n="U" oldref="7"><variable id="redlining"><link href="text/shared/guide/redlining.xhp" name="Recording and Displaying Changes">Recording and Displaying Changes</link> +<paragraph xml-lang="en-US" id="hd_id3150499" role="heading" level="1" l10n="U"><variable id="redlining"><link href="text/shared/guide/redlining.xhp" name="Recording and Displaying Changes">Recording and Displaying Changes</link> </variable></paragraph> <paragraph xml-lang="en-US" id="par_id4013794" 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_id3153681" role="paragraph" l10n="U" oldref="2">When several authors are working on the same text or spreadsheet, the review function records and displays who made the various changes. On the final edit of the document, it is then possible to look at each individual change and decide whether it should be accepted or rejected.</paragraph> -<paragraph xml-lang="en-US" id="par_id3147008" role="paragraph" l10n="U" oldref="3">For example: You are an editor and are delivering your latest report. But before publication the report must be read by the senior editor and the proofreader, and both will add their changes. The senior editor writes "clarify" after one paragraph and crosses out another entirely. The proofreader corrects the spelling of your document.</paragraph> -<paragraph xml-lang="en-US" id="par_id3150774" role="paragraph" l10n="U" oldref="4">The edited document comes back to you, and you can incorporate or ignore the suggestions of the two reviewers.</paragraph> -<paragraph xml-lang="en-US" id="par_id3146957" role="paragraph" l10n="U" oldref="5">Let's say you also e-mailed a copy of the report to a good friend and colleague who has done research on a similar topic in the past. You asked for a few suggestions, and the document is now returned by e-mail with your colleague's suggestions.</paragraph> -<paragraph xml-lang="en-US" id="par_id3147088" role="paragraph" l10n="U" oldref="6">As all your colleagues and the managers in your company work with $[officename], you can produce a final version of the document from the results you get back.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153681" role="paragraph" l10n="U">When several authors are working on the same text or spreadsheet, the review function records and displays who made the various changes. On the final edit of the document, it is then possible to look at each individual change and decide whether it should be accepted or rejected.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147008" role="paragraph" l10n="U">For example: You are an editor and are delivering your latest report. But before publication the report must be read by the senior editor and the proofreader, and both will add their changes. The senior editor writes "clarify" after one paragraph and crosses out another entirely. The proofreader corrects the spelling of your document.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150774" role="paragraph" l10n="U">The edited document comes back to you, and you can incorporate or ignore the suggestions of the two reviewers.</paragraph> +<paragraph xml-lang="en-US" id="par_id3146957" role="paragraph" l10n="U">Let's say you also e-mailed a copy of the report to a good friend and colleague who has done research on a similar topic in the past. You asked for a few suggestions, and the document is now returned by e-mail with your colleague's suggestions.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147088" role="paragraph" l10n="U">As all your colleagues and the managers in your company work with $[officename], you can produce a final version of the document from the results you get back.</paragraph> <embed href="text/shared/00/00000004.xhp#related"/> <embed href="text/shared/guide/redlining_enter.xhp#redlining_enter"/> <embed href="text/shared/guide/redlining_accept.xhp#redlining_accept"/> diff --git a/main/helpcontent2/source/text/swriter/guide/border_page.xhp b/main/helpcontent2/source/text/swriter/guide/border_page.xhp index d7f0fcfc68..a8a5d5d613 100644 --- a/main/helpcontent2/source/text/swriter/guide/border_page.xhp +++ b/main/helpcontent2/source/text/swriter/guide/border_page.xhp @@ -35,47 +35,46 @@ <bookmark_value>frames; around pages</bookmark_value> <bookmark_value>defining;page borders</bookmark_value> </bookmark><comment>MW deleted "adding;"</comment> -<paragraph xml-lang="en-US" id="hd_id3156136" role="heading" level="1" l10n="U" -oldref="15"><variable id="border_page"><link href="text/swriter/guide/border_page.xhp" name="Defining Borders for Pages">Defining Borders for Pages</link> +<paragraph xml-lang="en-US" id="hd_id3156136" role="heading" level="1" l10n="U"><variable id="border_page"><link href="text/swriter/guide/border_page.xhp" name="Defining Borders for Pages">Defining Borders for Pages</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3148473" role="warning" l10n="CHG" oldref="1">In Writer, you define borders for <emph>page styles</emph>, not individual pages. All changes made to borders apply to all pages that use the same page style. Note that page style changes cannot be undone by the Undo function in $[officename].</paragraph> -<paragraph xml-lang="en-US" id="hd_id3150503" role="heading" level="2" l10n="U" oldref="2">To Set a Predefined Border Style</paragraph> +<paragraph xml-lang="en-US" id="par_id3148473" role="warning" l10n="CHG">In Writer, you define borders for <emph>page styles</emph>, not individual pages. All changes made to borders apply to all pages that use the same page style. Note that page style changes cannot be undone by the Undo function in $[officename].</paragraph> +<paragraph xml-lang="en-US" id="hd_id3150503" role="heading" level="2" l10n="U">To Set a Predefined Border Style</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3148491" role="listitem" l10n="U" oldref="3">Choose <emph>Format - Page - Borders</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148491" role="listitem" l10n="U">Choose <emph>Format - Page - Borders</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150771" 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_id3150771" 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_id3154046" 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_id3154046" 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_id3152472" 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.</paragraph> +<paragraph xml-lang="en-US" id="par_id3152472" role="listitem" l10n="U">Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3156023" role="listitem" l10n="U" oldref="7">Click <emph>OK</emph> to apply the changes.</paragraph> +<paragraph xml-lang="en-US" id="par_id3156023" role="listitem" l10n="U">Click <emph>OK</emph> to apply the changes.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3145068" role="heading" level="2" l10n="U" oldref="8">To Set a Customized Border Style</paragraph> +<paragraph xml-lang="en-US" id="hd_id3145068" role="heading" level="2" l10n="U">To Set a Customized Border Style</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3148663" role="listitem" l10n="U" oldref="9">Choose <emph>Format - Page - Borders</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148663" role="listitem" l10n="U">Choose <emph>Format - Page - Borders</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150541" 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_id3150541" 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_id3159149" 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_id3159149" 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_id3156282" role="listitem" l10n="U" oldref="12">Repeat the last two steps for every border edge.</paragraph> +<paragraph xml-lang="en-US" id="par_id3156282" role="listitem" l10n="U">Repeat the last two steps for every border edge.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3151041" 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.</paragraph> +<paragraph xml-lang="en-US" id="par_id3151041" role="listitem" l10n="U">Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3145606" role="listitem" l10n="U" oldref="14">Click <emph>OK</emph> to apply the changes.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145606" 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/guide/form_letters_main.xhp b/main/helpcontent2/source/text/swriter/guide/form_letters_main.xhp index bb9e3b3931..7ea3c68fdb 100644 --- a/main/helpcontent2/source/text/swriter/guide/form_letters_main.xhp +++ b/main/helpcontent2/source/text/swriter/guide/form_letters_main.xhp @@ -36,11 +36,10 @@ <bookmark_value>letters; creating form letters</bookmark_value> <bookmark_value>wizards;form letters</bookmark_value> </bookmark><comment>mw added "serial letters"</comment> -<paragraph xml-lang="en-US" id="hd_id3159257" role="heading" level="1" l10n="U" -oldref="29"><variable id="form_letters"><variable id="form_letters_main"><link href="text/swriter/guide/form_letters_main.xhp" name="Creating a Form Letter">Creating a Form Letter</link> +<paragraph xml-lang="en-US" id="hd_id3159257" role="heading" level="1" l10n="U"><variable id="form_letters"><variable id="form_letters_main"><link href="text/swriter/guide/form_letters_main.xhp" name="Creating a Form Letter">Creating a Form Letter</link> </variable> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3150502" role="paragraph" l10n="CHG" oldref="1">To create a form letter, you need a text document that contains fields for address data, and an address database. Then you combine or merge the address data and the text document to either print the letters or send them by e-mail.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150502" role="paragraph" l10n="CHG">To create a form letter, you need a text document that contains fields for address data, and an address database. Then you combine or merge the address data and the text document to either print the letters or send them by e-mail.</paragraph> <paragraph xml-lang="en-US" id="par_id0805200801132382" role="note" l10n="NEW">If the document is in HTML format, any embedded or linked images will not be sent with the e-mail.</paragraph> <paragraph xml-lang="en-US" id="par_idN10653" role="paragraph" l10n="NEW">The <link href="text/swriter/01/mailmerge00.xhp">Mail Merge Wizard</link> helps you to create form letters.</paragraph> <paragraph xml-lang="en-US" id="par_idN10664" role="heading" level="1" l10n="NEW">To create a form letter</paragraph> diff --git a/main/helpcontent2/source/text/swriter/guide/header_footer.xhp b/main/helpcontent2/source/text/swriter/guide/header_footer.xhp index 1f0686365b..7a5b2addac 100644 --- a/main/helpcontent2/source/text/swriter/guide/header_footer.xhp +++ b/main/helpcontent2/source/text/swriter/guide/header_footer.xhp @@ -34,32 +34,30 @@ <bookmark_value>footers;about</bookmark_value> <bookmark_value>HTML documents; headers and footers</bookmark_value> </bookmark> -<paragraph xml-lang="en-US" id="hd_id3155863" role="heading" level="1" l10n="U" -oldref="38"><variable id="header_footer"><link href="text/swriter/guide/header_footer.xhp" name="About Headers and Footers">About Headers and Footers</link> +<paragraph xml-lang="en-US" id="hd_id3155863" role="heading" level="1" l10n="U"><variable id="header_footer"><link href="text/swriter/guide/header_footer.xhp" name="About Headers and Footers">About Headers and Footers</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3154255" role="paragraph" l10n="U" oldref="35">Headers and footers are areas in the top and the bottom page margins, where you can add text or graphics. Headers and footers are added to the current page style. Any page that uses the same style automatically receives the header or footer that you add. You can insert <link href="text/swriter/01/04090000.xhp" name="Fields">Fields</link>, such as page numbers and chapter headings, in headers and footers [...] -<paragraph xml-lang="en-US" id="par_id3150511" role="note" l10n="U" oldref="44">The page style for the current page is displayed in the <emph>Status Bar</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154255" role="paragraph" l10n="U">Headers and footers are areas in the top and the bottom page margins, where you can add text or graphics. Headers and footers are added to the current page style. Any page that uses the same style automatically receives the header or footer that you add. You can insert <link href="text/swriter/01/04090000.xhp" name="Fields">Fields</link>, such as page numbers and chapter headings, in headers and footers in a text do [...] +<paragraph xml-lang="en-US" id="par_id3150511" role="note" l10n="U">The page style for the current page is displayed in the <emph>Status Bar</emph>.</paragraph> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3155896" role="listitem" l10n="U" oldref="39">To add a header to a page, choose <emph>Insert - Header</emph>, and then select the page style for the current page from the submenu.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155896" role="listitem" l10n="U">To add a header to a page, choose <emph>Insert - Header</emph>, and then select the page style for the current page from the submenu.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147119" role="listitem" l10n="U" oldref="43">To add a footer to a page, choose <emph>Insert - Footer</emph>, and then select the page style for the current page from the submenu.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147119" role="listitem" l10n="U">To add a footer to a page, choose <emph>Insert - Footer</emph>, and then select the page style for the current page from the submenu.</paragraph> </listitem> </list> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3153726" role="listitem" l10n="U" oldref="40">You can also choose <item type="menuitem">Format - Page</item>, click the <item type="menuitem">Header</item> or <item type="menuitem">Footer</item> tab, and then select <item type="menuitem">Header on</item> or <item type="menuitem">Footer on</item>. Clear the <item type="menuitem">Same content left/right</item> check box if you want to define different headers and footers for even and odd pages.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153726" role="listitem" l10n="U">You can also choose <item type="menuitem">Format - Page</item>, click the <item type="menuitem">Header</item> or <item type="menuitem">Footer</item> tab, and then select <item type="menuitem">Header on</item> or <item type="menuitem">Footer on</item>. Clear the <item type="menuitem">Same content left/right</item> check box if you want to define different headers and footers for even and odd pages.</paragraph> </listitem> </list> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3146876" role="listitem" l10n="U" oldref="36">To use different headers or footers in your document, you must add them to different <link href="text/swriter/guide/header_pagestyles.xhp" name="Page Styles">Page Styles</link>, and then apply the styles to the pages where you want the headers or footer to appear.</paragraph> +<paragraph xml-lang="en-US" id="par_id3146876" role="listitem" l10n="U">To use different headers or footers in your document, you must add them to different <link href="text/swriter/guide/header_pagestyles.xhp" name="Page Styles">Page Styles</link>, and then apply the styles to the pages where you want the headers or footer to appear.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3150704" role="heading" level="2" l10n="U" -oldref="41">Headers and Footers in HTML Documents</paragraph> -<paragraph xml-lang="en-US" id="par_id3150717" role="paragraph" l10n="CHG" oldref="34">Some of the header and footer options are also available for HTML documents. Headers and footers are not supported by HTML and instead are exported with special tags, so that they can be viewed in a browser. Headers and footers are only exported in HTML documents if they are enabled in Web Layout mode. When you reopen the document in $[officename], the headers and footers are displayed correctly, inclu [...] +<paragraph xml-lang="en-US" id="hd_id3150704" role="heading" level="2" l10n="U">Headers and Footers in HTML Documents</paragraph> +<paragraph xml-lang="en-US" id="par_id3150717" role="paragraph" l10n="CHG">Some of the header and footer options are also available for HTML documents. Headers and footers are not supported by HTML and instead are exported with special tags, so that they can be viewed in a browser. Headers and footers are only exported in HTML documents if they are enabled in Web Layout mode. When you reopen the document in $[officename], the headers and footers are displayed correctly, including any fie [...] <section id="relatedtopics"> <embed href="text/swriter/guide/change_header.xhp#change_header"/> <embed href="text/swriter/guide/header_pagestyles.xhp#header_pagestyles"/> diff --git a/main/helpcontent2/source/text/swriter/guide/textdoc_inframe.xhp b/main/helpcontent2/source/text/swriter/guide/textdoc_inframe.xhp index fd88cd4340..d6b1f3390d 100644 --- a/main/helpcontent2/source/text/swriter/guide/textdoc_inframe.xhp +++ b/main/helpcontent2/source/text/swriter/guide/textdoc_inframe.xhp @@ -35,46 +35,44 @@ <bookmark_value>links;inserting text documents as</bookmark_value> <bookmark_value>inserting;text documents</bookmark_value> </bookmark><comment>mw deleted "text;"</comment> -<paragraph xml-lang="en-US" id="hd_id3155185" role="heading" level="1" l10n="U" -oldref="23"><variable id="textdoc_inframe"><link href="text/swriter/guide/textdoc_inframe.xhp" name="Inserting an Entire Text Document">Inserting an Entire Text Document</link> +<paragraph xml-lang="en-US" id="hd_id3155185" role="heading" level="1" l10n="U"><variable id="textdoc_inframe"><link href="text/swriter/guide/textdoc_inframe.xhp" name="Inserting an Entire Text Document">Inserting an Entire Text Document</link> </variable></paragraph> <paragraph xml-lang="en-US" id="hd_id1812799" role="heading" level="2" l10n="NEW">To Insert a Text File</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3155855" role="listitem" l10n="U" oldref="28">Place the cursor in the document where you want to insert the file.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155855" role="listitem" l10n="U">Place the cursor in the document where you want to insert the file.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147412" role="listitem" l10n="U" oldref="30">Choose <emph>Insert - File</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147412" role="listitem" l10n="U">Choose <emph>Insert - File</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149839" role="listitem" l10n="U" oldref="31">Locate the text document that you want to insert, and then click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149839" role="listitem" l10n="U">Locate the text document that you want to insert, and then click <emph>OK</emph>.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="par_id3148858" role="paragraph" l10n="U" oldref="32">The contents of the text document are embedded into the current document and are not updated if the source file is changed. If you want the contents to automatically update when you change the source document, insert the file as a link.</paragraph> -<paragraph xml-lang="en-US" id="hd_id3156105" role="heading" level="2" l10n="U" -oldref="33">To Insert an Entire Text Document as a Link</paragraph> +<paragraph xml-lang="en-US" id="par_id3148858" role="paragraph" l10n="U">The contents of the text document are embedded into the current document and are not updated if the source file is changed. If you want the contents to automatically update when you change the source document, insert the file as a link.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3156105" role="heading" level="2" l10n="U">To Insert an Entire Text Document as a Link</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3150096" role="listitem" l10n="U" oldref="34">Place the cursor in the document where you want to insert the file.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150096" role="listitem" l10n="U">Place the cursor in the document where you want to insert the file.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153404" role="listitem" l10n="U" oldref="35">Choose <emph>Insert - Section</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153404" role="listitem" l10n="U">Choose <emph>Insert - Section</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153127" role="listitem" l10n="U" oldref="36">Type a name in the <emph>New Section</emph> box, and then select the <emph>Link</emph> check box.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153127" role="listitem" l10n="U">Type a name in the <emph>New Section</emph> box, and then select the <emph>Link</emph> check box.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149642" role="listitem" l10n="U" oldref="37">In the <item type="menuitem">File Name</item> box, type the name of the file that you want to insert, or click the browse button (<item type="menuitem">...</item>) and locate the file.</paragraph> -<paragraph xml-lang="en-US" id="par_id3149968" role="listitem" l10n="U" oldref="38">If the target text document contains sections, you can select the section that you want to insert in the <item type="menuitem">Sections</item> box.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149642" role="listitem" l10n="U">In the <item type="menuitem">File Name</item> box, type the name of the file that you want to insert, or click the browse button (<item type="menuitem">...</item>) and locate the file.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149968" role="listitem" l10n="U">If the target text document contains sections, you can select the section that you want to insert in the <item type="menuitem">Sections</item> box.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149619" role="listitem" l10n="U" oldref="39">If you want, set the formatting options for the section.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149619" role="listitem" l10n="U">If you want, set the formatting options for the section.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149862" role="listitem" l10n="U" oldref="40">Click <emph>Insert</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149862" role="listitem" l10n="U">Click <emph>Insert</emph>.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="par_id3145099" role="paragraph" l10n="U" oldref="41">$[officename] automatically updates the contents of the inserted section whenever the source document is changed. To manually update the contents of the section, choose <emph>Tools - Update - Update All</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145099" role="paragraph" l10n="U">$[officename] automatically updates the contents of the inserted section whenever the source document is changed. To manually update the contents of the section, choose <emph>Tools - Update - Update All</emph>.</paragraph> <embed href="text/shared/00/00000004.xhp#related"/> <embed href="text/swriter/guide/text_frame.xhp#text_frame"/> </body>