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 3d720da151 Remove 'oldref' entries (work in progress) 3d720da151 is described below commit 3d720da15179435df3d845353cc82922f2c36539 Author: mseidel <msei...@apache.org> AuthorDate: Sun Mar 30 17:37:02 2025 +0200 Remove 'oldref' entries (work in progress) (cherry picked from commit 7038d8e21b9be6f7052e9d18242ed62c9bd3fc7b) --- .../source/text/sbasic/shared/03020103.xhp | 76 ++++++++---------- .../source/text/sbasic/shared/03020204.xhp | 79 +++++++++--------- .../source/text/sbasic/shared/03120314.xhp | 93 +++++++++++----------- .../source/text/shared/01/06040200.xhp | 30 +++---- .../source/text/shared/01/06040400.xhp | 32 ++++---- .../text/shared/explorer/database/05030100.xhp | 44 +++++----- .../source/text/shared/guide/fontwork.xhp | 2 +- .../source/text/shared/guide/standard_template.xhp | 40 +++++----- .../source/text/shared/optionen/01011000.xhp | 40 +++++----- .../source/text/shared/optionen/01020100.xhp | 40 +++++----- 10 files changed, 232 insertions(+), 244 deletions(-) diff --git a/main/helpcontent2/source/text/sbasic/shared/03020103.xhp b/main/helpcontent2/source/text/sbasic/shared/03020103.xhp index d672a57a39..a651a7687b 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03020103.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03020103.xhp @@ -33,47 +33,41 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3150791"> <bookmark_value>Open statement</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3150791" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020103.xhp" name="Open Statement [Runtime]">Open Statement [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3150769" xml-lang="en-US" l10n="U" oldref="2">Opens a data channel.</paragraph> +<paragraph role="heading" id="hd_id3150791" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03020103.xhp" name="Open Statement [Runtime]">Open Statement [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3150769" xml-lang="en-US" l10n="U">Opens a data channel.</paragraph> </section> -<paragraph role="heading" id="hd_id3147230" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="code" id="par_id3154124" xml-lang="en-US" l10n="CHG" oldref="4">Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]<comment>UFI: #i37502#</comment></paragraph> -<paragraph role="heading" id="hd_id3156280" xml-lang="en-US" level="2" l10n="U" oldref="5">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3155132" xml-lang="en-US" l10n="U" oldref="6"> -<emph>FileName:</emph> Name and path of the file that you want to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created.</paragraph> -<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U" oldref="7"> -<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files).</paragraph> -<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" l10n="CHG" oldref="8"> -<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both).</paragraph> -<paragraph role="paragraph" id="par_id3150011" xml-lang="en-US" l10n="U" oldref="9"> -<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access).</paragraph> -<paragraph role="paragraph" id="par_id3153190" xml-lang="en-US" l10n="U" oldref="10"> -<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement.</paragraph> -<paragraph role="paragraph" id="par_id3151115" xml-lang="en-US" l10n="CHG" oldref="11"> -<emph>DatasetLength:</emph> For random access files, set the length of the records.<comment>UFI: #61736</comment></paragraph> -<paragraph role="note" id="par_id3153418" xml-lang="en-US" l10n="U" oldref="12">You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears.</paragraph> -<paragraph role="heading" id="hd_id3149123" xml-lang="en-US" level="2" l10n="U" oldref="13">Example:</paragraph> -<paragraph role="code" id="par_id3150749" xml-lang="en-US" l10n="U" oldref="14">Sub ExampleWorkWithAFile</paragraph> -<paragraph role="code" id="par_id3155064" xml-lang="en-US" l10n="U" oldref="15">Dim iNumber As Integer</paragraph> -<paragraph role="code" id="par_id3154754" xml-lang="en-US" l10n="U" oldref="16">Dim sLine As String</paragraph> -<paragraph role="code" id="par_id3153711" xml-lang="en-US" l10n="U" oldref="17">Dim aFile As String</paragraph> -<paragraph role="code" id="par_id3155764" xml-lang="en-US" l10n="U" oldref="40">Dim sMsg as String</paragraph> -<paragraph role="code" id="par_id3159264" xml-lang="en-US" l10n="U" oldref="18">aFile = "c:\data.txt"</paragraph> -<paragraph role="code" id="par_id3153963" xml-lang="en-US" l10n="U" oldref="20">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3155959" xml-lang="en-US" l10n="U" oldref="21">Open aFile For Output As #iNumber</paragraph> -<paragraph role="code" id="par_id3154705" xml-lang="en-US" l10n="U" oldref="22">Print #iNumber, "This is a line of text"</paragraph> -<paragraph role="code" id="par_id3146916" xml-lang="en-US" l10n="U" oldref="23">Print #iNumber, "This is another line of text"</paragraph> -<paragraph role="code" id="par_id3150942" xml-lang="en-US" l10n="U" oldref="24">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3150300" xml-lang="en-US" l10n="U" oldref="28">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3154022" xml-lang="en-US" l10n="U" oldref="29">Open aFile For Input As iNumber</paragraph> -<paragraph role="code" id="par_id3150783" xml-lang="en-US" l10n="U" oldref="30">While not eof(iNumber)</paragraph> -<paragraph role="code" id="par_id3153270" xml-lang="en-US" l10n="U" oldref="31">Line Input #iNumber, sLine</paragraph> -<paragraph role="code" id="par_id3153784" xml-lang="en-US" l10n="U" oldref="32">If sLine <>"" then</paragraph> -<paragraph role="code" id="par_id3149208" xml-lang="en-US" l10n="U" oldref="33">sMsg = sMsg & sLine & chr(13)</paragraph> -<paragraph role="code" id="par_id3150304" xml-lang="en-US" l10n="U" oldref="35">end if</paragraph> -<paragraph role="code" id="par_id3151217" xml-lang="en-US" l10n="U" oldref="36">wend</paragraph> -<paragraph role="code" id="par_id3152582" xml-lang="en-US" l10n="U" oldref="37">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3159100" xml-lang="en-US" l10n="U" oldref="41">Msgbox sMsg</paragraph> -<paragraph role="code" id="par_id3159091" xml-lang="en-US" l10n="U" oldref="38">End Sub</paragraph> +<paragraph role="heading" id="hd_id3147230" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3154124" xml-lang="en-US" l10n="CHG">Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]<comment>UFI: #i37502#</comment></paragraph> +<paragraph role="heading" id="hd_id3156280" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3155132" xml-lang="en-US" l10n="U"><emph>FileName:</emph> Name and path of the file that you want to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created.</paragraph> +<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U"><emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files).</paragraph> +<paragraph role="paragraph" id="par_id3154014" xml-lang="en-US" l10n="CHG"><emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both).</paragraph> +<paragraph role="paragraph" id="par_id3150011" xml-lang="en-US" l10n="U"><emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access).</paragraph> +<paragraph role="paragraph" id="par_id3153190" xml-lang="en-US" l10n="U"><emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement.</paragraph> +<paragraph role="paragraph" id="par_id3151115" xml-lang="en-US" l10n="CHG"><emph>DatasetLength:</emph> For random access files, set the length of the records.<comment>UFI: #61736</comment></paragraph> +<paragraph role="note" id="par_id3153418" xml-lang="en-US" l10n="U">You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears.</paragraph> +<paragraph role="heading" id="hd_id3149123" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3150749" xml-lang="en-US" l10n="U">Sub ExampleWorkWithAFile</paragraph> +<paragraph role="code" id="par_id3155064" xml-lang="en-US" l10n="U">Dim iNumber As Integer</paragraph> +<paragraph role="code" id="par_id3154754" xml-lang="en-US" l10n="U">Dim sLine As String</paragraph> +<paragraph role="code" id="par_id3153711" xml-lang="en-US" l10n="U">Dim aFile As String</paragraph> +<paragraph role="code" id="par_id3155764" xml-lang="en-US" l10n="U">Dim sMsg as String</paragraph> +<paragraph role="code" id="par_id3159264" xml-lang="en-US" l10n="U">aFile = "c:\data.txt"</paragraph> +<paragraph role="code" id="par_id3153963" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3155959" xml-lang="en-US" l10n="U">Open aFile For Output As #iNumber</paragraph> +<paragraph role="code" id="par_id3154705" xml-lang="en-US" l10n="U">Print #iNumber, "This is a line of text"</paragraph> +<paragraph role="code" id="par_id3146916" xml-lang="en-US" l10n="U">Print #iNumber, "This is another line of text"</paragraph> +<paragraph role="code" id="par_id3150942" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3150300" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3154022" xml-lang="en-US" l10n="U">Open aFile For Input As iNumber</paragraph> +<paragraph role="code" id="par_id3150783" xml-lang="en-US" l10n="U">While not eof(iNumber)</paragraph> +<paragraph role="code" id="par_id3153270" xml-lang="en-US" l10n="U">Line Input #iNumber, sLine</paragraph> +<paragraph role="code" id="par_id3153784" xml-lang="en-US" l10n="U">If sLine <>"" then</paragraph> +<paragraph role="code" id="par_id3149208" xml-lang="en-US" l10n="U">sMsg = sMsg & sLine & chr(13)</paragraph> +<paragraph role="code" id="par_id3150304" xml-lang="en-US" l10n="U">end if</paragraph> +<paragraph role="code" id="par_id3151217" xml-lang="en-US" l10n="U">wend</paragraph> +<paragraph role="code" id="par_id3152582" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3159100" xml-lang="en-US" l10n="U">Msgbox sMsg</paragraph> +<paragraph role="code" id="par_id3159091" xml-lang="en-US" l10n="U">End Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03020204.xhp b/main/helpcontent2/source/text/sbasic/shared/03020204.xhp index e1fa51e452..c47521be52 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03020204.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03020204.xhp @@ -33,47 +33,44 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3150360"> <bookmark_value>Put statement</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3150360" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020204.xhp" name="Put Statement [Runtime]">Put Statement [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3154909" xml-lang="en-US" l10n="U" oldref="2">Writes a record to a relative file or a sequence of bytes to a binary file.</paragraph> +<paragraph role="heading" id="hd_id3150360" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03020204.xhp" name="Put Statement [Runtime]">Put Statement [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3154909" xml-lang="en-US" l10n="U">Writes a record to a relative file or a sequence of bytes to a binary file.</paragraph> </section> -<paragraph role="paragraph" id="par_id3156281" xml-lang="en-US" l10n="U" oldref="3">See also: <link href="text/sbasic/shared/03020201.xhp" name="Get"><item type="literal">Get</item></link> statement</paragraph> -<paragraph role="heading" id="hd_id3125863" xml-lang="en-US" level="2" l10n="U" oldref="4">Syntax:</paragraph> -<paragraph role="code" id="par_id3155132" xml-lang="en-US" l10n="U" oldref="5">Put [#] FileNumber As Integer, [position], Variable</paragraph> -<paragraph role="heading" id="hd_id3153190" xml-lang="en-US" level="2" l10n="U" oldref="6">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US" l10n="U" oldref="7"> -<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to.</paragraph> -<paragraph role="paragraph" id="par_id3155411" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Position:</emph> For relative files (random access files), the number of the record that you want to write.</paragraph> -<paragraph role="paragraph" id="par_id3148576" xml-lang="en-US" l10n="U" oldref="9">For binary files (binary access), the position of the byte in the file where you want to start writing.</paragraph> -<paragraph role="paragraph" id="par_id3153729" xml-lang="en-US" l10n="U" oldref="10"> -<emph>Variable:</emph> Name of the variable that you want to write to the file.</paragraph> -<paragraph role="paragraph" id="par_id3146974" xml-lang="en-US" l10n="U" oldref="11">Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to.</paragraph> -<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US" l10n="U" oldref="12">Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records.</paragraph> -<paragraph role="heading" id="hd_id3154491" xml-lang="en-US" level="2" l10n="U" oldref="13">Example:</paragraph> -<paragraph role="code" id="par_id3149410" xml-lang="en-US" l10n="U" oldref="14">Sub ExampleRandomAccess</paragraph> -<paragraph role="code" id="par_id3149959" xml-lang="en-US" l10n="U" oldref="15">Dim iNumber As Integer</paragraph> -<paragraph role="code" id="par_id3154729" xml-lang="en-US" l10n="U" oldref="16">Dim sText As Variant REM Must be a variant type</paragraph> -<paragraph role="code" id="par_id3156286" xml-lang="en-US" l10n="U" oldref="17">Dim aFile As String</paragraph> -<paragraph role="code" id="par_id3149400" xml-lang="en-US" l10n="U" oldref="18">aFile = "c:\data.txt"</paragraph> -<paragraph role="code" id="par_id3149124" xml-lang="en-US" l10n="U" oldref="20">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3150330" xml-lang="en-US" l10n="U" oldref="21">Open aFile For Random As #iNumber Len=32</paragraph> -<paragraph role="code" id="par_id3156278" xml-lang="en-US" l10n="U" oldref="22">Seek #iNumber,1 REM Position to start writing</paragraph> -<paragraph role="code" id="par_id3153711" xml-lang="en-US" l10n="U" oldref="23">Put #iNumber,, "This is the first line of text" REM Fill line with text</paragraph> -<paragraph role="code" id="par_id3155446" xml-lang="en-US" l10n="U" oldref="24">Put #iNumber,, "This is the second line of text"</paragraph> -<paragraph role="code" id="par_id3154255" xml-lang="en-US" l10n="U" oldref="25">Put #iNumber,, "This is the third line of text"</paragraph> -<paragraph role="code" id="par_id3150045" xml-lang="en-US" l10n="U" oldref="26">Seek #iNumber,2</paragraph> -<paragraph role="code" id="par_id3145149" xml-lang="en-US" l10n="U" oldref="27">Get #iNumber,,sText</paragraph> -<paragraph role="code" id="par_id3147363" xml-lang="en-US" l10n="U" oldref="28">Print sText</paragraph> -<paragraph role="code" id="par_id3163806" xml-lang="en-US" l10n="U" oldref="29">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3149568" xml-lang="en-US" l10n="U" oldref="31">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3155607" xml-lang="en-US" l10n="U" oldref="32">Open aFile For Random As #iNumber Len=32</paragraph> -<paragraph role="code" id="par_id3154022" xml-lang="en-US" l10n="U" oldref="33">Get #iNumber,2,sText</paragraph> -<paragraph role="code" id="par_id3150940" xml-lang="en-US" l10n="U" oldref="34">Put #iNumber,,"This is new text"</paragraph> -<paragraph role="code" id="par_id3146132" xml-lang="en-US" l10n="U" oldref="35">Get #iNumber,1,sText</paragraph> -<paragraph role="code" id="par_id3154198" xml-lang="en-US" l10n="U" oldref="36">Get #iNumber,2,sText</paragraph> -<paragraph role="code" id="par_id3159102" xml-lang="en-US" l10n="U" oldref="37">Put #iNumber,20,"This is the text in record 20"</paragraph> -<paragraph role="code" id="par_id3153785" xml-lang="en-US" l10n="U" oldref="38">Print Lof(#iNumber)</paragraph> -<paragraph role="code" id="par_id3151277" xml-lang="en-US" l10n="U" oldref="39">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3150786" xml-lang="en-US" l10n="U" oldref="41">end sub</paragraph> +<paragraph role="paragraph" id="par_id3156281" xml-lang="en-US" l10n="U">See also: <link href="text/sbasic/shared/03020201.xhp" name="Get"><item type="literal">Get</item></link> statement</paragraph> +<paragraph role="heading" id="hd_id3125863" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3155132" xml-lang="en-US" l10n="U">Put [#] FileNumber As Integer, [position], Variable</paragraph> +<paragraph role="heading" id="hd_id3153190" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3146120" xml-lang="en-US" l10n="U"><emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to.</paragraph> +<paragraph role="paragraph" id="par_id3155411" xml-lang="en-US" l10n="U"><emph>Position:</emph> For relative files (random access files), the number of the record that you want to write.</paragraph> +<paragraph role="paragraph" id="par_id3148576" xml-lang="en-US" l10n="U">For binary files (binary access), the position of the byte in the file where you want to start writing.</paragraph> +<paragraph role="paragraph" id="par_id3153729" xml-lang="en-US" l10n="U"><emph>Variable:</emph> Name of the variable that you want to write to the file.</paragraph> +<paragraph role="paragraph" id="par_id3146974" xml-lang="en-US" l10n="U">Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to.</paragraph> +<paragraph role="paragraph" id="par_id3155855" xml-lang="en-US" l10n="U">Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records.</paragraph> +<paragraph role="heading" id="hd_id3154491" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3149410" xml-lang="en-US" l10n="U">Sub ExampleRandomAccess</paragraph> +<paragraph role="code" id="par_id3149959" xml-lang="en-US" l10n="U">Dim iNumber As Integer</paragraph> +<paragraph role="code" id="par_id3154729" xml-lang="en-US" l10n="U">Dim sText As Variant REM Must be a variant type</paragraph> +<paragraph role="code" id="par_id3156286" xml-lang="en-US" l10n="U">Dim aFile As String</paragraph> +<paragraph role="code" id="par_id3149400" xml-lang="en-US" l10n="U">aFile = "c:\data.txt"</paragraph> +<paragraph role="code" id="par_id3149124" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3150330" xml-lang="en-US" l10n="U">Open aFile For Random As #iNumber Len=32</paragraph> +<paragraph role="code" id="par_id3156278" xml-lang="en-US" l10n="U">Seek #iNumber,1 REM Position to start writing</paragraph> +<paragraph role="code" id="par_id3153711" xml-lang="en-US" l10n="U">Put #iNumber,, "This is the first line of text" REM Fill line with text</paragraph> +<paragraph role="code" id="par_id3155446" xml-lang="en-US" l10n="U">Put #iNumber,, "This is the second line of text"</paragraph> +<paragraph role="code" id="par_id3154255" xml-lang="en-US" l10n="U">Put #iNumber,, "This is the third line of text"</paragraph> +<paragraph role="code" id="par_id3150045" xml-lang="en-US" l10n="U">Seek #iNumber,2</paragraph> +<paragraph role="code" id="par_id3145149" xml-lang="en-US" l10n="U">Get #iNumber,,sText</paragraph> +<paragraph role="code" id="par_id3147363" xml-lang="en-US" l10n="U">Print sText</paragraph> +<paragraph role="code" id="par_id3163806" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3149568" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3155607" xml-lang="en-US" l10n="U">Open aFile For Random As #iNumber Len=32</paragraph> +<paragraph role="code" id="par_id3154022" xml-lang="en-US" l10n="U">Get #iNumber,2,sText</paragraph> +<paragraph role="code" id="par_id3150940" xml-lang="en-US" l10n="U">Put #iNumber,,"This is new text"</paragraph> +<paragraph role="code" id="par_id3146132" xml-lang="en-US" l10n="U">Get #iNumber,1,sText</paragraph> +<paragraph role="code" id="par_id3154198" xml-lang="en-US" l10n="U">Get #iNumber,2,sText</paragraph> +<paragraph role="code" id="par_id3159102" xml-lang="en-US" l10n="U">Put #iNumber,20,"This is the text in record 20"</paragraph> +<paragraph role="code" id="par_id3153785" xml-lang="en-US" l10n="U">Print Lof(#iNumber)</paragraph> +<paragraph role="code" id="par_id3151277" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3150786" xml-lang="en-US" l10n="U">end sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/sbasic/shared/03120314.xhp b/main/helpcontent2/source/text/sbasic/shared/03120314.xhp index 1a929f02d6..c5d6a6ac1e 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03120314.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03120314.xhp @@ -33,56 +33,53 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3156027"> <bookmark_value>Split function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3156027" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03120314.xhp" name="Split Function [Runtime]">Split Function [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3155805" xml-lang="en-US" l10n="U" oldref="2">Returns an array of substrings from a string expression.</paragraph> +<paragraph role="heading" id="hd_id3156027" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03120314.xhp" name="Split Function [Runtime]">Split Function [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3155805" xml-lang="en-US" l10n="U">Returns an array of substrings from a string expression.</paragraph> </section> -<paragraph role="heading" id="hd_id3149177" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="paragraph" id="par_id3153824" xml-lang="en-US" l10n="U" oldref="4">Split (Text As String, delimiter, number)</paragraph> -<paragraph role="heading" id="hd_id3149763" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph> -<paragraph role="paragraph" id="par_id3154285" xml-lang="en-US" l10n="U" oldref="6">String</paragraph> -<paragraph role="heading" id="hd_id3145315" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3156023" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Text:</emph> Any string expression.</paragraph> -<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US" l10n="CHG" oldref="9"> -<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character.</paragraph> -<paragraph role="paragraph" id="par_id3145069" xml-lang="en-US" l10n="U" oldref="12"> -<emph>number (optional):</emph> The number of substrings that you want to return.</paragraph> -<paragraph role="heading" id="hd_id3150398" xml-lang="en-US" level="2" l10n="U" oldref="10">Example:</paragraph> +<paragraph role="heading" id="hd_id3149177" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="paragraph" id="par_id3153824" xml-lang="en-US" l10n="U">Split (Text As String, delimiter, number)</paragraph> +<paragraph role="heading" id="hd_id3149763" xml-lang="en-US" level="2" l10n="U">Return value:</paragraph> +<paragraph role="paragraph" id="par_id3154285" xml-lang="en-US" l10n="U">String</paragraph> +<paragraph role="heading" id="hd_id3145315" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3156023" xml-lang="en-US" l10n="U"><emph>Text:</emph> Any string expression.</paragraph> +<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US" l10n="CHG"><emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character.</paragraph> +<paragraph role="paragraph" id="par_id3145069" xml-lang="en-US" l10n="U"><emph>number (optional):</emph> The number of substrings that you want to return.</paragraph> +<paragraph role="heading" id="hd_id3150398" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> <section id="splitjoinex"> -<paragraph role="code" id="par_id3151212" xml-lang="en-US" l10n="U" oldref="11">Dim a(3)</paragraph> -<paragraph role="code" id="par_id3149204" xml-lang="en-US" l10n="U" oldref="13">Sub main()</paragraph> -<paragraph role="code" id="par_id3156214" xml-lang="en-US" l10n="U" oldref="14"> a(0) = "ABCDE"</paragraph> -<paragraph role="code" id="par_id3154217" xml-lang="en-US" l10n="U" oldref="15"> a(1) = 42</paragraph> -<paragraph role="code" id="par_id3145173" xml-lang="en-US" l10n="U" oldref="16"> a(2) = "MN"</paragraph> -<paragraph role="code" id="par_id3153104" xml-lang="en-US" l10n="U" oldref="17"> a(3) = "X Y Z"</paragraph> -<paragraph role="code" id="par_id3154684" xml-lang="en-US" l10n="U" oldref="18"> JStr = Join1()</paragraph> -<paragraph role="code" id="par_id3153367" xml-lang="en-US" l10n="U" oldref="19"> Call Show(JStr, Split1(JStr))</paragraph> -<paragraph role="code" id="par_id3145271" xml-lang="en-US" l10n="U" oldref="20"> JStr = Join2()</paragraph> -<paragraph role="code" id="par_id3155856" xml-lang="en-US" l10n="U" oldref="21"> Call Show(JStr, Split1(JStr))</paragraph> -<paragraph role="code" id="par_id3159155" xml-lang="en-US" l10n="U" oldref="22"> JStr = Join3()</paragraph> -<paragraph role="code" id="par_id3155413" xml-lang="en-US" l10n="U" oldref="23"> Call Show(JStr, Split1(JStr))</paragraph> -<paragraph role="code" id="par_id3153190" xml-lang="en-US" l10n="U" oldref="24">End Sub</paragraph> -<paragraph role="code" id="par_id3154320" xml-lang="en-US" l10n="U" oldref="25">Function Join1()</paragraph> -<paragraph role="code" id="par_id3145748" xml-lang="en-US" l10n="U" oldref="26"> Join1 = Join(a(), "abc")</paragraph> -<paragraph role="code" id="par_id3153142" xml-lang="en-US" l10n="U" oldref="45">End Function</paragraph> -<paragraph role="code" id="par_id3152462" xml-lang="en-US" l10n="U" oldref="27">Function Join2()</paragraph> -<paragraph role="code" id="par_id3146119" xml-lang="en-US" l10n="U" oldref="28"> Join2 = Join(a(), ",")</paragraph> -<paragraph role="code" id="par_id3154790" xml-lang="en-US" l10n="U" oldref="29">End Function</paragraph> -<paragraph role="code" id="par_id3147125" xml-lang="en-US" l10n="U" oldref="30">Function Join3()</paragraph> -<paragraph role="code" id="par_id3149377" xml-lang="en-US" l10n="U" oldref="31"> Join3 = Join(a())</paragraph> -<paragraph role="code" id="par_id3150114" xml-lang="en-US" l10n="U" oldref="32">End Function</paragraph> -<paragraph role="code" id="par_id3154729" xml-lang="en-US" l10n="U" oldref="33">Function Split1(aStr)</paragraph> -<paragraph role="code" id="par_id3145646" xml-lang="en-US" l10n="U" oldref="34"> Split1 = Split(aStr, "D")</paragraph> -<paragraph role="code" id="par_id3154512" xml-lang="en-US" l10n="U" oldref="35">End Function</paragraph> -<paragraph role="code" id="par_id3149400" xml-lang="en-US" l10n="U" oldref="36">Sub Show(JoinStr, TheArray)</paragraph> -<paragraph role="code" id="par_id3153948" xml-lang="en-US" l10n="U" oldref="37"> l = LBound(TheArray)</paragraph> -<paragraph role="code" id="par_id3146969" xml-lang="en-US" l10n="U" oldref="38"> u = UBound(TheArray)</paragraph> -<paragraph role="code" id="par_id3150752" xml-lang="en-US" l10n="U" oldref="39"> total$ = "=============================" + Chr$(13) + JoinStr + Chr$(13) + Chr$(13)</paragraph> -<paragraph role="code" id="par_id3148916" xml-lang="en-US" l10n="U" oldref="40"> For i = l To u</paragraph> -<paragraph role="code" id="par_id3154754" xml-lang="en-US" l10n="U" oldref="41"> total$ = total$ + TheArray(i) + Str(Len(TheArray(i))) + Chr$(13)</paragraph> -<paragraph role="code" id="par_id3156054" xml-lang="en-US" l10n="U" oldref="42"> Next i</paragraph> -<paragraph role="code" id="par_id3147338" xml-lang="en-US" l10n="U" oldref="43"> MsgBox total$</paragraph> -<paragraph role="code" id="par_id3155960" xml-lang="en-US" l10n="U" oldref="44">End Sub</paragraph> +<paragraph role="code" id="par_id3151212" xml-lang="en-US" l10n="U">Dim a(3)</paragraph> +<paragraph role="code" id="par_id3149204" xml-lang="en-US" l10n="U">Sub main()</paragraph> +<paragraph role="code" id="par_id3156214" xml-lang="en-US" l10n="U"> a(0) = "ABCDE"</paragraph> +<paragraph role="code" id="par_id3154217" xml-lang="en-US" l10n="U"> a(1) = 42</paragraph> +<paragraph role="code" id="par_id3145173" xml-lang="en-US" l10n="U"> a(2) = "MN"</paragraph> +<paragraph role="code" id="par_id3153104" xml-lang="en-US" l10n="U"> a(3) = "X Y Z"</paragraph> +<paragraph role="code" id="par_id3154684" xml-lang="en-US" l10n="U"> JStr = Join1()</paragraph> +<paragraph role="code" id="par_id3153367" xml-lang="en-US" l10n="U"> Call Show(JStr, Split1(JStr))</paragraph> +<paragraph role="code" id="par_id3145271" xml-lang="en-US" l10n="U"> JStr = Join2()</paragraph> +<paragraph role="code" id="par_id3155856" xml-lang="en-US" l10n="U"> Call Show(JStr, Split1(JStr))</paragraph> +<paragraph role="code" id="par_id3159155" xml-lang="en-US" l10n="U"> JStr = Join3()</paragraph> +<paragraph role="code" id="par_id3155413" xml-lang="en-US" l10n="U"> Call Show(JStr, Split1(JStr))</paragraph> +<paragraph role="code" id="par_id3153190" xml-lang="en-US" l10n="U">End Sub</paragraph> +<paragraph role="code" id="par_id3154320" xml-lang="en-US" l10n="U">Function Join1()</paragraph> +<paragraph role="code" id="par_id3145748" xml-lang="en-US" l10n="U"> Join1 = Join(a(), "abc")</paragraph> +<paragraph role="code" id="par_id3153142" xml-lang="en-US" l10n="U">End Function</paragraph> +<paragraph role="code" id="par_id3152462" xml-lang="en-US" l10n="U">Function Join2()</paragraph> +<paragraph role="code" id="par_id3146119" xml-lang="en-US" l10n="U"> Join2 = Join(a(), ",")</paragraph> +<paragraph role="code" id="par_id3154790" xml-lang="en-US" l10n="U">End Function</paragraph> +<paragraph role="code" id="par_id3147125" xml-lang="en-US" l10n="U">Function Join3()</paragraph> +<paragraph role="code" id="par_id3149377" xml-lang="en-US" l10n="U"> Join3 = Join(a())</paragraph> +<paragraph role="code" id="par_id3150114" xml-lang="en-US" l10n="U">End Function</paragraph> +<paragraph role="code" id="par_id3154729" xml-lang="en-US" l10n="U">Function Split1(aStr)</paragraph> +<paragraph role="code" id="par_id3145646" xml-lang="en-US" l10n="U"> Split1 = Split(aStr, "D")</paragraph> +<paragraph role="code" id="par_id3154512" xml-lang="en-US" l10n="U">End Function</paragraph> +<paragraph role="code" id="par_id3149400" xml-lang="en-US" l10n="U">Sub Show(JoinStr, TheArray)</paragraph> +<paragraph role="code" id="par_id3153948" xml-lang="en-US" l10n="U"> l = LBound(TheArray)</paragraph> +<paragraph role="code" id="par_id3146969" xml-lang="en-US" l10n="U"> u = UBound(TheArray)</paragraph> +<paragraph role="code" id="par_id3150752" xml-lang="en-US" l10n="U"> total$ = "=============================" + Chr$(13) + JoinStr + Chr$(13) + Chr$(13)</paragraph> +<paragraph role="code" id="par_id3148916" xml-lang="en-US" l10n="U"> For i = l To u</paragraph> +<paragraph role="code" id="par_id3154754" xml-lang="en-US" l10n="U"> total$ = total$ + TheArray(i) + Str(Len(TheArray(i))) + Chr$(13)</paragraph> +<paragraph role="code" id="par_id3156054" xml-lang="en-US" l10n="U"> Next i</paragraph> +<paragraph role="code" id="par_id3147338" xml-lang="en-US" l10n="U"> MsgBox total$</paragraph> +<paragraph role="code" id="par_id3155960" xml-lang="en-US" l10n="U">End Sub</paragraph> </section> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/01/06040200.xhp b/main/helpcontent2/source/text/shared/01/06040200.xhp index d95a6b9625..3f00ca6769 100644 --- a/main/helpcontent2/source/text/shared/01/06040200.xhp +++ b/main/helpcontent2/source/text/shared/01/06040200.xhp @@ -40,37 +40,37 @@ <bookmark_value>AutoCorrect function; pictures and frames</bookmark_value> </bookmark> <bookmark xml-lang="en-US" branch="hid/CUI_HID_OFAPAGE_AUTOCORR_REPLACE" id="bm_id3150502" localize="false"/> -<paragraph role="heading" id="hd_id3152876" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/01/06040200.xhp" name="Replace">Replace</link></paragraph> -<paragraph role="paragraph" id="par_id3151262" xml-lang="en-US" l10n="U" oldref="2"><ahelp hid="HID_OFAPAGE_AUTOCORR_REPLACE">Edits the replacement table for automatically correcting or replacing words or abbreviations in your document.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3152876" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/01/06040200.xhp" name="Replace">Replace</link></paragraph> +<paragraph role="paragraph" id="par_id3151262" xml-lang="en-US" l10n="U"><ahelp hid="HID_OFAPAGE_AUTOCORR_REPLACE">Edits the replacement table for automatically correcting or replacing words or abbreviations in your document.</ahelp></paragraph> </section> -<paragraph role="paragraph" id="par_id3149999" xml-lang="en-US" l10n="CHG" oldref="17"><switchinline select="appl"><caseinline select="WRITER">To enable the replacement table, choose <emph>Tools - AutoCorrect Options</emph>, click the <emph>Options</emph> tab, and then select <emph>Use replacement table</emph>. To use the replacement table while you type, choose <emph>Format - AutoCorrect - While Typing</emph>. +<paragraph role="paragraph" id="par_id3149999" xml-lang="en-US" l10n="CHG"><switchinline select="appl"><caseinline select="WRITER">To enable the replacement table, choose <emph>Tools - AutoCorrect Options</emph>, click the <emph>Options</emph> tab, and then select <emph>Use replacement table</emph>. To use the replacement table while you type, choose <emph>Format - AutoCorrect - While Typing</emph>. </caseinline></switchinline></paragraph> <section id="howtoget"> <embed href="text/shared/00/00000406.xhp#autokoersetzung"/> </section> <embed href="text/shared/01/06040300.xhp#sprache"/> <bookmark xml-lang="en-US" branch="hid/CUI_HID_OFACTL_AUTOCORR_REPLACE" id="bm_id3154810" localize="false"/> -<paragraph role="heading" id="hd_id3155321" xml-lang="en-US" level="2" l10n="U" oldref="3">Replacement table</paragraph> -<paragraph role="paragraph" id="par_id3152945" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="HID_OFACTL_AUTOCORR_REPLACE">Lists the entries for automatically replacing words or abbreviations while you type. To add an entry, enter text in the <emph>Replace</emph> and <emph>With</emph> boxes, and then click <emph>New</emph>. To edit an entry, select it, change the text in the <emph>With</emph> box, and then click <emph>Replace</emph>. To delete an entry, select it, and then click <emph> [...] -<paragraph role="paragraph" id="par_id3153349" xml-lang="en-US" l10n="U" oldref="14">You can use the AutoCorrect feature to apply a specific character format to a word or abbreviation. Select the formatted text in your document, open this dialog, clear the <emph>Text only</emph> box, and then enter the text that you want to replace in the <emph>Replace</emph> box.</paragraph> -<paragraph role="paragraph" id="par_id3154173" xml-lang="en-US" l10n="U" oldref="16"><switchinline select="appl"><caseinline select="WRITER">You can also include frames, graphics, and OLE objects in an AutoCorrect entry, so long as they are anchored <emph>as characters</emph> in the text. Select the frame, graphic or OLE object and at least one text character in front of and behind the object. Open this dialog, type a name for this AutoCorrect entry in the <emph>Replace</emph> box, and t [...] +<paragraph role="heading" id="hd_id3155321" xml-lang="en-US" level="2" l10n="U">Replacement table</paragraph> +<paragraph role="paragraph" id="par_id3152945" xml-lang="en-US" l10n="U"><ahelp hid="HID_OFACTL_AUTOCORR_REPLACE">Lists the entries for automatically replacing words or abbreviations while you type. To add an entry, enter text in the <emph>Replace</emph> and <emph>With</emph> boxes, and then click <emph>New</emph>. To edit an entry, select it, change the text in the <emph>With</emph> box, and then click <emph>Replace</emph>. To delete an entry, select it, and then click <emph>Delete</emp [...] +<paragraph role="paragraph" id="par_id3153349" xml-lang="en-US" l10n="U">You can use the AutoCorrect feature to apply a specific character format to a word or abbreviation. Select the formatted text in your document, open this dialog, clear the <emph>Text only</emph> box, and then enter the text that you want to replace in the <emph>Replace</emph> box.</paragraph> +<paragraph role="paragraph" id="par_id3154173" xml-lang="en-US" l10n="U"><switchinline select="appl"><caseinline select="WRITER">You can also include frames, graphics, and OLE objects in an AutoCorrect entry, so long as they are anchored <emph>as characters</emph> in the text. Select the frame, graphic or OLE object and at least one text character in front of and behind the object. Open this dialog, type a name for this AutoCorrect entry in the <emph>Replace</emph> box, and then click <e [...] </caseinline></switchinline></paragraph> <!-- removed HID OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT --> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT" id="bm_id1574449" localize="false"/> -<paragraph role="heading" id="hd_id3148943" xml-lang="en-US" level="3" l10n="U" oldref="5">Replace</paragraph> -<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT">Enter the word or abbreviation that you want to replace while you type.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3148943" xml-lang="en-US" level="3" l10n="U">Replace</paragraph> +<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT">Enter the word or abbreviation that you want to replace while you type.</ahelp></paragraph> <!-- removed HID OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE --> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE" id="bm_id6447340" localize="false"/> -<paragraph role="heading" id="hd_id3148947" xml-lang="en-US" level="3" l10n="U" oldref="7">With:</paragraph> -<paragraph role="paragraph" id="par_id3149456" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE">Enter the replacement text, graphic, frame, or OLE object that you want to replace the text in the <emph>Replace</emph> box. If you have selected text, a graphic, a frame, or an OLE object in your document, the relevant information is already entered here.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3148947" xml-lang="en-US" level="3" l10n="U">With:</paragraph> +<paragraph role="paragraph" id="par_id3149456" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE">Enter the replacement text, graphic, frame, or OLE object that you want to replace the text in the <emph>Replace</emph> box. If you have selected text, a graphic, a frame, or an OLE object in your document, the relevant information is already entered here.</ahelp></paragraph> <!-- removed HID OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY --> <bookmark xml-lang="en-US" branch="hid/cui:CheckBox:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY" id="bm_id8239997" localize="false"/> -<paragraph role="heading" id="hd_id3150400" xml-lang="en-US" level="3" l10n="U" oldref="9">Text only</paragraph> -<paragraph role="paragraph" id="par_id3153379" xml-lang="en-US" l10n="U" oldref="10"><ahelp hid="OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY">Saves the entry in the <emph>With</emph> box without formatting. When the replacement is made, the text uses the same format as the document text.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150400" xml-lang="en-US" level="3" l10n="U">Text only</paragraph> +<paragraph role="paragraph" id="par_id3153379" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY">Saves the entry in the <emph>With</emph> box without formatting. When the replacement is made, the text uses the same format as the document text.</ahelp></paragraph> <!-- removed HID OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE --> <bookmark xml-lang="en-US" branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE" id="bm_id8823511" localize="false"/> -<paragraph role="heading" id="hd_id3153797" xml-lang="en-US" level="2" l10n="U" oldref="11">New</paragraph> -<paragraph role="paragraph" id="par_id3153968" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE">Adds or replaces an entry in the replacement table.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153797" xml-lang="en-US" level="2" l10n="U">New</paragraph> +<paragraph role="paragraph" id="par_id3153968" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE">Adds or replaces an entry in the replacement table.</ahelp></paragraph> <embed href="text/shared/00/00000001.xhp#loeschen1"/> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/01/06040400.xhp b/main/helpcontent2/source/text/shared/01/06040400.xhp index 0e34296beb..0a3a1349dd 100644 --- a/main/helpcontent2/source/text/shared/01/06040400.xhp +++ b/main/helpcontent2/source/text/shared/01/06040400.xhp @@ -37,8 +37,8 @@ <bookmark_value>replacing;ordinal numbers</bookmark_value> <bookmark_value>ordinal numbers;replacing</bookmark_value> </bookmark><comment>renamed tab page from Custom Quotes to Localized Options, cws cbosdo01</comment> -<paragraph role="heading" id="hd_id3153899" xml-lang="en-US" level="1" l10n="U" oldref="15"><link href="text/shared/01/06040400.xhp" name="Localized Options">Localized Options</link></paragraph> -<paragraph role="paragraph" id="par_id3149748" xml-lang="en-US" l10n="U" oldref="16">Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text.</paragraph> +<paragraph role="heading" id="hd_id3153899" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/01/06040400.xhp" name="Localized Options">Localized Options</link></paragraph> +<paragraph role="paragraph" id="par_id3149748" xml-lang="en-US" l10n="U">Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text.</paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00000406.xhp#autokotyafz"/> @@ -46,36 +46,36 @@ <bookmark xml-lang="en-US" branch="hid/CUI_HID_OFAPAGE_QUOTE_SW_CLB" id="bm_id59906552" localize="false"/> <paragraph xml-lang="en-US" id="par_id31537173" role="paragraph" l10n="NEW"><ahelp hid=".">Select to apply the replacements while you type [T], or when you modify existing text [M].</ahelp></paragraph> <comment>new feature, cws cbosdo01. https://wiki.openoffice.org/wiki/Non_Breaking_Spaces_Before_Punctuation_In_French_(espaces_ins%C3%A9cables)</comment> -<paragraph xml-lang="en-US" id="hd_id3159300" role="heading" level="2" l10n="U" oldref="25">Add non breaking space before specific punctuation marks in French text</paragraph> -<paragraph xml-lang="en-US" id="par_id3153173" role="paragraph" l10n="U" oldref="27">Inserts a non breaking space before ";", "!", "?" and ":" when the character language is set to French (France, Belgium, Luxembourg, Monaco, or Switzerland) and before ":" only when the character language is set to French (Canada).</paragraph> +<paragraph xml-lang="en-US" id="hd_id3159300" role="heading" level="2" l10n="U">Add non breaking space before specific punctuation marks in French text</paragraph> +<paragraph xml-lang="en-US" id="par_id3153173" role="paragraph" l10n="U">Inserts a non breaking space before ";", "!", "?" and ":" when the character language is set to French (France, Belgium, Luxembourg, Monaco, or Switzerland) and before ":" only when the character language is set to French (Canada).</paragraph> <comment>moved two paras from 06040100.xhp, cws cbosdo01</comment> -<paragraph xml-lang="en-US" id="hd_id3159400" role="heading" level="2" l10n="U" oldref="25">Format ordinal number suffixes (1st -> 1^st)</paragraph> -<paragraph xml-lang="en-US" id="par_id3154173" role="paragraph" l10n="U" oldref="27">Formats the text characters of ordinals, such as 1st, 2nd, or 3rd, as superscripts. For example, in English text, 1st will be converted to 1^st.</paragraph> -<paragraph role="heading" id="hd_id3154682" xml-lang="en-US" level="2" l10n="U" oldref="17">Single quotes / Double quotes</paragraph> -<paragraph role="paragraph" id="par_id3152363" xml-lang="en-US" l10n="U" oldref="18">Specify the replacement characters to use for single or double quotation marks.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3159400" role="heading" level="2" l10n="U">Format ordinal number suffixes (1st -> 1^st)</paragraph> +<paragraph xml-lang="en-US" id="par_id3154173" role="paragraph" l10n="U">Formats the text characters of ordinals, such as 1st, 2nd, or 3rd, as superscripts. For example, in English text, 1st will be converted to 1^st.</paragraph> +<paragraph role="heading" id="hd_id3154682" xml-lang="en-US" level="2" l10n="U">Single quotes / Double quotes</paragraph> +<paragraph role="paragraph" id="par_id3152363" xml-lang="en-US" l10n="U">Specify the replacement characters to use for single or double quotation marks.</paragraph> <!-- removed HID OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_SGL_TYPO --> <!-- removed HID OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO --> <bookmark xml-lang="en-US" branch="hid/cui:Checkbox:RID_OFAPAGE_AUTOCORR_QUOTE:CB_SGL_TYPO" id="bm_id5906552" localize="false"/> <bookmark xml-lang="en-US" branch="hid/cui:CheckBox:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO" id="bm_id4584795" localize="false"/> -<paragraph role="heading" id="hd_id3156553" xml-lang="en-US" level="3" l10n="U" oldref="22">Replace</paragraph> -<paragraph role="paragraph" id="par_id3155616" xml-lang="en-US" l10n="U" oldref="23"><ahelp hid="OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO">Automatically replaces the default system symbol for single quotation marks with the special character that you specify.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3156553" xml-lang="en-US" level="3" l10n="U">Replace</paragraph> +<paragraph role="paragraph" id="par_id3155616" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO">Automatically replaces the default system symbol for single quotation marks with the special character that you specify.</ahelp></paragraph> <!-- removed HID OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_STARTQUOTE --> <!-- removed HID OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE --> <bookmark xml-lang="en-US" branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE" id="bm_id6259651" localize="false"/> <bookmark xml-lang="en-US" branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_STARTQUOTE" id="bm_id7007354" localize="false"/> -<paragraph role="heading" id="hd_id3153750" xml-lang="en-US" level="3" l10n="U" oldref="11">Start quote</paragraph> -<paragraph role="paragraph" id="par_id3152425" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE">Select the <link href="text/shared/01/04100000.xhp" name="special character">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153750" xml-lang="en-US" level="3" l10n="U">Start quote</paragraph> +<paragraph role="paragraph" id="par_id3152425" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE">Select the <link href="text/shared/01/04100000.xhp" name="special character">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp></paragraph> <!-- removed HID OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_ENDQUOTE --> <!-- removed HID OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE --> <bookmark xml-lang="en-US" branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE" id="bm_id6449476" localize="false"/> <bookmark xml-lang="en-US" branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_ENDQUOTE" id="bm_id6838282" localize="false"/> -<paragraph role="heading" id="hd_id3159233" xml-lang="en-US" level="3" l10n="U" oldref="13">End quote</paragraph> -<paragraph role="paragraph" id="par_id3147008" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE">Select the <link href="text/shared/01/04100000.xhp" name="special character">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3159233" xml-lang="en-US" level="3" l10n="U">End quote</paragraph> +<paragraph role="paragraph" id="par_id3147008" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE">Select the <link href="text/shared/01/04100000.xhp" name="special character">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp></paragraph> <!-- removed HID OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_DBL_STD --> <!-- removed HID OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD --> <bookmark xml-lang="en-US" branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD" id="bm_id4603106" localize="false"/> <bookmark xml-lang="en-US" branch="hid/cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_DBL_STD" id="bm_id3145542" localize="false"/> -<paragraph role="heading" id="hd_id3147089" xml-lang="en-US" level="3" l10n="U" oldref="19">Default</paragraph> -<paragraph role="paragraph" id="par_id3166460" xml-lang="en-US" l10n="U" oldref="20"><ahelp hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD">Resets the quotation marks to the default symbols.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147089" xml-lang="en-US" level="3" l10n="U">Default</paragraph> +<paragraph role="paragraph" id="par_id3166460" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD">Resets the quotation marks to the default symbols.</ahelp></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/explorer/database/05030100.xhp b/main/helpcontent2/source/text/shared/explorer/database/05030100.xhp index 4b9e4cb784..a653e6e547 100644 --- a/main/helpcontent2/source/text/shared/explorer/database/05030100.xhp +++ b/main/helpcontent2/source/text/shared/explorer/database/05030100.xhp @@ -30,38 +30,38 @@ </meta> <body> <section id="tabkop"> -<paragraph role="heading" id="hd_id3085157" xml-lang="en-US" level="1" l10n="U" oldref="28"><link href="text/shared/explorer/database/05030100.xhp" name="Copy Table">Copy Table</link></paragraph> -<paragraph role="paragraph" id="par_id3149264" xml-lang="en-US" l10n="CHG" oldref="29">You can copy a table by dragging and dropping the table onto the table area of a database file window. The <emph>Copy table</emph> dialog appears.</paragraph> +<paragraph role="heading" id="hd_id3085157" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/explorer/database/05030100.xhp" name="Copy Table">Copy Table</link></paragraph> +<paragraph role="paragraph" id="par_id3149264" xml-lang="en-US" l10n="CHG">You can copy a table by dragging and dropping the table onto the table area of a database file window. The <emph>Copy table</emph> dialog appears.</paragraph> </section> <bookmark xml-lang="en-US" branch="hid/DBACCESS_HID_TAB_WIZ_TABLENAME_EDIT" id="bm_id3154840" localize="false"/> -<paragraph role="heading" id="hd_id3154926" xml-lang="en-US" level="2" l10n="U" oldref="3">Table name</paragraph> -<paragraph role="paragraph" id="par_id3144740" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="HID_TAB_WIZ_TABLENAME_EDIT">Specifies a name for the copy.</ahelp> Some databases only accept names containing eight or fewer characters.</paragraph> -<paragraph role="heading" id="hd_id3154228" xml-lang="en-US" level="2" l10n="U" oldref="5">Options</paragraph> +<paragraph role="heading" id="hd_id3154926" xml-lang="en-US" level="2" l10n="U">Table name</paragraph> +<paragraph role="paragraph" id="par_id3144740" xml-lang="en-US" l10n="U"><ahelp hid="HID_TAB_WIZ_TABLENAME_EDIT">Specifies a name for the copy.</ahelp> Some databases only accept names containing eight or fewer characters.</paragraph> +<paragraph role="heading" id="hd_id3154228" xml-lang="en-US" level="2" l10n="U">Options</paragraph> <bookmark xml-lang="en-US" branch="hid/dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_DEFDATA" id="bm_id3147576" localize="false"/> -<paragraph role="heading" id="hd_id3157898" xml-lang="en-US" level="3" l10n="U" oldref="7">Definition and data</paragraph> -<paragraph role="paragraph" id="par_id3150178" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_DEFDATA">Creates a 1:1 copy of the database table.</ahelp> The table definition and the complete data are copied. The table definition includes the table structure and format from different data fields, including special field properties. The field contents supply the data.</paragraph> +<paragraph role="heading" id="hd_id3157898" xml-lang="en-US" level="3" l10n="U">Definition and data</paragraph> +<paragraph role="paragraph" id="par_id3150178" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_DEFDATA">Creates a 1:1 copy of the database table.</ahelp> The table definition and the complete data are copied. The table definition includes the table structure and format from different data fields, including special field properties. The field contents supply the data.</paragraph> <bookmark xml-lang="en-US" branch="hid/dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_DEF" id="bm_id3147226" localize="false"/> -<paragraph role="heading" id="hd_id3149346" xml-lang="en-US" level="3" l10n="U" oldref="9">Definition</paragraph> -<paragraph role="paragraph" id="par_id3156426" xml-lang="en-US" l10n="U" oldref="10"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_DEF">Copies only the table definition and not the corresponding data.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149346" xml-lang="en-US" level="3" l10n="U">Definition</paragraph> +<paragraph role="paragraph" id="par_id3156426" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_DEF">Copies only the table definition and not the corresponding data.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_VIEW" id="bm_id3149096" localize="false"/> -<paragraph role="heading" id="hd_id3143267" xml-lang="en-US" level="3" l10n="U" oldref="22">As table view</paragraph> -<paragraph role="paragraph" id="par_id3153311" xml-lang="en-US" l10n="U" oldref="23"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_VIEW">If the database supports Views, you can select this option only when a query is copied in a table container. This option enables you to see and edit a query as a normal table view.</ahelp> The table will be filtered in the view with a "Select" SQL statement.</paragraph> +<paragraph role="heading" id="hd_id3143267" xml-lang="en-US" level="3" l10n="U">As table view</paragraph> +<paragraph role="paragraph" id="par_id3153311" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_VIEW">If the database supports Views, you can select this option only when a query is copied in a table container. This option enables you to see and edit a query as a normal table view.</ahelp> The table will be filtered in the view with a "Select" SQL statement.</paragraph> <bookmark xml-lang="en-US" branch="hid/dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_APPENDDATA" id="bm_id3156347" localize="false"/> -<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="3" l10n="CHG" oldref="11">Append data<comment>see #i63815</comment></paragraph> -<paragraph role="paragraph" id="par_id3166410" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_APPENDDATA">Appends the data of the table to be copied to an existing table.</ahelp></paragraph> -<paragraph role="paragraph" id="par_id3147275" xml-lang="en-US" l10n="U" oldref="13">The table definition must be exactly the same so that data can be copied. Data cannot be copied if a data field in the target table has another format than the data field in the source table.</paragraph> -<paragraph role="paragraph" id="par_id3156117" xml-lang="en-US" l10n="U" oldref="31">Match the data field names in the <emph>Copy Table</emph> dialog on the <link href="text/shared/explorer/database/05030400.xhp" name="Apply Columns">Apply Columns</link> page.</paragraph> -<paragraph role="paragraph" id="par_id3153252" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_APPENDDATA">If the data cannot be attached, you will see a list of fields in the <emph>Column Info</emph> dialog whose data cannot be copied.</ahelp> If you confirm this dialog with OK, only the data that does not appear in the list will be attached.</paragraph> -<paragraph role="note" id="par_id3158430" xml-lang="en-US" l10n="U" oldref="15">If the fields of the target table have a smaller field length than in the source table when data is being attached, the source data fields will automatically be truncated to match the field lengths in the target table.</paragraph> +<paragraph role="heading" id="hd_id3155535" xml-lang="en-US" level="3" l10n="CHG">Append data<comment>see #i63815</comment></paragraph> +<paragraph role="paragraph" id="par_id3166410" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_APPENDDATA">Appends the data of the table to be copied to an existing table.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3147275" xml-lang="en-US" l10n="U">The table definition must be exactly the same so that data can be copied. Data cannot be copied if a data field in the target table has another format than the data field in the source table.</paragraph> +<paragraph role="paragraph" id="par_id3156117" xml-lang="en-US" l10n="U">Match the data field names in the <emph>Copy Table</emph> dialog on the <link href="text/shared/explorer/database/05030400.xhp" name="Apply Columns">Apply Columns</link> page.</paragraph> +<paragraph role="paragraph" id="par_id3153252" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_RADIOBUTTON_TAB_WIZ_COPYTABLE_RB_APPENDDATA">If the data cannot be attached, you will see a list of fields in the <emph>Column Info</emph> dialog whose data cannot be copied.</ahelp> If you confirm this dialog with OK, only the data that does not appear in the list will be attached.</paragraph> +<paragraph role="note" id="par_id3158430" xml-lang="en-US" l10n="U">If the fields of the target table have a smaller field length than in the source table when data is being attached, the source data fields will automatically be truncated to match the field lengths in the target table.</paragraph> <bookmark xml-lang="en-US" branch="index" id="bm_id3149164"> <bookmark_value>primary keys; defining</bookmark_value> </bookmark> <bookmark xml-lang="en-US" branch="hid/dbaccess:CheckBox:TAB_WIZ_COPYTABLE:CB_PRIMARY_COLUMN" id="bm_id3148564" localize="false"/> -<paragraph role="heading" id="hd_id3149164" xml-lang="en-US" level="3" l10n="U" oldref="24">Create primary key</paragraph> -<paragraph role="paragraph" id="par_id3155922" xml-lang="en-US" l10n="U" oldref="25"><ahelp hid="DBACCESS_CHECKBOX_TAB_WIZ_COPYTABLE_CB_PRIMARY_COLUMN">Automatically generates a primary key data field and fills it with values.</ahelp> You should always use this field, since a primary key must always be available in order to edit the table.</paragraph> +<paragraph role="heading" id="hd_id3149164" xml-lang="en-US" level="3" l10n="U">Create primary key</paragraph> +<paragraph role="paragraph" id="par_id3155922" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_CHECKBOX_TAB_WIZ_COPYTABLE_CB_PRIMARY_COLUMN">Automatically generates a primary key data field and fills it with values.</ahelp> You should always use this field, since a primary key must always be available in order to edit the table.</paragraph> <bookmark xml-lang="en-US" branch="hid/dbaccess:Edit:TAB_WIZ_COPYTABLE:ET_KEYNAME" id="bm_id3147303" localize="false"/> -<paragraph role="heading" id="hd_id3146794" xml-lang="en-US" level="3" l10n="U" oldref="26">Name</paragraph> -<paragraph role="paragraph" id="par_id3156343" xml-lang="en-US" l10n="U" oldref="27"><ahelp hid="DBACCESS_EDIT_TAB_WIZ_COPYTABLE_ET_KEYNAME">Specifies a name for the primary key generated. This name is optional.</ahelp></paragraph> -<paragraph role="paragraph" id="par_id3151056" xml-lang="en-US" l10n="U" oldref="33"><link href="text/shared/explorer/database/05030200.xhp" name="Next page">Next page</link></paragraph> +<paragraph role="heading" id="hd_id3146794" xml-lang="en-US" level="3" l10n="U">Name</paragraph> +<paragraph role="paragraph" id="par_id3156343" xml-lang="en-US" l10n="U"><ahelp hid="DBACCESS_EDIT_TAB_WIZ_COPYTABLE_ET_KEYNAME">Specifies a name for the primary key generated. This name is optional.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3151056" xml-lang="en-US" l10n="U"><link href="text/shared/explorer/database/05030200.xhp" name="Next page">Next page</link></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/guide/fontwork.xhp b/main/helpcontent2/source/text/shared/guide/fontwork.xhp index 7fd9090dec..e187fa9e6c 100644 --- a/main/helpcontent2/source/text/shared/guide/fontwork.xhp +++ b/main/helpcontent2/source/text/shared/guide/fontwork.xhp @@ -56,7 +56,7 @@ </listitem> <listitem> <bookmark xml-lang="en-US" branch="hid/SVX_HID_CTL_FONTWORK_FAVORITES" id="bm_id3156415" localize="false"/> -<paragraph role="paragraph" id="par_id3149761" xml-lang="en-US" l10n="U" oldref="55"><ahelp hid="." visibility="hidden">Select a Fontwork style and click OK to insert the Fontwork into your document. Double-click or Ctrl+double-click the Fontwork in your document to enter text edit mode and change the text.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3149761" xml-lang="en-US" l10n="U"><ahelp hid="." visibility="hidden">Select a Fontwork style and click OK to insert the Fontwork into your document. Double-click or Ctrl+double-click the Fontwork in your document to enter text edit mode and change the text.</ahelp></paragraph> <paragraph xml-lang="en-US" id="par_idN106A0" role="paragraph" l10n="NEW">In the <emph>Fontwork Gallery</emph> dialog, select a Fontwork style and click OK.</paragraph> <paragraph xml-lang="en-US" id="par_idN10755" role="paragraph" l10n="NEW">The Fontwork object is inserted into your document. Fontwork objects are Custom Shapes. Using the 3D Settings toolbar, you can switch the view at any time from 2D to 3D and back.</paragraph> </listitem> diff --git a/main/helpcontent2/source/text/shared/guide/standard_template.xhp b/main/helpcontent2/source/text/shared/guide/standard_template.xhp index 889c8fe17f..491b2ab33c 100644 --- a/main/helpcontent2/source/text/shared/guide/standard_template.xhp +++ b/main/helpcontent2/source/text/shared/guide/standard_template.xhp @@ -41,50 +41,50 @@ <bookmark_value>saving;templates</bookmark_value> <bookmark_value>resetting;templates</bookmark_value> </bookmark><comment>MW deleted "changing;"</comment> -<paragraph role="heading" id="hd_id3154285" xml-lang="en-US" level="1" l10n="U" oldref="36"><variable id="standard_template"><link href="text/shared/guide/standard_template.xhp" name="Changing Default Templates">Changing Default Templates</link> +<paragraph role="heading" id="hd_id3154285" xml-lang="en-US" level="1" l10n="U"><variable id="standard_template"><link href="text/shared/guide/standard_template.xhp" name="Changing Default Templates">Changing Default Templates</link> </variable></paragraph> <section id="text"> -<paragraph role="paragraph" id="par_id3152811" xml-lang="en-US" l10n="U" oldref="2">When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents.</paragraph> -<paragraph role="heading" id="hd_id3150792" xml-lang="en-US" level="2" l10n="U" oldref="3">Modifying Default Templates</paragraph> +<paragraph role="paragraph" id="par_id3152811" xml-lang="en-US" l10n="U">When you open a new document with <emph>File - New</emph>, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents.</paragraph> +<paragraph role="heading" id="hd_id3150792" xml-lang="en-US" level="2" l10n="U">Modifying Default Templates</paragraph> <list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3154365" xml-lang="en-US" l10n="U" oldref="4">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</paragraph> +<paragraph role="listitem" id="par_id3154365" xml-lang="en-US" l10n="U">First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template.</paragraph> </listitem> </list> -<paragraph role="note" id="par_id3159152" xml-lang="en-US" l10n="U" oldref="6">You can define a document template for each $[officename] module. The following describes how to proceed for text documents.</paragraph> +<paragraph role="note" id="par_id3159152" xml-lang="en-US" l10n="U">You can define a document template for each $[officename] module. The following describes how to proceed for text documents.</paragraph> <list type="ordered"> <listitem> -<paragraph role="paragraph" id="par_id3145748" xml-lang="en-US" l10n="U" oldref="8">Save the document by choosing <emph>File - Templates - Save</emph> and saving the document in the <emph>My Templates</emph> category.</paragraph> +<paragraph role="paragraph" id="par_id3145748" xml-lang="en-US" l10n="U">Save the document by choosing <emph>File - Templates - Save</emph> and saving the document in the <emph>My Templates</emph> category.</paragraph> </listitem> <listitem> -<paragraph role="paragraph" id="par_id3154011" xml-lang="en-US" l10n="U" oldref="9">Choose <emph>File - Templates - Organize</emph>.</paragraph> +<paragraph role="paragraph" id="par_id3154011" xml-lang="en-US" l10n="U">Choose <emph>File - Templates - Organize</emph>.</paragraph> </listitem> <listitem> -<paragraph role="paragraph" id="par_id3145799" xml-lang="en-US" l10n="CHG" oldref="11">Double-click <emph>My Templates</emph> in the list on the left. You will see the user-defined templates in the user directory specified under <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved and open the context menu or open [...] +<paragraph role="paragraph" id="par_id3145799" xml-lang="en-US" l10n="CHG">Double-click <emph>My Templates</emph> in the list on the left. You will see the user-defined templates in the user directory specified under <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Paths</emph>. Select the template you have just saved and open the context menu or open the submenu [...] </listitem> <listitem> -<paragraph role="paragraph" id="par_id3146901" xml-lang="en-US" l10n="U" oldref="26">Choose <emph>Set As Default Template</emph>. The next time you open a new text document, the new document will be based on the new default template.</paragraph> +<paragraph role="paragraph" id="par_id3146901" xml-lang="en-US" l10n="U">Choose <emph>Set As Default Template</emph>. The next time you open a new text document, the new document will be based on the new default template.</paragraph> </listitem> </list> -<paragraph role="heading" id="hd_id3153947" xml-lang="en-US" level="2" l10n="U" oldref="27">Resetting Default Templates</paragraph> -<paragraph role="paragraph" id="par_id3156276" xml-lang="en-US" l10n="U" oldref="12">To reset the modified text template to the original default template:</paragraph> +<paragraph role="heading" id="hd_id3153947" xml-lang="en-US" level="2" l10n="U">Resetting Default Templates</paragraph> +<paragraph role="paragraph" id="par_id3156276" xml-lang="en-US" l10n="U">To reset the modified text template to the original default template:</paragraph> <list type="ordered"> <listitem> -<paragraph role="listitem" id="par_id3146792" xml-lang="en-US" l10n="U" oldref="29">Choose <emph>File - Templates - Organize</emph>.</paragraph> +<paragraph role="listitem" id="par_id3146792" xml-lang="en-US" l10n="U">Choose <emph>File - Templates - Organize</emph>.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3153714" xml-lang="en-US" l10n="U" oldref="32">Open the context menu and choose <emph>Reset default template</emph>. In the submenu, select the document type whose default setting you want to restore. Thereafter, when you open an empty text document, it will again correspond to the $[officename] default template for text documents.</paragraph> +<paragraph role="listitem" id="par_id3153714" xml-lang="en-US" l10n="U">Open the context menu and choose <emph>Reset default template</emph>. In the submenu, select the document type whose default setting you want to restore. Thereafter, when you open an empty text document, it will again correspond to the $[officename] default template for text documents.</paragraph> </listitem> </list> -<paragraph role="heading" id="hd_id3153764" xml-lang="en-US" level="2" l10n="U" oldref="13">Using Custom Templates</paragraph> -<paragraph role="paragraph" id="par_id3150386" xml-lang="en-US" l10n="CHG" oldref="14">There are several ways to make your work easier by using your own custom templates.</paragraph> -<paragraph role="heading" id="hd_id3149109" xml-lang="en-US" level="3" l10n="U" oldref="15">Templates in the Template Folder</paragraph> -<paragraph role="paragraph" id="par_id3146918" xml-lang="en-US" l10n="CHG" oldref="16">You can save a new template with <emph>File - Templates - Save</emph> or by selecting "Template" file type in any Save dialog. Save the template in the user directory specified under <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Paths</emph> to be able to access the template [...] -<paragraph role="tip" id="par_id3155960" xml-lang="en-US" l10n="U" oldref="33">You may need to update the view of the templates in the dialog before you can see a newly created template. In this case, choose <emph>File - Templates - Organize</emph> and in the submenu of the <emph>Commands</emph> button, choose <emph>Update</emph>.</paragraph> -<paragraph role="paragraph" id="par_id3147343" xml-lang="en-US" l10n="U" oldref="17">To open the template for editing, choose <emph>File - Templates - Edit</emph>.</paragraph> +<paragraph role="heading" id="hd_id3153764" xml-lang="en-US" level="2" l10n="U">Using Custom Templates</paragraph> +<paragraph role="paragraph" id="par_id3150386" xml-lang="en-US" l10n="CHG">There are several ways to make your work easier by using your own custom templates.</paragraph> +<paragraph role="heading" id="hd_id3149109" xml-lang="en-US" level="3" l10n="U">Templates in the Template Folder</paragraph> +<paragraph role="paragraph" id="par_id3146918" xml-lang="en-US" l10n="CHG">You can save a new template with <emph>File - Templates - Save</emph> or by selecting "Template" file type in any Save dialog. Save the template in the user directory specified under <emph><switchinline select="sys"><caseinline select="MAC">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Paths</emph> to be able to access the template from within [...] +<paragraph role="tip" id="par_id3155960" xml-lang="en-US" l10n="U">You may need to update the view of the templates in the dialog before you can see a newly created template. In this case, choose <emph>File - Templates - Organize</emph> and in the submenu of the <emph>Commands</emph> button, choose <emph>Update</emph>.</paragraph> +<paragraph role="paragraph" id="par_id3147343" xml-lang="en-US" l10n="U">To open the template for editing, choose <emph>File - Templates - Edit</emph>.</paragraph> </section> <section id="relatedtopics"> -<paragraph role="paragraph" id="par_id3147315" xml-lang="en-US" l10n="U" oldref="37"><link href="text/shared/01/01110000.xhp" name="Templates">Templates</link></paragraph> +<paragraph role="paragraph" id="par_id3147315" xml-lang="en-US" l10n="U"><link href="text/shared/01/01110000.xhp" name="Templates">Templates</link></paragraph> <switch select="appl"> <case select="WRITER"><embed href="text/swriter/guide/template_default.xhp#template_default"/> </case> diff --git a/main/helpcontent2/source/text/shared/optionen/01011000.xhp b/main/helpcontent2/source/text/shared/optionen/01011000.xhp index f5cb0d61c4..5ae572ec08 100644 --- a/main/helpcontent2/source/text/shared/optionen/01011000.xhp +++ b/main/helpcontent2/source/text/shared/optionen/01011000.xhp @@ -36,42 +36,42 @@ <bookmark_value>cache for graphics</bookmark_value> <bookmark_value>Quickstarter</bookmark_value> </bookmark><comment>MW moved "quickstarter" to the top of page and corrected a typo.</comment> -<paragraph role="heading" id="hd_id3157909" xml-lang="en-US" level="1" l10n="U" oldref="25"><link href="text/shared/optionen/01011000.xhp" name="Memory">Memory</link></paragraph> -<paragraph role="paragraph" id="par_id3154307" xml-lang="en-US" l10n="CHG" oldref="26"><ahelp hid=".">Defines the settings for the graphics cache and the number of steps you can undo.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3157909" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/optionen/01011000.xhp" name="Memory">Memory</link></paragraph> +<paragraph role="paragraph" id="par_id3154307" xml-lang="en-US" l10n="CHG"><ahelp hid=".">Defines the settings for the graphics cache and the number of steps you can undo.</ahelp></paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00000406.xhp#arbeit"/> </section> -<paragraph role="heading" id="hd_id3155390" xml-lang="en-US" level="2" l10n="U" oldref="1">Undo</paragraph> -<paragraph role="paragraph" id="par_id3145673" xml-lang="en-US" l10n="U" oldref="2">Defines the maximum number of reverse steps allowed.</paragraph> +<paragraph role="heading" id="hd_id3155390" xml-lang="en-US" level="2" l10n="U">Undo</paragraph> +<paragraph role="paragraph" id="par_id3145673" xml-lang="en-US" l10n="U">Defines the maximum number of reverse steps allowed.</paragraph> <!-- removed HID OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_ED_UNDO --> <bookmark xml-lang="en-US" branch="hid/cui:NumericField:OFA_TP_MEMORY:ED_UNDO" id="bm_id2490005" localize="false"/> -<paragraph role="heading" id="hd_id3153881" xml-lang="en-US" level="3" l10n="U" oldref="3">Number of steps</paragraph> -<paragraph role="paragraph" id="par_id3148685" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_ED_UNDO">You can specify the number of steps which can be undone by selecting a number from the list.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3147530" xml-lang="en-US" level="2" l10n="U" oldref="10">Graphics cache</paragraph> -<paragraph role="paragraph" id="par_id3145069" xml-lang="en-US" l10n="U" oldref="11">The graphics cache saves the graphics contained in a document in your computer's main memory. This means that the attributes of a graphic stored in the cache do not have to be re-calculated if you return to the page containing the graphic after scrolling through a document.</paragraph> +<paragraph role="heading" id="hd_id3153881" xml-lang="en-US" level="3" l10n="U">Number of steps</paragraph> +<paragraph role="paragraph" id="par_id3148685" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_ED_UNDO">You can specify the number of steps which can be undone by selecting a number from the list.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147530" xml-lang="en-US" level="2" l10n="U">Graphics cache</paragraph> +<paragraph role="paragraph" id="par_id3145069" xml-lang="en-US" l10n="U">The graphics cache saves the graphics contained in a document in your computer's main memory. This means that the attributes of a graphic stored in the cache do not have to be re-calculated if you return to the page containing the graphic after scrolling through a document.</paragraph> <!-- removed HID OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_NF_GRAPHICCACHE --> <bookmark xml-lang="en-US" branch="hid/cui:NumericField:OFA_TP_MEMORY:NF_GRAPHICCACHE" id="bm_id8346201" localize="false"/> -<paragraph role="heading" id="hd_id3154924" xml-lang="en-US" level="3" l10n="U" oldref="12">Use for $[officename] (MB)</paragraph> -<paragraph role="paragraph" id="par_id3152813" xml-lang="en-US" l10n="U" oldref="13"><ahelp hid="OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_NF_GRAPHICCACHE">Specifies the total cache size for all graphics.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154924" xml-lang="en-US" level="3" l10n="U">Use for $[officename] (MB)</paragraph> +<paragraph role="paragraph" id="par_id3152813" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_NF_GRAPHICCACHE">Specifies the total cache size for all graphics.</ahelp></paragraph> <!-- removed HID OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_NF_GRAPHICOBJECTCACHE --> <bookmark xml-lang="en-US" branch="hid/cui:NumericField:OFA_TP_MEMORY:NF_GRAPHICOBJECTCACHE" id="bm_id3981749" localize="false"/> -<paragraph role="heading" id="hd_id3150359" xml-lang="en-US" level="3" l10n="U" oldref="14">Memory per object (MB)</paragraph> -<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" l10n="U" oldref="15"><ahelp hid="OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_NF_GRAPHICOBJECTCACHE">Specifies that objects which are larger than the selected megabytes will not be placed in the cache.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150359" xml-lang="en-US" level="3" l10n="U">Memory per object (MB)</paragraph> +<paragraph role="paragraph" id="par_id3148797" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_NF_GRAPHICOBJECTCACHE">Specifies that objects which are larger than the selected megabytes will not be placed in the cache.</ahelp></paragraph> <!-- removed HID OFFMGR_TIMEFIELD_OFA_TP_MEMORY_TF_GRAPHICOBJECTTIME --> <bookmark xml-lang="en-US" branch="hid/cui:TimeField:OFA_TP_MEMORY:TF_GRAPHICOBJECTTIME" id="bm_id1587878" localize="false"/> -<paragraph role="heading" id="hd_id3148920" xml-lang="en-US" level="3" l10n="U" oldref="16">Remove from memory after (hh:mm)</paragraph> -<paragraph role="paragraph" id="par_id3148674" xml-lang="en-US" l10n="U" oldref="17"><ahelp hid="OFFMGR_TIMEFIELD_OFA_TP_MEMORY_TF_GRAPHICOBJECTTIME">Specifies the time that each graphic remains in the cache in hours and minutes.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3156212" xml-lang="en-US" level="2" l10n="U" oldref="18">Cache for inserted objects</paragraph> +<paragraph role="heading" id="hd_id3148920" xml-lang="en-US" level="3" l10n="U">Remove from memory after (hh:mm)</paragraph> +<paragraph role="paragraph" id="par_id3148674" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR_TIMEFIELD_OFA_TP_MEMORY_TF_GRAPHICOBJECTTIME">Specifies the time that each graphic remains in the cache in hours and minutes.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3156212" xml-lang="en-US" level="2" l10n="U">Cache for inserted objects</paragraph> <!-- removed HID OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_NF_OLECACHE --> <bookmark xml-lang="en-US" branch="hid/cui:NumericField:OFA_TP_MEMORY:NF_OLECACHE" id="bm_id5088045" localize="false"/> -<paragraph role="heading" id="hd_id3147085" xml-lang="en-US" level="3" l10n="U" oldref="19">Number of objects</paragraph> -<paragraph role="paragraph" id="par_id3153192" xml-lang="en-US" l10n="U" oldref="20"><ahelp hid="OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_NF_OLECACHE">Choose the maximum number of OLE objects that are pooled in the cache.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3145171" xml-lang="en-US" level="2" l10n="CHG" oldref="21">$[officename] Quickstarter</paragraph> +<paragraph role="heading" id="hd_id3147085" xml-lang="en-US" level="3" l10n="U">Number of objects</paragraph> +<paragraph role="paragraph" id="par_id3153192" xml-lang="en-US" l10n="U"><ahelp hid="OFFMGR_NUMERICFIELD_OFA_TP_MEMORY_NF_OLECACHE">Choose the maximum number of OLE objects that are pooled in the cache.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3145171" xml-lang="en-US" level="2" l10n="CHG">$[officename] Quickstarter</paragraph> <!-- removed HID OFFMGR_CHECKBOX_OFA_TP_MEMORY_CB_QUICKLAUNCH --> <bookmark xml-lang="en-US" branch="hid/cui:CheckBox:OFA_TP_MEMORY:CB_QUICKLAUNCH" id="bm_id4756004" localize="false"/> -<paragraph role="heading" id="hd_id3155429" xml-lang="en-US" level="3" l10n="CHG" oldref="22"><switchinline select="sys"><caseinline select="WIN">Load $[officename] during system start-up +<paragraph role="heading" id="hd_id3155429" xml-lang="en-US" level="3" l10n="CHG"><switchinline select="sys"><caseinline select="WIN">Load $[officename] during system start-up </caseinline><defaultinline>Enable systray Quickstarter</defaultinline></switchinline><comment>UFI: new text seen in m187, see CWS gtkquickstart</comment></paragraph> -<paragraph role="paragraph" id="par_id3152940" xml-lang="en-US" l10n="CHG" oldref="23"><ahelp hid="OFFMGR_CHECKBOX_OFA_TP_MEMORY_CB_QUICKLAUNCH">Mark this check box if you want $[officename] to enable quickstart. This option is available if the Quickstart module has been installed.</ahelp><comment>UFI: had to remove explanation because on Windows it is at start-up, while on Unix it is a user-systray feature only. Cannot have switches inside AHID text.</comment></paragraph> +<paragraph role="paragraph" id="par_id3152940" xml-lang="en-US" l10n="CHG"><ahelp hid="OFFMGR_CHECKBOX_OFA_TP_MEMORY_CB_QUICKLAUNCH">Mark this check box if you want $[officename] to enable quickstart. This option is available if the Quickstart module has been installed.</ahelp><comment>UFI: had to remove explanation because on Windows it is at start-up, while on Unix it is a user-systray feature only. Cannot have switches inside AHID text.</comment></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/optionen/01020100.xhp b/main/helpcontent2/source/text/shared/optionen/01020100.xhp index 82a52e9ddc..8c7a3f37cf 100644 --- a/main/helpcontent2/source/text/shared/optionen/01020100.xhp +++ b/main/helpcontent2/source/text/shared/optionen/01020100.xhp @@ -35,42 +35,42 @@ <bookmark_value>proxy settings</bookmark_value> </bookmark> <bookmark xml-lang="en-US" branch="hid/CUI_HID_OPTIONS_PROXY" id="bm_id3154927" localize="false"/> -<paragraph role="heading" id="hd_id3156414" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/optionen/01020100.xhp" name="Proxy">Proxy</link></paragraph> +<paragraph role="heading" id="hd_id3156414" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/optionen/01020100.xhp" name="Proxy">Proxy</link></paragraph> </section> -<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US" l10n="U" oldref="32"><link href="text/shared/00/00000002.xhp#proxy" name="Proxy servers">Proxy servers</link> for accessing the Internet can be set up manually as needed.</paragraph> +<paragraph role="paragraph" id="par_id3145090" xml-lang="en-US" l10n="U"><link href="text/shared/00/00000002.xhp#proxy" name="Proxy servers">Proxy servers</link> for accessing the Internet can be set up manually as needed.</paragraph> <section id="howtoget"> <embed href="text/shared/00/00000406.xhp#internet1"/> </section> -<paragraph role="heading" id="hd_id3147577" xml-lang="en-US" level="2" l10n="U" oldref="3">Settings</paragraph> -<paragraph role="paragraph" id="par_id3153748" xml-lang="en-US" l10n="U" oldref="4">Defines the settings for the <link href="text/shared/00/00000002.xhp#proxy" name="proxy server">proxy server</link>.</paragraph> +<paragraph role="heading" id="hd_id3147577" xml-lang="en-US" level="2" l10n="U">Settings</paragraph> +<paragraph role="paragraph" id="par_id3153748" xml-lang="en-US" l10n="U">Defines the settings for the <link href="text/shared/00/00000002.xhp#proxy" name="proxy server">proxy server</link>.</paragraph> <bookmark xml-lang="en-US" branch="hid/cui:ListBox:RID_SVXPAGE_INET_PROXY:LB_PROXYMODE" id="bm_id3156347" localize="false"/> -<paragraph role="heading" id="hd_id3151110" xml-lang="en-US" level="3" l10n="U" oldref="8">Proxy server</paragraph> -<paragraph role="paragraph" id="par_id3147275" xml-lang="en-US" l10n="U" oldref="9"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_INET_PROXY:LB_PROXYMODE">Specifies the type of proxy definition.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3147574" xml-lang="en-US" level="4" l10n="U" oldref="10">None</paragraph> -<paragraph role="paragraph" id="par_id3148685" xml-lang="en-US" l10n="U" oldref="11">Accesses the Internet without a proxy server. Allows you to set up a connection directly on your computer to an Internet provider that does not use a proxy.</paragraph> -<paragraph role="heading" id="hd_id3150984" xml-lang="en-US" level="4" l10n="U" oldref="14">Manual</paragraph> -<paragraph role="paragraph" id="par_id3156155" xml-lang="en-US" l10n="U" oldref="15">Lets you enter the proxy server manually. Specify the proxy servers in accordance with your Internet service. Ask your system administrator for the proxies and ports to enter.</paragraph> -<paragraph role="tip" id="par_id3148943" xml-lang="en-US" l10n="U" oldref="29">Type server names without the protocol prefix. For example, type www.example.com, not http://www.example.com.</paragraph> +<paragraph role="heading" id="hd_id3151110" xml-lang="en-US" level="3" l10n="U">Proxy server</paragraph> +<paragraph role="paragraph" id="par_id3147275" xml-lang="en-US" l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_INET_PROXY:LB_PROXYMODE">Specifies the type of proxy definition.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147574" xml-lang="en-US" level="4" l10n="U">None</paragraph> +<paragraph role="paragraph" id="par_id3148685" xml-lang="en-US" l10n="U">Accesses the Internet without a proxy server. Allows you to set up a connection directly on your computer to an Internet provider that does not use a proxy.</paragraph> +<paragraph role="heading" id="hd_id3150984" xml-lang="en-US" level="4" l10n="U">Manual</paragraph> +<paragraph role="paragraph" id="par_id3156155" xml-lang="en-US" l10n="U">Lets you enter the proxy server manually. Specify the proxy servers in accordance with your Internet service. Ask your system administrator for the proxies and ports to enter.</paragraph> +<paragraph role="tip" id="par_id3148943" xml-lang="en-US" l10n="U">Type server names without the protocol prefix. For example, type www.example.com, not http://www.example.com.</paragraph> <paragraph role="heading" id="par_idN10684" xml-lang="en-US" level="4" l10n="NEW">System</paragraph> <paragraph role="paragraph" id="par_idN10688" xml-lang="en-US" l10n="NEW">On Windows or UNIX systems using GNOME or KDE, this option tells %PRODUCTNAME to use the system settings. You must restart %PRODUCTNAME to initiate this setting.<comment>UFI: see spec "System-Settings"</comment></paragraph> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTP_PROXY" id="bm_id3154346" localize="false"/> -<paragraph role="heading" id="hd_id3148948" xml-lang="en-US" level="3" l10n="U" oldref="16">HTTP proxy</paragraph> -<paragraph role="paragraph" id="par_id3154923" xml-lang="en-US" l10n="U" oldref="17"><ahelp hid="SVX:EDIT:RID_SVXPAGE_INET_PROXY:ED_HTTP_PROXY">Type the name of the proxy server for <link href="text/shared/00/00000002.xhp#http" name="HTTP">HTTP</link>.</ahelp> Type the port in the right-hand field.</paragraph> +<paragraph role="heading" id="hd_id3148948" xml-lang="en-US" level="3" l10n="U">HTTP proxy</paragraph> +<paragraph role="paragraph" id="par_id3154923" xml-lang="en-US" l10n="U"><ahelp hid="SVX:EDIT:RID_SVXPAGE_INET_PROXY:ED_HTTP_PROXY">Type the name of the proxy server for <link href="text/shared/00/00000002.xhp#http" name="HTTP">HTTP</link>.</ahelp> Type the port in the right-hand field.</paragraph> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTPS_PROXY" id="bm_id431531" localize="false"/> <paragraph role="heading" id="hd_id9971922" xml-lang="en-US" level="3" l10n="NEW">HTTPS proxy</paragraph> <paragraph role="paragraph" id="par_id5319071" xml-lang="en-US" l10n="NEW"><ahelp hid=".">Type the name of the proxy server for HTTPS. Type the port in the right-hand field.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_SVXPAGE_INET_PROXY:ED_FTP_PROXY" id="bm_id3153360" localize="false"/> -<paragraph role="heading" id="hd_id3150543" xml-lang="en-US" level="3" l10n="U" oldref="33">FTP proxy</paragraph> -<paragraph role="paragraph" id="par_id3154138" xml-lang="en-US" l10n="U" oldref="34"><ahelp hid="SVX_EDIT_RID_SVXPAGE_INET_PROXY_ED_FTP_PROXY">Type the name of the proxy server for <link href="text/shared/00/00000002.xhp#ftp" name="FTP">FTP</link>.</ahelp> Type the port in the right-hand field.</paragraph> +<paragraph role="heading" id="hd_id3150543" xml-lang="en-US" level="3" l10n="U">FTP proxy</paragraph> +<paragraph role="paragraph" id="par_id3154138" xml-lang="en-US" l10n="U"><ahelp hid="SVX_EDIT_RID_SVXPAGE_INET_PROXY_ED_FTP_PROXY">Type the name of the proxy server for <link href="text/shared/00/00000002.xhp#ftp" name="FTP">FTP</link>.</ahelp> Type the port in the right-hand field.</paragraph> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_SVXPAGE_INET_PROXY:ED_NOPROXYFOR" id="bm_id3154908" localize="false"/> -<paragraph role="heading" id="hd_id3125863" xml-lang="en-US" level="3" l10n="U" oldref="24">No proxy for</paragraph> -<paragraph role="paragraph" id="par_id3151178" xml-lang="en-US" l10n="U" oldref="25"><ahelp hid="SVX:EDIT:RID_SVXPAGE_INET_PROXY:ED_NOPROXYFOR">Specifies the names of the servers that do not require any proxy servers, separated by semicolons.</ahelp> These are servers addressed in your local network, and servers used for video and audio streaming, for example.</paragraph> -<paragraph role="paragraph" id="par_id3145171" xml-lang="en-US" l10n="U" oldref="26">You can also use placeholders for the names of hosts and domains. For example, type *.sun.com to address all the hosts in the sun.com domain without proxy.</paragraph> +<paragraph role="heading" id="hd_id3125863" xml-lang="en-US" level="3" l10n="U">No proxy for</paragraph> +<paragraph role="paragraph" id="par_id3151178" xml-lang="en-US" l10n="U"><ahelp hid="SVX:EDIT:RID_SVXPAGE_INET_PROXY:ED_NOPROXYFOR">Specifies the names of the servers that do not require any proxy servers, separated by semicolons.</ahelp> These are servers addressed in your local network, and servers used for video and audio streaming, for example.</paragraph> +<paragraph role="paragraph" id="par_id3145171" xml-lang="en-US" l10n="U">You can also use placeholders for the names of hosts and domains. For example, type *.sun.com to address all the hosts in the sun.com domain without proxy.</paragraph> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTP_PORT" id="bm_id3152920" localize="false"/> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTPS_PORT" id="bm_id3139439" localize="false"/> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_SVXPAGE_INET_PROXY:ED_FTP_PORT" id="bm_id3147229" localize="false"/> <bookmark xml-lang="en-US" branch="hid/cui:Edit:RID_SVXPAGE_INET_PROXY:ED_SOCKS_PORT" id="bm_id3148674" localize="false"/> -<paragraph role="heading" id="hd_id3149808" xml-lang="en-US" level="3" l10n="U" oldref="27">Port</paragraph> -<paragraph role="paragraph" id="par_id3153666" xml-lang="en-US" l10n="U" oldref="28"><ahelp hid="SVX:EDIT:RID_SVXPAGE_INET_PROXY:ED_SOCKS_PORT">Type the port for the corresponding proxy server.</ahelp> The maximum value of a port number is fixed at 65535.</paragraph> +<paragraph role="heading" id="hd_id3149808" xml-lang="en-US" level="3" l10n="U">Port</paragraph> +<paragraph role="paragraph" id="par_id3153666" xml-lang="en-US" l10n="U"><ahelp hid="SVX:EDIT:RID_SVXPAGE_INET_PROXY:ED_SOCKS_PORT">Type the port for the corresponding proxy server.</ahelp> The maximum value of a port number is fixed at 65535.</paragraph> </body> </helpdocument>