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
commit 32a2fa64b94ba0b073e09e5fda69a87f4ac4c4c2 Author: mseidel <[email protected]> AuthorDate: Sat Mar 15 18:32:01 2025 +0100 Remove 'oldref' entries (work in progress) (cherry picked from commit 54b6e9b5a59f1d67e9f676c56247d3387a0152d0) --- .../source/text/sbasic/shared/03120308.xhp | 76 ++++++++++------------ .../source/text/scalc/guide/cell_protect.xhp | 20 +++--- .../source/text/shared/01/01190000.xhp | 42 ++++++------ .../source/text/shared/01/05050000.xhp | 40 ++++++------ .../source/text/shared/01/06150200.xhp | 44 ++++++------- .../source/text/shared/autopi/01010200.xhp | 28 ++++---- .../source/text/shared/optionen/01041100.xhp | 26 ++++---- .../source/text/simpress/01/05170000.xhp | 48 +++++++------- .../source/text/swriter/01/02150000.xhp | 46 ++++++------- .../source/text/swriter/01/04120300.xhp | 42 ++++++------ 10 files changed, 204 insertions(+), 208 deletions(-) diff --git a/main/helpcontent2/source/text/sbasic/shared/03120308.xhp b/main/helpcontent2/source/text/sbasic/shared/03120308.xhp index 60c904222a..effa45fa05 100644 --- a/main/helpcontent2/source/text/sbasic/shared/03120308.xhp +++ b/main/helpcontent2/source/text/sbasic/shared/03120308.xhp @@ -33,46 +33,42 @@ <bookmark xml-lang="en-US" branch="index" id="bm_id3153345"> <bookmark_value>RSet statement</bookmark_value> </bookmark> -<paragraph role="heading" id="hd_id3153345" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03120308.xhp" name="RSet Statement [Runtime]">RSet Statement [Runtime]</link></paragraph> -<paragraph role="paragraph" id="par_id3150503" xml-lang="en-US" l10n="U" oldref="2">Right-aligns a string within a string variable, or copies a user-defined variable type into another.</paragraph> +<paragraph role="heading" id="hd_id3153345" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03120308.xhp" name="RSet Statement [Runtime]">RSet Statement [Runtime]</link></paragraph> +<paragraph role="paragraph" id="par_id3150503" xml-lang="en-US" l10n="U">Right-aligns a string within a string variable, or copies a user-defined variable type into another.</paragraph> </section> -<paragraph role="heading" id="hd_id3149234" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> -<paragraph role="paragraph" id="par_id3150669" xml-lang="en-US" l10n="U" oldref="4">RSet Text As String = Text or RSet Variable1 = Variable2</paragraph> -<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="2" l10n="U" oldref="5">Parameters:</paragraph> -<paragraph role="paragraph" id="par_id3148552" xml-lang="en-US" l10n="U" oldref="6"> -<emph>Text:</emph> Any string variable.</paragraph> -<paragraph role="paragraph" id="par_id3154924" xml-lang="en-US" l10n="U" oldref="7"> -<emph>Text</emph>: String that you want to right-align in the string variable.</paragraph> -<paragraph role="paragraph" id="par_id3149456" xml-lang="en-US" l10n="U" oldref="8"> -<emph>Variable1:</emph> User-defined variable that is the target for the copied variable.</paragraph> -<paragraph role="paragraph" id="par_id3153381" xml-lang="en-US" l10n="U" oldref="9"> -<emph>Variable2:</emph> User-defined variable that you want to copy to another variable.</paragraph> -<paragraph role="paragraph" id="par_id3154140" xml-lang="en-US" l10n="U" oldref="10">If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable.</paragraph> -<paragraph role="paragraph" id="par_id3149202" xml-lang="en-US" l10n="U" oldref="11">You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another.</paragraph> -<paragraph role="paragraph" id="par_id3151042" xml-lang="en-US" l10n="U" oldref="12">The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string.</paragraph> -<paragraph role="heading" id="hd_id3154909" xml-lang="en-US" level="2" l10n="U" oldref="13">Example:</paragraph> -<paragraph role="paragraph" id="par_id3154218" xml-lang="en-US" l10n="U" oldref="14">Sub ExampleRLSet</paragraph> -<paragraph role="paragraph" id="par_id3147288" xml-lang="en-US" l10n="U" oldref="15">Dim sVar as string</paragraph> -<paragraph role="paragraph" id="par_id3153367" xml-lang="en-US" l10n="U" oldref="16">Dim sExpr as string</paragraph> -<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" l10n="U" oldref="18">sVar = String(40,"*")</paragraph> -<paragraph role="paragraph" id="par_id3154013" xml-lang="en-US" l10n="U" oldref="19">sExpr = "SBX"</paragraph> -<paragraph role="paragraph" id="par_id3155856" xml-lang="en-US" l10n="U" oldref="20">REM Right-align "SBX" in a 40-character string</paragraph> -<paragraph role="paragraph" id="par_id3152577" xml-lang="en-US" l10n="U" oldref="21">REM Replace asterisks with spaces</paragraph> -<paragraph role="paragraph" id="par_id3149260" xml-lang="en-US" l10n="U" oldref="22">RSet sVar = sExpr</paragraph> -<paragraph role="paragraph" id="par_id3156444" xml-lang="en-US" l10n="U" oldref="23">Print ">"; sVar; "<"</paragraph> -<paragraph role="paragraph" id="par_id3148575" xml-lang="en-US" l10n="U" oldref="25">sVar = String(5,"*")</paragraph> -<paragraph role="paragraph" id="par_id3153140" xml-lang="en-US" l10n="U" oldref="26">sExpr = "123457896"</paragraph> -<paragraph role="paragraph" id="par_id3153144" xml-lang="en-US" l10n="U" oldref="27">RSet sVar = sExpr</paragraph> -<paragraph role="paragraph" id="par_id3150116" xml-lang="en-US" l10n="U" oldref="28">Print ">"; sVar; "<"</paragraph> -<paragraph role="paragraph" id="par_id3154491" xml-lang="en-US" l10n="U" oldref="30">sVar = String(40,"*")</paragraph> -<paragraph role="paragraph" id="par_id3149412" xml-lang="en-US" l10n="U" oldref="31">sExpr = "SBX"</paragraph> -<paragraph role="paragraph" id="par_id3145801" xml-lang="en-US" l10n="U" oldref="32">REM Left-align "SBX" in a 40-character string</paragraph> -<paragraph role="paragraph" id="par_id3145646" xml-lang="en-US" l10n="U" oldref="33">LSet sVar = sExpr</paragraph> -<paragraph role="paragraph" id="par_id3154511" xml-lang="en-US" l10n="U" oldref="34">Print ">"; sVar; "<"</paragraph> -<paragraph role="paragraph" id="par_id3153839" xml-lang="en-US" l10n="U" oldref="36">sVar = String(5,"*")</paragraph> -<paragraph role="paragraph" id="par_id3149122" xml-lang="en-US" l10n="U" oldref="37">sExpr = "123456789"</paragraph> -<paragraph role="paragraph" id="par_id3150330" xml-lang="en-US" l10n="U" oldref="38">LSet sVar = sExpr</paragraph> -<paragraph role="paragraph" id="par_id3154480" xml-lang="en-US" l10n="U" oldref="39">Print ">"; sVar; "<"</paragraph> -<paragraph role="paragraph" id="par_id3148914" xml-lang="en-US" l10n="U" oldref="40">End Sub</paragraph> +<paragraph role="heading" id="hd_id3149234" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph> +<paragraph role="paragraph" id="par_id3150669" xml-lang="en-US" l10n="U">RSet Text As String = Text or RSet Variable1 = Variable2</paragraph> +<paragraph role="heading" id="hd_id3156024" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id3148552" xml-lang="en-US" l10n="U"><emph>Text:</emph> Any string variable.</paragraph> +<paragraph role="paragraph" id="par_id3154924" xml-lang="en-US" l10n="U"><emph>Text</emph>: String that you want to right-align in the string variable.</paragraph> +<paragraph role="paragraph" id="par_id3149456" xml-lang="en-US" l10n="U"><emph>Variable1:</emph> User-defined variable that is the target for the copied variable.</paragraph> +<paragraph role="paragraph" id="par_id3153381" xml-lang="en-US" l10n="U"><emph>Variable2:</emph> User-defined variable that you want to copy to another variable.</paragraph> +<paragraph role="paragraph" id="par_id3154140" xml-lang="en-US" l10n="U">If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable.</paragraph> +<paragraph role="paragraph" id="par_id3149202" xml-lang="en-US" l10n="U">You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another.</paragraph> +<paragraph role="paragraph" id="par_id3151042" xml-lang="en-US" l10n="U">The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string.</paragraph> +<paragraph role="heading" id="hd_id3154909" xml-lang="en-US" level="2" l10n="U">Example:</paragraph> +<paragraph role="paragraph" id="par_id3154218" xml-lang="en-US" l10n="U">Sub ExampleRLSet</paragraph> +<paragraph role="paragraph" id="par_id3147288" xml-lang="en-US" l10n="U">Dim sVar as string</paragraph> +<paragraph role="paragraph" id="par_id3153367" xml-lang="en-US" l10n="U">Dim sExpr as string</paragraph> +<paragraph role="paragraph" id="par_id3153952" xml-lang="en-US" l10n="U">sVar = String(40,"*")</paragraph> +<paragraph role="paragraph" id="par_id3154013" xml-lang="en-US" l10n="U">sExpr = "SBX"</paragraph> +<paragraph role="paragraph" id="par_id3155856" xml-lang="en-US" l10n="U">REM Right-align "SBX" in a 40-character string</paragraph> +<paragraph role="paragraph" id="par_id3152577" xml-lang="en-US" l10n="U">REM Replace asterisks with spaces</paragraph> +<paragraph role="paragraph" id="par_id3149260" xml-lang="en-US" l10n="U">RSet sVar = sExpr</paragraph> +<paragraph role="paragraph" id="par_id3156444" xml-lang="en-US" l10n="U">Print ">"; sVar; "<"</paragraph> +<paragraph role="paragraph" id="par_id3148575" xml-lang="en-US" l10n="U">sVar = String(5,"*")</paragraph> +<paragraph role="paragraph" id="par_id3153140" xml-lang="en-US" l10n="U">sExpr = "123457896"</paragraph> +<paragraph role="paragraph" id="par_id3153144" xml-lang="en-US" l10n="U">RSet sVar = sExpr</paragraph> +<paragraph role="paragraph" id="par_id3150116" xml-lang="en-US" l10n="U">Print ">"; sVar; "<"</paragraph> +<paragraph role="paragraph" id="par_id3154491" xml-lang="en-US" l10n="U">sVar = String(40,"*")</paragraph> +<paragraph role="paragraph" id="par_id3149412" xml-lang="en-US" l10n="U">sExpr = "SBX"</paragraph> +<paragraph role="paragraph" id="par_id3145801" xml-lang="en-US" l10n="U">REM Left-align "SBX" in a 40-character string</paragraph> +<paragraph role="paragraph" id="par_id3145646" xml-lang="en-US" l10n="U">LSet sVar = sExpr</paragraph> +<paragraph role="paragraph" id="par_id3154511" xml-lang="en-US" l10n="U">Print ">"; sVar; "<"</paragraph> +<paragraph role="paragraph" id="par_id3153839" xml-lang="en-US" l10n="U">sVar = String(5,"*")</paragraph> +<paragraph role="paragraph" id="par_id3149122" xml-lang="en-US" l10n="U">sExpr = "123456789"</paragraph> +<paragraph role="paragraph" id="par_id3150330" xml-lang="en-US" l10n="U">LSet sVar = sExpr</paragraph> +<paragraph role="paragraph" id="par_id3154480" xml-lang="en-US" l10n="U">Print ">"; sVar; "<"</paragraph> +<paragraph role="paragraph" id="par_id3148914" xml-lang="en-US" l10n="U">End Sub</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/scalc/guide/cell_protect.xhp b/main/helpcontent2/source/text/scalc/guide/cell_protect.xhp index fa4f9c9854..1ef85e175c 100644 --- a/main/helpcontent2/source/text/scalc/guide/cell_protect.xhp +++ b/main/helpcontent2/source/text/scalc/guide/cell_protect.xhp @@ -40,31 +40,31 @@ <bookmark_value>hiding;formulas</bookmark_value> <bookmark_value>formulas;hiding</bookmark_value> </bookmark><comment>MW transferred "modifying;..." and "changing;..." into one index entry</comment> -<paragraph xml-lang="en-US" id="hd_id3146119" role="heading" level="1" l10n="U" oldref="5"><variable id="cell_protect"><link href="text/scalc/guide/cell_protect.xhp" name="Protecting Cells from Changes">Protecting Cells from Changes</link> +<paragraph xml-lang="en-US" id="hd_id3146119" role="heading" level="1" l10n="U"><variable id="cell_protect"><link href="text/scalc/guide/cell_protect.xhp" name="Protecting Cells from Changes">Protecting Cells from Changes</link> </variable></paragraph> -<paragraph xml-lang="en-US" id="par_id3153368" role="paragraph" l10n="U" oldref="17">In <item type="productname">%PRODUCTNAME</item> Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed.</paragraph> -<paragraph xml-lang="en-US" id="par_id3145261" role="paragraph" l10n="U" oldref="18">Protection can be provided by means of a password, but it does not have to be. If you have assigned a password, protection can only be removed once the correct password has been entered.</paragraph> -<paragraph xml-lang="en-US" id="par_id3148576" role="paragraph" l10n="U" oldref="19">Note that the cell protection for cells with the <emph>Protected</emph> attribute is only effective when you protect the whole sheet. In the default condition, every cell has the <emph>Protected</emph> attribute. Therefore you must remove the attribute selectively for those cells where the user may make changes. You then protect the whole sheet and save the document.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153368" role="paragraph" l10n="U">In <item type="productname">%PRODUCTNAME</item> Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145261" role="paragraph" l10n="U">Protection can be provided by means of a password, but it does not have to be. If you have assigned a password, protection can only be removed once the correct password has been entered.</paragraph> +<paragraph xml-lang="en-US" id="par_id3148576" role="paragraph" l10n="U">Note that the cell protection for cells with the <emph>Protected</emph> attribute is only effective when you protect the whole sheet. In the default condition, every cell has the <emph>Protected</emph> attribute. Therefore you must remove the attribute selectively for those cells where the user may make changes. You then protect the whole sheet and save the document.</paragraph> <paragraph xml-lang="en-US" id="par_id5974303" role="warning" l10n="NEW">These protection features are just switches to prevent accidental action. The features are not intended to provide any secure protection. For example, by exporting a sheet to another file format, a user may be able to surpass the protection features. There is only one secure protection: the password that you can apply when saving an OpenDocument file. A file that has been saved with a password can be opened only wit [...] <list type="ordered"> <listitem> <paragraph xml-lang="en-US" id="par_idN1066B" role="listitem" l10n="NEW">Select the cells that you want to specify the cell protection options for.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3149019" role="listitem" l10n="U" oldref="7">Choose <item type="menuitem">Format - Cells</item> and click the <emph>Cell Protection</emph> tab.</paragraph> +<paragraph xml-lang="en-US" id="par_id3149019" role="listitem" l10n="U">Choose <item type="menuitem">Format - Cells</item> and click the <emph>Cell Protection</emph> tab.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3152985" role="listitem" l10n="U" oldref="9">Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below.</paragraph> +<paragraph xml-lang="en-US" id="par_id3152985" role="listitem" l10n="U">Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below.</paragraph> <paragraph xml-lang="en-US" id="par_id31529866655" role="listitem" l10n="NEW">Uncheck <emph>Protected</emph> to allow the user to change the currently selected cells.</paragraph> -<paragraph xml-lang="en-US" id="par_id3152898" role="listitem" l10n="U" oldref="10">Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell.</paragraph> +<paragraph xml-lang="en-US" id="par_id3152898" role="listitem" l10n="U">Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell.</paragraph> <paragraph xml-lang="en-US" id="par_idN1069A" role="listitem" l10n="NEW">Select <emph>Hide formula</emph> to hide and to protect formulas from changes.</paragraph> <paragraph xml-lang="en-US" id="par_idN106A1" role="listitem" l10n="NEW">Select <emph>Hide when printing</emph> to hide protected cells in the printed document. The cells are not hidden onscreen.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3152872" role="listitem" l10n="U" oldref="11">Click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3152872" role="listitem" l10n="U">Click <emph>OK</emph>.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3145362" role="listitem" l10n="U" oldref="12">Apply the protection options.</paragraph> +<paragraph xml-lang="en-US" id="par_id3145362" role="listitem" l10n="U">Apply the protection options.</paragraph> <paragraph xml-lang="en-US" id="par_idN106C0" role="listitem" l10n="NEW">To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type="menuitem">Tools - Protect Document - Sheet</item>.</paragraph> <paragraph xml-lang="en-US" id="par_idN106C7" role="listitem" l10n="CHG">To protect the structure of the document, for example the count, <link href="text/scalc/guide/rename_table.xhp">names</link>, and order of the sheets, from being changed, choose <item type="menuitem">Tools - Protect Document - Document</item>.</paragraph> </listitem> @@ -73,7 +73,7 @@ <paragraph xml-lang="en-US" id="par_idN106D2" role="warning" l10n="NEW">If you forget your password, you cannot deactivate the protection. If you only want to protect cells from accidental changes, set the sheet protection, but do not enter a password.</paragraph> </listitem> <listitem> -<paragraph xml-lang="en-US" id="par_id3153810" role="listitem" l10n="U" oldref="13">Click <emph>OK</emph>.</paragraph> +<paragraph xml-lang="en-US" id="par_id3153810" role="listitem" l10n="U">Click <emph>OK</emph>.</paragraph> </listitem> </list> <section id="relatedtopics"> diff --git a/main/helpcontent2/source/text/shared/01/01190000.xhp b/main/helpcontent2/source/text/shared/01/01190000.xhp index 62144b23ff..f442e55f9a 100644 --- a/main/helpcontent2/source/text/shared/01/01190000.xhp +++ b/main/helpcontent2/source/text/shared/01/01190000.xhp @@ -33,40 +33,40 @@ <bookmark_value>versions;file saving as, restriction</bookmark_value> </bookmark> <bookmark xml-lang="en-US" branch="hid/.uno:VersionDialog" id="bm_id3149948" localize="false"/> -<paragraph role="heading" id="hd_id3143272" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/shared/01/01190000.xhp" name="Versions">Versions</link></paragraph> -<paragraph role="paragraph" id="par_id3157898" xml-lang="en-US" l10n="U" oldref="2"><variable id="versionentext"><ahelp hid=".uno:VersionDialog">Saves and organizes multiple versions of the current document in the same file. You can also open, delete, and compare previous versions.</ahelp> +<paragraph role="heading" id="hd_id3143272" xml-lang="en-US" level="1" l10n="U"><link href="text/shared/01/01190000.xhp" name="Versions">Versions</link></paragraph> +<paragraph role="paragraph" id="par_id3157898" xml-lang="en-US" l10n="U"><variable id="versionentext"><ahelp hid=".uno:VersionDialog">Saves and organizes multiple versions of the current document in the same file. You can also open, delete, and compare previous versions.</ahelp> </variable></paragraph> <section id="howtoget"> <embed href="text/shared/00/00000401.xhp#versionen"/> </section> -<paragraph role="warning" id="par_id3153527" xml-lang="en-US" l10n="U" oldref="22">If you save a copy of a file that contains version information (by choosing <emph>File - Save As)</emph>, the version information is not saved with the file.</paragraph> -<paragraph role="heading" id="hd_id3149750" xml-lang="en-US" level="2" l10n="U" oldref="4">New versions</paragraph> -<paragraph role="paragraph" id="par_id3163802" xml-lang="en-US" l10n="U" oldref="5">Set the options for saving a new version of the document.</paragraph> +<paragraph role="warning" id="par_id3153527" xml-lang="en-US" l10n="U">If you save a copy of a file that contains version information (by choosing <emph>File - Save As)</emph>, the version information is not saved with the file.</paragraph> +<paragraph role="heading" id="hd_id3149750" xml-lang="en-US" level="2" l10n="U">New versions</paragraph> +<paragraph role="paragraph" id="par_id3163802" xml-lang="en-US" l10n="U">Set the options for saving a new version of the document.</paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:PushButton:DLG_VERSIONS:PB_SAVE" id="bm_id3151110" localize="false"/> -<paragraph role="heading" id="hd_id3147243" xml-lang="en-US" level="3" l10n="U" oldref="6">Save New Version</paragraph> -<paragraph role="paragraph" id="par_id3149149" xml-lang="en-US" l10n="U" oldref="7"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_SAVE">Saves the current state of the document as a new version. If you want, you can also enter comments in the <emph>Insert Version Comment</emph> dialog before you save the new version.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147243" xml-lang="en-US" level="3" l10n="U">Save New Version</paragraph> +<paragraph role="paragraph" id="par_id3149149" xml-lang="en-US" l10n="U"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_SAVE">Saves the current state of the document as a new version. If you want, you can also enter comments in the <emph>Insert Version Comment</emph> dialog before you save the new version.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:MultiLineEdit:DLG_COMMENTS:ME_VERSIONS" id="bm_id3154898" localize="false"/> -<paragraph role="heading" id="hd_id3153348" xml-lang="en-US" level="4" l10n="U" oldref="8">Insert Version Comment</paragraph> -<paragraph role="paragraph" id="par_id3150466" xml-lang="en-US" l10n="U" oldref="9"><ahelp hid="SFX2:MULTILINEEDIT:DLG_COMMENTS:ME_VERSIONS">Enter a comment here when you are saving a new version. If you clicked <emph>Show</emph> to open this dialog, you cannot edit the comment.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153348" xml-lang="en-US" level="4" l10n="U">Insert Version Comment</paragraph> +<paragraph role="paragraph" id="par_id3150466" xml-lang="en-US" l10n="U"><ahelp hid="SFX2:MULTILINEEDIT:DLG_COMMENTS:ME_VERSIONS">Enter a comment here when you are saving a new version. If you clicked <emph>Show</emph> to open this dialog, you cannot edit the comment.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:CheckBox:DLG_VERSIONS:CB_SAVEONCLOSE" id="bm_id3145316" localize="false"/> -<paragraph role="heading" id="hd_id3149514" xml-lang="en-US" level="3" l10n="U" oldref="10">Always save version when closing</paragraph> -<paragraph role="paragraph" id="par_id3153823" xml-lang="en-US" l10n="U" oldref="11"><ahelp hid="SFX2:CHECKBOX:DLG_VERSIONS:CB_SAVEONCLOSE">If you have made changes to your document, $[officename] automatically saves a new version when you close the document.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149514" xml-lang="en-US" level="3" l10n="U">Always save version when closing</paragraph> +<paragraph role="paragraph" id="par_id3153823" xml-lang="en-US" l10n="U"><ahelp hid="SFX2:CHECKBOX:DLG_VERSIONS:CB_SAVEONCLOSE">If you have made changes to your document, $[officename] automatically saves a new version when you close the document.</ahelp></paragraph> <paragraph role="paragraph" id="par_id6663823" xml-lang="en-US" l10n="NEW">If you save the document manually, do not change the document after saving, and then close, no new version will be created.</paragraph><comment>issue 12653</comment> <bookmark xml-lang="en-US" branch="hid/sfx2:ModalDialog:DLG_VERSIONS" id="bm_id3148642" localize="false"/> -<paragraph role="heading" id="hd_id3159167" xml-lang="en-US" level="2" l10n="U" oldref="12">Existing versions</paragraph> -<paragraph role="paragraph" id="par_id3156327" xml-lang="en-US" l10n="U" oldref="13"><ahelp hid="SFX2:MODALDIALOG:DLG_VERSIONS">Lists the existing versions of the current document, the date and the time they were created, the author and the associated comments.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3159167" xml-lang="en-US" level="2" l10n="U">Existing versions</paragraph> +<paragraph role="paragraph" id="par_id3156327" xml-lang="en-US" l10n="U"><ahelp hid="SFX2:MODALDIALOG:DLG_VERSIONS">Lists the existing versions of the current document, the date and the time they were created, the author and the associated comments.</ahelp></paragraph> <embed href="text/shared/00/00000001.xhp#schliessen"/> <bookmark xml-lang="en-US" branch="hid/sfx2:PushButton:DLG_VERSIONS:PB_OPEN" id="bm_id3158431" localize="false"/> -<paragraph role="heading" id="hd_id3149578" xml-lang="en-US" level="2" l10n="U" oldref="14">Open</paragraph> -<paragraph role="paragraph" id="par_id3153827" xml-lang="en-US" l10n="U" oldref="15"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_OPEN">Opens the selected version in a read-only window.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149578" xml-lang="en-US" level="2" l10n="U">Open</paragraph> +<paragraph role="paragraph" id="par_id3153827" xml-lang="en-US" l10n="U"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_OPEN">Opens the selected version in a read-only window.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:PushButton:DLG_VERSIONS:PB_VIEW" id="bm_id3148943" localize="false"/> -<paragraph role="heading" id="hd_id3147530" xml-lang="en-US" level="2" l10n="U" oldref="16">Show</paragraph> -<paragraph role="paragraph" id="par_id3153061" xml-lang="en-US" l10n="U" oldref="17"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_VIEW">Displays the entire comment for the selected version.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147530" xml-lang="en-US" level="2" l10n="U">Show</paragraph> +<paragraph role="paragraph" id="par_id3153061" xml-lang="en-US" l10n="U"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_VIEW">Displays the entire comment for the selected version.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:PushButton:DLG_VERSIONS:PB_DELETE" id="bm_id3149655" localize="false"/> -<paragraph role="heading" id="hd_id3154923" xml-lang="en-US" level="2" l10n="U" oldref="18">Delete</paragraph> -<paragraph role="paragraph" id="par_id3149669" xml-lang="en-US" l10n="U" oldref="19"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_DELETE">Deletes the selected version.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154923" xml-lang="en-US" level="2" l10n="U">Delete</paragraph> +<paragraph role="paragraph" id="par_id3149669" xml-lang="en-US" l10n="U"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_DELETE">Deletes the selected version.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sfx2:PushButton:DLG_VERSIONS:PB_COMPARE" id="bm_id3154389" localize="false"/> -<paragraph role="heading" id="hd_id3148739" xml-lang="en-US" level="2" l10n="U" oldref="21">Compare</paragraph> -<paragraph role="paragraph" id="par_id3152811" xml-lang="en-US" l10n="U" oldref="23"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_COMPARE">Compare the changes that were made in each version.</ahelp> If you want, you can <link href="text/shared/01/02230400.xhp" name="Accept or Reject Changes"><emph>Accept or Reject Changes</emph></link>.</paragraph> +<paragraph role="heading" id="hd_id3148739" xml-lang="en-US" level="2" l10n="U">Compare</paragraph> +<paragraph role="paragraph" id="par_id3152811" xml-lang="en-US" l10n="U"><ahelp hid="SFX2:PUSHBUTTON:DLG_VERSIONS:PB_COMPARE">Compare the changes that were made in each version.</ahelp> If you want, you can <link href="text/shared/01/02230400.xhp" name="Accept or Reject Changes"><emph>Accept or Reject Changes</emph></link>.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/01/05050000.xhp b/main/helpcontent2/source/text/shared/01/05050000.xhp index b751f32260..fffecfeaf1 100644 --- a/main/helpcontent2/source/text/shared/01/05050000.xhp +++ b/main/helpcontent2/source/text/shared/01/05050000.xhp @@ -31,48 +31,48 @@ <body> <section id="grossklein"> <bookmark xml-lang="en-US" branch="hid/.uno:TransliterateMenu" id="bm_id668355" localize="false"/> -<paragraph role="heading" id="hd_id3152952" xml-lang="en-US" level="1" l10n="CHG" oldref="1"><link href="text/shared/01/05050000.xhp" name="Case/Characters">Change Case</link></paragraph> -<paragraph role="paragraph" id="par_id3151299" xml-lang="en-US" l10n="U" oldref="2"><ahelp hid=".">Changes the case of characters in the selection. If the cursor is within a word and no text is selected, then the word is the selection.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3152952" xml-lang="en-US" level="1" l10n="CHG"><link href="text/shared/01/05050000.xhp" name="Case/Characters">Change Case</link></paragraph> +<paragraph role="paragraph" id="par_id3151299" xml-lang="en-US" l10n="U"><ahelp hid=".">Changes the case of characters in the selection. If the cursor is within a word and no text is selected, then the word is the selection.</ahelp></paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00040500.xhp#grossklein"/> </section> <bookmark xml-lang="en-US" branch="hid/SID_TRANSLITERATE_SENTENCE" id="bm_id7402005" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToSentenceCase" id="bm_id3149347" localize="false"/> -<paragraph role="heading" id="hd_id3147572" xml-lang="en-US" level="2" l10n="U" oldref="5">Sentence case</paragraph> -<paragraph role="paragraph" id="par_id3150694" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid=".">Changes the first letter of the selected western characters to an uppercase character.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147572" xml-lang="en-US" level="2" l10n="U">Sentence case</paragraph> +<paragraph role="paragraph" id="par_id3150694" xml-lang="en-US" l10n="U"><ahelp hid=".">Changes the first letter of the selected western characters to an uppercase character.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToLower" id="bm_id7402004" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToLower" id="bm_id3149346" localize="false"/> -<paragraph role="heading" id="hd_id3147571" xml-lang="en-US" level="2" l10n="U" oldref="5">lowercase</paragraph> -<paragraph role="paragraph" id="par_id3150693" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid=".uno:ChangeCaseToLower">Changes the selected western characters to lowercase characters.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147571" xml-lang="en-US" level="2" l10n="U">lowercase</paragraph> +<paragraph role="paragraph" id="par_id3150693" xml-lang="en-US" l10n="U"><ahelp hid=".uno:ChangeCaseToLower">Changes the selected western characters to lowercase characters.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToUpper" id="bm_id5342659" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToUpper" id="bm_id3149205" localize="false"/> -<paragraph role="heading" id="hd_id3147143" xml-lang="en-US" level="2" l10n="U" oldref="3">UPPERCASE</paragraph> -<paragraph role="paragraph" id="par_id3152372" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid=".uno:ChangeCaseToUpper">Changes the selected western characters to uppercase characters.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147143" xml-lang="en-US" level="2" l10n="U">UPPERCASE</paragraph> +<paragraph role="paragraph" id="par_id3152372" xml-lang="en-US" l10n="U"><ahelp hid=".uno:ChangeCaseToUpper">Changes the selected western characters to uppercase characters.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/SID_TRANSLITERATE_CAPITALIZE" id="bm_id7402014" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToTitleCase" id="bm_id3149316" localize="false"/> -<paragraph role="heading" id="hd_id3147511" xml-lang="en-US" level="2" l10n="U" oldref="5">Capitalize Every Word</paragraph> -<paragraph role="paragraph" id="par_id3150613" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid=".">Changes the first character of every word of the selected western characters to an uppercase character.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147511" xml-lang="en-US" level="2" l10n="U">Capitalize Every Word</paragraph> +<paragraph role="paragraph" id="par_id3150613" xml-lang="en-US" l10n="U"><ahelp hid=".">Changes the first character of every word of the selected western characters to an uppercase character.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/SID_TRANSLITERATE_TOGGLE" id="bm_id7402024" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToToggleCase" id="bm_id3149326" localize="false"/> -<paragraph role="heading" id="hd_id3147521" xml-lang="en-US" level="2" l10n="U" oldref="5">tOGGLE cASE</paragraph> -<paragraph role="paragraph" id="par_id3150623" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid=".">Toggles case of all selected western characters.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147521" xml-lang="en-US" level="2" l10n="U">tOGGLE cASE</paragraph> +<paragraph role="paragraph" id="par_id3150623" xml-lang="en-US" l10n="U"><ahelp hid=".">Toggles case of all selected western characters.</ahelp></paragraph> <embed href="text/shared/00/00000007.xhp#asia"/> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToHalfWidth" id="bm_id203258" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToHalfWidth" id="bm_id3154288" localize="false"/> -<paragraph role="heading" id="hd_id3155392" xml-lang="en-US" level="2" l10n="U" oldref="7">Half-width</paragraph> -<paragraph role="paragraph" id="par_id3147088" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid=".uno:ChangeCaseToHalfWidth">Changes the selected Asian characters to half-width characters.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155392" xml-lang="en-US" level="2" l10n="U">Half-width</paragraph> +<paragraph role="paragraph" id="par_id3147088" xml-lang="en-US" l10n="U"><ahelp hid=".uno:ChangeCaseToHalfWidth">Changes the selected Asian characters to half-width characters.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToFullWidth" id="bm_id4930999" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToFullWidth" id="bm_id3147242" localize="false"/> -<paragraph role="heading" id="hd_id3156113" xml-lang="en-US" level="2" l10n="U" oldref="9">Full Width</paragraph> -<paragraph role="paragraph" id="par_id3154749" xml-lang="en-US" l10n="U" oldref="10"><ahelp hid=".uno:ChangeCaseToFullWidth">Changes the selected Asian characters to full width characters.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3156113" xml-lang="en-US" level="2" l10n="U">Full Width</paragraph> +<paragraph role="paragraph" id="par_id3154749" xml-lang="en-US" l10n="U"><ahelp hid=".uno:ChangeCaseToFullWidth">Changes the selected Asian characters to full width characters.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToHiragana" id="bm_id3224908" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToHiragana" id="bm_id3147275" localize="false"/> -<paragraph role="heading" id="hd_id3152996" xml-lang="en-US" level="2" l10n="U" oldref="11">Hiragana</paragraph> -<paragraph role="paragraph" id="par_id3156156" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid=".uno:ChangeCaseToHiragana">Changes the selected Asian characters to Hiragana characters.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3152996" xml-lang="en-US" level="2" l10n="U">Hiragana</paragraph> +<paragraph role="paragraph" id="par_id3156156" xml-lang="en-US" l10n="U"><ahelp hid=".uno:ChangeCaseToHiragana">Changes the selected Asian characters to Hiragana characters.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToKatakana" id="bm_id3845243" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:ChangeCaseToKatakana" id="bm_id3155449" localize="false"/> -<paragraph role="heading" id="hd_id3154173" xml-lang="en-US" level="2" l10n="U" oldref="13">Katakana</paragraph> -<paragraph role="paragraph" id="par_id3146137" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid=".uno:ChangeCaseToKatakana">Changes the selected Asian characters to Katakana characters.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154173" xml-lang="en-US" level="2" l10n="U">Katakana</paragraph> +<paragraph role="paragraph" id="par_id3146137" xml-lang="en-US" l10n="U"><ahelp hid=".uno:ChangeCaseToKatakana">Changes the selected Asian characters to Katakana characters.</ahelp></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/01/06150200.xhp b/main/helpcontent2/source/text/shared/01/06150200.xhp index 40864a93de..cedf9dea7d 100644 --- a/main/helpcontent2/source/text/shared/01/06150200.xhp +++ b/main/helpcontent2/source/text/shared/01/06150200.xhp @@ -29,42 +29,42 @@ </topic> </meta> <body> -<paragraph role="heading" id="hd_id3150379" xml-lang="en-US" level="1" l10n="U" oldref="22"><variable id="testxml"><link href="text/shared/01/06150200.xhp" name="Test XML Filter">Test XML Filter</link> +<paragraph role="heading" id="hd_id3150379" xml-lang="en-US" level="1" l10n="U"><variable id="testxml"><link href="text/shared/01/06150200.xhp" name="Test XML Filter">Test XML Filter</link> </variable></paragraph> -<paragraph role="paragraph" id="par_id3146857" xml-lang="en-US" l10n="U" oldref="23"><ahelp hid=".">Tests the XSLT stylesheets used by the selected <link href="text/shared/01/06150000.xhp" name="XML filter">XML filter</link>.</ahelp></paragraph> +<paragraph role="paragraph" id="par_id3146857" xml-lang="en-US" l10n="U"><ahelp hid=".">Tests the XSLT stylesheets used by the selected <link href="text/shared/01/06150000.xhp" name="XML filter">XML filter</link>.</ahelp></paragraph> <paragraph role="paragraph" id="par_id3151260" xml-lang="en-US" l10n="E" localize="false"><link href="text/shared/00/00000406.xhp#xmlfiltertest"></link></paragraph> <section id="howtoget"> <embed href="text/shared/00/00000406.xhp#xmlfilter"/> </section> -<paragraph role="heading" id="hd_id3146765" xml-lang="en-US" level="2" l10n="U" oldref="1">Export</paragraph> +<paragraph role="heading" id="hd_id3146765" xml-lang="en-US" level="2" l10n="U">Export</paragraph> <bookmark xml-lang="en-US" branch="hid/FILTER_HID_XML_FILTER_TEST_EXPORT_XSLT_FILE" id="bm_id4476454" localize="false"/> -<paragraph role="heading" id="hd_id3153070" xml-lang="en-US" level="3" l10n="U" oldref="2">XSLT for export</paragraph> -<paragraph role="paragraph" id="par_id3147617" xml-lang="en-US" l10n="U" oldref="3"><ahelp hid=".">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3147090" xml-lang="en-US" level="3" l10n="U" oldref="4">Transform document</paragraph> -<paragraph role="paragraph" id="par_id3153029" xml-lang="en-US" l10n="U" oldref="5"><ahelp hid=".">Displays the file name of the document that you want to use to test the XSLT filter.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153070" xml-lang="en-US" level="3" l10n="U">XSLT for export</paragraph> +<paragraph role="paragraph" id="par_id3147617" xml-lang="en-US" l10n="U"><ahelp hid=".">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147090" xml-lang="en-US" level="3" l10n="U">Transform document</paragraph> +<paragraph role="paragraph" id="par_id3153029" xml-lang="en-US" l10n="U"><ahelp hid=".">Displays the file name of the document that you want to use to test the XSLT filter.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/FILTER_HID_XML_FILTER_TEST_EXPORT_BROWSE" id="bm_id3152363" localize="false"/> -<paragraph role="heading" id="hd_id3145160" xml-lang="en-US" level="4" l10n="U" oldref="6">Browse</paragraph> +<paragraph role="heading" id="hd_id3145160" xml-lang="en-US" level="4" l10n="U">Browse</paragraph> <paragraph role="paragraph" id="par_id3144436" xml-lang="en-US" l10n="C"><ahelp hid="HID_XML_FILTER_TEST_EXPORT_BROWSE">Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is displayed in the <link href="text/shared/01/06150210.xhp">XML Filter output</link> window.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/FILTER_HID_XML_FILTER_TEST_EXPORT_CURRENT" id="bm_id3147226" localize="false"/> -<paragraph role="heading" id="hd_id3159194" xml-lang="en-US" level="4" l10n="U" oldref="8">Current Document</paragraph> -<paragraph role="paragraph" id="par_id3147250" xml-lang="en-US" l10n="U" oldref="9"><ahelp hid="HID_XML_FILTER_TEST_EXPORT_CURRENT">The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the <link href="text/shared/01/06150210.xhp">XML Filter output</link> window.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3154823" xml-lang="en-US" level="2" l10n="U" oldref="10">Import</paragraph> +<paragraph role="heading" id="hd_id3159194" xml-lang="en-US" level="4" l10n="U">Current Document</paragraph> +<paragraph role="paragraph" id="par_id3147250" xml-lang="en-US" l10n="U"><ahelp hid="HID_XML_FILTER_TEST_EXPORT_CURRENT">The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the <link href="text/shared/01/06150210.xhp">XML Filter output</link> window.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154823" xml-lang="en-US" level="2" l10n="U">Import</paragraph> <bookmark xml-lang="en-US" branch="hid/FILTER_HID_XML_FILTER_TEST_IMPORT_XSLT_FILE" id="bm_id8536027" localize="false"/> -<paragraph role="heading" id="hd_id3159233" xml-lang="en-US" level="3" l10n="U" oldref="11">XSLT for import</paragraph> -<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="HID_XML_FILTER_TEST_EXPORT_CURRENT">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3159233" xml-lang="en-US" level="3" l10n="U">XSLT for import</paragraph> +<paragraph role="paragraph" id="par_id3153681" xml-lang="en-US" l10n="U"><ahelp hid="HID_XML_FILTER_TEST_EXPORT_CURRENT">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/FILTER_HID_XML_FILTER_TEST_IMPORT_TEMPLATE_FILE" id="bm_id2557145" localize="false"/> -<paragraph role="heading" id="hd_id3149177" xml-lang="en-US" level="3" l10n="U" oldref="13">Template for import</paragraph> -<paragraph role="paragraph" id="par_id3156410" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="HID_XML_FILTER_TEST_EXPORT_CURRENT">Displays the file name of the template that you entered on the <emph>Transformation</emph> tab page.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3163802" xml-lang="en-US" level="3" l10n="U" oldref="15">Transform file</paragraph> +<paragraph role="heading" id="hd_id3149177" xml-lang="en-US" level="3" l10n="U">Template for import</paragraph> +<paragraph role="paragraph" id="par_id3156410" xml-lang="en-US" l10n="U"><ahelp hid="HID_XML_FILTER_TEST_EXPORT_CURRENT">Displays the file name of the template that you entered on the <emph>Transformation</emph> tab page.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3163802" xml-lang="en-US" level="3" l10n="U">Transform file</paragraph> <bookmark xml-lang="en-US" branch="hid/FILTER_HID_XML_FILTER_TEST_IMPORT_DISPLAY_SOURCE" id="bm_id3149812" localize="false"/> -<paragraph role="heading" id="hd_id3147242" xml-lang="en-US" level="4" l10n="U" oldref="16">Display source</paragraph> -<paragraph role="paragraph" id="par_id3150444" xml-lang="en-US" l10n="U" oldref="17"><ahelp hid="HID_XML_FILTER_TEST_IMPORT_DISPLAY_SOURCE">Opens the <embedvar href="text/shared/01/06150210.xhp#xmlfilteroutput"/> window, where the XML source of the selected document is displayed. The document is used to test the import filter.</ahelp> The <emph>Validate</emph> button in the window validates the XML source of the document.</paragraph> +<paragraph role="heading" id="hd_id3147242" xml-lang="en-US" level="4" l10n="U">Display source</paragraph> +<paragraph role="paragraph" id="par_id3150444" xml-lang="en-US" l10n="U"><ahelp hid="HID_XML_FILTER_TEST_IMPORT_DISPLAY_SOURCE">Opens the <embedvar href="text/shared/01/06150210.xhp#xmlfilteroutput"/> window, where the XML source of the selected document is displayed. The document is used to test the import filter.</ahelp> The <emph>Validate</emph> button in the window validates the XML source of the document.</paragraph> <bookmark xml-lang="en-US" branch="hid/FILTER_HID_XML_FILTER_TEST_IMPORT_BROWSE" id="bm_id3154577" localize="false"/> -<paragraph role="heading" id="hd_id3147078" xml-lang="en-US" level="4" l10n="U" oldref="18">Browse</paragraph> -<paragraph role="paragraph" id="par_id3149885" xml-lang="en-US" l10n="U" oldref="19"><ahelp hid="HID_XML_FILTER_TEST_IMPORT_BROWSE">Opens a file selection dialog. The selected file is opened using the current XML import filter.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147078" xml-lang="en-US" level="4" l10n="U">Browse</paragraph> +<paragraph role="paragraph" id="par_id3149885" xml-lang="en-US" l10n="U"><ahelp hid="HID_XML_FILTER_TEST_IMPORT_BROWSE">Opens a file selection dialog. The selected file is opened using the current XML import filter.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/FILTER_HID_XML_FILTER_TEST_IMPORT_RECENT" id="bm_id3150465" localize="false"/> <bookmark xml-lang="en-US" branch="hid/FILTER_HID_XML_FILTER_TEST_IMPORT_RECENT_FILE" id="bm_id264595" localize="false"/> -<paragraph role="heading" id="hd_id3153666" xml-lang="en-US" level="4" l10n="U" oldref="20">Recent File</paragraph> -<paragraph role="paragraph" id="par_id3146137" xml-lang="en-US" l10n="U" oldref="21"><ahelp hid="HID_XML_FILTER_TEST_IMPORT_RECENT">Re-opens the document that was last opened with this dialog.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153666" xml-lang="en-US" level="4" l10n="U">Recent File</paragraph> +<paragraph role="paragraph" id="par_id3146137" xml-lang="en-US" l10n="U"><ahelp hid="HID_XML_FILTER_TEST_IMPORT_RECENT">Re-opens the document that was last opened with this dialog.</ahelp></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/autopi/01010200.xhp b/main/helpcontent2/source/text/shared/autopi/01010200.xhp index 0e0c2a0a29..50cc2072e2 100644 --- a/main/helpcontent2/source/text/shared/autopi/01010200.xhp +++ b/main/helpcontent2/source/text/shared/autopi/01010200.xhp @@ -32,32 +32,32 @@ <body> <section id="seite2"> <bookmark xml-lang="en-US" branch="hid/SW_HID_LETTER_PAGE2" id="bm_id3148671" localize="false"/> -<paragraph role="heading" id="hd_id3155354" xml-lang="en-US" level="1" l10n="CHG" oldref="1"><link href="text/shared/autopi/01010200.xhp" name="Letter Wizard - Letterhead layout">Letter Wizard - Letterhead layout</link></paragraph> -<paragraph role="paragraph" id="par_id3146856" xml-lang="en-US" l10n="CHG" oldref="2"><ahelp hid="HID_LETTER_PAGE2">Allows you to specify the elements that are already imprinted on your letterhead paper.</ahelp> Those elements are not printed, and the space they occupy is left blank by the printer.</paragraph> +<paragraph role="heading" id="hd_id3155354" xml-lang="en-US" level="1" l10n="CHG"><link href="text/shared/autopi/01010200.xhp" name="Letter Wizard - Letterhead layout">Letter Wizard - Letterhead layout</link></paragraph> +<paragraph role="paragraph" id="par_id3146856" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_LETTER_PAGE2">Allows you to specify the elements that are already imprinted on your letterhead paper.</ahelp> Those elements are not printed, and the space they occupy is left blank by the printer.</paragraph> </section> <section id="howtoget"> <embed href="text/shared/00/00000401.xhp#autopilotbrief2"/> </section> -<paragraph role="heading" id="hd_id3156211" xml-lang="en-US" level="2" l10n="CHG" oldref="3">Specify items already on your letterhead paper</paragraph> +<paragraph role="heading" id="hd_id3156211" xml-lang="en-US" level="2" l10n="CHG">Specify items already on your letterhead paper</paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_CHKPAPERCOMPANYLOGO" id="bm_id8606219" localize="false"/> -<paragraph role="heading" id="hd_id3149549" xml-lang="en-US" level="2" l10n="CHG" oldref="4">Logo</paragraph> -<paragraph role="paragraph" id="par_id3154186" xml-lang="en-US" l10n="CHG" oldref="5"><ahelp hid="HID_LTRWIZ_CHKPAPERCOMPANYLOGO">Specifies that a logo is already printed on your letterhead paper. %PRODUCTNAME does not print a logo.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149549" xml-lang="en-US" level="2" l10n="CHG">Logo</paragraph> +<paragraph role="paragraph" id="par_id3154186" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_LTRWIZ_CHKPAPERCOMPANYLOGO">Specifies that a logo is already printed on your letterhead paper. %PRODUCTNAME does not print a logo.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_NUMLOGOHEIGHT" id="bm_id1391338" localize="false"/> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_NUMADDRESSHEIGHT" id="bm_id4860072" localize="false"/> -<paragraph role="heading" id="hd_id3151245" xml-lang="en-US" level="3" l10n="U" oldref="33">Height</paragraph> -<paragraph role="paragraph" id="par_id3148944" xml-lang="en-US" l10n="CHG" oldref="34"><ahelp hid="HID_LTRWIZ_NUMLOGOHEIGHT">Defines the height of the object.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3151245" xml-lang="en-US" level="3" l10n="U">Height</paragraph> +<paragraph role="paragraph" id="par_id3148944" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_LTRWIZ_NUMLOGOHEIGHT">Defines the height of the object.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_NUMLOGOWIDTH" id="bm_id996429" localize="false"/> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_NUMADDRESSWIDTH" id="bm_id289315" localize="false"/> -<paragraph role="heading" id="hd_id3149415" xml-lang="en-US" level="3" l10n="U" oldref="31">Width</paragraph> -<paragraph role="paragraph" id="par_id3156192" xml-lang="en-US" l10n="CHG" oldref="32"><ahelp hid="HID_LTRWIZ_NUMLOGOWIDTH">Defines the width of the object.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149415" xml-lang="en-US" level="3" l10n="U">Width</paragraph> +<paragraph role="paragraph" id="par_id3156192" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_LTRWIZ_NUMLOGOWIDTH">Defines the width of the object.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_NUMLOGOX" id="bm_id1895199" localize="false"/> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_NUMADDRESSX" id="bm_id6038087" localize="false"/> -<paragraph role="heading" id="hd_id3152922" xml-lang="en-US" level="3" l10n="CHG" oldref="43">Spacing to left margin</paragraph> -<paragraph role="paragraph" id="par_id3149766" xml-lang="en-US" l10n="CHG" oldref="44"><ahelp hid="HID_LTRWIZ_NUMLOGOX">Sets the object distance from the left page margin.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3152922" xml-lang="en-US" level="3" l10n="CHG">Spacing to left margin</paragraph> +<paragraph role="paragraph" id="par_id3149766" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_LTRWIZ_NUMLOGOX">Sets the object distance from the left page margin.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_NUMLOGOY" id="bm_id4316232" localize="false"/> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_NUMADDRESSY" id="bm_id8536027" localize="false"/> -<paragraph role="heading" id="hd_id3150449" xml-lang="en-US" level="3" l10n="CHG" oldref="45">Spacing to top margin</paragraph> -<paragraph role="paragraph" id="par_id3156423" xml-lang="en-US" l10n="CHG" oldref="46"><ahelp hid="HID_LTRWIZ_NUMLOGOY">Sets the object distance from the top page margin.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150449" xml-lang="en-US" level="3" l10n="CHG">Spacing to top margin</paragraph> +<paragraph role="paragraph" id="par_id3156423" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_LTRWIZ_NUMLOGOY">Sets the object distance from the top page margin.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_CHKPAPERCOMPANYADDRESS" id="bm_id1311075" localize="false"/> <paragraph role="heading" id="par_idN106CB" xml-lang="en-US" level="2" l10n="NEW">Own address</paragraph> <paragraph role="paragraph" id="par_idN106CF" xml-lang="en-US" l10n="NEW"><ahelp hid="HID_LTRWIZ_CHKPAPERCOMPANYADDRESS">Specifies that an address is already printed on your letterhead paper. %PRODUCTNAME does not print an address.</ahelp></paragraph> @@ -70,6 +70,6 @@ <bookmark xml-lang="en-US" branch="hid/WIZARDS_HID_LTRWIZ_NUMFOOTERHEIGHT" id="bm_id1415753" localize="false"/> <paragraph role="heading" id="par_idN106E0" xml-lang="en-US" level="3" l10n="NEW">Height</paragraph> <paragraph role="paragraph" id="par_idN106E4" xml-lang="en-US" l10n="NEW"><ahelp hid="HID_LTRWIZ_NUMFOOTERHEIGHT">Enter the height of the footer area that is already imprinted on your letterhead paper. %PRODUCTNAME does not print in that area.</ahelp></paragraph> -<paragraph role="paragraph" id="par_id3153367" xml-lang="en-US" l10n="CHG" oldref="47"><link href="text/shared/autopi/01010300.xhp" name="Go to Letter Wizard - Printed items">Go to Letter Wizard - Printed items</link></paragraph> +<paragraph role="paragraph" id="par_id3153367" xml-lang="en-US" l10n="CHG"><link href="text/shared/autopi/01010300.xhp" name="Go to Letter Wizard - Printed items">Go to Letter Wizard - Printed items</link></paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/shared/optionen/01041100.xhp b/main/helpcontent2/source/text/shared/optionen/01041100.xhp index 6fc39604ae..6704353274 100644 --- a/main/helpcontent2/source/text/shared/optionen/01041100.xhp +++ b/main/helpcontent2/source/text/shared/optionen/01041100.xhp @@ -48,31 +48,31 @@ <paragraph xml-lang="en-US" id="par_idN1058F" role="heading" level="2" l10n="NEW">Caption</paragraph> <paragraph xml-lang="en-US" id="par_idN10593" role="paragraph" l10n="NEW">Defines the options to be applied to the selected object type. These options are identical to those in the <emph>Insert - Caption</emph> menu, which is available when an object is selected. Below the settings is a preview of the object category, together with numbering type.</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ComboBox:TP_OPTCAPTION_PAGE:BOX_CATEGORY" id="bm_id3156330" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3146798" role="heading" level="3" l10n="U" oldref="5">Category</paragraph> -<paragraph xml-lang="en-US" id="par_id3155419" role="paragraph" l10n="U" oldref="13"><ahelp hid="SW_COMBOBOX_TP_OPTCAPTION_PAGE_BOX_CATEGORY">Specifies the category of the selected object.</ahelp><comment>UFI: copied text from optionen/01040801</comment></paragraph> +<paragraph xml-lang="en-US" id="hd_id3146798" role="heading" level="3" l10n="U">Category</paragraph> +<paragraph xml-lang="en-US" id="par_id3155419" role="paragraph" l10n="U"><ahelp hid="SW_COMBOBOX_TP_OPTCAPTION_PAGE_BOX_CATEGORY">Specifies the category of the selected object.</ahelp><comment>UFI: copied text from optionen/01040801</comment></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_OPTCAPTION_PAGE:BOX_FORMAT" id="bm_id3149236" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3155628" role="heading" level="3" l10n="U" oldref="6">Numbering</paragraph> -<paragraph xml-lang="en-US" id="par_id3149233" role="paragraph" l10n="U" oldref="18"><ahelp hid="SW_LISTBOX_TP_OPTCAPTION_PAGE_BOX_FORMAT">Specifies the type of numbering required.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3155628" role="heading" level="3" l10n="U">Numbering</paragraph> +<paragraph xml-lang="en-US" id="par_id3149233" role="paragraph" l10n="U"><ahelp hid="SW_LISTBOX_TP_OPTCAPTION_PAGE_BOX_FORMAT">Specifies the type of numbering required.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_OPTCAPTION_PAGE:ED_SEPARATOR" id="bm_id3154071" localize="false"/> <bookmark xml-lang="en-US" branch="hid/sw:Edit:TP_OPTCAPTION_PAGE:EDT_TEXT" id="bm_id4456617" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3149457" role="heading" level="3" l10n="U" oldref="10">Separator</paragraph> -<paragraph xml-lang="en-US" id="par_idN106E2" role="paragraph" l10n="U" oldref="17"><ahelp hid="SW_EDIT_TP_OPTCAPTION_PAGE_ED_SEPARATOR">Defines the character to be displayed after the number of the heading or chapter level.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3149457" role="heading" level="3" l10n="U">Separator</paragraph> +<paragraph xml-lang="en-US" id="par_idN106E2" role="paragraph" l10n="U"><ahelp hid="SW_EDIT_TP_OPTCAPTION_PAGE_ED_SEPARATOR">Defines the character to be displayed after the number of the heading or chapter level.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_OPTCAPTION_PAGE:BOX_POS" id="bm_id3153627" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3154514" role="heading" level="3" l10n="U" oldref="8">Position</paragraph> -<paragraph xml-lang="en-US" id="par_id3151384" role="paragraph" l10n="U" oldref="15"><ahelp hid="SW_LISTBOX_TP_OPTCAPTION_PAGE_BOX_POS">Determines the position of the caption with respect to the object.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3154514" role="heading" level="3" l10n="U">Position</paragraph> +<paragraph xml-lang="en-US" id="par_id3151384" role="paragraph" l10n="U"><ahelp hid="SW_LISTBOX_TP_OPTCAPTION_PAGE_BOX_POS">Determines the position of the caption with respect to the object.</ahelp></paragraph> <paragraph xml-lang="en-US" id="par_idN1064E" role="heading" level="2" l10n="NEW">Numbering captions by chapter</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_OPTCAPTION_PAGE:LB_LEVEL" id="bm_id3145068" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3145609" role="heading" level="3" l10n="U" oldref="9">Level</paragraph> -<paragraph xml-lang="en-US" id="par_id3153898" role="paragraph" l10n="U" oldref="16"><ahelp hid="SW_LISTBOX_TP_OPTCAPTION_PAGE_LB_LEVEL">Specifies the headings or chapter levels where you want the numbering to start.</ahelp></paragraph> -<paragraph xml-lang="en-US" id="par_id3153524" role="paragraph" l10n="U" oldref="17"><ahelp hid="SW_EDIT_TP_OPTCAPTION_PAGE_ED_SEPARATOR">Defines the character to be displayed after the number of the heading or chapter level.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3145609" role="heading" level="3" l10n="U">Level</paragraph> +<paragraph xml-lang="en-US" id="par_id3153898" role="paragraph" l10n="U"><ahelp hid="SW_LISTBOX_TP_OPTCAPTION_PAGE_LB_LEVEL">Specifies the headings or chapter levels where you want the numbering to start.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="par_id3153524" role="paragraph" l10n="U"><ahelp hid="SW_EDIT_TP_OPTCAPTION_PAGE_ED_SEPARATOR">Defines the character to be displayed after the number of the heading or chapter level.</ahelp></paragraph> <paragraph xml-lang="en-US" id="par_idN106A8" role="heading" level="2" l10n="NEW">Category and frame format</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ListBox:TP_OPTCAPTION_PAGE:LB_CHARSTYLE" id="bm_id2708517" localize="false"/> <paragraph xml-lang="en-US" id="par_idN106AE" role="heading" level="3" l10n="NEW">Character style</paragraph> <paragraph xml-lang="en-US" id="par_idN106B4" role="paragraph" l10n="NEW"><ahelp hid=".">Specifies the character style.</ahelp></paragraph> <!-- removed HID SW:CHECKBOX:DLG_CAPTION:CB_COPY_ATTR --> <bookmark xml-lang="en-US" branch="hid/sw:CheckBox:TP_OPTCAPTION_PAGE:CB_APPLYBORDER" id="bm_id346995" localize="false"/> -<paragraph xml-lang="en-US" id="hd_id3143280" role="heading" level="3" l10n="U" oldref="43">Apply border and shadow</paragraph> -<paragraph xml-lang="en-US" id="par_id3149826" role="paragraph" l10n="CHG" oldref="44"><ahelp hid="SW:CHECKBOX:DLG_CAPTION:CB_COPY_ATTR">Applies the border and shadow of the object to the caption frame.</ahelp></paragraph> +<paragraph xml-lang="en-US" id="hd_id3143280" role="heading" level="3" l10n="U">Apply border and shadow</paragraph> +<paragraph xml-lang="en-US" id="par_id3149826" role="paragraph" l10n="CHG"><ahelp hid="SW:CHECKBOX:DLG_CAPTION:CB_COPY_ATTR">Applies the border and shadow of the object to the caption frame.</ahelp></paragraph> <section id="relatedtopics"> <embed href="text/swriter/guide/captions.xhp#captions"/> <embed href="text/swriter/guide/captions_numbers.xhp#captions_numbers"/> diff --git a/main/helpcontent2/source/text/simpress/01/05170000.xhp b/main/helpcontent2/source/text/simpress/01/05170000.xhp index a38151a88b..153a8fd976 100644 --- a/main/helpcontent2/source/text/simpress/01/05170000.xhp +++ b/main/helpcontent2/source/text/simpress/01/05170000.xhp @@ -34,40 +34,40 @@ </bookmark> <bookmark xml-lang="en-US" branch="hid/.uno:ConnectorAttributes" id="bm_id7044568" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:ConnectorAttributes" id="bm_id3150343" localize="false"/> -<paragraph role="heading" id="hd_id3150297" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/simpress/01/05170000.xhp" name="Connectors">Connectors</link></paragraph> -<paragraph role="paragraph" id="par_id3149209" xml-lang="en-US" l10n="U" oldref="2"><variable id="verbindertext"><ahelp hid=".uno:ConnectorAttributes">Sets the properties of a connector.</ahelp></variable></paragraph> +<paragraph role="heading" id="hd_id3150297" xml-lang="en-US" level="1" l10n="U"><link href="text/simpress/01/05170000.xhp" name="Connectors">Connectors</link></paragraph> +<paragraph role="paragraph" id="par_id3149209" xml-lang="en-US" l10n="U"><variable id="verbindertext"><ahelp hid=".uno:ConnectorAttributes">Sets the properties of a connector.</ahelp></variable></paragraph> <bookmark xml-lang="en-US" branch="hid/cui:ListBox:RID_SVXPAGE_CONNECTION:LB_TYPE" id="bm_id3149405" localize="false"/> -<paragraph role="heading" id="hd_id3145384" xml-lang="en-US" level="2" l10n="U" oldref="21">Type</paragraph> -<paragraph role="paragraph" id="par_id3152899" xml-lang="en-US" l10n="U" oldref="22"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_CONNECTION:LB_TYPE">Lists the types of connectors that are available.</ahelp> There are four types of connectors: <emph>standard, line, straight, and curved</emph>.</paragraph> -<paragraph role="heading" id="hd_id3148866" xml-lang="en-US" level="2" l10n="U" oldref="3">Line skew</paragraph> -<paragraph role="paragraph" id="par_id3148605" xml-lang="en-US" l10n="U" oldref="4">Defines the skew of a connector line. The preview window displays the result.</paragraph> +<paragraph role="heading" id="hd_id3145384" xml-lang="en-US" level="2" l10n="U">Type</paragraph> +<paragraph role="paragraph" id="par_id3152899" xml-lang="en-US" l10n="U"><ahelp hid="SVX:LISTBOX:RID_SVXPAGE_CONNECTION:LB_TYPE">Lists the types of connectors that are available.</ahelp> There are four types of connectors: <emph>standard, line, straight, and curved</emph>.</paragraph> +<paragraph role="heading" id="hd_id3148866" xml-lang="en-US" level="2" l10n="U">Line skew</paragraph> +<paragraph role="paragraph" id="par_id3148605" xml-lang="en-US" l10n="U">Defines the skew of a connector line. The preview window displays the result.</paragraph> <bookmark xml-lang="en-US" branch="hid/cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_1" id="bm_id3159206" localize="false"/> -<paragraph role="heading" id="hd_id3157982" xml-lang="en-US" level="3" l10n="U" oldref="5">Line 1</paragraph> -<paragraph role="paragraph" id="par_id3150215" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_1">Enter a skew value for Line 1.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3157982" xml-lang="en-US" level="3" l10n="U">Line 1</paragraph> +<paragraph role="paragraph" id="par_id3150215" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_1">Enter a skew value for Line 1.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_2" id="bm_id3150046" localize="false"/> -<paragraph role="heading" id="hd_id3145360" xml-lang="en-US" level="3" l10n="U" oldref="7">Line 2</paragraph> -<paragraph role="paragraph" id="par_id3146962" xml-lang="en-US" l10n="U" oldref="8"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_2">Enter a skew value for Line 2.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3145360" xml-lang="en-US" level="3" l10n="U">Line 2</paragraph> +<paragraph role="paragraph" id="par_id3146962" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_2">Enter a skew value for Line 2.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_3" id="bm_id3153071" localize="false"/> -<paragraph role="heading" id="hd_id3149873" xml-lang="en-US" level="3" l10n="U" oldref="9">Line 3</paragraph> -<paragraph role="paragraph" id="par_id3153957" xml-lang="en-US" l10n="U" oldref="10"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_3">Enter a skew value for Line 3.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3145581" xml-lang="en-US" level="2" l10n="U" oldref="11">Line spacing</paragraph> -<paragraph role="paragraph" id="par_id3150395" xml-lang="en-US" l10n="U" oldref="12">Sets the line spacing for the connectors.</paragraph> +<paragraph role="heading" id="hd_id3149873" xml-lang="en-US" level="3" l10n="U">Line 3</paragraph> +<paragraph role="paragraph" id="par_id3153957" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_3">Enter a skew value for Line 3.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3145581" xml-lang="en-US" level="2" l10n="U">Line spacing</paragraph> +<paragraph role="paragraph" id="par_id3150395" xml-lang="en-US" l10n="U">Sets the line spacing for the connectors.</paragraph> <bookmark xml-lang="en-US" branch="hid/cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_1" id="bm_id3150538" localize="false"/> -<paragraph role="heading" id="hd_id3147297" xml-lang="en-US" level="3" l10n="U" oldref="13">Begin horizontal</paragraph> -<paragraph role="paragraph" id="par_id3145238" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_1">Enter the amount of horizontal space you want at the beginning of the connector.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147297" xml-lang="en-US" level="3" l10n="U">Begin horizontal</paragraph> +<paragraph role="paragraph" id="par_id3145238" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_1">Enter the amount of horizontal space you want at the beginning of the connector.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_1" id="bm_id3149353" localize="false"/> -<paragraph role="heading" id="hd_id3153118" xml-lang="en-US" level="3" l10n="U" oldref="15">Begin vertical</paragraph> -<paragraph role="paragraph" id="par_id3150653" xml-lang="en-US" l10n="U" oldref="16"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_1">Enter the amount of vertical space you want at the beginning of the connector.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153118" xml-lang="en-US" level="3" l10n="U">Begin vertical</paragraph> +<paragraph role="paragraph" id="par_id3150653" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_1">Enter the amount of vertical space you want at the beginning of the connector.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_2" id="bm_id3149889" localize="false"/> -<paragraph role="heading" id="hd_id3150746" xml-lang="en-US" level="3" l10n="U" oldref="17">End horizontal</paragraph> -<paragraph role="paragraph" id="par_id3148726" xml-lang="en-US" l10n="U" oldref="18"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_2">Enter the amount of horizontal space you want at the end of the connector.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3150746" xml-lang="en-US" level="3" l10n="U">End horizontal</paragraph> +<paragraph role="paragraph" id="par_id3148726" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_2">Enter the amount of horizontal space you want at the end of the connector.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_2" id="bm_id3145596" localize="false"/> -<paragraph role="heading" id="hd_id3153038" xml-lang="en-US" level="3" l10n="U" oldref="19">End vertical</paragraph> -<paragraph role="paragraph" id="par_id3155260" xml-lang="en-US" l10n="U" oldref="20"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_2">Enter the amount of vertical space you want at the end of the connector.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153038" xml-lang="en-US" level="3" l10n="U">End vertical</paragraph> +<paragraph role="paragraph" id="par_id3155260" xml-lang="en-US" l10n="U"><ahelp hid="SVX:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_2">Enter the amount of vertical space you want at the end of the connector.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/.uno:NewRouting" id="bm_id5161886" localize="false"/><!-- HID added by script --> <bookmark xml-lang="en-US" branch="hid/.uno:NewRouting" id="bm_id3153735" localize="false"/> -<paragraph role="heading" id="hd_id3147369" xml-lang="en-US" level="2" l10n="U" oldref="23">Reset line skew</paragraph> -<paragraph role="paragraph" id="par_id3159205" xml-lang="en-US" l10n="U" oldref="24"><ahelp hid=".uno:NewRouting">Resets the line skew values to the default.</ahelp><embedvar href="text/shared/00/00000001.xhp#kontext"/></paragraph> +<paragraph role="heading" id="hd_id3147369" xml-lang="en-US" level="2" l10n="U">Reset line skew</paragraph> +<paragraph role="paragraph" id="par_id3159205" xml-lang="en-US" l10n="U"><ahelp hid=".uno:NewRouting">Resets the line skew values to the default.</ahelp><embedvar href="text/shared/00/00000001.xhp#kontext"/></paragraph> <section id="relatedtopics"> <embed href="text/simpress/guide/orgchart.xhp#orgchart"/> </section> diff --git a/main/helpcontent2/source/text/swriter/01/02150000.xhp b/main/helpcontent2/source/text/swriter/01/02150000.xhp index 5b0a83daa4..c09deb32de 100644 --- a/main/helpcontent2/source/text/swriter/01/02150000.xhp +++ b/main/helpcontent2/source/text/swriter/01/02150000.xhp @@ -32,32 +32,32 @@ <bookmark xml-lang="en-US" branch="hid/sw:ModalDialog:DLG_INS_FOOTNOTE" id="bm_id3149483" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:EditFootnote" id="bm_id8871205" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:EditFootnote" id="bm_id3149486" localize="false"/> -<paragraph role="heading" id="hd_id3143276" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/swriter/01/02150000.xhp" name="Edit Footnotes">Footnote/Endnote</link></paragraph> -<paragraph role="paragraph" id="par_id3149097" xml-lang="en-US" l10n="U" oldref="2"><variable id="fusstext"><ahelp hid=".uno:EditFootnote">Edits the selected footnote or endnote anchor. Click in front of the footnote or endnote, and then choose this command.</ahelp> +<paragraph role="heading" id="hd_id3143276" xml-lang="en-US" level="1" l10n="U"><link href="text/swriter/01/02150000.xhp" name="Edit Footnotes">Footnote/Endnote</link></paragraph> +<paragraph role="paragraph" id="par_id3149097" xml-lang="en-US" l10n="U"><variable id="fusstext"><ahelp hid=".uno:EditFootnote">Edits the selected footnote or endnote anchor. Click in front of the footnote or endnote, and then choose this command.</ahelp> </variable></paragraph> <section id="howtoget"> <embed href="text/swriter/00/00000402.xhp#fussnote"/> </section> -<paragraph role="paragraph" id="par_id3149035" xml-lang="en-US" l10n="U" oldref="13">To edit the text of a footnote or endnote, click in the footnote area at the bottom of the page, or at the end of the document.</paragraph> -<paragraph role="note" id="par_id3145776" xml-lang="en-US" l10n="U" oldref="11">To quickly jump to the footnote or endnote text, click the anchor for note in the document. You can also position the cursor in front of or behind the marker, and then press Ctrl+Shift+PgDn. To jump back to the anchor for the note, press PgUp.</paragraph> -<paragraph role="heading" id="hd_id3155916" xml-lang="en-US" level="2" l10n="U" oldref="4">Numbering</paragraph> -<paragraph role="paragraph" id="par_id3151373" xml-lang="en-US" l10n="U" oldref="12">Select the numbering type for the footnote or endnote.</paragraph> -<paragraph role="heading" id="hd_id3150685" xml-lang="en-US" level="3" l10n="U" oldref="5">Auto</paragraph> +<paragraph role="paragraph" id="par_id3149035" xml-lang="en-US" l10n="U">To edit the text of a footnote or endnote, click in the footnote area at the bottom of the page, or at the end of the document.</paragraph> +<paragraph role="note" id="par_id3145776" xml-lang="en-US" l10n="U">To quickly jump to the footnote or endnote text, click the anchor for note in the document. You can also position the cursor in front of or behind the marker, and then press Ctrl+Shift+PgDn. To jump back to the anchor for the note, press PgUp.</paragraph> +<paragraph role="heading" id="hd_id3155916" xml-lang="en-US" level="2" l10n="U">Numbering</paragraph> +<paragraph role="paragraph" id="par_id3151373" xml-lang="en-US" l10n="U">Select the numbering type for the footnote or endnote.</paragraph> +<paragraph role="heading" id="hd_id3150685" xml-lang="en-US" level="3" l10n="U">Auto</paragraph> <embed href="text/swriter/01/04030000.xhp#bearbeitenautomatisch"/> -<paragraph role="heading" id="hd_id3155858" xml-lang="en-US" level="3" l10n="U" oldref="7">Character</paragraph> +<paragraph role="heading" id="hd_id3155858" xml-lang="en-US" level="3" l10n="U">Character</paragraph> <embed href="text/swriter/01/04030000.xhp#bearbeitenzeichen"/> -<paragraph role="heading" id="hd_id3150113" xml-lang="en-US" level="3" l10n="U" oldref="14">...</paragraph> +<paragraph role="heading" id="hd_id3150113" xml-lang="en-US" level="3" l10n="U">...</paragraph> <embed href="text/swriter/01/04030000.xhp#bearbeitensonderzeichen"/> -<paragraph role="tip" id="par_id3149849" xml-lang="en-US" l10n="CHG" oldref="19">To change the format of a footnote or endnote anchor or text, select it, and then choose <emph>Format - Character</emph>. You can press <switchinline select="sys"><caseinline select="MAC">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles and Formatting</emph> window and modify the footnote or endnote paragraph style.</paragraph> -<paragraph role="heading" id="hd_id3153296" xml-lang="en-US" level="2" l10n="U" oldref="15">Type</paragraph> -<paragraph role="paragraph" id="par_id3153308" xml-lang="en-US" l10n="U" oldref="20">Select the type of note to insert, that is, footnote or endnote. A footnote is placed at the bottom of the current page, whereas an endnote is placed at the end of the document.</paragraph> -<paragraph role="heading" id="hd_id3156130" xml-lang="en-US" level="3" l10n="U" oldref="16">Footnote</paragraph> -<paragraph role="paragraph" id="par_id3156098" xml-lang="en-US" l10n="U" oldref="21">Converts an endnote to a footnote.</paragraph> -<paragraph role="heading" id="hd_id3156111" xml-lang="en-US" level="3" l10n="U" oldref="17">Endnote</paragraph> -<paragraph role="paragraph" id="par_id3155079" xml-lang="en-US" l10n="U" oldref="22">Converts a footnote to an endnote.</paragraph> +<paragraph role="tip" id="par_id3149849" xml-lang="en-US" l10n="CHG">To change the format of a footnote or endnote anchor or text, select it, and then choose <emph>Format - Character</emph>. You can press <switchinline select="sys"><caseinline select="MAC">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles and Formatting</emph> window and modify the footnote or endnote paragraph style.</paragraph> +<paragraph role="heading" id="hd_id3153296" xml-lang="en-US" level="2" l10n="U">Type</paragraph> +<paragraph role="paragraph" id="par_id3153308" xml-lang="en-US" l10n="U">Select the type of note to insert, that is, footnote or endnote. A footnote is placed at the bottom of the current page, whereas an endnote is placed at the end of the document.</paragraph> +<paragraph role="heading" id="hd_id3156130" xml-lang="en-US" level="3" l10n="U">Footnote</paragraph> +<paragraph role="paragraph" id="par_id3156098" xml-lang="en-US" l10n="U">Converts an endnote to a footnote.</paragraph> +<paragraph role="heading" id="hd_id3156111" xml-lang="en-US" level="3" l10n="U">Endnote</paragraph> +<paragraph role="paragraph" id="par_id3155079" xml-lang="en-US" l10n="U">Converts a footnote to an endnote.</paragraph> <bookmark xml-lang="en-US" branch="hid/sw:ImageButton:DLG_INS_FOOTNOTE:BT_PREV" id="bm_id3154335" localize="false"/> -<paragraph role="heading" id="hd_id3154323" xml-lang="en-US" level="2" l10n="U" oldref="23">Arrow left</paragraph> -<paragraph role="paragraph" id="par_id3154341" xml-lang="en-US" l10n="U" oldref="24"><ahelp hid="SW:IMAGEBUTTON:DLG_INS_FOOTNOTE:BT_PREV">Moves to the previous footnote or endnote anchor in the document.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154323" xml-lang="en-US" level="2" l10n="U">Arrow left</paragraph> +<paragraph role="paragraph" id="par_id3154341" xml-lang="en-US" l10n="U"><ahelp hid="SW:IMAGEBUTTON:DLG_INS_FOOTNOTE:BT_PREV">Moves to the previous footnote or endnote anchor in the document.</ahelp></paragraph> <table id="tbl_id3148791"> <tablerow> <tablecell> @@ -66,13 +66,13 @@ </image></paragraph> </tablecell> <tablecell> -<paragraph role="paragraph" id="par_id3154614" xml-lang="en-US" l10n="U" oldref="25">Previous footnote</paragraph> +<paragraph role="paragraph" id="par_id3154614" xml-lang="en-US" l10n="U">Previous footnote</paragraph> </tablecell> </tablerow> </table> <bookmark xml-lang="en-US" branch="hid/sw:ImageButton:DLG_INS_FOOTNOTE:BT_NEXT" id="bm_id3149631" localize="false"/> -<paragraph role="heading" id="hd_id3154630" xml-lang="en-US" level="2" l10n="U" oldref="26">Arrow right</paragraph> -<paragraph role="paragraph" id="par_id3149638" xml-lang="en-US" l10n="U" oldref="27"><ahelp hid="SW:IMAGEBUTTON:DLG_INS_FOOTNOTE:BT_NEXT">Moves to the next footnote or endnote anchor in the document.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3154630" xml-lang="en-US" level="2" l10n="U">Arrow right</paragraph> +<paragraph role="paragraph" id="par_id3149638" xml-lang="en-US" l10n="U"><ahelp hid="SW:IMAGEBUTTON:DLG_INS_FOOTNOTE:BT_NEXT">Moves to the next footnote or endnote anchor in the document.</ahelp></paragraph> <table id="tbl_id3150662"> <tablerow> <tablecell> @@ -81,11 +81,11 @@ </image></paragraph> </tablecell> <tablecell> -<paragraph role="paragraph" id="par_id3149606" xml-lang="en-US" l10n="U" oldref="28">Next footnote</paragraph> +<paragraph role="paragraph" id="par_id3149606" xml-lang="en-US" l10n="U">Next footnote</paragraph> </tablecell> </tablerow> </table> <embed href="text/shared/00/00000004.xhp#related"/> -<paragraph role="paragraph" id="par_id3150772" xml-lang="en-US" l10n="U" oldref="33"><link href="text/swriter/01/04030000.xhp" name="Insert Footnote">Insert Footnote/Endnote</link> dialog.</paragraph> +<paragraph role="paragraph" id="par_id3150772" xml-lang="en-US" l10n="U"><link href="text/swriter/01/04030000.xhp" name="Insert Footnote">Insert Footnote/Endnote</link> dialog.</paragraph> </body> </helpdocument> diff --git a/main/helpcontent2/source/text/swriter/01/04120300.xhp b/main/helpcontent2/source/text/swriter/01/04120300.xhp index be57c4d1b8..e7fc7c0611 100644 --- a/main/helpcontent2/source/text/swriter/01/04120300.xhp +++ b/main/helpcontent2/source/text/swriter/01/04120300.xhp @@ -31,41 +31,41 @@ <body> <bookmark xml-lang="en-US" branch="hid/.uno:InsertAuthoritiesEntry" id="bm_id6229048" localize="false"/> <bookmark xml-lang="en-US" branch="hid/.uno:InsertAuthoritiesEntry" id="bm_id3150763" localize="false"/> -<paragraph role="heading" id="hd_id3151187" xml-lang="en-US" level="1" l10n="U" oldref="1">Insert Bibliography Entry</paragraph> -<paragraph role="paragraph" id="par_id3154642" xml-lang="en-US" l10n="U" oldref="2"><variable id="literaturvz"><ahelp hid=".uno:InsertAuthoritiesEntry">Inserts a bibliography reference.</ahelp> +<paragraph role="heading" id="hd_id3151187" xml-lang="en-US" level="1" l10n="U">Insert Bibliography Entry</paragraph> +<paragraph role="paragraph" id="par_id3154642" xml-lang="en-US" l10n="U"><variable id="literaturvz"><ahelp hid=".uno:InsertAuthoritiesEntry">Inserts a bibliography reference.</ahelp> </variable></paragraph> <section id="howtoget"> <embed href="text/swriter/00/00000404.xhp#inhaltsverz"/> </section> -<paragraph role="heading" id="hd_id3145416" xml-lang="en-US" level="2" l10n="U" oldref="3">Entry</paragraph> +<paragraph role="heading" id="hd_id3145416" xml-lang="en-US" level="2" l10n="U">Entry</paragraph> <bookmark xml-lang="en-US" branch="hid/SW_HID_AUTH_MARK_DLG_FROM_COMP_RB" id="bm_id3147512" localize="false"/> -<paragraph role="heading" id="hd_id3157721" xml-lang="en-US" level="3" l10n="U" oldref="15">From bibliography database</paragraph> -<paragraph role="paragraph" id="par_id3154096" xml-lang="en-US" l10n="U" oldref="16"><ahelp hid="HID_AUTH_MARK_DLG_FROM_COMP_RB">Inserts a reference from the bibliography database.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3157721" xml-lang="en-US" level="3" l10n="U">From bibliography database</paragraph> +<paragraph role="paragraph" id="par_id3154096" xml-lang="en-US" l10n="U"><ahelp hid="HID_AUTH_MARK_DLG_FROM_COMP_RB">Inserts a reference from the bibliography database.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/SW_HID_AUTH_MARK_DLG_FROM_DOC_RB" id="bm_id3153529" localize="false"/> -<paragraph role="heading" id="hd_id3149805" xml-lang="en-US" level="3" l10n="U" oldref="17">From document content</paragraph> -<paragraph role="paragraph" id="par_id3153536" xml-lang="en-US" l10n="U" oldref="18"><ahelp hid="HID_AUTH_MARK_DLG_FROM_DOC_RB">Inserts a reference from the bibliography records that are stored in the current document.</ahelp> An entry that is stored in the document has priority over an entry that is stored in the bibliography database.</paragraph> +<paragraph role="heading" id="hd_id3149805" xml-lang="en-US" level="3" l10n="U">From document content</paragraph> +<paragraph role="paragraph" id="par_id3153536" xml-lang="en-US" l10n="U"><ahelp hid="HID_AUTH_MARK_DLG_FROM_DOC_RB">Inserts a reference from the bibliography records that are stored in the current document.</ahelp> An entry that is stored in the document has priority over an entry that is stored in the bibliography database.</paragraph> <section id="speicherhinweis"> -<paragraph role="note" id="par_id3154200" xml-lang="en-US" l10n="U" oldref="19">When you save a document that contains bibliography entries, the corresponding records are automatically saved in a hidden field in the document.</paragraph> +<paragraph role="note" id="par_id3154200" xml-lang="en-US" l10n="U">When you save a document that contains bibliography entries, the corresponding records are automatically saved in a hidden field in the document.</paragraph> </section> <bookmark xml-lang="en-US" branch="hid/SW_HID_INSERT_AUTH_MRK_ENTRY" id="bm_id3143284" localize="false"/> <bookmark xml-lang="en-US" branch="hid/SW_HID_AUTH_MARK_DLG_ID_LISTBOX" id="bm_id3149483" localize="false"/> -<paragraph role="heading" id="hd_id3143273" xml-lang="en-US" level="3" l10n="U" oldref="5">Short name</paragraph> -<paragraph role="paragraph" id="par_id3149490" xml-lang="en-US" l10n="U" oldref="6"><ahelp hid="HID_AUTH_MARK_DLG_ID_LISTBOX">Select the short name of the bibliography record that you want to insert.</ahelp></paragraph> -<paragraph role="heading" id="hd_id3151260" xml-lang="en-US" level="3" l10n="U" oldref="7">Author, Title</paragraph> -<paragraph role="paragraph" id="par_id3149824" xml-lang="en-US" l10n="U" oldref="8">If available, the author and the full title of the selected short name are displayed in this area.</paragraph> +<paragraph role="heading" id="hd_id3143273" xml-lang="en-US" level="3" l10n="U">Short name</paragraph> +<paragraph role="paragraph" id="par_id3149490" xml-lang="en-US" l10n="U"><ahelp hid="HID_AUTH_MARK_DLG_ID_LISTBOX">Select the short name of the bibliography record that you want to insert.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3151260" xml-lang="en-US" level="3" l10n="U">Author, Title</paragraph> +<paragraph role="paragraph" id="par_id3149824" xml-lang="en-US" l10n="U">If available, the author and the full title of the selected short name are displayed in this area.</paragraph> <bookmark xml-lang="en-US" branch="hid/SW_HID_INSERT_AUTH_MRK_OK" id="bm_id3147094" localize="false"/> -<paragraph role="heading" id="hd_id3149105" xml-lang="en-US" level="2" l10n="U" oldref="9">Insert</paragraph> -<paragraph role="paragraph" id="par_id3147100" xml-lang="en-US" l10n="CHG" oldref="10"><ahelp hid="HID_INSERT_AUTH_MRK_OK">Inserts the bibliographic reference into the document. If you created a new record, you must also insert it as an entry, otherwise the record is lost when you close the document.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3149105" xml-lang="en-US" level="2" l10n="U">Insert</paragraph> +<paragraph role="paragraph" id="par_id3147100" xml-lang="en-US" l10n="CHG"><ahelp hid="HID_INSERT_AUTH_MRK_OK">Inserts the bibliographic reference into the document. If you created a new record, you must also insert it as an entry, otherwise the record is lost when you close the document.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/SW_HID_INSERT_AUTH_MRK_CLOSE" id="bm_id3148983" localize="false"/> -<paragraph role="heading" id="hd_id3147216" xml-lang="en-US" level="2" l10n="U" oldref="11">Close</paragraph> -<paragraph role="paragraph" id="par_id3149036" xml-lang="en-US" l10n="U" oldref="12"><ahelp hid="HID_INSERT_AUTH_MRK_CLOSE">Closes the dialog.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3147216" xml-lang="en-US" level="2" l10n="U">Close</paragraph> +<paragraph role="paragraph" id="par_id3149036" xml-lang="en-US" l10n="U"><ahelp hid="HID_INSERT_AUTH_MRK_CLOSE">Closes the dialog.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/SW_HID_INSERT_AUTH_MRK_CREATE_ENTRY" id="bm_id3147573" localize="false"/> -<paragraph role="heading" id="hd_id3153634" xml-lang="en-US" level="2" l10n="U" oldref="13">New</paragraph> -<paragraph role="paragraph" id="par_id3147579" xml-lang="en-US" l10n="U" oldref="14"><ahelp hid="HID_INSERT_AUTH_MRK_CREATE_ENTRY">Opens the <link href="text/swriter/01/04120229.xhp" name="Define Bibliography Entry">Define Bibliography Entry</link> dialog, where you can create a new bibliography record. This record is only stored in the document. To add a record to the bibliography database, choose <emph>Tools - Bibliography Database</emph>.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3153634" xml-lang="en-US" level="2" l10n="U">New</paragraph> +<paragraph role="paragraph" id="par_id3147579" xml-lang="en-US" l10n="U"><ahelp hid="HID_INSERT_AUTH_MRK_CREATE_ENTRY">Opens the <link href="text/swriter/01/04120229.xhp" name="Define Bibliography Entry">Define Bibliography Entry</link> dialog, where you can create a new bibliography record. This record is only stored in the document. To add a record to the bibliography database, choose <emph>Tools - Bibliography Database</emph>.</ahelp></paragraph> <bookmark xml-lang="en-US" branch="hid/SW_HID_INSERT_AUTH_MRK_EDIT_ENTRY" id="bm_id3157894" localize="false"/> -<paragraph role="heading" id="hd_id3155142" xml-lang="en-US" level="2" l10n="U" oldref="20">Edit</paragraph> -<paragraph role="paragraph" id="par_id3157900" xml-lang="en-US" l10n="U" oldref="21"><ahelp hid="HID_INSERT_AUTH_MRK_EDIT_ENTRY">Opens the <link href="text/swriter/01/04120229.xhp" name="Define Bibliography Entry">Define Bibliography Entry</link> dialog where you can edit the selected bibliography record.</ahelp></paragraph> +<paragraph role="heading" id="hd_id3155142" xml-lang="en-US" level="2" l10n="U">Edit</paragraph> +<paragraph role="paragraph" id="par_id3157900" xml-lang="en-US" l10n="U"><ahelp hid="HID_INSERT_AUTH_MRK_EDIT_ENTRY">Opens the <link href="text/swriter/01/04120229.xhp" name="Define Bibliography Entry">Define Bibliography Entry</link> dialog where you can edit the selected bibliography record.</ahelp></paragraph> <embed href="text/shared/00/00000004.xhp#related"/> -<paragraph role="paragraph" id="par_id3149172" xml-lang="en-US" l10n="U" oldref="22"><link href="text/swriter/guide/indices_literature.xhp" name="Tips for working with bibliography entries">Tips for working with bibliography entries</link></paragraph> +<paragraph role="paragraph" id="par_id3149172" xml-lang="en-US" l10n="U"><link href="text/swriter/guide/indices_literature.xhp" name="Tips for working with bibliography entries">Tips for working with bibliography entries</link></paragraph> </body> </helpdocument>
