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 b9e67af34e Remove 'oldref' entries (work in progress) b9e67af34e is described below commit b9e67af34edfe907aad38b15b5442a192b7bd464 Author: mseidel <msei...@apache.org> AuthorDate: Sun Feb 16 14:23:34 2025 +0100 Remove 'oldref' entries (work in progress) (cherry picked from commit 72b84558979a0665883a3fe8b193179cd239c447) --- .../source/text/sbasic/shared/03020303.xhp | 71 +++++++++++----------- .../source/text/shared/01/02230100.xhp | 40 ++++++------ .../source/text/shared/02/09070000.xhp | 31 +++++----- .../source/text/shared/guide/data_tabledefine.xhp | 31 +++++----- .../source/text/swriter/00/00000406.xhp | 70 ++++++++------------- 5 files changed, 107 insertions(+), 136 deletions(-) diff --git a/main/helpcontent2/source/text/sbasic/shared/03020303.xhp b/main/helpcontent2/source/text/sbasic/shared/03020303.xhp index 8ab1408ea9..1bc14315ae 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03020303.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03020303.xhp @@ -33,45 +33,44 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3156024"> <bookmark_value>Lof function</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03020303.xhp" name="Lof Function [Runtime]">Lof Function [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3146794" xml-lang="en-US" l10n="U" oldref="2">Returns the size of an open file in bytes.</paragraph> +<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03020303.xhp" name="Lof Function [Runtime]">Lof Function [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3146794" xml-lang="en-US" l10n="U">Returns the size of an open file in bytes.</paragraph> </section> -<paragraph role="heading" id="hd_id3153380" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="code" id="par_id3150359" xml-lang="en-US" l10n="U" oldref="4">Lof (FileNumber)</paragraph> -<paragraph role="heading" id="hd_id3154141" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph> -<paragraph role="paragraph" id="par_id3147230" xml-lang="en-US" l10n="U" oldref="6">Long</paragraph> -<paragraph role="heading" id="hd_id3156281" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3150869" xml-lang="en-US" l10n="U" oldref="8"> -<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement.</paragraph> -<paragraph role="tip" id="par_id3147349" xml-lang="en-US" l10n="U" oldref="9">To obtain the length of a file that is not open, use the <emph>FileLen</emph> function.</paragraph> +<paragraph role="heading" id="hd_id3153380" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="code" id="par_id3150359" xml-lang="en-US" l10n="U">Lof (FileNumber)</paragraph> +<paragraph role="heading" id="hd_id3154141" xml-lang="en-US" level="2" l10n="U">Return value:</paragraph> +<paragraph role="paragraph" id="par_id3147230" xml-lang="en-US" l10n="U">Long</paragraph> +<paragraph role="heading" id="hd_id3156281" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3150869" xml-lang="en-US" l10n="U"><emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement.</paragraph> +<paragraph role="tip" id="par_id3147349" xml-lang="en-US" l10n="U">To obtain the length of a file that is not open, use the <emph>FileLen</emph> function.</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> <embed href="text/sbasic/shared/00000003.xhp#err52"/> -<paragraph role="heading" id="hd_id3155415" xml-lang="en-US" level="2" l10n="U" oldref="10">Example:</paragraph> -<paragraph role="code" id="par_id3151074" xml-lang="en-US" l10n="U" oldref="11">Sub ExampleRandomAccess</paragraph> -<paragraph role="code" id="par_id3145251" xml-lang="en-US" l10n="U" oldref="12">Dim iNumber As Integer</paragraph> -<paragraph role="code" id="par_id3154730" xml-lang="en-US" l10n="U" oldref="13">Dim sText As Variant REM must be a Variant</paragraph> -<paragraph role="code" id="par_id3145646" xml-lang="en-US" l10n="U" oldref="14">Dim aFile As String</paragraph> -<paragraph role="code" id="par_id3153157" xml-lang="en-US" l10n="U" oldref="15">aFile = "c:\data.txt"</paragraph> -<paragraph role="code" id="par_id3149403" xml-lang="en-US" l10n="U" oldref="17">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3149121" xml-lang="en-US" l10n="U" oldref="18">Open aFile For Random As #iNumber Len=32</paragraph> -<paragraph role="code" id="par_id3156276" xml-lang="en-US" l10n="U" oldref="19">Seek #iNumber,1 REM Position at start</paragraph> -<paragraph role="code" id="par_id3148405" xml-lang="en-US" l10n="U" oldref="20">Put #iNumber,, "This is the first line of text" REM Fill with text</paragraph> -<paragraph role="code" id="par_id3154756" xml-lang="en-US" l10n="U" oldref="21">Put #iNumber,, "This is the second line of text"</paragraph> -<paragraph role="code" id="par_id3145643" xml-lang="en-US" l10n="U" oldref="22">Put #iNumber,, "This is the third line of text"</paragraph> -<paragraph role="code" id="par_id3156383" xml-lang="en-US" l10n="U" oldref="23">Seek #iNumber,2</paragraph> -<paragraph role="code" id="par_id3155333" xml-lang="en-US" l10n="U" oldref="24">Get #iNumber,,sText</paragraph> -<paragraph role="code" id="par_id3149255" xml-lang="en-US" l10n="U" oldref="25">Print sText</paragraph> -<paragraph role="code" id="par_id3154702" xml-lang="en-US" l10n="U" oldref="26">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3153965" xml-lang="en-US" l10n="U" oldref="28">iNumber = Freefile</paragraph> -<paragraph role="code" id="par_id3163807" xml-lang="en-US" l10n="U" oldref="29">Open aFile For Random As #iNumber Len=32</paragraph> -<paragraph role="code" id="par_id3155607" xml-lang="en-US" l10n="U" oldref="30">Get #iNumber,2,sText</paragraph> -<paragraph role="code" id="par_id3150299" xml-lang="en-US" l10n="U" oldref="31">Put #iNumber,,"This is a new line of text"</paragraph> -<paragraph role="code" id="par_id3147002" xml-lang="en-US" l10n="U" oldref="32">Get #iNumber,1,sText</paragraph> -<paragraph role="code" id="par_id3149036" xml-lang="en-US" l10n="U" oldref="33">Get #iNumber,2,sText</paragraph> -<paragraph role="code" id="par_id3166425" xml-lang="en-US" l10n="U" oldref="34">Put #iNumber,20,"This is the text in record 20"</paragraph> -<paragraph role="code" id="par_id3149817" xml-lang="en-US" l10n="U" oldref="35">Print Lof(#iNumber)</paragraph> -<paragraph role="code" id="par_id3146811" xml-lang="en-US" l10n="U" oldref="36">Close #iNumber</paragraph> -<paragraph role="code" id="par_id3154200" xml-lang="en-US" l10n="U" oldref="38">end sub</paragraph> +<paragraph role="heading" id="hd_id3155415" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="code" id="par_id3151074" xml-lang="en-US" l10n="U">Sub ExampleRandomAccess</paragraph> +<paragraph role="code" id="par_id3145251" xml-lang="en-US" l10n="U">Dim iNumber As Integer</paragraph> +<paragraph role="code" id="par_id3154730" xml-lang="en-US" l10n="U">Dim sText As Variant REM must be a Variant</paragraph> +<paragraph role="code" id="par_id3145646" xml-lang="en-US" l10n="U">Dim aFile As String</paragraph> +<paragraph role="code" id="par_id3153157" xml-lang="en-US" l10n="U">aFile = "c:\data.txt"</paragraph> +<paragraph role="code" id="par_id3149403" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3149121" xml-lang="en-US" l10n="U">Open aFile For Random As #iNumber Len=32</paragraph> +<paragraph role="code" id="par_id3156276" xml-lang="en-US" l10n="U">Seek #iNumber,1 REM Position at start</paragraph> +<paragraph role="code" id="par_id3148405" xml-lang="en-US" l10n="U">Put #iNumber,, "This is the first line of text" REM Fill with text</paragraph> +<paragraph role="code" id="par_id3154756" xml-lang="en-US" l10n="U">Put #iNumber,, "This is the second line of text"</paragraph> +<paragraph role="code" id="par_id3145643" xml-lang="en-US" l10n="U">Put #iNumber,, "This is the third line of text"</paragraph> +<paragraph role="code" id="par_id3156383" xml-lang="en-US" l10n="U">Seek #iNumber,2</paragraph> +<paragraph role="code" id="par_id3155333" xml-lang="en-US" l10n="U">Get #iNumber,,sText</paragraph> +<paragraph role="code" id="par_id3149255" xml-lang="en-US" l10n="U">Print sText</paragraph> +<paragraph role="code" id="par_id3154702" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3153965" xml-lang="en-US" l10n="U">iNumber = Freefile</paragraph> +<paragraph role="code" id="par_id3163807" xml-lang="en-US" l10n="U">Open aFile For Random As #iNumber Len=32</paragraph> +<paragraph role="code" id="par_id3155607" xml-lang="en-US" l10n="U">Get #iNumber,2,sText</paragraph> +<paragraph role="code" id="par_id3150299" xml-lang="en-US" l10n="U">Put #iNumber,,"This is a new line of text"</paragraph> +<paragraph role="code" id="par_id3147002" xml-lang="en-US" l10n="U">Get #iNumber,1,sText</paragraph> +<paragraph role="code" id="par_id3149036" xml-lang="en-US" l10n="U">Get #iNumber,2,sText</paragraph> +<paragraph role="code" id="par_id3166425" xml-lang="en-US" l10n="U">Put #iNumber,20,"This is the text in record 20"</paragraph> +<paragraph role="code" id="par_id3149817" xml-lang="en-US" l10n="U">Print Lof(#iNumber)</paragraph> +<paragraph role="code" id="par_id3146811" xml-lang="en-US" l10n="U">Close #iNumber</paragraph> +<paragraph role="code" id="par_id3154200" xml-lang="en-US" l10n="U">end sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/01/02230100.xhp b/main/helpcontent2/source/text/shared/01/02230100.xhp index 0bbfd3b733..88ad3ed9f0 100644 --- a/main/helpcontent2/source/text/shared/01/02230100.xhp +++ b/main/helpcontent2/source/text/shared/01/02230100.xhp @@ -34,72 +34,72 @@ <bookmark xml-lang="en-US" branch="hid/.uno:TrackChanges" id="bm_id3153882" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:TraceChangeMode" id="bm_id1407220" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:TraceChangeMode" id="bm_id3154841" localize="false"/> -<paragraph role="heading" id="hd_id3150758" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/01/02230100.xhp" name="Record">Record</link></paragraph> -<paragraph role="paragraph" id="par_id3155599" xml-lang="en-US" l10n="U" oldref="2"><ahelp hid=".uno:TraceChangeMode">Tracks each change that is made in the current document by author and date.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150758" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/01/02230100.xhp" name="Record">Record</link></paragraph> +<paragraph role="paragraph" id="par_id3155599" xml-lang="en-US" l10n="U"><ahelp hid=".uno:TraceChangeMode">Tracks each change that is made in the current document by author and date.</ahelp></paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00000402.xhp#aufzeichnen"/> </section> -<paragraph role="paragraph" id="par_id3155934" xml-lang="en-US" l10n="U" oldref="26"><switchinline select="appl"> +<paragraph role="paragraph" id="par_id3155934" xml-lang="en-US" l10n="U"><switchinline select="appl"> <caseinline select="WRITER">If you choose <emph>Record - Show</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <emph><link href="text/shared/optionen/01040700.xhp" name="Writer - Changes">%PRODUCTNAME Writer - Changes</link></emph> in the Options dialog box.</caseinline></switchinline></paragraph> -<paragraph role="paragraph" id="par_id3147261" xml-lang="en-US" l10n="U" oldref="27"><switchinline select="appl"> +<paragraph role="paragraph" id="par_id3147261" xml-lang="en-US" l10n="U"><switchinline select="appl"> <caseinline select="CALC">You can set the properties of the markup elements by choosing <link href="text/shared/optionen/01060600.xhp" name="Calc - Changes"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the Options dialog box.</caseinline></switchinline></paragraph> -<paragraph role="paragraph" id="par_id3145669" xml-lang="en-US" l10n="U" oldref="7">The following changes are tracked when the record changes command is active:</paragraph> +<paragraph role="paragraph" id="par_id3145669" xml-lang="en-US" l10n="U">The following changes are tracked when the record changes command is active:</paragraph> <switch select="appl"> <case select="WRITER"><list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3149388" xml-lang="en-US" l10n="U" oldref="8">Paste and delete text</paragraph> +<paragraph role="listitem" id="par_id3149388" xml-lang="en-US" l10n="U">Paste and delete text</paragraph> </listitem> </list> <list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3150693" xml-lang="en-US" l10n="U" oldref="9">Move paragraphs</paragraph> +<paragraph role="listitem" id="par_id3150693" xml-lang="en-US" l10n="U">Move paragraphs</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3147088" xml-lang="en-US" l10n="U" oldref="10">Sort text</paragraph> +<paragraph role="listitem" id="par_id3147088" xml-lang="en-US" l10n="U">Sort text</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3148620" xml-lang="en-US" l10n="U" oldref="11">Find and replace text</paragraph> +<paragraph role="listitem" id="par_id3148620" xml-lang="en-US" l10n="U">Find and replace text</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3145382" xml-lang="en-US" l10n="U" oldref="12">Insert attributes that are one character wide, for example, fields and footnotes.</paragraph> +<paragraph role="listitem" id="par_id3145382" xml-lang="en-US" l10n="U">Insert attributes that are one character wide, for example, fields and footnotes.</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3146797" xml-lang="en-US" l10n="U" oldref="13">Insert sheets, ranges</paragraph> +<paragraph role="listitem" id="par_id3146797" xml-lang="en-US" l10n="U">Insert sheets, ranges</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3154749" xml-lang="en-US" l10n="U" oldref="14">Insert document</paragraph> +<paragraph role="listitem" id="par_id3154749" xml-lang="en-US" l10n="U">Insert document</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3153252" xml-lang="en-US" l10n="U" oldref="15">Insert AutoText</paragraph> +<paragraph role="listitem" id="par_id3153252" xml-lang="en-US" l10n="U">Insert AutoText</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3155449" xml-lang="en-US" l10n="U" oldref="16">Insert from clipboard</paragraph> +<paragraph role="listitem" id="par_id3155449" xml-lang="en-US" l10n="U">Insert from clipboard</paragraph> </listitem> </list> </case> <case select="CALC"><list type="unordered"> <listitem> -<paragraph role="listitem" id="par_id3153821" xml-lang="en-US" l10n="U" oldref="20">Change cell contents by insertions and deletions</paragraph> +<paragraph role="listitem" id="par_id3153821" xml-lang="en-US" l10n="U">Change cell contents by insertions and deletions</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3150771" xml-lang="en-US" l10n="U" oldref="21">Insert or delete columns and rows</paragraph> +<paragraph role="listitem" id="par_id3150771" xml-lang="en-US" l10n="U">Insert or delete columns and rows</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3150085" xml-lang="en-US" l10n="U" oldref="22">Insert sheets</paragraph> +<paragraph role="listitem" id="par_id3150085" xml-lang="en-US" l10n="U">Insert sheets</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3154381" xml-lang="en-US" l10n="U" oldref="23">Cut, copy and paste through the clipboard</paragraph> +<paragraph role="listitem" id="par_id3154381" xml-lang="en-US" l10n="U">Cut, copy and paste through the clipboard</paragraph> </listitem> <listitem> -<paragraph role="listitem" id="par_id3145119" xml-lang="en-US" l10n="U" oldref="24">Move by dragging and dropping</paragraph> +<paragraph role="listitem" id="par_id3145119" xml-lang="en-US" l10n="U">Move by dragging and dropping</paragraph> </listitem> </list> </case> </switch> <switch select="appl"> <case select="CALC"> -<paragraph role="note" id="par_id3154347" xml-lang="en-US" l10n="U" oldref="19">When the record changes command is active, you cannot delete, move, merge, split, or copy cells or delete sheets.</paragraph> +<paragraph role="note" id="par_id3154347" xml-lang="en-US" l10n="U">When the record changes command is active, you cannot delete, move, merge, split, or copy cells or delete sheets.</paragraph> </case> </switch> <comment>removed the note about no-tables-comparing in Writer</comment> diff --git a/main/helpcontent2/source/text/shared/02/09070000.xhp b/main/helpcontent2/source/text/shared/02/09070000.xhp index a1b2fc5dde..0212cd624a 100644 --- a/main/helpcontent2/source/text/shared/02/09070000.xhp +++ b/main/helpcontent2/source/text/shared/02/09070000.xhp @@ -34,9 +34,9 @@ <bookmark xml-lang="en-US" branch="hid/.uno:HyperlinkDialog" id="bm_id3149748" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:EditHyperlink" id="bm_id6121214" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:EditHyperlink" id="bm_id3151097" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3145759" role="heading" level="1" l10n="U" oldref="1"><variable id="hyperdia"><link href="text/shared/02/09070000.xhp" name="Hyperlink Dialog">Hyperlink</link> +<paragraph xml-lang="en-US" id="hd_id3145759" role="heading" level="1" l10n="U"><variable id="hyperdia"><link href="text/shared/02/09070000.xhp" name="Hyperlink Dialog">Hyperlink</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3156183" role="paragraph" l10n="U" oldref="2"><variable id="hyperdiatext"><ahelp hid=".uno:EditHyperlink">Opens a dialog that enables you to create and edit hyperlinks.</ahelp> +<paragraph xml-lang="en-US" id="par_id3156183" role="paragraph" l10n="U"><variable id="hyperdiatext"><ahelp hid=".uno:EditHyperlink">Opens a dialog that enables you to create and edit hyperlinks.</ahelp> </variable></paragraph> </section> <section id="syhyperdia"> @@ -44,20 +44,19 @@ <tablerow> <tablecell> <paragraph xml-lang="en-US" id="par_id3154927" role="paragraph" l10n="E"> -<image id="img_id3093440" src="res/commandimagelist/sc_hyperlinkdialog.png" width="0.1665in" height="0.1665in"><alt xml-lang="en-US" id="alt_id3093440">Icon</alt> -</image></paragraph> +<image id="img_id3093440" src="res/commandimagelist/sc_hyperlinkdialog.png" width="0.1665in" height="0.1665in"><alt xml-lang="en-US" id="alt_id3093440">Icon</alt></image></paragraph> </tablecell> <tablecell> -<paragraph xml-lang="en-US" id="par_id3155552" role="paragraph" l10n="U" oldref="3">Hyperlink Dialog</paragraph> +<paragraph xml-lang="en-US" id="par_id3155552" role="paragraph" l10n="U">Hyperlink Dialog</paragraph> </tablecell> </tablerow> </table> </section> <bookmark xml-lang="en-US" branch="hid/CUI_HID_ICCDIALOG_CHOICECTRL" id="bm_id3149177" localize="false"/> -<paragraph xml-lang="en-US" id="par_id3155391" role="paragraph" l10n="U" oldref="4"><ahelp hid="HID_ICCDIALOG_CHOICECTRL">Select the type of hyperlink to be inserted.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="par_id3155391" role="paragraph" l10n="U"><ahelp hid="HID_ICCDIALOG_CHOICECTRL">Select the type of hyperlink to be inserted.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:OpenHyperlinkOnCursor" id="bm_id7868083" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:OpenHyperlinkOnCursor" id="bm_id3145345" localize="false"/> -<paragraph xml-lang="en-US" id="par_id3153683" role="paragraph" l10n="CHG" oldref="16"><ahelp hid=".uno:OpenHyperlinkOnCursor" visibility="hidden">Opens the hyperlink in your default web browser.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="par_id3153683" role="paragraph" l10n="CHG"><ahelp hid=".uno:OpenHyperlinkOnCursor" visibility="hidden">Opens the hyperlink in your default web browser.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:EditHyperlink" id="bm_id0122200902201484" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:EditHyperlink" id="bm_id0122200902201587" localize="false"/> <paragraph xml-lang="en-US" id="par_id0122200902231573" role="paragraph" l10n="NEW"><ahelp hid="." visibility="hidden">Opens the Hyperlink dialog.</ahelp></paragraph> @@ -70,18 +69,16 @@ <embed href="text/shared/02/09070300.xhp#dokument"/> <embed href="text/shared/02/09070400.xhp#neuesdokument"/> <bookmark xml-lang="en-US" branch="hid/CUI_HID_ICCDIALOG_OK_BTN" id="bm_id3149811" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3166410" role="heading" level="3" l10n="U" oldref="7">Apply</paragraph> -<paragraph xml-lang="en-US" id="par_id3147209" role="paragraph" l10n="U" oldref="8"><ahelp hid="HID_ICCDIALOG_OK_BTN">Applies the data to your document.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3166410" role="heading" level="3" l10n="U">Apply</paragraph> +<paragraph xml-lang="en-US" id="par_id3147209" role="paragraph" l10n="U"><ahelp hid="HID_ICCDIALOG_OK_BTN">Applies the data to your document.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/CUI_HID_ICCDIALOG_CANCEL_BTN" id="bm_id3159166" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3149398" role="heading" level="3" l10n="U" oldref="9">Close</paragraph> -<paragraph xml-lang="en-US" id="par_id3149734" role="paragraph" l10n="U" oldref="10"><ahelp hid="HID_ICCDIALOG_CANCEL_BTN">Closes the dialog without saving.</ahelp></paragraph> -<paragraph xml-lang="en-US" id="hd_id3153700" role="heading" level="3" l10n="U" -oldref="11">Help</paragraph> -<paragraph xml-lang="en-US" id="par_id3150943" role="paragraph" l10n="U" oldref="12">Opens the Help.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3149398" role="heading" level="3" l10n="U">Close</paragraph> +<paragraph xml-lang="en-US" id="par_id3149734" role="paragraph" l10n="U"><ahelp hid="HID_ICCDIALOG_CANCEL_BTN">Closes the dialog without saving.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3153700" role="heading" level="3" l10n="U">Help</paragraph> +<paragraph xml-lang="en-US" id="par_id3150943" role="paragraph" l10n="U">Opens the Help.</paragraph> <bookmark xml-lang="en-US" branch="hid/CUI_HID_ICCDIALOG_RESET_BTN" id="bm_id3155434" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3156192" role="heading" level="3" l10n="U" -oldref="13">Back</paragraph> -<paragraph xml-lang="en-US" id="par_id3149234" role="paragraph" l10n="U" oldref="14"><ahelp hid="HID_ICCDIALOG_RESET_BTN">Resets the entries in the dialog to their original state.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3156192" role="heading" level="3" l10n="U">Back</paragraph> +<paragraph xml-lang="en-US" id="par_id3149234" role="paragraph" l10n="U"><ahelp hid="HID_ICCDIALOG_RESET_BTN">Resets the entries in the dialog to their original state.</ahelp></paragraph> <section id="relatedtopics"> <embed href="text/shared/guide/hyperlink_insert.xhp#hyperlink_insert"/> </section> diff --git a/main/helpcontent2/source/text/shared/guide/data_tabledefine.xhp b/main/helpcontent2/source/text/shared/guide/data_tabledefine.xhp index 79891750f4..ab35bdc4ef 100644 --- a/main/helpcontent2/source/text/shared/guide/data_tabledefine.xhp +++ b/main/helpcontent2/source/text/shared/guide/data_tabledefine.xhp @@ -37,33 +37,30 @@ <bookmark_value>AutoValue (Base)</bookmark_value> <bookmark_value>primary keys;design view</bookmark_value> </bookmark><comment>MW deleted "database tables;" and changed "tables in databases;"</comment><comment>UFI added AutoValue and Primary Key entry - i48831</comment><comment>MW changed Tables in databases, AutoValue and Primary Key entries</comment> -<paragraph xml-lang="en-US" id="par_id3155448" role="paragraph" l10n="E" oldref="103" -localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3149798" role="heading" level="1" l10n="U" -oldref="104"><variable id="data_tabledefine"><link href="text/shared/guide/data_tabledefine.xhp" name="Table Design">Table Design</link> +<paragraph xml-lang="en-US" id="par_id3155448" role="paragraph" l10n="E" localize="false"/> +<paragraph xml-lang="en-US" id="hd_id3149798" role="heading" level="1" l10n="U"><variable id="data_tabledefine"><link href="text/shared/guide/data_tabledefine.xhp" name="Table Design">Table Design</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3155535" role="paragraph" l10n="U" oldref="2">This section contains information about how to create a new database table in the <link href="text/shared/explorer/database/05010000.xhp" name="design view">design view</link>.</paragraph> -<paragraph xml-lang="en-US" id="par_id3154288" role="paragraph" l10n="CHG" oldref="3">Open the database file of the database where you want a new table. Click the <emph>Tables</emph> icon. Choose <emph>Create Table in Design View</emph> to create a new table.</paragraph> -<paragraph xml-lang="en-US" id="par_id3146798" role="paragraph" l10n="U" oldref="4">In the Design view, you can now create the fields for your table.</paragraph> +<paragraph xml-lang="en-US" id="par_id3155535" role="paragraph" l10n="U">This section contains information about how to create a new database table in the <link href="text/shared/explorer/database/05010000.xhp" name="design view">design view</link>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154288" role="paragraph" l10n="CHG">Open the database file of the database where you want a new table. Click the <emph>Tables</emph> icon. Choose <emph>Create Table in Design View</emph> to create a new table.</paragraph> +<paragraph xml-lang="en-US" id="par_id3146798" role="paragraph" l10n="U">In the Design view, you can now create the fields for your table.</paragraph> <list type="unordered"> <listitem> -<paragraph xml-lang="en-US" id="par_id3153349" role="listitem" l10n="U" oldref="5">Enter new fields in rows from top to bottom. Click the <emph>Field Name</emph> cell and enter a field name for each data field.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153349" role="listitem" l10n="U">Enter new fields in rows from top to bottom. Click the <emph>Field Name</emph> cell and enter a field name for each data field.</paragraph> </listitem> <listitem> <paragraph xml-lang="en-US" id="par_id1595507" role="listitem" l10n="NEW">Include a "primary key" data field. Base needs a primary key to be able to edit the table contents. A primary key has unique contents for each data record. For example, insert a numerical field, right-click the first column, and choose <emph>Primary Key</emph> from the context menu. Set <emph>AutoValue</emph> to "Yes", so Base can automatically increment the value for each new record.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3150084" role="listitem" l10n="U" oldref="6">In the next cell to the right, define the <emph>Field Type</emph>. When you click in the cell, you can select a field type in the combo box.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150084" role="listitem" l10n="U">In the next cell to the right, define the <emph>Field Type</emph>. When you click in the cell, you can select a field type in the combo box.</paragraph> </listitem> </list> -<paragraph xml-lang="en-US" id="par_id3154760" role="note" l10n="U" oldref="38">Each field can only accept data corresponding to the specified field type. For example, it is not possible to enter text in a number field. Memo fields in dBASE III format are references to internally-managed text files which can hold up to 64KB text.</paragraph> -<paragraph xml-lang="en-US" id="par_id3149456" role="paragraph" l10n="U" oldref="41">You can enter an optional <emph>Description</emph> for each field. The text of the description will appear as a tip on the column headings in the table view.</paragraph> -<paragraph xml-lang="en-US" id="hd_id3153379" role="heading" level="2" l10n="U" -oldref="42">Field Properties</paragraph> -<paragraph xml-lang="en-US" id="par_id3148798" role="paragraph" l10n="U" oldref="45">Enter properties for each selected data field. Depending on the database type, some input facilities may not be available.</paragraph> -<paragraph xml-lang="en-US" id="par_id3144762" role="paragraph" l10n="U" oldref="46">In the <emph>Default value</emph> box, enter the default contents for every new record. This contents can be edited later.</paragraph> -<paragraph xml-lang="en-US" id="par_id3150869" role="paragraph" l10n="U" oldref="47">In the <emph>Entry required</emph> box, specify whether or not the field may remain empty.</paragraph> -<paragraph xml-lang="en-US" id="par_id3154908" role="paragraph" l10n="U" oldref="7">For the <emph>Length</emph> box, a combo box may be shown that provides the available choices.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154760" role="note" l10n="U">Each field can only accept data corresponding to the specified field type. For example, it is not possible to enter text in a number field. Memo fields in dBASE III format are references to internally-managed text files which can hold up to 64KB text.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149456" role="paragraph" l10n="U">You can enter an optional <emph>Description</emph> for each field. The text of the description will appear as a tip on the column headings in the table view.</paragraph> +<paragraph xml-lang="en-US" id="hd_id3153379" role="heading" level="2" l10n="U">Field Properties</paragraph> +<paragraph xml-lang="en-US" id="par_id3148798" role="paragraph" l10n="U">Enter properties for each selected data field. Depending on the database type, some input facilities may not be available.</paragraph> +<paragraph xml-lang="en-US" id="par_id3144762" role="paragraph" l10n="U">In the <emph>Default value</emph> box, enter the default contents for every new record. This contents can be edited later.</paragraph> +<paragraph xml-lang="en-US" id="par_id3150869" role="paragraph" l10n="U">In the <emph>Entry required</emph> box, specify whether or not the field may remain empty.</paragraph> +<paragraph xml-lang="en-US" id="par_id3154908" role="paragraph" l10n="U">For the <emph>Length</emph> box, a combo box may be shown that provides the available choices.</paragraph> <embed href="text/shared/00/00000004.xhp#related"/> <embed href="text/shared/guide/database_main.xhp#database_main"/> </body> diff --git a/main/helpcontent2/source/text/swriter/00/00000406.xhp b/main/helpcontent2/source/text/swriter/00/00000406.xhp index f5a0c1ad8d..d82ce0c2c7 100644 --- a/main/helpcontent2/source/text/swriter/00/00000406.xhp +++ b/main/helpcontent2/source/text/swriter/00/00000406.xhp @@ -29,62 +29,40 @@ </topic> </meta> <body> -<paragraph role="heading" id="hd_id3154279" xml-lang="en-US" level="1" l10n="U" oldref="1">Tools Menu</paragraph> -<paragraph role="paragraph" id="par_id3150710" xml-lang="en-US" l10n="CHG" oldref="2"><variable id="silbentrennung">Choose <emph>Tools - Language - Hyphenation</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_idN105A1" xml-lang="en-US" l10n="NEW"><variable id="wordcount">Choose <emph>Tools - Word Count</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_id3154100" xml-lang="en-US" l10n="U" oldref="13"><variable id="kapitelnumerierung">Choose <emph>Tools - Outline Numbering</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_id3153530" xml-lang="en-US" l10n="U" oldref="40"><variable id="kapitelnumerierung1">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab -</variable></paragraph> -<paragraph role="paragraph" id="par_id3151321" xml-lang="en-US" l10n="CHG" oldref="33"><variable id="zeilennumerierung">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) -</variable></paragraph> -<paragraph role="paragraph" id="par_id3154477" xml-lang="en-US" l10n="U" oldref="31"><variable id="fussnoteneinstellung">Choose <emph>Tools - Footnotes/Endnotes</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_id3153669" xml-lang="en-US" l10n="U" oldref="15"><variable id="fussnoten">Choose <emph>Tools - Footnotes/Endnotes - Footnotes</emph> tab -</variable></paragraph> -<paragraph role="paragraph" id="par_id3150972" xml-lang="en-US" l10n="U" oldref="32"><variable id="endnoten">Choose <emph>Tools - Footnotes/Endnotes - Endnotes</emph> tab -</variable></paragraph> -<paragraph role="paragraph" id="par_id3152963" xml-lang="en-US" l10n="CHG" oldref="16"><variable id="texttabelle">Choose <emph>Table - Convert - Text to Table</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_id3150833" xml-lang="en-US" l10n="U" oldref="17"><variable id="sortieren">Choose <emph>Tools - Sort</emph> -</variable></paragraph> +<paragraph role="heading" id="hd_id3154279" xml-lang="en-US" level="1" l10n="U">Tools Menu</paragraph> +<paragraph role="paragraph" id="par_id3150710" xml-lang="en-US" l10n="CHG"><variable id="silbentrennung">Choose <emph>Tools - Language - Hyphenation</emph></variable></paragraph> +<paragraph role="paragraph" id="par_idN105A1" xml-lang="en-US" l10n="NEW"><variable id="wordcount">Choose <emph>Tools - Word Count</emph></variable></paragraph> +<paragraph role="paragraph" id="par_id3154100" xml-lang="en-US" l10n="U"><variable id="kapitelnumerierung">Choose <emph>Tools - Outline Numbering</emph></variable></paragraph> +<paragraph role="paragraph" id="par_id3153530" xml-lang="en-US" l10n="U"><variable id="kapitelnumerierung1">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab</variable></paragraph> +<paragraph role="paragraph" id="par_id3151321" xml-lang="en-US" l10n="CHG"><variable id="zeilennumerierung">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable></paragraph> +<paragraph role="paragraph" id="par_id3154477" xml-lang="en-US" l10n="U"><variable id="fussnoteneinstellung">Choose <emph>Tools - Footnotes/Endnotes</emph></variable></paragraph> +<paragraph role="paragraph" id="par_id3153669" xml-lang="en-US" l10n="U"><variable id="fussnoten">Choose <emph>Tools - Footnotes/Endnotes - Footnotes</emph> tab</variable></paragraph> +<paragraph role="paragraph" id="par_id3150972" xml-lang="en-US" l10n="U"><variable id="endnoten">Choose <emph>Tools - Footnotes/Endnotes - Endnotes</emph> tab</variable></paragraph> +<paragraph role="paragraph" id="par_id3152963" xml-lang="en-US" l10n="CHG"><variable id="texttabelle">Choose <emph>Table - Convert - Text to Table</emph></variable></paragraph> +<paragraph role="paragraph" id="par_id3150833" xml-lang="en-US" l10n="U"><variable id="sortieren">Choose <emph>Tools - Sort</emph></variable></paragraph> <section id="berechnen"> -<paragraph role="paragraph" id="par_id3149692" xml-lang="en-US" l10n="U" oldref="18">Choose <emph>Tools - Calculate</emph> -</paragraph> -<paragraph role="paragraph" id="par_id3159188" xml-lang="en-US" l10n="U" oldref="38"><switchinline select="sys"><caseinline select="MAC">Command -</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ plus sign</paragraph> +<paragraph role="paragraph" id="par_id3149692" xml-lang="en-US" l10n="U">Choose <emph>Tools - Calculate</emph></paragraph> +<paragraph role="paragraph" id="par_id3159188" xml-lang="en-US" l10n="U"><switchinline select="sys"><caseinline select="MAC">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + plus sign</paragraph> </section> -<paragraph role="paragraph" id="par_id3155174" xml-lang="en-US" l10n="U" oldref="19"><variable id="aktualisieren">Choose <emph>Tools - Update</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_id3151330" xml-lang="en-US" l10n="U" oldref="20"><variable id="seitenformatierung">Choose <emph>Tools - Update - Page Formatting</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_id3149482" xml-lang="en-US" l10n="U" oldref="21"><variable id="aktuellesverz">Choose <emph>Tools - Update - Current Index</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_id3149821" xml-lang="en-US" l10n="U" oldref="22"><variable id="alleverz">Choose <emph>Tools - Update - All Indexes and Tables</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_id3151249" xml-lang="en-US" l10n="U" oldref="35"><variable id="alles">Choose <emph>Tools - Update - Update All</emph> -</variable></paragraph> +<paragraph role="paragraph" id="par_id3155174" xml-lang="en-US" l10n="U"><variable id="aktualisieren">Choose <emph>Tools - Update</emph></variable></paragraph> +<paragraph role="paragraph" id="par_id3151330" xml-lang="en-US" l10n="U"><variable id="seitenformatierung">Choose <emph>Tools - Update - Page Formatting</emph></variable></paragraph> +<paragraph role="paragraph" id="par_id3149482" xml-lang="en-US" l10n="U"><variable id="aktuellesverz">Choose <emph>Tools - Update - Current Index</emph></variable></paragraph> +<paragraph role="paragraph" id="par_id3149821" xml-lang="en-US" l10n="U"><variable id="alleverz">Choose <emph>Tools - Update - All Indexes and Tables</emph></variable></paragraph> +<paragraph role="paragraph" id="par_id3151249" xml-lang="en-US" l10n="U"><variable id="alles">Choose <emph>Tools - Update - Update All</emph></variable></paragraph> <section id="aktfelder"> -<paragraph role="paragraph" id="par_id3154839" xml-lang="en-US" l10n="U" oldref="36">Choose <emph>Tools - Update - Fields</emph> -</paragraph> -<paragraph role="paragraph" id="par_id3147090" xml-lang="en-US" l10n="U" oldref="39">F9 key</paragraph> +<paragraph role="paragraph" id="par_id3154839" xml-lang="en-US" l10n="U">Choose <emph>Tools - Update - Fields</emph></paragraph> +<paragraph role="paragraph" id="par_id3147090" xml-lang="en-US" l10n="U">F9 key</paragraph> </section> -<paragraph role="paragraph" id="par_id3148970" xml-lang="en-US" l10n="U" oldref="37"><variable id="aktverknuepf">Choose <emph>Tools - Update - Links</emph> -</variable></paragraph> -<paragraph role="paragraph" id="par_id3147220" xml-lang="en-US" l10n="U" oldref="41"><variable id="adiagr">Choose <emph>Tools - Update - All Charts</emph> -</variable></paragraph> +<paragraph role="paragraph" id="par_id3148970" xml-lang="en-US" l10n="U"><variable id="aktverknuepf">Choose <emph>Tools - Update - Links</emph></variable></paragraph> +<paragraph role="paragraph" id="par_id3147220" xml-lang="en-US" l10n="U"><variable id="adiagr">Choose <emph>Tools - Update - All Charts</emph></variable></paragraph> <section id="mmwizard"> -<paragraph role="paragraph" id="par_idN10792" xml-lang="en-US" l10n="NEW">Choose <emph>Tools - Mail Merge Wizard</emph> -</paragraph> +<paragraph role="paragraph" id="par_idN10792" xml-lang="en-US" l10n="NEW">Choose <emph>Tools - Mail Merge Wizard</emph></paragraph> <paragraph role="paragraph" id="par_idN107E7" xml-lang="en-US" l10n="NEW">Click <emph>Mail Merge</emph> icon on the <emph>Table Data</emph> bar:</paragraph> <table id="tbl_id3149877"> <tablerow> <tablecell> <paragraph role="paragraph" id="par_idN10806" xml-lang="en-US" l10n="NEW"> -<image id="img_id3083452" src="res/commandimagelist/sc_mergedialog.png" width="0.2228in" height="0.2228in"><alt id="alt_id3083452" xml-lang="en-US">Icon</alt> -</image></paragraph> +<image id="img_id3083452" src="res/commandimagelist/sc_mergedialog.png" width="0.2228in" height="0.2228in"><alt id="alt_id3083452" xml-lang="en-US">Icon</alt></image></paragraph> </tablecell> <tablecell> <paragraph role="paragraph" id="par_idN10823" xml-lang="en-US" l10n="NEW">Mail Merge</paragraph>