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 3db955a2a0 Remove 'oldref' entries (work in progress) 3db955a2a0 is described below commit 3db955a2a0eef37949ba0352e70640f85aef37cd Author: mseidel <msei...@apache.org> AuthorDate: Sat Feb 22 16:39:18 2025 +0100 Remove 'oldref' entries (work in progress) --- .../source/text/sbasic/shared/03020102.xhp | 64 +++++++++++----------- .../source/text/sbasic/shared/03020409.xhp | 61 ++++++++++----------- .../source/text/sbasic/shared/03030206.xhp | 55 +++++++++---------- .../source/text/scalc/guide/cellreferences.xhp | 4 +- .../text/scalc/guide/format_value_userdef.xhp | 53 +++++++++--------- .../source/text/scalc/guide/formulas.xhp | 44 +++++++-------- .../source/text/shared/01/about_meta_tags.xhp | 42 +++++++------- .../source/text/shared/02/12070200.xhp | 28 +++++----- .../source/text/shared/autopi/01010300.xhp | 6 +- .../source/text/shared/guide/data_addressbook.xhp | 29 +++++----- .../text/swriter/guide/header_with_chapter.xhp | 36 ++++++------ .../source/text/swriter/guide/indices_form.xhp | 37 ++++++------- 12 files changed, 224 insertions(+), 235 deletions(-) diff --git a/main/helpcontent2/source/text/sbasic/shared/03020102.xhp b/main/helpcontent2/source/text/sbasic/shared/03020102.xhp index 5c6c944dcd..37f3d3999e 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03020102.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03020102.xhp @@ -33,41 +33,41 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3150400"> <bookmark_value>FreeFile function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3150400" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020102.xhp" name="FreeFile Function[Runtime]">FreeFile Function[Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3154366" xml-lang="en-US" l10n="U" oldref="2">Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file.</paragraph> +<paragraph role="heading" id="hd_id3150400" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03020102.xhp" name="FreeFile Function[Runtime]">FreeFile Function[Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3154366" xml-lang="en-US" l10n="U">Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file.</paragraph> </section> -<paragraph role="heading" id="hd_id3150769" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="code" id="par_id3150869" xml-lang="en-US" l10n="U" oldref="4">FreeFile</paragraph> -<paragraph role="heading" id="hd_id3151042" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph> -<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U" oldref="6">Integer</paragraph> -<paragraph role="heading" id="hd_id3148576" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3155854" xml-lang="en-US" l10n="U" oldref="8">This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it.</paragraph> +<paragraph role="heading" id="hd_id3150769" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3150869" xml-lang="en-US" l10n="U">FreeFile</paragraph> +<paragraph role="heading" id="hd_id3151042" xml-lang="en-US" level="2" l10n="U">Return value:</paragraph> +<paragraph role="paragraph" id="par_id3150440" xml-lang="en-US" l10n="U">Integer</paragraph> +<paragraph role="heading" id="hd_id3148576" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3155854" xml-lang="en-US" l10n="U">This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it.</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> <embed href="text/sbasic/shared/00000003.xhp#err67"/> -<paragraph role="heading" id="hd_id3159153" xml-lang="en-US" level="2" l10n="U" oldref="9">Example:</paragraph> -<paragraph role="code" id="par_id3146120" xml-lang="en-US" l10n="U" oldref="10">Sub ExampleWorkWithAFile</paragraph> -<paragraph role="code" id="par_id3154319" xml-lang="en-US" l10n="U" oldref="11">Dim iNumber As Integer</paragraph> -<paragraph role="code" id="par_id3151117" xml-lang="en-US" l10n="U" oldref="12">Dim sLine As String</paragraph> -<paragraph role="code" id="par_id3147426" xml-lang="en-US" l10n="U" oldref="13">Dim aFile As String</paragraph> -<paragraph role="code" id="par_id3149667" xml-lang="en-US" l10n="U" oldref="36">Dim sMsg as String</paragraph> -<paragraph role="code" id="par_id3145800" xml-lang="en-US" l10n="U" oldref="14">aFile = "c:\data.txt"</paragraph> -<paragraph role="code" id="par_id3147396" xml-lang="en-US" l10n="CHG" oldref="15">sMsg = ""</paragraph> -<paragraph role="code" id="par_id3154490" xml-lang="en-US" l10n="U" oldref="16">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3151074" xml-lang="en-US" l10n="U" oldref="17">Open aFile For Output As #iNumber</paragraph> -<paragraph role="code" id="par_id3155416" xml-lang="en-US" l10n="U" oldref="18">Print #iNumber, "First line of text"</paragraph> -<paragraph role="code" id="par_id3153416" xml-lang="en-US" l10n="U" oldref="19">Print #iNumber, "Another line of text"</paragraph> -<paragraph role="code" id="par_id3149401" xml-lang="en-US" l10n="U" oldref="20">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3150330" xml-lang="en-US" l10n="U" oldref="24">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3155067" xml-lang="en-US" l10n="U" oldref="25">Open aFile For Input As #iNumber</paragraph> -<paragraph role="code" id="par_id3155443" xml-lang="en-US" l10n="U" oldref="26">While not eof(#iNumber)</paragraph> -<paragraph role="code" id="par_id3153714" xml-lang="en-US" l10n="U" oldref="27">Line Input #iNumber, sLine</paragraph> -<paragraph role="code" id="par_id3148408" xml-lang="en-US" l10n="U" oldref="28">If sLine <>"" then</paragraph> -<paragraph role="code" id="par_id3156385" xml-lang="en-US" l10n="U" oldref="29">sMsg = sMsg & sLine & chr(13)</paragraph> -<paragraph role="code" id="par_id3145147" xml-lang="en-US" l10n="U" oldref="31">end if</paragraph> -<paragraph role="code" id="par_id3153966" xml-lang="en-US" l10n="U" oldref="32">wend</paragraph> -<paragraph role="code" id="par_id3155961" xml-lang="en-US" l10n="U" oldref="33">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3149567" xml-lang="en-US" l10n="U" oldref="37">Msgbox sMsg</paragraph> -<paragraph role="code" id="par_id3146917" xml-lang="en-US" l10n="U" oldref="34">End Sub</paragraph> +<paragraph role="heading" id="hd_id3159153" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3146120" xml-lang="en-US" l10n="U">Sub ExampleWorkWithAFile</paragraph> +<paragraph role="code" id="par_id3154319" xml-lang="en-US" l10n="U">Dim iNumber As Integer</paragraph> +<paragraph role="code" id="par_id3151117" xml-lang="en-US" l10n="U">Dim sLine As String</paragraph> +<paragraph role="code" id="par_id3147426" xml-lang="en-US" l10n="U">Dim aFile As String</paragraph> +<paragraph role="code" id="par_id3149667" xml-lang="en-US" l10n="U">Dim sMsg as String</paragraph> +<paragraph role="code" id="par_id3145800" xml-lang="en-US" l10n="U">aFile = "c:\data.txt"</paragraph> +<paragraph role="code" id="par_id3147396" xml-lang="en-US" l10n="CHG">sMsg = ""</paragraph> +<paragraph role="code" id="par_id3154490" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3151074" xml-lang="en-US" l10n="U">Open aFile For Output As #iNumber</paragraph> +<paragraph role="code" id="par_id3155416" xml-lang="en-US" l10n="U">Print #iNumber, "First line of text"</paragraph> +<paragraph role="code" id="par_id3153416" xml-lang="en-US" l10n="U">Print #iNumber, "Another line of text"</paragraph> +<paragraph role="code" id="par_id3149401" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3150330" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3155067" xml-lang="en-US" l10n="U">Open aFile For Input As #iNumber</paragraph> +<paragraph role="code" id="par_id3155443" xml-lang="en-US" l10n="U">While not eof(#iNumber)</paragraph> +<paragraph role="code" id="par_id3153714" xml-lang="en-US" l10n="U">Line Input #iNumber, sLine</paragraph> +<paragraph role="code" id="par_id3148408" xml-lang="en-US" l10n="U">If sLine <>"" then</paragraph> +<paragraph role="code" id="par_id3156385" xml-lang="en-US" l10n="U">sMsg = sMsg & sLine & chr(13)</paragraph> +<paragraph role="code" id="par_id3145147" xml-lang="en-US" l10n="U">end if</paragraph> +<paragraph role="code" id="par_id3153966" xml-lang="en-US" l10n="U">wend</paragraph> +<paragraph role="code" id="par_id3155961" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3149567" xml-lang="en-US" l10n="U">Msgbox sMsg</paragraph> +<paragraph role="code" id="par_id3146917" xml-lang="en-US" l10n="U">End Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03020409.xhp b/main/helpcontent2/source/text/sbasic/shared/03020409.xhp index 0e8e26b882..0b4275829f 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03020409.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03020409.xhp @@ -33,40 +33,39 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3150984"> <bookmark_value>GetAttr function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3150984" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020409.xhp" name="GetAttr Function [Runtime]">GetAttr Function [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3154347" xml-lang="en-US" l10n="U" oldref="2">Returns a bit pattern that identifies the file type or the name of a volume or a directory.</paragraph> +<paragraph role="heading" id="hd_id3150984" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03020409.xhp" name="GetAttr Function [Runtime]">GetAttr Function [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3154347" xml-lang="en-US" l10n="U">Returns a bit pattern that identifies the file type or the name of a volume or a directory.</paragraph> </section> -<paragraph role="heading" id="hd_id3149457" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="code" id="par_id3150359" xml-lang="en-US" l10n="U" oldref="4">GetAttr (Text As String)</paragraph> -<paragraph role="heading" id="hd_id3151211" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph> -<paragraph role="paragraph" id="par_id3154909" xml-lang="en-US" l10n="U" oldref="6">Integer</paragraph> -<paragraph role="heading" id="hd_id3145172" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3151042" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href="text/sbasic/shared/00000002.xhp" name="URL notation">URL notation</link>.</paragraph> -<paragraph role="paragraph" id="par_id3161831" xml-lang="en-US" l10n="U" oldref="9">This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:</paragraph> +<paragraph role="heading" id="hd_id3149457" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3150359" xml-lang="en-US" l10n="U">GetAttr (Text As String)</paragraph> +<paragraph role="heading" id="hd_id3151211" xml-lang="en-US" level="2" l10n="U">Return value:</paragraph> +<paragraph role="paragraph" id="par_id3154909" xml-lang="en-US" l10n="U">Integer</paragraph> +<paragraph role="heading" id="hd_id3145172" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3151042" xml-lang="en-US" l10n="U"><emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href="text/sbasic/shared/00000002.xhp" name="URL notation">URL notation</link>.</paragraph> +<paragraph role="paragraph" id="par_id3161831" xml-lang="en-US" l10n="U">This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> <embed href="text/sbasic/shared/00000003.xhp#err53"/> -<paragraph role="heading" id="hd_id3145364" xml-lang="en-US" level="2" l10n="U" oldref="10">Value</paragraph> -<paragraph role="paragraph" id="par_id3147349" xml-lang="en-US" l10n="U" oldref="11">0 : Normal files.</paragraph> -<paragraph role="paragraph" id="par_id3147434" xml-lang="en-US" l10n="U" oldref="12">1 : Read-only files.</paragraph> -<paragraph role="paragraph" id="par_id3159154" xml-lang="en-US" l10n="U" oldref="15">8 : Returns the name of the volume</paragraph> -<paragraph role="paragraph" id="par_id3145271" xml-lang="en-US" l10n="U" oldref="16">16 : Returns the name of the directory only.</paragraph> -<paragraph role="paragraph" id="par_id3153953" xml-lang="en-US" l10n="U" oldref="17">32 : File was changed since last backup (Archive bit).</paragraph> -<paragraph role="paragraph" id="par_id3156444" xml-lang="en-US" l10n="U" oldref="18">If you want to know if a bit of the attribute byte is set, use the following query method:</paragraph> -<paragraph role="heading" id="hd_id3153094" xml-lang="en-US" level="2" l10n="U" oldref="19">Example:</paragraph> -<paragraph role="code" id="par_id3154491" xml-lang="en-US" l10n="U" oldref="20">Sub ExampleSetGetAttr</paragraph> -<paragraph role="code" id="par_id3155415" xml-lang="en-US" l10n="U" oldref="21">On Error Goto ErrorHandler REM Define target for error-handler</paragraph> -<paragraph role="code" id="par_id3154944" xml-lang="en-US" l10n="U" oldref="22">If Dir("C:\test",16)="" Then MkDir "C:\test"</paragraph> -<paragraph role="code" id="par_id3151075" xml-lang="en-US" l10n="U" oldref="23">If Dir("C:\test\autoexec.sav")="" THEN Filecopy "c:\autoexec.bat", "c:\test\autoexec.sav"</paragraph> -<paragraph role="code" id="par_id3149959" xml-lang="en-US" l10n="U" oldref="24">SetAttr "c:\test\autoexec.sav" ,0</paragraph> -<paragraph role="code" id="par_id3153418" xml-lang="en-US" l10n="U" oldref="25">Filecopy "c:\autoexec.bat", "c:\test\autoexec.sav"</paragraph> -<paragraph role="code" id="par_id3149122" xml-lang="en-US" l10n="U" oldref="26">SetAttr "c:\test\autoexec.sav" ,1</paragraph> -<paragraph role="code" id="par_id3154480" xml-lang="en-US" l10n="U" oldref="27">print GetAttr( "c:\test\autoexec.sav" )</paragraph> -<paragraph role="code" id="par_id3150753" xml-lang="en-US" l10n="U" oldref="28">end</paragraph> -<paragraph role="code" id="par_id3150323" xml-lang="en-US" l10n="U" oldref="29">ErrorHandler:</paragraph> -<paragraph role="code" id="par_id3154754" xml-lang="en-US" l10n="U" oldref="30">Print Error</paragraph> -<paragraph role="code" id="par_id3155764" xml-lang="en-US" l10n="U" oldref="31">end</paragraph> -<paragraph role="code" id="par_id3156382" xml-lang="en-US" l10n="U" oldref="32">end sub</paragraph> +<paragraph role="heading" id="hd_id3145364" xml-lang="en-US" level="2" l10n="U">Value</paragraph> +<paragraph role="paragraph" id="par_id3147349" xml-lang="en-US" l10n="U">0 : Normal files.</paragraph> +<paragraph role="paragraph" id="par_id3147434" xml-lang="en-US" l10n="U">1 : Read-only files.</paragraph> +<paragraph role="paragraph" id="par_id3159154" xml-lang="en-US" l10n="U">8 : Returns the name of the volume</paragraph> +<paragraph role="paragraph" id="par_id3145271" xml-lang="en-US" l10n="U">16 : Returns the name of the directory only.</paragraph> +<paragraph role="paragraph" id="par_id3153953" xml-lang="en-US" l10n="U">32 : File was changed since last backup (Archive bit).</paragraph> +<paragraph role="paragraph" id="par_id3156444" xml-lang="en-US" l10n="U">If you want to know if a bit of the attribute byte is set, use the following query method:</paragraph> +<paragraph role="heading" id="hd_id3153094" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3154491" xml-lang="en-US" l10n="U">Sub ExampleSetGetAttr</paragraph> +<paragraph role="code" id="par_id3155415" xml-lang="en-US" l10n="U">On Error Goto ErrorHandler REM Define target for error-handler</paragraph> +<paragraph role="code" id="par_id3154944" xml-lang="en-US" l10n="U">If Dir("C:\test",16)="" Then MkDir "C:\test"</paragraph> +<paragraph role="code" id="par_id3151075" xml-lang="en-US" l10n="U">If Dir("C:\test\autoexec.sav")="" THEN Filecopy "c:\autoexec.bat", "c:\test\autoexec.sav"</paragraph> +<paragraph role="code" id="par_id3149959" xml-lang="en-US" l10n="U">SetAttr "c:\test\autoexec.sav" ,0</paragraph> +<paragraph role="code" id="par_id3153418" xml-lang="en-US" l10n="U">Filecopy "c:\autoexec.bat", "c:\test\autoexec.sav"</paragraph> +<paragraph role="code" id="par_id3149122" xml-lang="en-US" l10n="U">SetAttr "c:\test\autoexec.sav" ,1</paragraph> +<paragraph role="code" id="par_id3154480" xml-lang="en-US" l10n="U">print GetAttr( "c:\test\autoexec.sav" )</paragraph> +<paragraph role="code" id="par_id3150753" xml-lang="en-US" l10n="U">end</paragraph> +<paragraph role="code" id="par_id3150323" xml-lang="en-US" l10n="U">ErrorHandler:</paragraph> +<paragraph role="code" id="par_id3154754" xml-lang="en-US" l10n="U">Print Error</paragraph> +<paragraph role="code" id="par_id3155764" xml-lang="en-US" l10n="U">end</paragraph> +<paragraph role="code" id="par_id3156382" xml-lang="en-US" l10n="U">end sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03030206.xhp b/main/helpcontent2/source/text/sbasic/shared/03030206.xhp index 472e059a1f..5e8a7dc19d 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03030206.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03030206.xhp @@ -33,37 +33,36 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3149670"> <bookmark_value>TimeValue function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3149670" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03030206.xhp" name="TimeValue Function [Runtime]">TimeValue Function [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3153361" xml-lang="en-US" l10n="U" oldref="2">Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times.</paragraph> +<paragraph role="heading" id="hd_id3149670" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03030206.xhp" name="TimeValue Function [Runtime]">TimeValue Function [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3153361" xml-lang="en-US" l10n="U">Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times.</paragraph> </section> -<paragraph role="heading" id="hd_id3154138" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="paragraph" id="par_id3156282" xml-lang="en-US" l10n="U" oldref="4">TimeValue (Text As String)</paragraph> -<paragraph role="heading" id="hd_id3153969" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph> -<paragraph role="paragraph" id="par_id3156424" xml-lang="en-US" l10n="U" oldref="6">Date</paragraph> -<paragraph role="heading" id="hd_id3145172" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3145786" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format "HH:MM:SS".</paragraph> -<paragraph role="paragraph" id="par_id3152578" xml-lang="en-US" l10n="U" oldref="9">Use the TimeValue function to convert any time into a single value, so that you can calculate time differences.</paragraph> -<paragraph role="paragraph" id="par_id3163710" xml-lang="en-US" l10n="U" oldref="10">This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999.</paragraph> -<paragraph role="paragraph" id="par_id3151117" xml-lang="en-US" l10n="U" oldref="11">As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them.</paragraph> -<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US" l10n="U" oldref="12">In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time.</paragraph> +<paragraph role="heading" id="hd_id3154138" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="paragraph" id="par_id3156282" xml-lang="en-US" l10n="U">TimeValue (Text As String)</paragraph> +<paragraph role="heading" id="hd_id3153969" xml-lang="en-US" level="2" l10n="U">Return value:</paragraph> +<paragraph role="paragraph" id="par_id3156424" xml-lang="en-US" l10n="U">Date</paragraph> +<paragraph role="heading" id="hd_id3145172" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3145786" xml-lang="en-US" l10n="U"><emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format "HH:MM:SS".</paragraph> +<paragraph role="paragraph" id="par_id3152578" xml-lang="en-US" l10n="U">Use the TimeValue function to convert any time into a single value, so that you can calculate time differences.</paragraph> +<paragraph role="paragraph" id="par_id3163710" xml-lang="en-US" l10n="U">This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999.</paragraph> +<paragraph role="paragraph" id="par_id3151117" xml-lang="en-US" l10n="U">As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them.</paragraph> +<paragraph role="paragraph" id="par_id3147426" xml-lang="en-US" l10n="U">In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time.</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> <embed href="text/sbasic/shared/00000003.xhp#err13"/> -<paragraph role="heading" id="hd_id3145271" xml-lang="en-US" level="2" l10n="U" oldref="13">Example:</paragraph> -<paragraph role="paragraph" id="par_id3152597" xml-lang="en-US" l10n="U" oldref="30">Sub ExampleTimerValue</paragraph> -<paragraph role="paragraph" id="par_id3147348" xml-lang="en-US" l10n="U" oldref="31">Dim daDT as Date</paragraph> -<paragraph role="paragraph" id="par_id3148576" xml-lang="en-US" l10n="U" oldref="32">Dim a1, b1, c1, a2, b2, c2 as String</paragraph> -<paragraph role="paragraph" id="par_id3149378" xml-lang="en-US" l10n="U" oldref="33">a1 = "start time"</paragraph> -<paragraph role="paragraph" id="par_id3145800" xml-lang="en-US" l10n="U" oldref="34">b1 = "end time"</paragraph> -<paragraph role="paragraph" id="par_id3151074" xml-lang="en-US" l10n="U" oldref="35">c1 = "total time"</paragraph> -<paragraph role="paragraph" id="par_id3154492" xml-lang="en-US" l10n="U" oldref="37">a2 = "8:34"</paragraph> -<paragraph role="paragraph" id="par_id3155602" xml-lang="en-US" l10n="U" oldref="38">b2 = "18:12"</paragraph> -<paragraph role="paragraph" id="par_id3150715" xml-lang="en-US" l10n="U" oldref="39">daDT = TimeValue(b2) - TimeValue(a2)</paragraph> -<paragraph role="paragraph" id="par_id3153838" xml-lang="en-US" l10n="U" oldref="40">c2 = a1 & ": " & a2 & chr(13)</paragraph> -<paragraph role="paragraph" id="par_id3150749" xml-lang="en-US" l10n="U" oldref="41">c2 = c2 & b1 & ": " & b2 & chr(13)</paragraph> -<paragraph role="paragraph" id="par_id3154755" xml-lang="en-US" l10n="U" oldref="42">c2 = c2 & c1 & ": " & trim(Str(Hour(daDT))) & ":" & trim(Str(Minute(daDT))) & ":" & trim(Str(Second(daDT)))</paragraph> -<paragraph role="paragraph" id="par_id3153714" xml-lang="en-US" l10n="U" oldref="43">Msgbox c2</paragraph> -<paragraph role="paragraph" id="par_id3155767" xml-lang="en-US" l10n="U" oldref="44">end sub</paragraph> +<paragraph role="heading" id="hd_id3145271" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="paragraph" id="par_id3152597" xml-lang="en-US" l10n="U">Sub ExampleTimerValue</paragraph> +<paragraph role="paragraph" id="par_id3147348" xml-lang="en-US" l10n="U">Dim daDT as Date</paragraph> +<paragraph role="paragraph" id="par_id3148576" xml-lang="en-US" l10n="U">Dim a1, b1, c1, a2, b2, c2 as String</paragraph> +<paragraph role="paragraph" id="par_id3149378" xml-lang="en-US" l10n="U">a1 = "start time"</paragraph> +<paragraph role="paragraph" id="par_id3145800" xml-lang="en-US" l10n="U">b1 = "end time"</paragraph> +<paragraph role="paragraph" id="par_id3151074" xml-lang="en-US" l10n="U">c1 = "total time"</paragraph> +<paragraph role="paragraph" id="par_id3154492" xml-lang="en-US" l10n="U">a2 = "8:34"</paragraph> +<paragraph role="paragraph" id="par_id3155602" xml-lang="en-US" l10n="U">b2 = "18:12"</paragraph> +<paragraph role="paragraph" id="par_id3150715" xml-lang="en-US" l10n="U">daDT = TimeValue(b2) - TimeValue(a2)</paragraph> +<paragraph role="paragraph" id="par_id3153838" xml-lang="en-US" l10n="U">c2 = a1 & ": " & a2 & chr(13)</paragraph> +<paragraph role="paragraph" id="par_id3150749" xml-lang="en-US" l10n="U">c2 = c2 & b1 & ": " & b2 & chr(13)</paragraph> +<paragraph role="paragraph" id="par_id3154755" xml-lang="en-US" l10n="U">c2 = c2 & c1 & ": " & trim(Str(Hour(daDT))) & ":" & trim(Str(Minute(daDT))) & ":" & trim(Str(Second(daDT)))</paragraph> +<paragraph role="paragraph" id="par_id3153714" xml-lang="en-US" l10n="U">Msgbox c2</paragraph> +<paragraph role="paragraph" id="par_id3155767" xml-lang="en-US" l10n="U">end sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/guide/cellreferences.xhp b/main/helpcontent2/source/text/scalc/guide/cellreferences.xhp index 10b73090b7..6a493ec9a6 100644 --- a/main/helpcontent2/source/text/scalc/guide/cellreferences.xhp +++ b/main/helpcontent2/source/text/scalc/guide/cellreferences.xhp @@ -35,9 +35,7 @@ <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value> </bookmark><comment>mw made "sheet references;" a one level entry</comment><comment>MW changed "references;" and added "documents;"</comment> -<paragraph xml-lang="en-US" id="hd_id3147436" role="heading" level="1" l10n="CHG" -oldref="9"><variable id="cellreferences"><link href="text/scalc/guide/cellreferences.xhp" name="Referencing Other Sheets">Referencing Other Sheets</link> -</variable></paragraph> +<paragraph xml-lang="en-US" id="hd_id3147436" role="heading" level="1" l10n="CHG"><variable id="cellreferences"><link href="text/scalc/guide/cellreferences.xhp" name="Referencing Other Sheets">Referencing Other Sheets</link></variable></paragraph> <paragraph xml-lang="en-US" id="par_id9663075" role="paragraph" l10n="NEW">In a sheet cell you can show a reference to a cell in another sheet.</paragraph> <paragraph xml-lang="en-US" id="par_id1879329" role="paragraph" l10n="NEW">In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file.</paragraph> <paragraph xml-lang="en-US" id="hd_id7122409" role="heading" level="2" l10n="NEW">To Reference a Cell in the Same Document</paragraph> diff --git a/main/helpcontent2/source/text/scalc/guide/format_value_userdef.xhp b/main/helpcontent2/source/text/scalc/guide/format_value_userdef.xhp index 836ff33f35..a15475bb16 100644 --- a/main/helpcontent2/source/text/scalc/guide/format_value_userdef.xhp +++ b/main/helpcontent2/source/text/scalc/guide/format_value_userdef.xhp @@ -35,85 +35,84 @@ <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value> </bookmark><comment>mw changed "numbers;"</comment> -<paragraph xml-lang="en-US" id="hd_id3143268" role="heading" level="1" l10n="U" -oldref="26"><variable id="format_value_userdef"><link href="text/scalc/guide/format_value_userdef.xhp" name="User-defined Number Formats">User-defined Number Formats</link> +<paragraph xml-lang="en-US" id="hd_id3143268" role="heading" level="1" l10n="U"><variable id="format_value_userdef"><link href="text/scalc/guide/format_value_userdef.xhp" name="User-defined Number Formats">User-defined Number Formats</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3150400" role="paragraph" l10n="U" oldref="1">You can define your own number formats to display numbers in <item type="productname">%PRODUCTNAME</item> Calc.</paragraph> -<paragraph xml-lang="en-US" id="par_id3150767" role="paragraph" l10n="U" oldref="2">As an example, to display the number 10,200,000 as 10.2 Million:</paragraph> +<paragraph xml-lang="en-US" id="par_id3150400" role="paragraph" l10n="U">You can define your own number formats to display numbers in <item type="productname">%PRODUCTNAME</item> Calc.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150767" role="paragraph" l10n="U">As an example, to display the number 10,200,000 as 10.2 Million:</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3150868" role="listitem" l10n="U" oldref="3">Select the cells to which you want to apply a new, user-defined format.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150868" role="listitem" l10n="U">Select the cells to which you want to apply a new, user-defined format.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149664" role="listitem" l10n="U" oldref="4">Choose <emph>Format - Cells - Numbers</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149664" role="listitem" l10n="U">Choose <emph>Format - Cells - Numbers</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149260" role="listitem" l10n="U" oldref="5">In the <emph>Categories</emph> list box select "User-defined".</paragraph> +<paragraph xml-lang="en-US" id="par_id3149260" role="listitem" l10n="U">In the <emph>Categories</emph> list box select "User-defined".</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3148646" role="listitem" l10n="U" oldref="6">In the <emph>Format code</emph> text box enter the following code:</paragraph> -<paragraph xml-lang="en-US" id="par_id3152596" role="code" l10n="U" oldref="7">0.0,, "Million"</paragraph> +<paragraph xml-lang="en-US" id="par_id3148646" role="listitem" l10n="U">In the <emph>Format code</emph> text box enter the following code:</paragraph> +<paragraph xml-lang="en-US" id="par_id3152596" role="code" l10n="U">0.0,, "Million"</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3144764" role="listitem" l10n="U" oldref="8">Click OK.</paragraph> +<paragraph xml-lang="en-US" id="par_id3144764" role="listitem" l10n="U">Click OK.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="par_id3155417" role="paragraph" l10n="U" oldref="9">The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155417" role="paragraph" l10n="U">The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0.</paragraph> <table id="tbl_id3153157"> <tablerow> <tablecell> -<paragraph xml-lang="en-US" id="par_id3146971" role="tablehead" l10n="U" oldref="10">Number</paragraph> +<paragraph xml-lang="en-US" id="par_id3146971" role="tablehead" l10n="U">Number</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3154757" role="tablehead" l10n="U" oldref="11">.#,, "Million"</paragraph> +<paragraph xml-lang="en-US" id="par_id3154757" role="tablehead" l10n="U">.#,, "Million"</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3147338" role="tablehead" l10n="U" oldref="12">0.0,, "Million"</paragraph> +<paragraph xml-lang="en-US" id="par_id3147338" role="tablehead" l10n="U">0.0,, "Million"</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3146920" role="tablehead" l10n="U" oldref="13">#,, "Million"</paragraph> +<paragraph xml-lang="en-US" id="par_id3146920" role="tablehead" l10n="U">#,, "Million"</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> -<paragraph xml-lang="en-US" id="par_id3147344" role="paragraph" l10n="U" oldref="14">10200000</paragraph> +<paragraph xml-lang="en-US" id="par_id3147344" role="paragraph" l10n="U">10200000</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3147003" role="paragraph" l10n="U" oldref="15">10.2 Million</paragraph> +<paragraph xml-lang="en-US" id="par_id3147003" role="paragraph" l10n="U">10.2 Million</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3166426" role="paragraph" l10n="U" oldref="16">10.2 Million</paragraph> +<paragraph xml-lang="en-US" id="par_id3166426" role="paragraph" l10n="U">10.2 Million</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3155113" role="paragraph" l10n="U" oldref="17">10 Million</paragraph> +<paragraph xml-lang="en-US" id="par_id3155113" role="paragraph" l10n="U">10 Million</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> -<paragraph xml-lang="en-US" id="par_id3150369" role="paragraph" l10n="U" oldref="18">500000</paragraph> +<paragraph xml-lang="en-US" id="par_id3150369" role="paragraph" l10n="U">500000</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3145585" role="paragraph" l10n="U" oldref="19">.5 Million</paragraph> +<paragraph xml-lang="en-US" id="par_id3145585" role="paragraph" l10n="U">.5 Million</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3154486" role="paragraph" l10n="U" oldref="20">0.5 Million</paragraph> +<paragraph xml-lang="en-US" id="par_id3154486" role="paragraph" l10n="U">0.5 Million</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3146114" role="paragraph" l10n="U" oldref="21">1 Million</paragraph> +<paragraph xml-lang="en-US" id="par_id3146114" role="paragraph" l10n="U">1 Million</paragraph> </tablecell> </tablerow> <tablerow> <tablecell> -<paragraph xml-lang="en-US" id="par_id3155810" role="paragraph" l10n="U" oldref="22">100000000</paragraph> +<paragraph xml-lang="en-US" id="par_id3155810" role="paragraph" l10n="U">100000000</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3153818" role="paragraph" l10n="U" oldref="23">100. Million</paragraph> +<paragraph xml-lang="en-US" id="par_id3153818" role="paragraph" l10n="U">100. Million</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3151241" role="paragraph" l10n="U" oldref="24">100.0 Million</paragraph> +<paragraph xml-lang="en-US" id="par_id3151241" role="paragraph" l10n="U">100.0 Million</paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3144771" role="paragraph" l10n="U" oldref="25">100 Million</paragraph> +<paragraph xml-lang="en-US" id="par_id3144771" role="paragraph" l10n="U">100 Million</paragraph> </tablecell> </tablerow> </table> diff --git a/main/helpcontent2/source/text/scalc/guide/formulas.xhp b/main/helpcontent2/source/text/scalc/guide/formulas.xhp index 67b30cea1d..982cab5256 100644 --- a/main/helpcontent2/source/text/scalc/guide/formulas.xhp +++ b/main/helpcontent2/source/text/scalc/guide/formulas.xhp @@ -34,76 +34,76 @@ <bookmark_value>calculating; with formulas</bookmark_value> <bookmark_value>examples;formula calculation</bookmark_value> </bookmark><comment>mw changed "formulas;..." entry and addes "examples;..." entry</comment> -<paragraph role="heading" id="hd_id3155411" xml-lang="en-US" level="1" l10n="U" oldref="20"><variable id="formulas"><link href="text/scalc/guide/formulas.xhp" name="Calculating With Formulas">Calculating With Formulas</link> +<paragraph role="heading" id="hd_id3155411" xml-lang="en-US" level="1" l10n="U"><variable id="formulas"><link href="text/scalc/guide/formulas.xhp" name="Calculating With Formulas">Calculating With Formulas</link> </variable></paragraph> -<paragraph role="paragraph" id="par_id3156281" xml-lang="en-US" l10n="CHG" oldref="21">All formulas begin with an equals sign. The formulas can contain numbers, text, arithmetic operators, logic operators, or functions.</paragraph> -<paragraph role="tip" id="par_id3145272" xml-lang="en-US" l10n="CHG" oldref="39">Remember that the basic arithmetic operators (+, -, *, /) can be used in formulas using the "Multiplication and Division before Addition and Subtraction" rule. Instead of writing =SUM(A1:B1) you can write =A1+B1.</paragraph> -<paragraph role="tip" id="par_id3146119" xml-lang="en-US" l10n="U" oldref="42">Parentheses can also be used. The result of the formula =(1+2)*3 produces a different result than =1+2*3.</paragraph> -<paragraph role="paragraph" id="par_id3156285" xml-lang="en-US" l10n="U" oldref="23">Here are a few examples of $[officename] Calc formulas:</paragraph> +<paragraph role="paragraph" id="par_id3156281" xml-lang="en-US" l10n="CHG">All formulas begin with an equals sign. The formulas can contain numbers, text, arithmetic operators, logic operators, or functions.</paragraph> +<paragraph role="tip" id="par_id3145272" xml-lang="en-US" l10n="CHG">Remember that the basic arithmetic operators (+, -, *, /) can be used in formulas using the "Multiplication and Division before Addition and Subtraction" rule. Instead of writing =SUM(A1:B1) you can write =A1+B1.</paragraph> +<paragraph role="tip" id="par_id3146119" xml-lang="en-US" l10n="U">Parentheses can also be used. The result of the formula =(1+2)*3 produces a different result than =1+2*3.</paragraph> +<paragraph role="paragraph" id="par_id3156285" xml-lang="en-US" l10n="U">Here are a few examples of $[officename] Calc formulas:</paragraph> <table id="tbl_id3153878"> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3154015" xml-lang="en-US" l10n="U" oldref="24">=A1+10</paragraph> +<paragraph role="paragraph" id="par_id3154015" xml-lang="en-US" l10n="U">=A1+10</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3146972" xml-lang="en-US" l10n="U" oldref="25">Displays the contents of cell A1 plus 10.</paragraph> +<paragraph role="paragraph" id="par_id3146972" xml-lang="en-US" l10n="U">Displays the contents of cell A1 plus 10.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3145643" xml-lang="en-US" l10n="U" oldref="45">=A1*16%</paragraph> +<paragraph role="paragraph" id="par_id3145643" xml-lang="en-US" l10n="U">=A1*16%</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3154255" xml-lang="en-US" l10n="U" oldref="46">Displays 16% of the contents of A1.</paragraph> +<paragraph role="paragraph" id="par_id3154255" xml-lang="en-US" l10n="U">Displays 16% of the contents of A1.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3146917" xml-lang="en-US" l10n="U" oldref="47">=A1 * A2</paragraph> +<paragraph role="paragraph" id="par_id3146917" xml-lang="en-US" l10n="U">=A1 * A2</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3146315" xml-lang="en-US" l10n="U" oldref="48">Displays the result of the multiplication of A1 and A2.</paragraph> +<paragraph role="paragraph" id="par_id3146315" xml-lang="en-US" l10n="U">Displays the result of the multiplication of A1 and A2.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3154022" xml-lang="en-US" l10n="U" oldref="26">=ROUND(A1;1)</paragraph> +<paragraph role="paragraph" id="par_id3154022" xml-lang="en-US" l10n="U">=ROUND(A1;1)</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3150363" xml-lang="en-US" l10n="CHG" oldref="27">Displays the contents of cell A1 rounded to one decimal place.</paragraph> +<paragraph role="paragraph" id="par_id3150363" xml-lang="en-US" l10n="CHG">Displays the contents of cell A1 rounded to one decimal place.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3150209" xml-lang="en-US" l10n="U" oldref="28">=EFFECTIVE(5%;12)</paragraph> +<paragraph role="paragraph" id="par_id3150209" xml-lang="en-US" l10n="U">=EFFECTIVE(5%;12)</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3150883" xml-lang="en-US" l10n="U" oldref="29">Calculates the effective interest for 5% annual nominal interest with 12 payments a year.</paragraph> +<paragraph role="paragraph" id="par_id3150883" xml-lang="en-US" l10n="U">Calculates the effective interest for 5% annual nominal interest with 12 payments a year.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3146114" xml-lang="en-US" l10n="U" oldref="33">=B8-SUM(B10:B14)</paragraph> +<paragraph role="paragraph" id="par_id3146114" xml-lang="en-US" l10n="U">=B8-SUM(B10:B14)</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3154486" xml-lang="en-US" l10n="U" oldref="34">Calculates B8 minus the sum of the cells B10 to B14.</paragraph> +<paragraph role="paragraph" id="par_id3154486" xml-lang="en-US" l10n="U">Calculates B8 minus the sum of the cells B10 to B14.</paragraph> </tablecell> </tablerow> <tablerow> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3152890" xml-lang="en-US" l10n="U" oldref="35">=SUM(B8;SUM(B10:B14))</paragraph> +<paragraph role="paragraph" id="par_id3152890" xml-lang="en-US" l10n="U">=SUM(B8;SUM(B10:B14))</paragraph> </tablecell> <tablecell colspan="" rowspan=""> -<paragraph role="paragraph" id="par_id3159171" xml-lang="en-US" l10n="U" oldref="36">Calculates the sum of cells B10 to B14 and adds the value to B8.</paragraph> +<paragraph role="paragraph" id="par_id3159171" xml-lang="en-US" l10n="U">Calculates the sum of cells B10 to B14 and adds the value to B8.</paragraph> </tablecell> </tablerow> <comment>removed row with old row limit of 65536</comment> </table> -<paragraph role="paragraph" id="par_id3150109" xml-lang="en-US" l10n="U" oldref="30">It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions.</paragraph> +<paragraph role="paragraph" id="par_id3150109" xml-lang="en-US" l10n="U">It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions.</paragraph> <section id="relatedtopics"> <embed href="text/scalc/guide/formula_enter.xhp#formula_enter"/> -<paragraph role="paragraph" id="par_id3150213" xml-lang="en-US" l10n="U" oldref="44"><link href="text/scalc/01/04060100.xhp" name="Functions list">Functions list</link></paragraph> -<paragraph role="paragraph" id="par_id3152869" xml-lang="en-US" l10n="U" oldref="43"><link href="text/scalc/01/04060000.xhp" name="AutoPilot: Functions">Function Wizard</link></paragraph> +<paragraph role="paragraph" id="par_id3150213" xml-lang="en-US" l10n="U"><link href="text/scalc/01/04060100.xhp" name="Functions list">Functions list</link></paragraph> +<paragraph role="paragraph" id="par_id3152869" xml-lang="en-US" l10n="U"><link href="text/scalc/01/04060000.xhp" name="AutoPilot: Functions">Function Wizard</link></paragraph> </section> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/01/about_meta_tags.xhp b/main/helpcontent2/source/text/shared/01/about_meta_tags.xhp index c21598aa75..eefb06cd3f 100644 --- a/main/helpcontent2/source/text/shared/01/about_meta_tags.xhp +++ b/main/helpcontent2/source/text/shared/01/about_meta_tags.xhp @@ -37,59 +37,59 @@ <bookmark_value>META tags</bookmark_value> <bookmark_value>tags; META tags</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3154380" xml-lang="en-US" level="1" l10n="U" oldref="20">HTML import and export</paragraph> -<paragraph role="paragraph" id="par_id3145119" xml-lang="en-US" l10n="U" oldref="1">When you export a file to an HTML document, the description and the user-defined file properties are included as META <link href="text/shared/00/00000002.xhp#tags" name="tags">tags</link> between the HEAD tags of the exported document. META tags are not displayed in a Web browser, and are used to include information, such as keywords for search engines on your Web page. To set the properties of the curren [...] -<paragraph role="paragraph" id="par_id3148552" xml-lang="en-US" l10n="U" oldref="21">The following file properties are converted to META tags when you export a file as an HTML document:</paragraph> +<paragraph role="heading" id="hd_id3154380" xml-lang="en-US" level="1" l10n="U">HTML import and export</paragraph> +<paragraph role="paragraph" id="par_id3145119" xml-lang="en-US" l10n="U">When you export a file to an HTML document, the description and the user-defined file properties are included as META <link href="text/shared/00/00000002.xhp#tags" name="tags">tags</link> between the HEAD tags of the exported document. META tags are not displayed in a Web browser, and are used to include information, such as keywords for search engines on your Web page. To set the properties of the current document, [...] +<paragraph role="paragraph" id="par_id3148552" xml-lang="en-US" l10n="U">The following file properties are converted to META tags when you export a file as an HTML document:</paragraph> <table id="tbl_id3147304"> <tablerow> <tablecell> -<paragraph role="paragraph" id="par_id3154935" xml-lang="en-US" l10n="U" oldref="2">File Property</paragraph> +<paragraph role="paragraph" id="par_id3154935" xml-lang="en-US" l10n="U">File Property</paragraph> </tablecell> <tablecell> -<paragraph role="paragraph" id="par_id3151056" xml-lang="en-US" l10n="U" oldref="3"><TITLE></paragraph> +<paragraph role="paragraph" id="par_id3151056" xml-lang="en-US" l10n="U"><TITLE></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> -<paragraph role="paragraph" id="par_id3153778" xml-lang="en-US" l10n="U" oldref="4">Subject</paragraph> +<paragraph role="paragraph" id="par_id3153778" xml-lang="en-US" l10n="U">Subject</paragraph> </tablecell> <tablecell> -<paragraph role="paragraph" id="par_id3147228" xml-lang="en-US" l10n="U" oldref="5"><META NAME="CLASSIFICATION" CONTENT="Field Content"></paragraph> +<paragraph role="paragraph" id="par_id3147228" xml-lang="en-US" l10n="U"><META NAME="CLASSIFICATION" CONTENT="Field Content"></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> -<paragraph role="paragraph" id="par_id3154908" xml-lang="en-US" l10n="U" oldref="6">Keywords</paragraph> +<paragraph role="paragraph" id="par_id3154908" xml-lang="en-US" l10n="U">Keywords</paragraph> </tablecell> <tablecell> -<paragraph role="paragraph" id="par_id3156422" xml-lang="en-US" l10n="U" oldref="7"><META NAME="KEYWORDS" CONTENT="Field Content"></paragraph> +<paragraph role="paragraph" id="par_id3156422" xml-lang="en-US" l10n="U"><META NAME="KEYWORDS" CONTENT="Field Content"></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> -<paragraph role="paragraph" id="par_id3151041" xml-lang="en-US" l10n="U" oldref="8">Description</paragraph> +<paragraph role="paragraph" id="par_id3151041" xml-lang="en-US" l10n="U">Description</paragraph> </tablecell> <tablecell> -<paragraph role="paragraph" id="par_id3125863" xml-lang="en-US" l10n="U" oldref="9"><META NAME="DESCRIPTION" CONTENT="Field Content"></paragraph> +<paragraph role="paragraph" id="par_id3125863" xml-lang="en-US" l10n="U"><META NAME="DESCRIPTION" CONTENT="Field Content"></paragraph> </tablecell> </tablerow> <tablerow> <tablecell> -<paragraph role="paragraph" id="par_id3159149" xml-lang="en-US" l10n="U" oldref="10">Info fields 1...4</paragraph> +<paragraph role="paragraph" id="par_id3159149" xml-lang="en-US" l10n="U">Info fields 1...4</paragraph> </tablecell> <tablecell> -<paragraph role="paragraph" id="par_id3157892" xml-lang="en-US" l10n="U" oldref="11"><META NAME="Info field name" CONTENT="Field Content"></paragraph> +<paragraph role="paragraph" id="par_id3157892" xml-lang="en-US" l10n="U"><META NAME="Info field name" CONTENT="Field Content"></paragraph> </tablecell> </tablerow> </table> -<paragraph role="note" id="par_id3155855" xml-lang="en-US" l10n="U" oldref="22">When you import an HTML containing these META tags, the contents of the tags are added to the corresponding $[officename] file property box.</paragraph> +<paragraph role="note" id="par_id3155855" xml-lang="en-US" l10n="U">When you import an HTML containing these META tags, the contents of the tags are added to the corresponding $[officename] file property box.</paragraph> <paragraph role="tip" id="par_id0926200812164481" xml-lang="en-US" l10n="NEW">Keywords must be separated by commas. A keyword can contain white space characters or semicolons.</paragraph> -<paragraph role="heading" id="hd_id3163822" xml-lang="en-US" level="3" l10n="U" oldref="12">Import Tips</paragraph> -<paragraph role="paragraph" id="par_id3155307" xml-lang="en-US" l10n="U" oldref="13">When you import an HTML document, following META tags are automatically converted to $[officename] fields: <META HTTP-EQUIV="REFRESH"...> and <META NAME="..." ...> , where NAME equals to AUTHOR, CREATED, CHANGED, CHANGEDBY, DESCRIPTION, KEYWORDS or CLASSIFICATION.</paragraph> -<paragraph role="paragraph" id="par_id3146146" xml-lang="en-US" l10n="U" oldref="15">Scripts, comments, and META tags that are positioned directly before a TABLE tag are inserted in the first cell of the table.</paragraph> -<paragraph role="paragraph" id="par_id3155366" xml-lang="en-US" l10n="U" oldref="16">Scripts and META tags in the header of an HTML document are imported and anchored to the first paragraph in the document.</paragraph> -<paragraph role="paragraph" id="par_id3152885" xml-lang="en-US" l10n="U" oldref="14">To set the options for importing HTML tags, choose <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. A known META tag contains either "HTTP-EQUIV" or "NAME", and are imported as $[officename] comments. The only exception is <META NAME="GENERATOR"...>, [...] -<paragraph role="heading" id="hd_id3163717" xml-lang="en-US" level="3" l10n="U" oldref="17">Export Tips</paragraph> -<paragraph role="paragraph" id="par_id3159180" xml-lang="en-US" l10n="U" oldref="19">Comments and script fields at the beginning of the first paragraph in a document are exported to the header of an HTML document. If the document begins with a table, the first paragraph in the first cell of the table is exported to the header of the HTML document.</paragraph> +<paragraph role="heading" id="hd_id3163822" xml-lang="en-US" level="3" l10n="U">Import Tips</paragraph> +<paragraph role="paragraph" id="par_id3155307" xml-lang="en-US" l10n="U">When you import an HTML document, following META tags are automatically converted to $[officename] fields: <META HTTP-EQUIV="REFRESH"...> and <META NAME="..." ...> , where NAME equals to AUTHOR, CREATED, CHANGED, CHANGEDBY, DESCRIPTION, KEYWORDS or CLASSIFICATION.</paragraph> +<paragraph role="paragraph" id="par_id3146146" xml-lang="en-US" l10n="U">Scripts, comments, and META tags that are positioned directly before a TABLE tag are inserted in the first cell of the table.</paragraph> +<paragraph role="paragraph" id="par_id3155366" xml-lang="en-US" l10n="U">Scripts and META tags in the header of an HTML document are imported and anchored to the first paragraph in the document.</paragraph> +<paragraph role="paragraph" id="par_id3152885" xml-lang="en-US" l10n="U">To set the options for importing HTML tags, choose <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. A known META tag contains either "HTTP-EQUIV" or "NAME", and are imported as $[officename] comments. The only exception is <META NAME="GENERATOR"...>, which is ig [...] +<paragraph role="heading" id="hd_id3163717" xml-lang="en-US" level="3" l10n="U">Export Tips</paragraph> +<paragraph role="paragraph" id="par_id3159180" xml-lang="en-US" l10n="U">Comments and script fields at the beginning of the first paragraph in a document are exported to the header of an HTML document. If the document begins with a table, the first paragraph in the first cell of the table is exported to the header of the HTML document.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/02/12070200.xhp b/main/helpcontent2/source/text/shared/02/12070200.xhp index f26dffed32..3f82f111de 100644 --- a/main/helpcontent2/source/text/shared/02/12070200.xhp +++ b/main/helpcontent2/source/text/shared/02/12070200.xhp @@ -31,29 +31,29 @@ <body> <switch select="appl"><case select="WRITER"> <bookmark branch="hid/sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_AS_FIELD" xml-lang="en-US" id="bm_id3153116"/> -<paragraph role="heading" level="1" id="hd_id3149991" l10n="U" xml-lang="en-US" oldref="1">Fields</paragraph> +<paragraph role="heading" level="1" id="hd_id3149991" l10n="U" xml-lang="en-US">Fields</paragraph> <bookmark xml-lang="en-US" branch="index" id="bm_id3149987"> <bookmark_value>database contents; inserting as fields</bookmark_value> </bookmark> -<paragraph l10n="U" xml-lang="en-US" oldref="8" id="par_id3149987" role="paragraph"><ahelp hid="SW_RADIOBUTTON_DLG_AP_INSERT_DB_SEL_RB_AS_FIELD" visibility="hidden">Inserts data selected from the data source browser into the document as fields.</ahelp> In the <emph>Insert Database Columns</emph> dialog, select the <link href="text/swriter/01/04090000.xhp" name="Fields">Fields</link> to insert the selected data into the document as fields. These <link href="text/swriter/01/04090006.xhp" n [...] -<paragraph xml-lang="en-US" role="note" id="par_id3153114" l10n="U" oldref="9">If several records are selected when you choose the <emph>Data to Text</emph> function, the mail merge fields will be inserted according to the number of records. Also, a field command such as "Next record" will be inserted automatically between individual field command blocks.</paragraph> -<paragraph xml-lang="en-US" role="paragraph" id="par_id3145090" l10n="U" oldref="10">The <emph>Insert Database Columns</emph> dialog lets you define which database fields to insert into the document and how to format the paragraphs.</paragraph> -<paragraph role="heading" level="2" id="hd_id3156136" l10n="U" xml-lang="en-US" oldref="2">Fields</paragraph> -<paragraph xml-lang="en-US" role="paragraph" id="par_id3147571" l10n="U" oldref="11">In the <emph>Fields</emph> area, use the arrow button to select the database table columns into which you want to insert field contents.</paragraph> +<paragraph l10n="U" xml-lang="en-US" id="par_id3149987" role="paragraph"><ahelp hid="SW_RADIOBUTTON_DLG_AP_INSERT_DB_SEL_RB_AS_FIELD" visibility="hidden">Inserts data selected from the data source browser into the document as fields.</ahelp> In the <emph>Insert Database Columns</emph> dialog, select the <link href="text/swriter/01/04090000.xhp" name="Fields">Fields</link> to insert the selected data into the document as fields. These <link href="text/swriter/01/04090006.xhp" name="databa [...] +<paragraph xml-lang="en-US" role="note" id="par_id3153114" l10n="U">If several records are selected when you choose the <emph>Data to Text</emph> function, the mail merge fields will be inserted according to the number of records. Also, a field command such as "Next record" will be inserted automatically between individual field command blocks.</paragraph> +<paragraph xml-lang="en-US" role="paragraph" id="par_id3145090" l10n="U">The <emph>Insert Database Columns</emph> dialog lets you define which database fields to insert into the document and how to format the paragraphs.</paragraph> +<paragraph role="heading" level="2" id="hd_id3156136" l10n="U" xml-lang="en-US">Fields</paragraph> +<paragraph xml-lang="en-US" role="paragraph" id="par_id3147571" l10n="U">In the <emph>Fields</emph> area, use the arrow button to select the database table columns into which you want to insert field contents.</paragraph> <section id="ankerfuertextoption"> <bookmark branch="hid/sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_TXT_DB_COLUMN" xml-lang="en-US" id="bm_id3156411"/> -<paragraph role="heading" level="3" id="hd_id3153345" l10n="U" xml-lang="en-US" oldref="3">Database columns</paragraph> -<paragraph l10n="U" role="paragraph" id="par_id3155535" xml-lang="en-US" oldref="12">Lists all columns of the database table, which can be accepted in the selection list box to insert them into the document. <ahelp hid="SW_LISTBOX_DLG_AP_INSERT_DB_SEL_LB_TXT_DB_COLUMN" visibility="visible">Select the database columns that you want to insert it in the document.</ahelp></paragraph> +<paragraph role="heading" level="3" id="hd_id3153345" l10n="U" xml-lang="en-US">Database columns</paragraph> +<paragraph l10n="U" role="paragraph" id="par_id3155535" xml-lang="en-US">Lists all columns of the database table, which can be accepted in the selection list box to insert them into the document. <ahelp hid="SW_LISTBOX_DLG_AP_INSERT_DB_SEL_LB_TXT_DB_COLUMN" visibility="visible">Select the database columns that you want to insert it in the document.</ahelp></paragraph> <bookmark branch="hid/sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_TOEDIT" xml-lang="en-US" id="bm_id3149178"/> -<paragraph role="heading" level="3" id="hd_id3152551" l10n="U" xml-lang="en-US" oldref="4">></paragraph> -<paragraph l10n="U" role="paragraph" id="par_id3145345" xml-lang="en-US" oldref="13"><ahelp visibility="visible" hid="SW_IMAGEBUTTON_DLG_AP_INSERT_DB_SEL_IB_DBCOL_TOEDIT">Moves the fields that you selected in the <emph>Database columns</emph> list box into the selection field.</ahelp> You can also double-click the entry to select it.</paragraph> +<paragraph role="heading" level="3" id="hd_id3152551" l10n="U" xml-lang="en-US">></paragraph> +<paragraph l10n="U" role="paragraph" id="par_id3145345" xml-lang="en-US"><ahelp visibility="visible" hid="SW_IMAGEBUTTON_DLG_AP_INSERT_DB_SEL_IB_DBCOL_TOEDIT">Moves the fields that you selected in the <emph>Database columns</emph> list box into the selection field.</ahelp> You can also double-click the entry to select it.</paragraph> <bookmark branch="hid/sw:MultiLineEdit:DLG_AP_INSERT_DB_SEL:ED_DB_TEXT" xml-lang="en-US" id="bm_id3152997"/> -<paragraph role="heading" level="3" id="hd_id3166411" l10n="U" xml-lang="en-US" oldref="5">Select</paragraph> -<paragraph l10n="U" role="paragraph" id="par_id3163802" xml-lang="en-US" oldref="14"><ahelp hid="SW_MULTILINEEDIT_DLG_AP_INSERT_DB_SEL_ED_DB_TEXT" visibility="visible">Lists the database columns that you selected to be inserted into the document. You can also enter text here. This text will be also inserted into the document.</ahelp> The entries' order in the selection field corresponds to the data order in the document.</paragraph> +<paragraph role="heading" level="3" id="hd_id3166411" l10n="U" xml-lang="en-US">Select</paragraph> +<paragraph l10n="U" role="paragraph" id="par_id3163802" xml-lang="en-US"><ahelp hid="SW_MULTILINEEDIT_DLG_AP_INSERT_DB_SEL_ED_DB_TEXT" visibility="visible">Lists the database columns that you selected to be inserted into the document. You can also enter text here. This text will be also inserted into the document.</ahelp> The entries' order in the selection field corresponds to the data order in the document.</paragraph> <embed href="text/shared/02/12070100.xhp#format"/> <bookmark branch="hid/sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_DB_PARA_COLL" xml-lang="en-US" id="bm_id3154852"/> -<paragraph role="heading" level="3" id="hd_id3153257" l10n="U" xml-lang="en-US" oldref="7">Paragraph Style</paragraph> -<paragraph xml-lang="en-US" oldref="15" id="par_id3158430" l10n="U" role="paragraph">By default, the inserted paragraphs are formatted with the current Paragraph Styles. This format corresponds to the "none" entry in the <emph>Paragraph Style</emph> list box. <ahelp hid="SW_LISTBOX_DLG_AP_INSERT_DB_SEL_LB_DB_PARA_COLL" visibility="visible">This is where you can select other Paragraph Styles to apply to the paragraph you want to insert into the document.</ahelp> The list box displays the [...] +<paragraph role="heading" level="3" id="hd_id3153257" l10n="U" xml-lang="en-US">Paragraph Style</paragraph> +<paragraph xml-lang="en-US" id="par_id3158430" l10n="U" role="paragraph">By default, the inserted paragraphs are formatted with the current Paragraph Styles. This format corresponds to the "none" entry in the <emph>Paragraph Style</emph> list box. <ahelp hid="SW_LISTBOX_DLG_AP_INSERT_DB_SEL_LB_DB_PARA_COLL" visibility="visible">This is where you can select other Paragraph Styles to apply to the paragraph you want to insert into the document.</ahelp> The list box displays the available Pa [...] </section> </case></switch> </body> diff --git a/main/helpcontent2/source/text/shared/autopi/01010300.xhp b/main/helpcontent2/source/text/shared/autopi/01010300.xhp index c2238f73dd..50327e6d94 100644 --- a/main/helpcontent2/source/text/shared/autopi/01010300.xhp +++ b/main/helpcontent2/source/text/shared/autopi/01010300.xhp @@ -32,8 +32,8 @@ <body> <section id="seite3"> <bookmark xml-lang="en-US" branch="hid/SW_HID_LETTER_PAGE3" id="bm_id3154230" localize="false"/> -<paragraph role="heading" id="hd_id3148520" xml-lang="en-US" level="1" l10n="CHG" oldref="1"><link href="text/shared/autopi/01010300.xhp" name="Letter Wizard - Printed items">Letter Wizard - Printed items</link></paragraph> -<paragraph role="paragraph" id="par_id3152594" xml-lang="en-US" l10n="CHG" oldref="2"><ahelp hid="HID_LETTER_PAGE3">Defines the items to be included in the letter template.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3148520" xml-lang="en-US" level="1" l10n="CHG"><link href="text/shared/autopi/01010300.xhp" name="Letter Wizard - Printed items">Letter Wizard - Printed items</link></paragraph> +<paragraph role="paragraph" id="par_id3152594" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_LETTER_PAGE3">Defines the items to be included in the letter template.</ahelp></paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00000401.xhp#autopilotbrief3"/> @@ -67,6 +67,6 @@ <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_CHKUSEFOOTER" id="bm_id1231116" localize="false"/> <paragraph role="heading" id="par_idN106C7" xml-lang="en-US" level="3" l10n="NEW">Footer</paragraph> <paragraph role="paragraph" id="par_idN106CB" xml-lang="en-US" l10n="NEW"><ahelp hid="HID_LTRWIZ_CHKUSEFOOTER">Includes a footer on the letter template.</ahelp></paragraph> -<paragraph role="paragraph" id="par_id3149666" xml-lang="en-US" l10n="CHG" oldref="31"><link href="text/shared/autopi/01010400.xhp" name="Go to Letter Wizard - Recipient and sender">Go to Letter Wizard - Recipient and sender</link></paragraph> +<paragraph role="paragraph" id="par_id3149666" xml-lang="en-US" l10n="CHG"><link href="text/shared/autopi/01010400.xhp" name="Go to Letter Wizard - Recipient and sender">Go to Letter Wizard - Recipient and sender</link></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/guide/data_addressbook.xhp b/main/helpcontent2/source/text/shared/guide/data_addressbook.xhp index 4b8b677f42..f1de3046f0 100644 --- a/main/helpcontent2/source/text/shared/guide/data_addressbook.xhp +++ b/main/helpcontent2/source/text/shared/guide/data_addressbook.xhp @@ -36,40 +36,39 @@ <bookmark_value>system address book registration</bookmark_value> <bookmark_value>registering; address books</bookmark_value> </bookmark> -<paragraph role="paragraph" id="par_id3152823" xml-lang="en-US" l10n="E" oldref="1" localize="false"/> -<paragraph role="heading" id="hd_id3154228" xml-lang="en-US" level="1" l10n="U" oldref="2"><variable id="data_addressbook"><link href="text/shared/guide/data_addressbook.xhp" name="Registering an Address Book">Registering an Address Book</link> +<paragraph role="paragraph" id="par_id3152823" xml-lang="en-US" l10n="E" localize="false"/> +<paragraph role="heading" id="hd_id3154228" xml-lang="en-US" level="1" l10n="U"><variable id="data_addressbook"><link href="text/shared/guide/data_addressbook.xhp" name="Registering an Address Book">Registering an Address Book</link> </variable></paragraph> <section id="adressbuch"> -<paragraph role="paragraph" id="par_id3154927" xml-lang="en-US" l10n="U" oldref="3">In <item type="productname">%PRODUCTNAME</item> you can register different data sources. The contents of the data fields are then available to you for use in various fields and controls. Your system address book is such a data source.</paragraph> -<paragraph role="paragraph" id="par_id3149346" xml-lang="en-US" l10n="U" oldref="4"> -<item type="productname">%PRODUCTNAME</item> templates and wizards use fields for the contents of the address book. When activated, the general fields in the templates are automatically replaced with the fields from the data source of your address book.</paragraph> +<paragraph role="paragraph" id="par_id3154927" xml-lang="en-US" l10n="U">In <item type="productname">%PRODUCTNAME</item> you can register different data sources. The contents of the data fields are then available to you for use in various fields and controls. Your system address book is such a data source.</paragraph> +<paragraph role="paragraph" id="par_id3149346" xml-lang="en-US" l10n="U"><item type="productname">%PRODUCTNAME</item> templates and wizards use fields for the contents of the address book. When activated, the general fields in the templates are automatically replaced with the fields from the data source of your address book.</paragraph> </section> -<paragraph role="paragraph" id="par_id3147399" xml-lang="en-US" l10n="CHG" oldref="5">In order for the replacement to take place, you must tell <item type="productname">%PRODUCTNAME</item> which address book you use. The wizard asking for this information appears automatically the first time you activate, for example, a business letter template. You can also call the wizard by following the steps listed below.</paragraph> +<paragraph role="paragraph" id="par_id3147399" xml-lang="en-US" l10n="CHG">In order for the replacement to take place, you must tell <item type="productname">%PRODUCTNAME</item> which address book you use. The wizard asking for this information appears automatically the first time you activate, for example, a business letter template. You can also call the wizard by following the steps listed below.</paragraph> <paragraph role="note" id="par_id5941648" xml-lang="en-US" l10n="NEW">The address book data is read-only in %PRODUCTNAME Base. It is not possible to add, edit, or delete address data from within Base.</paragraph> -<paragraph role="heading" id="hd_id3149096" xml-lang="en-US" level="2" l10n="U" oldref="35">Address Data Source Wizard</paragraph> -<paragraph role="paragraph" id="par_id3147008" xml-lang="en-US" l10n="CHG" oldref="36">To call the <link href="text/shared/autopi/01170000.xhp" name="Address Data Source">Address Data Source</link> wizard, choose <emph>File - Wizards - Address Data Source</emph>.</paragraph> -<paragraph role="heading" id="hd_id3149811" xml-lang="en-US" level="2" l10n="CHG" oldref="6">Registering An Existing Address Book Manually</paragraph> +<paragraph role="heading" id="hd_id3149096" xml-lang="en-US" level="2" l10n="U">Address Data Source Wizard</paragraph> +<paragraph role="paragraph" id="par_id3147008" xml-lang="en-US" l10n="CHG">To call the <link href="text/shared/autopi/01170000.xhp" name="Address Data Source">Address Data Source</link> wizard, choose <emph>File - Wizards - Address Data Source</emph>.</paragraph> +<paragraph role="heading" id="hd_id3149811" xml-lang="en-US" level="2" l10n="CHG">Registering An Existing Address Book Manually</paragraph> <list type="ordered"> <listitem> -<paragraph role="paragraph" id="par_id3150771" xml-lang="en-US" l10n="U" oldref="8">Choose <emph>File - Templates - Address Book Source</emph>. The <link href="text/shared/01/01110101.xhp" name="Templates: Address Book Assignment"><emph>Templates: Address Book Assignment</emph></link> dialog appears.</paragraph> +<paragraph role="paragraph" id="par_id3150771" xml-lang="en-US" l10n="U">Choose <emph>File - Templates - Address Book Source</emph>. The <link href="text/shared/01/01110101.xhp" name="Templates: Address Book Assignment"><emph>Templates: Address Book Assignment</emph></link> dialog appears.</paragraph> </listitem> <listitem> -<paragraph role="paragraph" id="par_id3148491" xml-lang="en-US" l10n="U" oldref="10">In the <emph>Data source</emph> combo box, select the system address book or the data source you want to use as an address book.</paragraph> +<paragraph role="paragraph" id="par_id3148491" xml-lang="en-US" l10n="U">In the <emph>Data source</emph> combo box, select the system address book or the data source you want to use as an address book.</paragraph> </listitem> <listitem> -<paragraph role="paragraph" id="par_id3149669" xml-lang="en-US" l10n="CHG" oldref="11">If you have not yet registered the system address book in <item type="productname">%PRODUCTNAME</item> as the data source, click the <emph>Address Data Source</emph> button. This takes you to the <emph>Address Book Data Source Wizard</emph>, in which you can register your address book as a new data source in <item type="productname">%PRODUCTNAME</item>.</paragraph> +<paragraph role="paragraph" id="par_id3149669" xml-lang="en-US" l10n="CHG">If you have not yet registered the system address book in <item type="productname">%PRODUCTNAME</item> as the data source, click the <emph>Address Data Source</emph> button. This takes you to the <emph>Address Book Data Source Wizard</emph>, in which you can register your address book as a new data source in <item type="productname">%PRODUCTNAME</item>.</paragraph> </listitem> <listitem> -<paragraph role="paragraph" id="par_id3154365" xml-lang="en-US" l10n="U" oldref="13">In the <emph>Table</emph> combo box, select the database table you want to use as the address book.</paragraph> +<paragraph role="paragraph" id="par_id3154365" xml-lang="en-US" l10n="U">In the <emph>Table</emph> combo box, select the database table you want to use as the address book.</paragraph> </listitem> <listitem> -<paragraph role="paragraph" id="par_id3147084" xml-lang="en-US" l10n="U" oldref="15">Under <emph>Field assignment</emph>, match the fields for first name, company, department, and so on to the actual field names used in your address book.</paragraph> +<paragraph role="paragraph" id="par_id3147084" xml-lang="en-US" l10n="U">Under <emph>Field assignment</emph>, match the fields for first name, company, department, and so on to the actual field names used in your address book.</paragraph> </listitem> <listitem> <paragraph role="paragraph" id="par_idN10784" xml-lang="en-US" l10n="NEW">When finished, close the dialog with <emph>OK</emph>.</paragraph> </listitem> </list> -<paragraph role="paragraph" id="par_id3149983" xml-lang="en-US" l10n="U" oldref="18">Now your data source is registered in <item type="productname">%PRODUCTNAME</item> as the address book. If you now open a template from the <emph>Business Correspondence</emph> category, <item type="productname">%PRODUCTNAME</item> can automatically insert the correct fields for a form letter.</paragraph> +<paragraph role="paragraph" id="par_id3149983" xml-lang="en-US" l10n="U">Now your data source is registered in <item type="productname">%PRODUCTNAME</item> as the address book. If you now open a template from the <emph>Business Correspondence</emph> category, <item type="productname">%PRODUCTNAME</item> can automatically insert the correct fields for a form letter.</paragraph> <section id="relatedtopics"> <switch select="appl"> <case select="WRITER"><embed href="text/swriter/guide/form_letters_main.xhp#form_letters"/> diff --git a/main/helpcontent2/source/text/swriter/guide/header_with_chapter.xhp b/main/helpcontent2/source/text/swriter/guide/header_with_chapter.xhp index 5d98e96711..ff1ae83b6a 100644 --- a/main/helpcontent2/source/text/swriter/guide/header_with_chapter.xhp +++ b/main/helpcontent2/source/text/swriter/guide/header_with_chapter.xhp @@ -36,56 +36,54 @@ <bookmark_value>chapter names in headers</bookmark_value> <bookmark_value>names; chapter names in headers</bookmark_value> </bookmark> -<paragraph xml-lang="en-US" id="hd_id3155919" role="heading" level="1" l10n="U" oldref="3"><variable id="header_with_chapter"><link href="text/swriter/guide/header_with_chapter.xhp" name="Inserting a Chapter Name and Number in a Header or a Footer">Inserting a Chapter Name and Number in a Header or a Footer</link> +<paragraph xml-lang="en-US" id="hd_id3155919" role="heading" level="1" l10n="U"><variable id="header_with_chapter"><link href="text/swriter/guide/header_with_chapter.xhp" name="Inserting a Chapter Name and Number in a Header or a Footer">Inserting a Chapter Name and Number in a Header or a Footer</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3153414" role="paragraph" l10n="U" oldref="22">Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles.</paragraph> -<paragraph xml-lang="en-US" id="hd_id3154244" role="heading" level="2" l10n="U" -oldref="23">To Create a Paragraph Style for Chapter Titles</paragraph> +<paragraph xml-lang="en-US" id="par_id3153414" role="paragraph" l10n="U">Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3154244" role="heading" level="2" l10n="U">To Create a Paragraph Style for Chapter Titles</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3155874" role="listitem" l10n="U" oldref="24">Choose <emph>Tools - Outline Numbering</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155874" role="listitem" l10n="U">Choose <emph>Tools - Outline Numbering</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3155898" role="listitem" l10n="U" oldref="25">In the <item type="menuitem">Style</item> box, select the paragraph style that you want to use for chapter titles, for example, "Heading 1".</paragraph> +<paragraph xml-lang="en-US" id="par_id3155898" role="listitem" l10n="U">In the <item type="menuitem">Style</item> box, select the paragraph style that you want to use for chapter titles, for example, "Heading 1".</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147124" role="listitem" l10n="U" oldref="26">Select the numbering style for the chapter titles in the <item type="menuitem">Number</item> box, for example, "1,2,3...".</paragraph> +<paragraph xml-lang="en-US" id="par_id3147124" role="listitem" l10n="U">Select the numbering style for the chapter titles in the <item type="menuitem">Number</item> box, for example, "1,2,3...".</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150219" role="listitem" l10n="U" oldref="27">Type "Chapter" followed by a space in the <item type="menuitem">Before</item> box.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150219" role="listitem" l10n="U">Type "Chapter" followed by a space in the <item type="menuitem">Before</item> box.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150245" role="listitem" l10n="U" oldref="28">Enter a space in the <item type="menuitem">After</item> box.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150245" role="listitem" l10n="U">Enter a space in the <item type="menuitem">After</item> box.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150949" role="listitem" l10n="U" oldref="29">Click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150949" role="listitem" l10n="U">Click <emph>OK</emph>.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3150505" role="heading" level="2" l10n="U" -oldref="30">To Insert the Chapter Name and Number in a Header or a Footer</paragraph> +<paragraph xml-lang="en-US" id="hd_id3150505" role="heading" level="2" l10n="U">To Insert the Chapter Name and Number in a Header or a Footer</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3150527" role="listitem" l10n="U" oldref="5">Apply the paragraph style that you defined for chapter titles to the chapter headings in your document.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150527" role="listitem" l10n="U">Apply the paragraph style that you defined for chapter titles to the chapter headings in your document.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153729" role="listitem" l10n="U" oldref="6">Choose <item type="menuitem">Insert - Header</item> or <item type="menuitem">Insert - Footer</item>, and then select the page style for the current page from the submenu.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153729" role="listitem" l10n="U">Choose <item type="menuitem">Insert - Header</item> or <item type="menuitem">Insert - Footer</item>, and then select the page style for the current page from the submenu.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153762" role="listitem" l10n="U" oldref="7">Click in the header or footer.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153762" role="listitem" l10n="U">Click in the header or footer.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3146863" role="listitem" l10n="U" oldref="9">Choose <item type="menuitem">Insert - Fields - Other</item> and click the <item type="menuitem">Document</item> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3146863" role="listitem" l10n="U">Choose <item type="menuitem">Insert - Fields - Other</item> and click the <item type="menuitem">Document</item> tab.</paragraph> </listitem> </list> <list type="ordered" startwith="5"> <listitem> -<paragraph xml-lang="en-US" id="par_id3153175" role="listitem" l10n="U" oldref="10">Click "Chapter" in the <item type="menuitem">Type</item> list and "Chapter number and name" in the <item type="menuitem">Format</item> list.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153175" role="listitem" l10n="U">Click "Chapter" in the <item type="menuitem">Type</item> list and "Chapter number and name" in the <item type="menuitem">Format</item> list.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147065" role="listitem" l10n="U" oldref="11">Click <emph>Insert</emph> and then click <emph>Close</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147065" role="listitem" l10n="U">Click <emph>Insert</emph> and then click <emph>Close</emph>.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="par_id3147095" role="paragraph" l10n="U" oldref="12">The header on every page that uses the current page style automatically displays the chapter name and number.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147095" role="paragraph" l10n="U">The header on every page that uses the current page style automatically displays the chapter name and number.</paragraph> <embed href="text/shared/00/00000004.xhp#related"/> <embed href="text/swriter/guide/header_footer.xhp#header_footer"/> <embed href="text/swriter/guide/change_header.xhp#change_header"/> diff --git a/main/helpcontent2/source/text/swriter/guide/indices_form.xhp b/main/helpcontent2/source/text/swriter/guide/indices_form.xhp index 80b22db6c0..9ecfc93b7e 100644 --- a/main/helpcontent2/source/text/swriter/guide/indices_form.xhp +++ b/main/helpcontent2/source/text/swriter/guide/indices_form.xhp @@ -38,53 +38,50 @@ <bookmark_value>hyperlinks; in tables of contents and indexes</bookmark_value> <bookmark_value>formatting;indexes and tables of contents</bookmark_value> </bookmark> -<paragraph xml-lang="en-US" id="hd_id3155855" role="heading" level="1" l10n="U" -oldref="38"><variable id="indices_form"><link href="text/swriter/guide/indices_form.xhp" name="Formatting an Index or a Table of Contents">Formatting an Index or a Table of Contents</link> +<paragraph xml-lang="en-US" id="hd_id3155855" role="heading" level="1" l10n="U"><variable id="indices_form"><link href="text/swriter/guide/indices_form.xhp" name="Formatting an Index or a Table of Contents">Formatting an Index or a Table of Contents</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3154259" role="paragraph" l10n="U" oldref="39">You can apply different paragraph styles, assign hyperlinks to entries, change the layout of indexes, and change the background color of indexes in the <emph>Insert Index</emph> dialog.</paragraph> -<paragraph xml-lang="en-US" id="hd_id3155888" role="heading" level="2" l10n="U" -oldref="44">To Apply a Different Paragraph Style to an Index Level</paragraph> +<paragraph xml-lang="en-US" id="par_id3154259" role="paragraph" l10n="U">You can apply different paragraph styles, assign hyperlinks to entries, change the layout of indexes, and change the background color of indexes in the <emph>Insert Index</emph> dialog.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3155888" role="heading" level="2" l10n="U">To Apply a Different Paragraph Style to an Index Level</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3147110" role="listitem" l10n="U" oldref="45">Right-click in the index or table of contents, and then choose <emph>Edit Index/Table</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147110" role="listitem" l10n="U">Right-click in the index or table of contents, and then choose <emph>Edit Index/Table</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147135" role="listitem" l10n="U" oldref="46">Click the <emph>Styles</emph> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147135" role="listitem" l10n="U">Click the <emph>Styles</emph> tab.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150229" role="listitem" l10n="U" oldref="47">Click an index level in the <emph>Levels</emph> list.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150229" role="listitem" l10n="U">Click an index level in the <emph>Levels</emph> list.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150934" role="listitem" l10n="U" oldref="48">Click the style that you want to apply in the <emph>Paragraph Style</emph> list.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150934" role="listitem" l10n="U">Click the style that you want to apply in the <emph>Paragraph Style</emph> list.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150960" role="listitem" l10n="U" oldref="56">Click the assign button <emph><</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150960" role="listitem" l10n="U">Click the assign button <emph><</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150516" role="listitem" l10n="U" oldref="49">Click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150516" role="listitem" l10n="U">Click <emph>OK</emph>.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="hd_id3146878" role="heading" level="2" l10n="U" -oldref="40">To Assign Hyperlinks to Entries in a Table of Contents</paragraph> -<paragraph xml-lang="en-US" id="par_id3146890" role="paragraph" l10n="U" oldref="50">You can assign a cross-reference as a hyperlink to entries in a table of contents.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3146878" role="heading" level="2" l10n="U">To Assign Hyperlinks to Entries in a Table of Contents</paragraph> +<paragraph xml-lang="en-US" id="par_id3146890" role="paragraph" l10n="U">You can assign a cross-reference as a hyperlink to entries in a table of contents.</paragraph> <list type="ordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3150712" role="listitem" l10n="U" oldref="51">Right-click in the table of contents, and then choose <emph>Edit Index/Table</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150712" role="listitem" l10n="U">Right-click in the table of contents, and then choose <emph>Edit Index/Table</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150738" role="listitem" l10n="U" oldref="42">Click the <emph>Entries</emph> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150738" role="listitem" l10n="U">Click the <emph>Entries</emph> tab.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3148399" role="listitem" l10n="U" oldref="52">In the <item type="menuitem">Level</item> list click the heading level that you want to assign hyperlinks to.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148399" role="listitem" l10n="U">In the <item type="menuitem">Level</item> list click the heading level that you want to assign hyperlinks to.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3148424" role="listitem" l10n="U" oldref="53">In the <emph>Structure</emph> area, click in the box in front of <emph>E#</emph>, and then click <emph>Hyperlink</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148424" role="listitem" l10n="U">In the <emph>Structure</emph> area, click in the box in front of <emph>E#</emph>, and then click <emph>Hyperlink</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153171" role="listitem" l10n="U" oldref="54">Click in the box behind the <emph>E</emph>, and then click <emph>Hyperlink</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153171" role="listitem" l10n="U">Click in the box behind the <emph>E</emph>, and then click <emph>Hyperlink</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3147060" role="listitem" l10n="CHG" oldref="55">Repeat for each heading level that you want to create hyperlinks for, or click the <item type="menuitem">All</item> button to apply the formatting to all levels.</paragraph> +<paragraph xml-lang="en-US" id="par_id3147060" role="listitem" l10n="CHG">Repeat for each heading level that you want to create hyperlinks for, or click the <item type="menuitem">All</item> button to apply the formatting to all levels.</paragraph> </listitem> </list> <embed href="text/shared/00/00000004.xhp#related"/>