From f025640e2603ee252a21e935c2790627a2e95224 Mon Sep 17 00:00:00 2001 From: Rafael Lima Date: Tue, 19 Oct 2021 15:52:52 +0200 Subject: [PATCH] Fix tags for better l10n (Part 1) This is Part 1 of the fixes requested by translators concerning the use of the . Change-Id: Iee5ea4289034449c33156d4e20483943eb872ae0 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/123782 Tested-by: Jenkins Reviewed-by: Olivier Hallot --- .../text/sbasic/shared/03/lib_ScriptForge.xhp | 53 ++++---- source/text/sbasic/shared/03/sf_intro.xhp | 2 +- source/text/sbasic/shared/03/sf_session.xhp | 36 +++--- source/text/sbasic/shared/03030303.xhp | 2 +- source/text/sbasic/shared/03120102.xhp | 65 +++++----- source/text/scalc/01/func_numbervalue.xhp | 51 ++++---- source/text/scalc/guide/numbers_text.xhp | 30 ++--- source/text/scalc/guide/remove_duplicates.xhp | 3 +- source/text/scalc/guide/table_cellmerge.xhp | 70 +++++------ source/text/scalc/main0200.xhp | 100 +++++++-------- source/text/shared/01/05030500.xhp | 48 ++++---- source/text/shared/01/05070200.xhp | 42 ++++--- source/text/shared/01/05230100.xhp | 57 ++++----- source/text/shared/01/06040000.xhp | 8 +- .../shared/explorer/database/rep_main.xhp | 52 ++++---- .../shared/explorer/database/rep_prop.xhp | 115 +++++++++--------- source/text/shared/guide/protection.xhp | 6 +- source/text/shared/guide/redlining_accept.xhp | 46 +++---- 18 files changed, 393 insertions(+), 393 deletions(-) diff --git a/source/text/sbasic/shared/03/lib_ScriptForge.xhp b/source/text/sbasic/shared/03/lib_ScriptForge.xhp index 7e68911692..466532b1d5 100644 --- a/source/text/sbasic/shared/03/lib_ScriptForge.xhp +++ b/source/text/sbasic/shared/03/lib_ScriptForge.xhp @@ -1,33 +1,34 @@ - - - - ScriptForge Libraries - /text/sbasic/shared/03/lib_ScriptForge.xhp - - - -

The ScriptForge Library

- - BASIC ScriptForge library - Python scriptforge module - -
- -
+ + + + + ScriptForge Libraries + /text/sbasic/shared/03/lib_ScriptForge.xhp + + + +

The ScriptForge Library

+ + BASIC ScriptForge library + Python scriptforge module + +
+ +
ScriptForge libraries build up an extensible collection of macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts. • Basic macros require to load ScriptForge library using the following statement:
GlobalScope.BasicLibraries.LoadLibrary("ScriptForge")

• Python scripts require an import from scriptforge module:
from scriptforge import CreateScriptService
- To learn more about how to create and execute Python scripts using the ScriptForge library, read the help page. + To learn more about how to create and execute Python scripts using the ScriptForge library, read the help page Creating Python Scripts with ScriptForge. The described modules and classes are invoked from user scripts as "Services". A generic constructor of those services has been designed for that purpose for each language: GlobalScope.BasicLibraries.LoadLibrary("ScriptForge") @@ -101,7 +102,7 @@ Form
- FormControl
+ FormControl

@@ -194,4 +195,4 @@ All ScriptForge Basic routines or identifiers that are prefixed with an underscore character "_" are reserved for internal use. They are not meant be used in Basic macros. -
\ No newline at end of file + diff --git a/source/text/sbasic/shared/03/sf_intro.xhp b/source/text/sbasic/shared/03/sf_intro.xhp index 785a2e06f8..98081e5454 100644 --- a/source/text/sbasic/shared/03/sf_intro.xhp +++ b/source/text/sbasic/shared/03/sf_intro.xhp @@ -46,7 +46,7 @@ Debugging: Whenever an error occurs in Python scripts that use ScriptForge, the error message provided by the Python execution stack displays the line of code that triggered the error. In Basic error messages do not display this information. - Visit for more information on Python scripting using %PRODUCTNAME. + Visit %PRODUCTNAME Python Scripts Help for more information on Python scripting using %PRODUCTNAME.

Running Python scripts on %PRODUCTNAME

Depending on what you intend to achieve, you may choose one of the following approaches to running Python scripts in %PRODUCTNAME: diff --git a/source/text/sbasic/shared/03/sf_session.xhp b/source/text/sbasic/shared/03/sf_session.xhp index b2b2758ac5..85ee3f9496 100644 --- a/source/text/sbasic/shared/03/sf_session.xhp +++ b/source/text/sbasic/shared/03/sf_session.xhp @@ -16,28 +16,24 @@ - -
- - Session service - - -

ScriptForge.Session service

- - The Session service gathers various general-purpose methods about: - - +
+ + Session service + +

ScriptForge.Session service

+ The Session service gathers various general-purpose methods about: + + the installation or execution environment - - + + UNO introspection - - ** for 7.x ** clipboard management - + + the invocation of external scripts or programs - - -
+
+
+

Service invocation

@@ -326,7 +322,7 @@ odd_list = [v for v in range(v1, v2 + 1) if v % 2 != 0] return odd_list - Read the help page to learn more about where Python scripts can be stored. + Read the help page Python Scripts Organization and Location to learn more about where Python scripts can be stored. The following examples show how to call the function odd_integers from within Basic and Python scripts. diff --git a/source/text/sbasic/shared/03030303.xhp b/source/text/sbasic/shared/03030303.xhp index 8cecbcf853..d82375bc07 100644 --- a/source/text/sbasic/shared/03030303.xhp +++ b/source/text/sbasic/shared/03030303.xhp @@ -59,7 +59,7 @@ End Sub -The Timer function measures time in seconds. To measure time in milliseconds use the . +The Timer function measures time in seconds. To measure time in milliseconds use the Timer service available in the ScriptForge library.
diff --git a/source/text/sbasic/shared/03120102.xhp b/source/text/sbasic/shared/03120102.xhp index a18c3beb1b..a9d73261ef 100644 --- a/source/text/sbasic/shared/03120102.xhp +++ b/source/text/sbasic/shared/03120102.xhp @@ -1,38 +1,38 @@ - + - - - Chr Function - /text/sbasic/shared/03120102.xhp - - + + + Chr Function + /text/sbasic/shared/03120102.xhp + + - -
- - Chr function - - Chr Function - Returns the character that corresponds to the specified character code. -
+ +
+ + Chr function + + Chr Function + Returns the character that corresponds to the specified character code. +
@@ -49,7 +49,8 @@ Use the Chr$ function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression. - , when VBA compatibility mode is enabled and expression is greater than 255. + + An overflow error will occur when VBA compatibility mode is enabled and the expression value is greater than 255. diff --git a/source/text/scalc/01/func_numbervalue.xhp b/source/text/scalc/01/func_numbervalue.xhp index 18d9d976a7..b0c8f385e0 100644 --- a/source/text/scalc/01/func_numbervalue.xhp +++ b/source/text/scalc/01/func_numbervalue.xhp @@ -1,29 +1,30 @@ - - - - NUMBERVALUE - /text/scalc/01/func_numbervalue.xhp - - - + + + + + NUMBERVALUE + /text/scalc/01/func_numbervalue.xhp + + + NUMBERVALUE function @@ -35,7 +36,7 @@ The input text may be in a locale-dependent or other bespoke format. The output number is formatted as a valid floating point value and shown using the current cell's number format. - Refer to the help page to learn how to change the format of numbers in a cell. + Refer to the Numbers / Format help page to learn how to change the format of numbers in a cell. NUMBERVALUE(Text[; Decimal Separator[; Group Separator]]) Text is a string that contains the number to be converted. diff --git a/source/text/scalc/guide/numbers_text.xhp b/source/text/scalc/guide/numbers_text.xhp index 47ce84594c..e63054fb0c 100644 --- a/source/text/scalc/guide/numbers_text.xhp +++ b/source/text/scalc/guide/numbers_text.xhp @@ -19,21 +19,21 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . --> - - - Converting Text to Numbers - /text/scalc/guide/numbers_text.xhp - - - -formats; text as numbers - time format conversion - date formats;conversion - converting;text, into numbers -mw changed "converting;" and added two index entries -

Converting Text to Numbers -

+ + Converting Text to Numbers + /text/scalc/guide/numbers_text.xhp + + + + + + formats; text as numbers + time format conversion + date formats;conversion + converting;text, into numbers + +

Converting Text to Numbers

Defaults settings in Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error. Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored. @@ -81,7 +81,7 @@ =SUM("1E2";1) returns #VALUE! because SUM() and some others that iterate over number sequences explicitly check the argument type.

Changing the default text to number conversion settings

- The text to number conversion can be customized in the option. + The text to number conversion can be customized in the Detailed Calculation Settings option.
diff --git a/source/text/scalc/guide/remove_duplicates.xhp b/source/text/scalc/guide/remove_duplicates.xhp index 360ef28616..812f261539 100644 --- a/source/text/scalc/guide/remove_duplicates.xhp +++ b/source/text/scalc/guide/remove_duplicates.xhp @@ -1,6 +1,5 @@ - - - + - - Merge and Unmerge Cells - /text/scalc/guide/table_cellmerge.xhp - - - - - merge/merging cells - unmerge/unmerging cells - split/splitting cells - -
-Merge and Unmerge Cells - - You can select a range of cells, then merge them into a single cell. Conversely, you can take a previously merged cell and divide it back into individual cells. -
- When you copy cells into a target range containing merged cells, the target range gets unmerged first, then the copied cells are pasted in. If the copied cells are merged cells, they retain their merge state. - Merge Cells - -
+ + Merge and Unmerge Cells + /text/scalc/guide/table_cellmerge.xhp + + + + + merge/merging cells + unmerge/unmerging cells + split/splitting cells + +
+ Merge and Unmerge Cells + You can select a range of cells, then merge them into a single cell. Conversely, you can take a previously merged cell and divide it back into individual cells. +
+ When you copy cells into a target range containing merged cells, the target range gets unmerged first, then the copied cells are pasted in. If the copied cells are merged cells, they retain their merge state. + Merge Cells + + +
Click and drag to select the cells to be merged then do one of the following: In the Formatting toolbar click: Or, right click the selection to open the context menu and choose Merge Cells.
If Unmerge Cells is present instead then the cell selection contains merged cells and cannot be merged further.
Or, in the Properties sidebar mark the Merge Cells checkbox. - Or, choose Merge Cells - Or, choose Merge and Center Cells + Or, choose Format - Merge and Unmerge Cells - Merge Cells + Or, choose Format - Merge and Unmerge Cells - Merge and Center Cells The cells will be merged and the content will be centered in the merged cell.
@@ -58,13 +56,15 @@ Or, right click the selection to open the context menu and choose Unmerge Cells.
If Merge Cells is present instead then the selection does not contain any merged cells.
Or, in the Properties sidebar clear the Merge Cells checkbox. - Or, choose Unmerge Cells. - Or, toggle Merge and Center Cells -
- - - - - - -
\ No newline at end of file + Or, choose Format - Merge and Unmerge Cells - Unmerge Cells. + Or, toggle Format - Merge and Unmerge Cells - Merge and Center Cells +
+ +
+ + + + +
+ +
diff --git a/source/text/scalc/main0200.xhp b/source/text/scalc/main0200.xhp index 14bcdbaae1..751ac47604 100644 --- a/source/text/scalc/main0200.xhp +++ b/source/text/scalc/main0200.xhp @@ -1,4 +1,5 @@ + - + - -Toolbars -/text/scalc/main0200.xhp - - -Sun Microsystems, Inc. - + + Toolbars + /text/scalc/main0200.xhp + + + Sun Microsystems, Inc. + + -
-

Toolbars -

-This submenu lists the toolbars that are available in spreadsheets. - -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
+
+

Toolbars

+ This submenu lists the toolbars that are available in spreadsheets. This overview describes the default toolbar configuration for %PRODUCTNAME. +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
diff --git a/source/text/shared/01/05030500.xhp b/source/text/shared/01/05030500.xhp index 2394b823c3..8053f617d1 100644 --- a/source/text/shared/01/05030500.xhp +++ b/source/text/shared/01/05030500.xhp @@ -19,18 +19,19 @@ --> - - Borders - /text/shared/01/05030500.xhp - + + Borders + /text/shared/01/05030500.xhp + -
- - -

Borders

-Sets the border options for the selected objects in Writer or Calc. -
+
+ + +

Borders

+ Sets the border options for the selected objects in Writer or Calc. +
+ You can specify the border position, size, and style in Writer or Calc. In $[officename] Writer, you can add borders to pages, frames, graphics, tables, paragraphs, characters and to embedded objects.
@@ -49,7 +50,7 @@ The Remove border option in the Adjacent Cells section determines if borders in the edges of the selected range are to be removed. Leave this option unchecked if edge borders should be left unchanged. - Read the help page to learn more on how to define custom line arrangements. + Read the help page User Defined Borders in Cells to learn more on how to define custom line arrangements. Line @@ -95,17 +96,18 @@ Calc does not have an Apply button -
- - - UFI: moved border_object into Writer switch - - - - - - - -
+ +
+ + + UFI: moved border_object into Writer switch + + + + + + + +
diff --git a/source/text/shared/01/05070200.xhp b/source/text/shared/01/05070200.xhp index 39b75d07c0..feac83fce3 100644 --- a/source/text/shared/01/05070200.xhp +++ b/source/text/shared/01/05070200.xhp @@ -1,6 +1,5 @@ - - - + - -Center Horizontal -/text/shared/01/05070200.xhp - + + Center Horizontal + /text/shared/01/05070200.xhp + -
- - -Center Horizontal -Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page. -
-
- -
-The vertical position of the selected objects is not affected by this command. - +
+ + +

Center Horizontal

+ Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page. +
+
+ +
+ The vertical position of the selected objects is not affected by this command. + + + To align the individual objects in a group, choose Format - Group - Enter Group to enter the group, select the objects, right-click, and then choose an alignment option. + + + To align the individual objects in a group, double-click to enter the group, select the objects, right-click, and then choose an alignment option. + + +
diff --git a/source/text/shared/01/05230100.xhp b/source/text/shared/01/05230100.xhp index 02fbdcbe7b..c284e446ba 100644 --- a/source/text/shared/01/05230100.xhp +++ b/source/text/shared/01/05230100.xhp @@ -1,5 +1,5 @@ - + - - -Position and Size (Text Box and Shape) -/text/shared/01/05230100.xhp - - -Sun Microsystems, Inc. - + + Position and Size (Text Box and Shape) + /text/shared/01/05230100.xhp + + + Sun Microsystems, Inc. + + -
-positioning;draw objects and controls -draw objects;positioning and resizing -controls; positions and sizes -sizes;draw objects -anchors;types/positions for draw objects -draw objects; anchoring - - - -

Position and Size

-Resizes or moves the selected object. -
-
- -
- +
+ + positioning;draw objects and controls + draw objects;positioning and resizing + controls; positions and sizes + sizes;draw objects + anchors;types/positions for draw objects + draw objects; anchoring + + + +

Position and Size

+ Resizes or moves the selected object. +
+ +
+ +
+

Position

@@ -145,8 +147,7 @@ Adapt is only available for Text Boxes. To adapt Shapes to text, use Format - Object - Text. - - Format - Text. + Adapt is only available for Text Boxes. To adapt Shapes to text, use Format - Text.
diff --git a/source/text/shared/01/06040000.xhp b/source/text/shared/01/06040000.xhp index caf8d84d66..b05d028795 100644 --- a/source/text/shared/01/06040000.xhp +++ b/source/text/shared/01/06040000.xhp @@ -1,4 +1,5 @@ - + + - - - Report Builder - /text/shared/explorer/database/rep_main.xhp - - - -Report Builder -Oracle Report Builder - -Report Builder + + Report Builder + /text/shared/explorer/database/rep_main.xhp + + + + + + Report Builder + Oracle Report Builder + + Report Builder - The Report Builder is a tool to create your own database reports. Unlike with the Report Wizard, using the Report Builder you can take control to design the report the way you want. The generated report is a Writer document that you can edit, too. - To use the Report Builder, the Report Builder component must be installed. In addition, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME. - To install the JRE software - The Report Builder requires an installed Java Runtime Environment (JRE). + The Report Builder is a tool to create your own database reports. Unlike with the Report Wizard, using the Report Builder you can take control to design the report the way you want. The generated report is a Writer document that you can edit, too. + To use the Report Builder, the Report Builder component must be installed. In addition, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME. + To install the JRE software + The Report Builder requires an installed Java Runtime Environment (JRE). Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced. @@ -98,7 +98,7 @@ After selecting the table, press the Tab key to leave the Content box. - The window opens automatically and shows all fields of the selected table. + The Add fields to report window opens automatically and shows all fields of the selected table. Align at Section toolbar @@ -132,8 +132,7 @@ Click the Execute Report icon -Icon - on the toolbar. +Icon on the toolbar. A Writer document opens and shows the report you have created, which contains all values of the database table which you have insert. @@ -144,16 +143,14 @@ If you want to edit the Report Builder view, you can change some of its properties. Click in the Details area. Then in the Properties window, change some properties, for example the background color. After finishing, click the Execute Report icon -Icon - to create a new report. +Icon to create a new report. If you close the Report Builder, you will be asked if the report should be saved. Click Yes, give the report a name, and click OK.report part of Base file? Sorting the report Without sorting or grouping, the records will be inserted into the report in the order in which they are retrieved from the database. Open the Report Builder view and click the Sorting and Grouping icon -Icon - on the toolbar. You see the Sorting and Grouping dialog. +Icon on the toolbar. You see the Sorting and Grouping dialog. In the Groups box, click the field which you want as the first sort field, and set the Sorting property.what meaning has the order of fields / move up down button? @@ -166,16 +163,14 @@ Open the Report Builder view and click the Sorting and Grouping icon -Icon - on the toolbar. You see the Sorting and Grouping dialog. +Icon on the toolbar. You see the Sorting and Grouping dialog. In the Groups box, open the Group Header list box and select to show a group header. Click the Add Field icon -Icon - to open the Add Field window. +Icon to open the Add Field window. Drag-and-drop the field entry that you want to group into the group header section. Then drag-and-drop the remaining fields into the Detail section. @@ -188,8 +183,7 @@ Updating and printing your data When you insert some new data or edit data in the table, a new report will show the updated data. Click the Reports icon -Icon - and double-click your last saved report. A new Writer document will be created which shows the new data. +Icon and double-click your last saved report. A new Writer document will be created which shows the new data. To print a report, choose File - Print from the Writer document. diff --git a/source/text/shared/explorer/database/rep_prop.xhp b/source/text/shared/explorer/database/rep_prop.xhp index 6b10e9d108..4817a595bb 100644 --- a/source/text/shared/explorer/database/rep_prop.xhp +++ b/source/text/shared/explorer/database/rep_prop.xhp @@ -26,64 +26,61 @@ - - -Properties -The Properties window of the Report Builder always shows the properties of the currently selected object in the Report Builder view. -Press Shift-F1 and point with the mouse at an input box to see a help text for this input box. -On first start of the Report Builder, the Properties window shows the Data tab page for the whole report. -Select a table from the Contents list, then press Tab or click outside the input box to leave the input box. -The window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose View - Add Field. -The General tab page can be used to change the name of the report, and to disable the Page Header or Page Footer areas, among others. - -To display the Data or General tab page for the whole report, choose Edit - Select All - Select Report.Group keep together - -Groups are kept together by page or by column (default). You must enable Keep Together also.Page header - -Specifies in which context the page header will be printed: on all pages, or not on pages with a report header or footer.Page footer - -Specifies in which context the page footer will be printed: on all pages, or not on pages with a report header or footerPrint repeated values - -Specifies to print repeated values. -If you click the Page Header or Page Footer area without selecting any object, you see the General tab page for that area. -You can edit some visual properties for the area.screen only or also in report?Background color - -Sets the background color for the selected object, both on screen and for printing.Visible - -An invisible object is not shown in the executed report. It is still visible in the Report Builder view.Height - -Defines the height of the selected object.Conditional Print Expression - -If the Conditional Print Expression evaluates to TRUE, the selected object will be printed.id="par_id2386852" Conditions use the following form:Background transparent - -Specifies whether the background of the selected object is transparent or opaque.just guessing -If you click the Detail area without selecting any object, you see the General tab page for that area. -You can specify some properties to fine-tune the way the records are printed.Force New Page - -Force New Page specifies whether the current section and/or the next section is printed on a new page.New Row Or Column - -New Row Or Column specifies, for a multi-column design, whether the current section and/or the next section will be printed on a new row or column.Keep together - -Keep Together specifies to print the current object starting on top of a new page if it doesn't fit on the current page. -Insert some data fields into the Detail area, or insert other control fields into any area. When you select an inserted field, you can set the properties in the Properties window. -For a Label field, you can change the displayed text in the Label input box. - -For a picture, you can specify to either insert the picture as a link to a file or only as an embedded object in the Base file. The embedded option increases the size of the Base file, while the link option is not as portable to other computers.Position x - -Set the X Position for the selected objectx in pixel or twips? or current measurement units? from origin as on ruler? from elsewhere?Position y - -Set the Y Position for the selected objectWidth - -Sets the width of the selected object.Font - -Select the font for the selected text object.Print when group change - -Print when group changeVert. Alignment - -Vert. Alignment -On the General tab page of a data field, you can set the Formatting properties, among others. - -On the Data tab page, you can change the data contents to be shown. +

Properties

+ The Properties window of the Report Builder always shows the properties of the currently selected object in the Report Builder view. + Press Shift-F1 and point with the mouse at an input box to see a help text for this input box. + On first start of the Report Builder, the Properties window shows the Data tab page for the whole report. + Select a table from the Contents list, then press Tab or click outside the input box to leave the input box. + The Add fields to report window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose View - Add Field. + The General tab page can be used to change the name of the report, and to disable the Page Header or Page Footer areas, among others. + + To display the Data or General tab page for the whole report, choose Edit - Select All - Select Report. + + Groups are kept together by page or by column (default). You must enable Keep Together also.Page header + + Specifies in which context the page header will be printed: on all pages, or not on pages with a report header or footer.Page footer + + Specifies in which context the page footer will be printed: on all pages, or not on pages with a report header or footerPrint repeated values + + Specifies to print repeated values. + If you click the Page Header or Page Footer area without selecting any object, you see the General tab page for that area. + You can edit some visual properties for the area.screen only or also in report?Background color + + Sets the background color for the selected object, both on screen and for printing.Visible + + An invisible object is not shown in the executed report. It is still visible in the Report Builder view.Height + + Defines the height of the selected object.Conditional Print Expression + + If the Conditional Print Expression evaluates to TRUE, the selected object will be printed.id="par_id2386852" Conditions use the following form:Background transparent + + Specifies whether the background of the selected object is transparent or opaque.just guessing + If you click the Detail area without selecting any object, you see the General tab page for that area. + You can specify some properties to fine-tune the way the records are printed.Force New Page + + Force New Page specifies whether the current section and/or the next section is printed on a new page.New Row Or Column + + New Row Or Column specifies, for a multi-column design, whether the current section and/or the next section will be printed on a new row or column.Keep together + + Keep Together specifies to print the current object starting on top of a new page if it doesn't fit on the current page. + Insert some data fields into the Detail area, or insert other control fields into any area. When you select an inserted field, you can set the properties in the Properties window. + For a Label field, you can change the displayed text in the Label input box. + + For a picture, you can specify to either insert the picture as a link to a file or only as an embedded object in the Base file. The embedded option increases the size of the Base file, while the link option is not as portable to other computers.Position x + + Set the X Position for the selected objectx in pixel or twips? or current measurement units? from origin as on ruler? from elsewhere?Position y + + Set the Y Position for the selected objectWidth + + Sets the width of the selected object.Font + + Select the font for the selected text object.Print when group change + + Print when group changeVert. Alignment + + Vert. Alignment + On the General tab page of a data field, you can set the Formatting properties, among others. + + On the Data tab page, you can change the data contents to be shown. -
diff --git a/source/text/shared/guide/protection.xhp b/source/text/shared/guide/protection.xhp index 991172cfe8..cb8a3f5eb9 100644 --- a/source/text/shared/guide/protection.xhp +++ b/source/text/shared/guide/protection.xhp @@ -1,6 +1,5 @@ - - - + - -Accepting or Rejecting Changes -/text/shared/guide/redlining_accept.xhp - + + Accepting or Rejecting Changes + /text/shared/guide/redlining_accept.xhp + + -changes; accepting or rejecting -review function;accepting or rejecting changes - -

Accepting or Rejecting Changes -

-The review function is available in %PRODUCTNAME for text documents and spreadsheet documents. + + changes; accepting or rejecting + review function;accepting or rejecting changes + +

Accepting or Rejecting Changes

+ The review function is available in %PRODUCTNAME for text documents and spreadsheet documents. In Writer text documents you can also accept or reject changes by choosing commands from the context menu. @@ -41,7 +40,7 @@ When you edit a document in which others have made changes, you can accept or reject the changes individually or all together. -If you have put multiple copies of the document in circulation, first merge these into one document (see ). +If you have put multiple copies of the document in circulation, first merge these into one document (see Merging Versions). Open the document and choose Edit - Track Changes - Manage. The Manage Changes dialog appears. @@ -53,14 +52,15 @@ If one author has modified another author's change, you will see the changes hierarchically arranged with a plus sign for opening up the hierarchy. If the list of changes is too long, you can switch to the Filter tab in the dialog and specify that you only want to see the changes of certain authors, or only the changes of the last day, or that you want the list to be restricted in some other way. Color-coded entries display the result of the filter that is set. Entries in black can be accepted or rejected and match the filter criteria. Entries in blue do not themselves match the filter criteria, but have subentries that are included by the filter. Gray entries cannot be accepted or rejected and do not match the filter criterion. Green entries do match the filter but cannot be accepted or rejected. -
- - - - - - - -
+ +
+ + + + + + + +