@@ -56,7 +52,7 @@
Local: "On error" is global in scope, and remains active until canceled by another "On error" statement. "On Local error" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is canceled automatically, and any previous global setting is restored.
-The On Error GoTo statement is used to react to errors that occur in a macro. The statement must be inserted at the start of a procedure (in a local error-handling routine) or at the start of a module.
+The On Error GoTo statement is used to react to errors that occur in a macro.ufi: see i112231: The statement must be inserted at the start of a procedure (in a local error-handling routine) or at the start of a module.Example:Sub ExampleResetOn Error Goto ErrorHandler
diff --git a/helpcontent2/source/text/sbasic/shared/03080301.xhp b/helpcontent2/source/text/sbasic/shared/03080301.xhp
index dbccfb655b..22f62b069f 100755
--- a/helpcontent2/source/text/sbasic/shared/03080301.xhp
+++ b/helpcontent2/source/text/sbasic/shared/03080301.xhp
@@ -4,7 +4,7 @@
-
+
Randomize Statement [Runtime]/text/sbasic/shared/03080301.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
@@ -49,24 +45,24 @@
Syntax:Randomize [Number]Parameters:
-
-Number: Any integer value that initializes the random-number generator. If Number is omitted, the generator uses the current value of the system timer.
+
+Number: Any integer value that initializes the random-number generator.Example:
-Sub ExampleRandomize
-Dim iVar As Integer, sText As String
-Dim iSpectral(10) As Integer
-Randomize 2^14-1
-For iCount = 1 To 1000
-iVar = Int((10 * Rnd) ) REM Range from 0 to 9
-iSpectral(iVar) = iSpectral(iVar) +1
-Next iCount
-sText = " | "
-For iCount = 0 To 9
-sText = sText & iSpectral(iCount) & " | "
-Next iCount
-MsgBox sText,0,"Spectral Distribution"
-end sub
+Sub ExampleRandomize
+Dim iVar As Integer, sText As String
+Dim iSpectral(10) As Integer
+Randomize 2^14-1
+For iCount = 1 To 1000
+iVar = Int((10 * Rnd) ) REM Range from 0 to 9
+iSpectral(iVar) = iSpectral(iVar) +1
+Next iCount
+sText = " | "
+For iCount = 0 To 9
+sText = sText & iSpectral(iCount) & " | "
+Next iCount
+MsgBox sText,0,"Spectral Distribution"
+end sub
diff --git a/helpcontent2/source/text/sbasic/shared/03080302.xhp b/helpcontent2/source/text/sbasic/shared/03080302.xhp
index 9a983886d2..92f33def84 100755
--- a/helpcontent2/source/text/sbasic/shared/03080302.xhp
+++ b/helpcontent2/source/text/sbasic/shared/03080302.xhp
@@ -4,7 +4,7 @@
-
+
Rnd Function [Runtime]/text/sbasic/shared/03080302.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
@@ -52,33 +48,26 @@
DoubleParameters:
-Expression: Any numeric expression that defines how to generate random numbers.
-
-Less than zero: Always returns the same random number.
-
-Greater than zero: Returns the next random number in the sequence.
-
-Zero: Returns the random number that was last generated.
+Expression: Any numeric expression.
Omitted: Returns the next random number in the sequence.
-If the same number is passed for each successive call to the Rnd function, the same random-number sequence is generated. This is because the Expression parameter is used as a starting point for the next number.The Rnd function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:Example:
-Sub ExampleRandomSelect
-Dim iVar As Integer
-iVar = Int((15 * Rnd) -2)
-Select Case iVar
-Case 1 To 5
-Print "Number from 1 to 5"
-Case 6, 7, 8
-Print "Number from 6 to 8"
-Case Is > 8 And iVar < 11
-Print "Greater than 8"
-Case Else
-Print "Outside range 1 to 10"
-End Select
-end sub
+Sub ExampleRandomSelect
+Dim iVar As Integer
+iVar = Int((15 * Rnd) -2)
+Select Case iVar
+Case 1 To 5
+Print "Number from 1 to 5"
+Case 6, 7, 8
+Print "Number from 6 to 8"
+Case Is > 8 And iVar < 11
+Print "Greater than 8"
+Case Else
+Print "Outside range 1 to 10"
+End Select
+end sub
diff --git a/helpcontent2/source/text/sbasic/shared/03090201.xhp b/helpcontent2/source/text/sbasic/shared/03090201.xhp
index 14f2bae5e8..e3a08323c7 100755
--- a/helpcontent2/source/text/sbasic/shared/03090201.xhp
+++ b/helpcontent2/source/text/sbasic/shared/03090201.xhp
@@ -4,7 +4,7 @@
-
+
@@ -91,17 +91,17 @@
statementsLoop...Example
-Sub ExampleDoLoop
-Dim sFile As String
-Dim sPath As String
-sPath = "c:\"
-sFile = Dir$( sPath ,22)
-If sFile <> "" Then
-Do
-MsgBox sFile
-sFile = Dir$
-Loop Until sFile = ""
-End If
-End Sub
+Sub ExampleDoLoop
+Dim sFile As String
+Dim sPath As String
+sPath = "c:\"
+sFile = Dir$( sPath ,22)
+If sFile <> "" Then
+Do
+MsgBox sFile
+sFile = Dir$
+Loop Until sFile = ""
+End If
+End Sub
@@ -48,7 +44,7 @@
FunctionAdds a formula to the current cell. Click this icon, and then enter the formula in the Input line.
-This icon is only available when the Input line box is hidden.
+This icon is only available when the Input line box is not active.
diff --git a/helpcontent2/source/text/scalc/guide/borders.xhp b/helpcontent2/source/text/scalc/guide/borders.xhp
index f1b32ec60c..160840f2b5 100755
--- a/helpcontent2/source/text/scalc/guide/borders.xhp
+++ b/helpcontent2/source/text/scalc/guide/borders.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
User Defined Borders in Cells
- text/scalc/guide/borders.xhp
+ /text/scalc/guide/borders.xhp
diff --git a/helpcontent2/source/text/scalc/guide/calculate.xhp b/helpcontent2/source/text/scalc/guide/calculate.xhp
index c764a0b755..564da5d59f 100644
--- a/helpcontent2/source/text/scalc/guide/calculate.xhp
+++ b/helpcontent2/source/text/scalc/guide/calculate.xhp
@@ -1,11 +1,8 @@
-
-
-
-
-
-
+ ************************************************************************ -->
+
-
- Calculating in Spreadsheets
- /text/scalc/guide/calculate.xhp
-
-
-
-spreadsheets; calculating
- calculating; spreadsheets
- formulas; calculating
+
+Calculating in Spreadsheets
+text/scalc/guide/calculate.xhp
+
+
+
+
+spreadsheets; calculating
+calculating; spreadsheets
+formulas; calculatingmw changed "formulas;..." entry
-Calculating in Spreadsheets
-
- The following is an example of a calculation in $[officename] Calc.
-
-
- Click in a cell, and type a number
-
-
- Press Enter.
- The cursor moves down to the next cell.
-
-
- Enter another number.
-
-
- Press the Tab key.
- The cursor moves to the right into the next cell.
-
-
- Type in a formula, for example, =A3 * A4 / 100.
-
-
-
- Press Enter.
- The result of the formula appears in the cell. If you want, you can edit the formula in the input line of the Formula bar.
- When you edit a formula, the new result is calculated automatically.
-
-
-
-
-
-
-
-
-
+Calculating in Spreadsheets
+The following is an example of a calculation in $[officename] Calc.
+
+
+Click in a cell, and type a number
+
+
+Press Enter.
+The cursor moves down to the next cell.
+
+
+Enter another number.
+
+
+Press the Tab key.
+The cursor moves to the right into the next cell.
+
+
+Type in a formula, for example, =A3 * A4 / 100.
+
+
+ Press Enter.
+The result of the formula appears in the cell. If you want, you can edit the formula in the input line of the Formula bar.
+When you edit a formula, the new result is calculated automatically.
+
+
+
+
+
\ No newline at end of file
diff --git a/helpcontent2/source/text/scalc/guide/datapilot_edittable.xhp b/helpcontent2/source/text/scalc/guide/datapilot_edittable.xhp
index 3e5ac91aa7..20082ed7dd 100644
--- a/helpcontent2/source/text/scalc/guide/datapilot_edittable.xhp
+++ b/helpcontent2/source/text/scalc/guide/datapilot_edittable.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Editing DataPilot Tables
@@ -50,6 +50,8 @@
To remove a button from the table, just drag it out of the DataPilot table. Release the mouse button when the mouse pointer positioned within the sheet has become a 'not allowed' icon. The button is deleted.To edit the DataPilot table, click a cell inside the DataPilot table and open the context menu. In the context menu you find the command Start, which displays the DataPilot dialog for the current DataPilot table.In the DataPilot table, you can use drag-and-drop or cut/paste commands to rearrange the order of data fields.
+ You can assign custom display names to fields, field members, subtotals (with some restrictions), and grand totals inside DataPilot tables. A custom display name is assigned to an item by overwriting the original name with another name.
+
diff --git a/helpcontent2/source/text/scalc/guide/datapilot_filtertable.xhp b/helpcontent2/source/text/scalc/guide/datapilot_filtertable.xhp
index 65d2663b99..87e7e3ab5c 100644
--- a/helpcontent2/source/text/scalc/guide/datapilot_filtertable.xhp
+++ b/helpcontent2/source/text/scalc/guide/datapilot_filtertable.xhp
@@ -1,11 +1,8 @@
-
-
-
-
-
-
+ ************************************************************************ -->
+
-
- Filtering DataPilot Tables
- /text/scalc/guide/datapilot_filtertable.xhp
-
-
-
-DataPilot function; filtering tables
- filtering;DataPilot tables
-mw deleted "filters;"
-Filtering DataPilot Tables
-
- You can use filters to remove unwanted data from a DataPilot table.UFI: removed help id
-Click the Filter button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the DataPilot table and select the Filter command. The Filter dialog appears. Here you can filter the DataPilot table.
-
-
-
-
-
-
-
-
-
-
+
+Filtering DataPilot Tables
+/text/scalc/guide/datapilot_filtertable.xhp
+
+
+
+
+DataPilot function; filtering tables
+filtering;DataPilot tables
+
+Filtering DataPilot Tables
+You can use filters to remove unwanted data from a DataPilot table.
+Click the Filter button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the DataPilot table and select the Filter command. The Filter dialog appears. Here you can filter the DataPilot table.
+You can also click the arrow on a button in the DataPilot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field.
+
+
+The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list.
+
+
+Enable or disable a checkbox to show or hide the associated field member in the DataPilot table.
+
+
+Enable or disable the All checkbox to show all or none of the field members.
+
+
+Select a field member in the pop-up window and click the Show only the current item button to show only the selected field member. All other field members are hidden in the DataPilot table.
+
+
+Select a field member in the pop-up window and click the Hide only the current item button to hide only the selected field member. All other field members are shown in the DataPilot table.
+
+
+Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list.
+
+
+To edit the custom sort lists, open %PRODUCTNAME - Preferences
+Tools - Options - %PRODUCTNAME Calc - Sort Lists.
+
+
+The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner.
+
+
+You can also open the pop-up window by positioning the cell cursor at the button and pressing Command
+Ctrl+D.
+
+
+
+
\ No newline at end of file
diff --git a/helpcontent2/source/text/scalc/guide/finding.xhp b/helpcontent2/source/text/scalc/guide/finding.xhp
index d3bafa15c0..6b23d1a583 100644
--- a/helpcontent2/source/text/scalc/guide/finding.xhp
+++ b/helpcontent2/source/text/scalc/guide/finding.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Finding and Replacing in Calc
-text/scalc/guide/finding.xhp
+/text/scalc/guide/finding.xhp
diff --git a/helpcontent2/source/text/scalc/guide/multitables.xhp b/helpcontent2/source/text/scalc/guide/multitables.xhp
index 0aa8986679..ca5895d771 100644
--- a/helpcontent2/source/text/scalc/guide/multitables.xhp
+++ b/helpcontent2/source/text/scalc/guide/multitables.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Applying Multiple Sheets
@@ -55,23 +55,33 @@
Choose Insert - Sheet to insert a new sheet or an existing sheet from another file.
+
+Sheet Events
+Opens a dialog box where you can assign macros to sheet events.
+
+Tab Color
+
+Opens a window where you can assign a color to the sheet tab.
+
Click to select all sheets in the document.Click to deselect all sheets in the document, except the current sheet.Selecting Multiple Sheets
- The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing Command
+ The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing Command
Ctrl you can select multiple sheets.You can use Shift+Command
Ctrl+Page Up or Page Down to select multiple sheets using the keyboard.Undoing a Selection
- To undo the selection of a sheet, click its sheet tab again while pressing the Command
+ To undo the selection of a sheet, click its sheet tab again while pressing the Command
Ctrl key. The sheet that is currently visible cannot be removed from the selection.Calculating Across Multiple SheetsYou can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, =SUM(Sheet1.A1:Sheet3.A1) sums up all A1 cells on Sheet1 through Sheet3.
+
+
diff --git a/helpcontent2/source/text/scalc/guide/value_with_name.xhp b/helpcontent2/source/text/scalc/guide/value_with_name.xhp
index cbc431b0f4..5cb9169e04 100755
--- a/helpcontent2/source/text/scalc/guide/value_with_name.xhp
+++ b/helpcontent2/source/text/scalc/guide/value_with_name.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Naming Cells
@@ -69,6 +69,7 @@
Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell.
+ Names must not start with the letter R followed by a number. See the ADDRESS function for more information.Names for cell ranges must not include blanks. Blanks are allowed within names for single cells, sheets and documents.Naming cells and formulasA good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 Start. You can then write a formula such as "=SUM(Start)". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces.
diff --git a/helpcontent2/source/text/shared/00/00000020.xhp b/helpcontent2/source/text/shared/00/00000020.xhp
index 789e8a457c..287341b8dd 100644
--- a/helpcontent2/source/text/shared/00/00000020.xhp
+++ b/helpcontent2/source/text/shared/00/00000020.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -56,13 +56,13 @@
About Import and Export FiltersIn $[officename], apart from its own XML formats you can also open and save many foreign XML formats.
-In UNIX, certain file formats cannot be recognized automatically.
+In UNIX, certain file formats cannot be recognized automatically.
$[officename] normally recognizes the correct file type automatically on opening a file. There may be cases where you have to select the file type yourself in the Open dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type "Text CSV" after selecting the file.Basic Macros in MS Office DocumentsIn %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties you can specify the settings for the VBA macro codes in MS Office documents. VBA macros are unable to run in $[officename]; they must first be converted and adapted. Often you only want to use $[officename] to change the visible content of a Word, Excel or PowerPoint file and then save the file again in Microsoft Office format without changing the macros they contain. You can set the behavior of $[officename] as desired: Either the VBA macros are saved in commented form as a subroutine of $[officename] and when the document is saved in MS Office format are written back correctly again, or you can select the Microsoft Office macros to be removed when loading. The last option is an effective protection against viruses within the Microsoft Office documents.Notes regarding external formats and file typesEven if they are not installed, some filters can be selected in the Open and Save dialogs. If you select such a filter, a message will appear saying that you can still install the filter if you require.
-If you want to install additional filters or remove individual filters from the installation, close %PRODUCTNAME, start the Setup program and select the Modify option. Then you will see a dialog in which you can add or remove individual components of %PRODUCTNAME. Graphic filters can be found in "Optional Components".
+If you want to install additional filters or remove individual filters from the installation, close %PRODUCTNAME, start the Setup program and select the Modify option. Then you will see a dialog in which you can add or remove individual components of %PRODUCTNAME. Graphic filters can be found in "Optional Components".
@@ -82,7 +82,6 @@
It is also possible to import and export RTF files. This file format can be used to exchange formatted texts across various applications and platforms. In this way, many formats read by most programs will be transferred without a problem. The clipboard uses RTF format when you insert part of a spreadsheet from $[officename] Calc through DDE into $[officename] Writer.The filter Text Encoded helps you open and save text documents with another encoding font. The filter opens a dialog that enables you to select character set, default fonts, language and paragraph break.Importing and Exporting in HTML Format
-When borders in HTML documents are exported, lines are exported in a width of exactly 1 pixel since Netscape Navigator and MS Internet Explorer do not recognize smaller lines. When importing, a border of 1 pixel width will appear with 0.05 pt width.still true? this para is very old.With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks.Comments are used to include unknown characters in an HTML document. Every note that begins with "HTML:..." and ends with ">" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after "HTML:..." Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags).The HTML import of $[officename] Writer is able to read files that have UTF-8 or UCS2 character coding. All characters that are contained in the ANSI character set or in the system's character set can be displayed.
@@ -101,7 +100,7 @@
If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on "width" and "height" values. The "Margin" property is used to set equal margins on all sides of the page. To allow different margins, the "Margin-Left", "Margin-Right", "Margin-Top" and "Margin-Bottom" properties are used.The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a "STYLE" option for the corresponding tag as CSS1 size properties "Margin-Top", "Margin-Bottom", "Margin-Left" and "Margin-Right".
-Text frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Netscape Navigator, MS Internet Explorer, and $[officename] Writer. Text frames can be aligned as graphics, Plug-Ins,
+Text frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Netscape Navigator, MS Internet Explorer, and $[officename] Writer. Text frames can be aligned as graphics, Plug-Ins,
and Floating Frames, but character-linked frames are not possible.Text frames are exported as "<SPAN>" or "<DIV>" tags if they do not contain columns. If they do contain columns then they are exported as "<MULTICOL>".The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General or %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web - View. The number of exported decimal places depends on the unit.
@@ -184,7 +183,7 @@
When you import an EPS file, a preview of the graphic is displayed in the document. If a preview is not available, a placeholder corresponding to the size of the graphic is displayed in the document. Under Unix and Microsoft Windows you can print the imported file by using a PostScript printer. If a different printer is used the preview will be printed. When exporting EPS graphics, a preview is created and has the TIFF or EPSI format. If an EPS graphic together with other graphics is exported in the EPS format then this file will be embedded unchanged in the new file.Multipage-TIFFs are allowed when graphics are imported or exported in TIFF format. The graphics are retrieved as a set of individual pictures in a single file, for example, the individual pages of a fax.
-Some $[officename] Draw and $[officename] Impress options can be accessed through File - Export.
+Some $[officename] Draw and $[officename] Impress options can be accessed through File - Export. See Graphics Export Options for more information.PostScriptTo export a document or graphic in PostScript format:
diff --git a/helpcontent2/source/text/shared/00/00000200.xhp b/helpcontent2/source/text/shared/00/00000200.xhp
new file mode 100755
index 0000000000..4079f9f663
--- /dev/null
+++ b/helpcontent2/source/text/shared/00/00000200.xhp
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+Graphics Export Options
+/text/shared/00/00000200.xhp
+
+
+
+
+Graphics Export Options
+Defines graphics export options.
+
+
+
+When you export graphical elements to a file, you can select the file type. For most supported file types a dialog opens where you can setup export options.
+The following file types do not show an options dialog: PWP, RAS, SVG, TIFF, XPM.
+The other file types show options dialogs where you can set the width and height of the exported image.
+Depending on the file type, you can specify some more options. Press Shift+F1 and hover over the control to see an extended help text.
+
+Common controls
+
+
+Specifies the measurement units.
+Width
+Specifies the width.
+Height
+Specifies the height.
+
+Resolution controls
+
+
+Resolution
+Enter the image resolution. Select the measurement units from the list box.
+
+More options
+JPEG controls
+For JPEG files you can set the color depth and the quality.
+
+
+Select the color depth from 8 bit grayscale or 24 bit true color.
+
+Unfortunately, the compression and quality sliders now share the same Help ID. Was UX on vacation?
+Sets the compression and quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size. A high compression means a low quality, a low compression means a high quality.
+
+BMP controls
+For BMP files you can set the compression and the RLE encoding.
+
+Applies RLE (Run Length Encoding) to the BMP graphics.
+
+PBM PGM PPM controls
+For PBM, PGM, and PPM files you can set the encoding.
+
+
+Exports the file in binary format. The resulting file is smaller than a text file.
+
+Exports the file in ASCII text format. The resulting file is larger than a binary file.
+
+PNG controls
+For PNG files you can set the compression and the interlaced mode.
+
+
+Specifies whether the graphic is to be saved in interlaced mode.
+
+GIF controls
+For GIF files you can set the transparency and the interlaced mode.
+
+
+Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Eyedropper to set the transparent color in the picture.
+
+EPS controls
+For EPS files you can set the preview, the color format, the compression, and the version.
+
+You must print an EPS file with a PostScript printer. Other printers will only print the embedded preview.
+
+
+Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.
+
+Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.
+
+Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.
+
+Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.
+
+Exports the file in color.
+
+Exports the file in grayscale tones.
+
+LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.
+
+Specifies that you do not wish to use compression.
+
+See Import and Export Filter Information for more information about filters.
+
+
diff --git a/helpcontent2/source/text/shared/00/00000202.xhp b/helpcontent2/source/text/shared/00/00000202.xhp
deleted file mode 100755
index 1014fe03e3..0000000000
--- a/helpcontent2/source/text/shared/00/00000202.xhp
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-JPEG Options
-/text/shared/00/00000202.xhp
-
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
-
-
-
-
- JPEG Options
- Defines the settings for the import/export of files in JPEG format.
-
-
-
- Quality
- Specifies the desired graphic quality.
- Quality
- Sets the quality for the import/export. The value 1 denotes minimum quality and minimal file size, 100 denotes maximum quality and file size.
- Color resolution
- Specifies the desired color resolution.
- Grayscale
- Specifies whether to export or import a graphic object in a grayscale.
- True Colors
- Specifies whether to retain the original colors of the JPEG file when importing or exporting.
- For more details about filters, see Information about Import/Export Filters
-
-
diff --git a/helpcontent2/source/text/shared/00/00000203.xhp b/helpcontent2/source/text/shared/00/00000203.xhp
deleted file mode 100755
index bfe46acab4..0000000000
--- a/helpcontent2/source/text/shared/00/00000203.xhp
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-SVM/WMF/PICT/MET Options
-/text/shared/00/00000203.xhp
-
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
-
-
-
-
- SVM/WMF/PICT/MET Options
- Defines the settings for SVM/WMF/PICT/MET export options.
-
-
-
- Mode
- Specifies the mode for file export.
- Original
- Retains the original size.
- Size
- Specifies whether to modify size.
- Size
- Defines the width and height. This is only active if the Size option has been selected.
- Width
- Specifies the width.
- Height
- Specifies the height.
- See Import and Export Filter Information for more information about filters.
-
-
diff --git a/helpcontent2/source/text/shared/00/00000204.xhp b/helpcontent2/source/text/shared/00/00000204.xhp
deleted file mode 100644
index 440936eee1..0000000000
--- a/helpcontent2/source/text/shared/00/00000204.xhp
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
-
-
-
-
-
-BMP Options
-/text/shared/00/00000204.xhp
-
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
-
-
-
-BMP Options
-Defines the import/export settings for files in BMP format.
-
-Color Resolution
-Specifies the color resolution of the BMP file to be exported.
-The Color Resolution command also appears on the context menu of a BMP graphic that has been loaded in %PRODUCTNAME Draw.
-
-Color Resolution
-In the Color Resolution list you will find the following color resolution variants:
-Original
-Retains the original color resolution.
-
-
-1-Bit Threshold
-Converts the object to black and white. All brightness levels below the middle value become black, while all above the middle value become white.
-
-
-1 Bit Dithered
-Allows the object to be converted to a grid of black and white dots.
-
-
-4-Bit Grayscale
-Allows the object to be converted to a palette of 16 gray scale tones corresponding to the brightness of the original.
-
-
- 4-Bit Color Palette
-Allows the object to be converted to a palette of 16 colors that match the original colors as closely as possible.
-
-
-8-Bit Grayscale
-Allows the object to be converted to a palette of 256 gray scale tones corresponding to the brightness of the original.
-
-
-8-Bit Color Palette
-Allows the object to be converted to a palette of 256 colors that match the original colors as closely as possible.
-
-
-24-Bit True Colors
-Allows the object to be converted to a palette of approximately 16 million colors.
-
-RLE Encoding
-Applies RLE (Run Length Encoding) to the BMP graphics
-Mode
-Determines the type of export mode.
-
-Original
-Retains the original mode.
-
-
-Resolution
-Allows you to define the resolution for an image. Select the desired DPI from the Resolution list box.
-
-Size
-Allows you modify the image size by a given measurement.
-
-Width
-Specifies the image width.
-
-Height
-Specifies the image height.
-See Import and Export Filter Information for more information about filters.
-
-
diff --git a/helpcontent2/source/text/shared/00/00000205.xhp b/helpcontent2/source/text/shared/00/00000205.xhp
deleted file mode 100755
index b7bac24c75..0000000000
--- a/helpcontent2/source/text/shared/00/00000205.xhp
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-GIF Options
-/text/shared/00/00000205.xhp
-
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
-
-
-transparency; saving
-GIF format
-
-
-GIF Options
-In the GIF Options dialog, you can select the settings for the export of files in GIF format.
-
-Mode
-
-
-Interlaced
-Specifies whether to use interlaced mode for saving the GIF image.
-Drawing objects
-
-
-Save transparency
-Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Eyedropper to set the transparent color in the picture.
-For more information regarding filters, refer to the topic: Information about Import and Export Filters.
-
-
diff --git a/helpcontent2/source/text/shared/00/00000208.xhp b/helpcontent2/source/text/shared/00/00000208.xhp
index f4171df4ec..fe47971b17 100644
--- a/helpcontent2/source/text/shared/00/00000208.xhp
+++ b/helpcontent2/source/text/shared/00/00000208.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -53,6 +53,14 @@
ImportCharacter SetSpecifies the character set to be used in the imported file.
+
+
+Language
+Determines how the number strings are imported.
+If Language is set to Default (for CSV import) or Automatic (for HTML import), Calc will use the globally set language. If Language is set to a specific language, that language will be used when importing numbers.
+When importing an HTML document, the Language selection can conflict with the global HTML option Use 'English (USA)' locale for numbers. The global HTML option is effective only when the Automatic language option is selected. If you select a specific language in the HTML Import Options dialog, the global HTML option is ignored.
+
+
From RowSpecifies the row where you want to start the import. The rows are visible in the preview window at the bottom of the dialog.Separator Options
@@ -76,6 +84,23 @@
Combines consecutive delimiters and removes blank data fields.Text delimiterSelect a character to delimit text data. You can can also enter a character in the text box.
+
+
+
+Other options
+Sets some other import options.
+
+Quoted fields as text
+When this option is enabled, fields or cells whose values are quoted in their entirety (the first and last characters of the value equal the text delimiter) are imported as text.
+
+
+Detect special numbers
+When this option is enabled, Calc will automatically detect all number formats, including special number formats such as dates, time, and scientific notation.
+The selected language influences how such special numbers are detected, since different languages and regions many have different conventions for such special numbers.
+When this option is disabled, Calc will detect and convert only decimal numbers. The rest, including numbers formatted in scientific notation, will be imported as text. A decimal number string can have digits 0-9, thousands separators, and a decimal separator. Thousands separators and decimal separators may vary with the selected language and region.
+
+
+
FieldsShows how your data will look when it is separated into columns.Column type
diff --git a/helpcontent2/source/text/shared/00/00000212.xhp b/helpcontent2/source/text/shared/00/00000212.xhp
deleted file mode 100755
index 4c5fc36826..0000000000
--- a/helpcontent2/source/text/shared/00/00000212.xhp
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-PNG options
-/text/shared/00/00000212.xhp
-
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
-
-
-PNG options
-Specifies the compression rate and the interlaced mode for saving the image as a PNG file.
-
-
-
-Mode
-
-
-Compression 0..9
-Specifies the compression setting from 0 (no compression) to 9 (maximum compression). The calculation time increases with the compression value, while the resulting file is smaller in bytes.
-
-
-Interlaced
-Specifies whether the graphic is to be saved in interlaced mode.
-
-
diff --git a/helpcontent2/source/text/shared/00/00000213.xhp b/helpcontent2/source/text/shared/00/00000213.xhp
deleted file mode 100755
index 4eef472d89..0000000000
--- a/helpcontent2/source/text/shared/00/00000213.xhp
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
-
-EPS Export Options
-/text/shared/00/00000213.xhp
-
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
-
-
-EPS Export Options
-Defines several export options for EPS files.
-
-You must print an EPS file with a PostScript printer. Other printers will only print the embedded preview.
-
-
-
-
-Preview
-Specifies options for embedded preview for the EPS file.
-
-Image preview (TIFF)
-Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.
-
-Interchange (EPSI)
-Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.
-Version
-Determines the PostScript level for exporting the EPS file.
-
-Level 1
-Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.
-
-Level 2
-Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.
-Color format
-The Color format option gives you the choice between exporting in color or in grayscale.
-
-Color
-Exports the file in color.
-
-Grayscale
-Exports the file in grayscale tones.
-Compression
-Specifies whether the data is exported with compression.
-
-LZW encoding
-LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm invented by Abraham Lempel, Jacob Ziv, and Terry Welch. If you choose to activate this, select the LZW encoding option.
-
-None
-Specifies that you do not wish to use compression.
-
-
diff --git a/helpcontent2/source/text/shared/00/00000214.xhp b/helpcontent2/source/text/shared/00/00000214.xhp
deleted file mode 100755
index 570cde3d5f..0000000000
--- a/helpcontent2/source/text/shared/00/00000214.xhp
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
-
-PBM/PPM/PGM Options
-/text/shared/00/00000214.xhp
-
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
-
-
-PBM/PPM/PGM Options
-Select the file format for the file to be exported. This dialog appears when exporting in the Portable Bitmap (PBM), Portable Pixelmap (PPM) and Portable Graymap (PGM) format.
-
-
-
-File format
-
-
-
-Binary
-Exports the file in binary format. The resulting file is smaller than a (ASCII) text file.
-
-
-
-Text
-Exports the file in the ASCII text format. This file type is larger than a binary.
-
-
diff --git a/helpcontent2/source/text/shared/00/00000401.xhp b/helpcontent2/source/text/shared/00/00000401.xhp
index 54f65d415c..215a3c45d0 100644
--- a/helpcontent2/source/text/shared/00/00000401.xhp
+++ b/helpcontent2/source/text/shared/00/00000401.xhp
@@ -247,14 +247,6 @@
-Choose File - Save As, if GIF selected as file type, dialog opens automatically
-
-Choose File - Save As, if PNG selected as file type, dialog opens automatically
-
-Choose File - Save As, if BMP selected as file type, dialog opens automatically
-
-Choose File - Save As, if JPEG selected as file type, dialog opens automatically
-$[officename] Draw or $[officename] Impress menu File - Export, select "HTML Document" file type, this dialog opens automatically
$[officename] Draw/$[officename] Impress menu File - Export, select HTML file type, page 1 of the wizard
@@ -269,11 +261,7 @@
$[officename] Draw/$[officename] Impress menu File - Export, select HTML file type, page 6 of the wizard
-Choose File - Export, if SVM/WMF/PICT/MET selected as file type, dialog opens automatically
-
-Choose File - Export, if BMP selected as file type, dialog opens automatically
-
-Choose File - Export, if GIF selected as file type, dialog opens
+Choose File - Export, select a graphics file type, dialog opens automatically
Choose File - Save All
diff --git a/helpcontent2/source/text/shared/00/00040501.xhp b/helpcontent2/source/text/shared/00/00040501.xhp
index 6e26a5989c..3e5793730b 100644
--- a/helpcontent2/source/text/shared/00/00040501.xhp
+++ b/helpcontent2/source/text/shared/00/00040501.xhp
@@ -5,7 +5,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -29,35 +29,31 @@
*
************************************************************************
-->
-
+
Format Menu/text/shared/00/00040501.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-Format Menu
-Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field.
+Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field.
-Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. No database connection in current form is allowed.
+Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. No database connection in current form is allowed.
-Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. Database connection must exist.
+Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. Database connection must exist.
-Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form.
+Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form.
-Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1.
+Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1.
-Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2.
+Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2.
-Open Form Controls toolbar, click List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.
+Open Form Controls toolbar, click List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.
-Open Form Controls toolbar, click Combo Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.
+Open Form Controls toolbar, click Combo Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.
Open Toolbox bar in Basic dialog editor, click
diff --git a/helpcontent2/source/text/shared/00/makefile.mk b/helpcontent2/source/text/shared/00/makefile.mk
index 098d531d6e..9c8aef8002 100644
--- a/helpcontent2/source/text/shared/00/makefile.mk
+++ b/helpcontent2/source/text/shared/00/makefile.mk
@@ -55,17 +55,11 @@ XHPFILES = \
00000020.xhp \
00000021.xhp \
00000099.xhp \
- 00000202.xhp \
- 00000203.xhp \
- 00000204.xhp \
- 00000205.xhp \
+ 00000200.xhp \
00000206.xhp \
00000207.xhp \
00000208.xhp \
00000210.xhp \
- 00000212.xhp \
- 00000213.xhp \
- 00000214.xhp \
00000215.xhp \
00000401.xhp \
00000402.xhp \
diff --git a/helpcontent2/source/text/shared/01/01100600.xhp b/helpcontent2/source/text/shared/01/01100600.xhp
index e801d63d11..9cb77bbead 100644
--- a/helpcontent2/source/text/shared/01/01100600.xhp
+++ b/helpcontent2/source/text/shared/01/01100600.xhp
@@ -57,9 +57,11 @@
File encryptionThe password to open the current document can be set in the Properties dialog on the Security tab page. You can also set a password to open the document when you save the document. Check the Save with password option on the Save As dialog, and enter the password.
+Enter password to openType a password. A password is case sensitive.
+Confirm passwordRe-enter the password.
@@ -67,11 +69,14 @@
File sharing optionsThe password to edit the current document can be set in the Properties dialog on the Security tab page. Currently this option is evaluated for documents in some Microsoft file formats.
+Enter password to allow editingType a password. A password is case sensitive.
+Confirm passwordRe-enter the password.
+
diff --git a/helpcontent2/source/text/shared/01/02100001.xhp b/helpcontent2/source/text/shared/01/02100001.xhp
index 71dadfdd8b..c68e45bfdd 100755
--- a/helpcontent2/source/text/shared/01/02100001.xhp
+++ b/helpcontent2/source/text/shared/01/02100001.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
List of Regular Expressions
@@ -337,6 +337,11 @@
Examples
+
+e([:digit:])? -- finds 'e' followed by zero or one digit. Note that currently all named character classes like [:digit:] must be enclosed in parentheses.issue 64368 and 113035
+^([:digit:])$ -- finds lines or cells with exactly one digit.
+
+
You can combine the search terms to form complex searches.To find three-digit numbers alone in a paragraph^[:digit:]{3}$
diff --git a/helpcontent2/source/text/shared/01/02180000.xhp b/helpcontent2/source/text/shared/01/02180000.xhp
index f85b77a879..d50b5e265b 100644
--- a/helpcontent2/source/text/shared/01/02180000.xhp
+++ b/helpcontent2/source/text/shared/01/02180000.xhp
@@ -60,6 +60,15 @@
If you are loading a file that contains DDE links, you are prompted to update the links. Decline the update if you do not want to establish a connection to the DDE server.Double-click a link in the list to open a file dialog where you can select another object for this link.
+
+
+
+When you open a file by an URL from the Windows file dialog, Windows will open a local copy of the file, located in the Internet Explorer cache. The %PRODUCTNAME file dialog opens the remote file.
+
+
+
+
+
Source fileLists the path to the source file.
-
+
-
-
+
+
Zoom & View Layout
@@ -60,13 +60,13 @@
Optimal
- Resizes the display to fit the width of the selected cell area at the moment the command is started.
+ Resizes the display to fit the width of the selected cell area at the moment the command is started.
Resizes the display to fit the width of the text in the document at .Fit width and height
- Resizes the display to fit the width and height of the selected cell area at the moment the command is started.
+ Resizes the display to fit the width and height of the selected cell area at the moment the command is started.
Displays the entire page on your screen.
@@ -75,6 +75,7 @@
Displays the complete width of the document page. The top and bottom edges of the page may not be visible.
+Displays the document at two times its actual size.
@@ -82,6 +83,7 @@
+100 %Displays the document at its actual size.
@@ -91,6 +93,8 @@
Displays the document at 75% of its actual size.
+
+
Displays the document at half of its actual size.
diff --git a/helpcontent2/source/text/shared/01/04160500.xhp b/helpcontent2/source/text/shared/01/04160500.xhp
index 5070e800df..58a9b43829 100644
--- a/helpcontent2/source/text/shared/01/04160500.xhp
+++ b/helpcontent2/source/text/shared/01/04160500.xhp
@@ -4,7 +4,7 @@
-
+
@@ -46,7 +46,7 @@
Insert Floating Frame
-Inserts a floating frame into the current document. Floating frames are used in HTML documents to display the contents of another file. Floating frames are not supported by Netscape Navigator 4.x.
+Inserts a floating frame into the current document. Floating frames are used in HTML documents to display the contents of another file.
diff --git a/helpcontent2/source/text/shared/01/06140500.xhp b/helpcontent2/source/text/shared/01/06140500.xhp
index 6482e27d28..e3c4acbe97 100644
--- a/helpcontent2/source/text/shared/01/06140500.xhp
+++ b/helpcontent2/source/text/shared/01/06140500.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -55,10 +55,15 @@
A macro that is saved with a document can only be run when that document is opened.The big list box lists the events and the assigned macros. After you selected the location in the Save In list box, select an event in the big list box. Then click Assign Macro.
-Assign Macro
+
+
+
+Assign MacroOpens the Macro Selector to assign a macro to the selected event.
-Remove Macro
+
+
+Remove MacroDeletes the macro assignment for the selected event.List of events
diff --git a/helpcontent2/source/text/shared/01/digitalsignatures.xhp b/helpcontent2/source/text/shared/01/digitalsignatures.xhp
index f00d915bcc..b1d8d6b951 100644
--- a/helpcontent2/source/text/shared/01/digitalsignatures.xhp
+++ b/helpcontent2/source/text/shared/01/digitalsignatures.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Digital Signatures
@@ -56,9 +56,9 @@
ListLists the digital signatures for the current document.
- The Signed icon
+ The Signed icon
Icon
- indicates a valid digital signature, while the Exclamation mark icon
+ indicates a valid digital signature, while the Exclamation mark icon
Icon indicates an invalid digital signature.See also Digital Signatures.
@@ -66,7 +66,7 @@
View CertificateOpens the View Certificate dialog.
-Add
+Sign DocumentOpens the Select Certificate dialog.Remove
diff --git a/helpcontent2/source/text/shared/01/password_dlg.xhp b/helpcontent2/source/text/shared/01/password_dlg.xhp
index 37cade2acb..eebc4cc00a 100644
--- a/helpcontent2/source/text/shared/01/password_dlg.xhp
+++ b/helpcontent2/source/text/shared/01/password_dlg.xhp
@@ -46,6 +46,7 @@
+
Password
@@ -53,12 +54,17 @@
+
ConfirmRe-enter the password.Undoing password protectionTo remove a password, open the document, then save without password.
+
+ Click to show or hide the file sharing password options.
+
+
\ No newline at end of file
diff --git a/helpcontent2/source/text/shared/01/ref_pdf_export.xhp b/helpcontent2/source/text/shared/01/ref_pdf_export.xhp
index 7c3eb19442..b6ee932f50 100644
--- a/helpcontent2/source/text/shared/01/ref_pdf_export.xhp
+++ b/helpcontent2/source/text/shared/01/ref_pdf_export.xhp
@@ -121,13 +121,17 @@
Submit formatSelect the format of submitting forms from within the PDF file.Select the format of the data that you will receive from the submitter: FDF (Forms Data Format), PDF, HTML, or XML.
- This setting overrides the control's URL property that you set in the document.insert help id here
+ This setting overrides the control's URL property that you set in the document.
+Allow duplicate field namesAllows to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names.Export automatically inserted blank pagesIf switched on, automatically inserted blank pages are being exported to pdf file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. The previous chapter ends on an odd page. %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not.
+
+Embed standard fonts
+Normally the 14 standard Postscript fonts are not embedded in a PDF file, because every PDF reader software already contains these fonts. Enable this option to embed the standard fonts that are installed on your system and that are used in the document. Use this option if you expect to have a better looking or more useful standard font than the font that is available in the recipients' PDF reader software.Create hybrid fileWhen the PDF Import Extension is installed, this setting enables you to export the document as a .pdf file containing two file formats: PDF and ODF.
diff --git a/helpcontent2/source/text/shared/02/10100000.xhp b/helpcontent2/source/text/shared/02/10100000.xhp
index bd88cf0aae..55971cb940 100644
--- a/helpcontent2/source/text/shared/02/10100000.xhp
+++ b/helpcontent2/source/text/shared/02/10100000.xhp
@@ -4,7 +4,7 @@
-
+
-Close
+Close Window/text/shared/02/10100000.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
-Close
-Closes the current window. Choose Window - Close, or press CommandCtrl+F4. In the page preview of $[officename] Writer and Calc, you can close the current window by clicking the Close Preview button.
+Close Window
+Closes the current window. Choose Window - Close Window, or press CommandCtrl+F4. In the page preview of $[officename] Writer and Calc, you can close the current window by clicking the Close Preview button.If additional views of the current document were opened by Window - New Window, this command will close only the current view.
diff --git a/helpcontent2/source/text/shared/02/colortoolbar.xhp b/helpcontent2/source/text/shared/02/colortoolbar.xhp
index 848abad730..f8607e3ce3 100755
--- a/helpcontent2/source/text/shared/02/colortoolbar.xhp
+++ b/helpcontent2/source/text/shared/02/colortoolbar.xhp
@@ -4,7 +4,7 @@
-
+
Color
-text/shared/02/colortoolbar.xhp
+/text/shared/02/colortoolbar.xhpColor toolbar from Picture bar
diff --git a/helpcontent2/source/text/shared/autopi/01130000.xhp b/helpcontent2/source/text/shared/autopi/01130000.xhp
old mode 100644
new mode 100755
index 1bdbbafdfd..d2691a9895
--- a/helpcontent2/source/text/shared/autopi/01130000.xhp
+++ b/helpcontent2/source/text/shared/autopi/01130000.xhp
@@ -48,7 +48,7 @@
-The wizard converts documents and templates from older versions, as well as documents from Microsoft Word, Excel and PowerPoint. The source files are only read, not edited. New target files are written with the new file name extension in the same or a new folder.
+The wizard converts binary documents and templates from older versions, as well as documents from Microsoft Word, Excel and PowerPoint. The source files are only read, not edited. New target files are written with the new file name extension in the same or a new folder.The Document Converter Wizard contains the following pages:
diff --git a/helpcontent2/source/text/shared/autopi/01170000.xhp b/helpcontent2/source/text/shared/autopi/01170000.xhp
index 70cca1dbdb..ee75e8d846 100755
--- a/helpcontent2/source/text/shared/autopi/01170000.xhp
+++ b/helpcontent2/source/text/shared/autopi/01170000.xhp
@@ -54,8 +54,8 @@
Please select the type of your external address bookNot all types are available on all systems.
-Mozilla / Netscape
-Select this option if you already use an address book in Mozilla or Netscape.
+Seamonkey / Netscape
+Select this option if you already use an address book in Seamonkey or Netscape.ThunderbirdSelect this option if you already use an address book in Thunderbird.
diff --git a/helpcontent2/source/text/shared/autopi/01170300.xhp b/helpcontent2/source/text/shared/autopi/01170300.xhp
index 1a4020031d..bf5677dfec 100755
--- a/helpcontent2/source/text/shared/autopi/01170300.xhp
+++ b/helpcontent2/source/text/shared/autopi/01170300.xhp
@@ -4,7 +4,7 @@
-
+
Select Table/text/shared/autopi/01170300.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-Select Table
-Specifies a table from the Mozilla / Netscape 6.x address book source that is used as the address book in $[officename].
+Specifies a table from the Seamonkey / Netscape address book source that is used as the address book in $[officename].
diff --git a/helpcontent2/source/text/shared/explorer/database/dabaadvpropdat.xhp b/helpcontent2/source/text/shared/explorer/database/dabaadvpropdat.xhp
index 6dd9b75476..9ef06867c1 100755
--- a/helpcontent2/source/text/shared/explorer/database/dabaadvpropdat.xhp
+++ b/helpcontent2/source/text/shared/explorer/database/dabaadvpropdat.xhp
@@ -49,7 +49,7 @@
The availability of the following controls depends on the type of database:Use SQL92 naming constraintsUFI: found this for dBase and for text file folderOnly allows characters that conform to the SQL92 naming convention in a name in a data source. All other characters are rejected. Each name must begin with a lowercase letter, an uppercase letter, or an underscore ( _ ). The remaining characters can be ASCII letters, numbers, and underscores.
-
+ Use keyword AS before table alias namesSome databases use the keyword "AS" between a name and its alias, while other databases use a whitespace. Enable this option to insert AS before the alias.http://dba.openoffice.org/specifications/Data_Source_Property_Dialog.sxw
@@ -93,8 +93,16 @@
The control box is available for all data source types which support write access to their data. The control box does not exist for spreadsheets, text, csv, and the various read-only address books.Ignore currency field informationOnly for Oracle JDBC connections. When enabled it specifies that no column is treated as a currency field. The field type returned from the database driver is discarded.
-
+
+Use ODBC conformant date/time literals
- Check to use ODBC conformant date/time literals.
-
+Use date/time literals that conform to ODBC standard.
+
+
+Supports primary keys
+Enable to overrule Base's heuristics used to detect whether the database supports primary keys.
+When connecting to a database using a generic API like ODBC, JDBC, or ADO, Base currently applies heuristics to determine whether this database supports primary keys. None of those APIs has dedicated support to retrieve this information.
+The heuristics sometimes fails. This tri-state check box by default is set to the undetermined state, which means "apply the heuristics". If the check box is enabled, primary key support is assumed. If the check box is disabled, no primary key support is assumed.
+Note that if this option is just for overruling the heuristics. If you enable the check box for a database which actually does not support primary keys, you will see some errors.
+
\ No newline at end of file
diff --git a/helpcontent2/source/text/shared/explorer/database/dabawiz00.xhp b/helpcontent2/source/text/shared/explorer/database/dabawiz00.xhp
index e2d6fe116a..637535a150 100755
--- a/helpcontent2/source/text/shared/explorer/database/dabawiz00.xhp
+++ b/helpcontent2/source/text/shared/explorer/database/dabawiz00.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Database Wizard
@@ -52,14 +52,14 @@
The Database Wizard creates a database file that contains information about a database.Depending on the type of operation and the type of database, the Database Wizard consists of a varying number of steps.
-
+If you create a new database file, the wizard contains two steps.
-
+If you open the Database Wizard to create a database file for an existing database connection, there may be more steps to specify paths, authentication information, and more.
diff --git a/helpcontent2/source/text/shared/explorer/database/dabawiz01.xhp b/helpcontent2/source/text/shared/explorer/database/dabawiz01.xhp
index 6ce4165036..dc5ef1339d 100755
--- a/helpcontent2/source/text/shared/explorer/database/dabawiz01.xhp
+++ b/helpcontent2/source/text/shared/explorer/database/dabawiz01.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Database Selection
@@ -66,7 +66,7 @@
Database typeSelect the database type for the existing database connection.
-The Outlook, Evolution, KDE Address Book, and Mozilla database types do not need additional information. For other database types, the wizard contains additional pages to specify the required information.
+The Outlook, Evolution, KDE Address Book, and Seamonkey database types do not need additional information. For other database types, the wizard contains additional pages to specify the required information.The next wizard page is one of the following pages:Set up text file connection
diff --git a/helpcontent2/source/text/shared/explorer/database/rep_main.xhp b/helpcontent2/source/text/shared/explorer/database/rep_main.xhp
index a154988d03..75e98c6bd6 100644
--- a/helpcontent2/source/text/shared/explorer/database/rep_main.xhp
+++ b/helpcontent2/source/text/shared/explorer/database/rep_main.xhp
@@ -39,6 +39,7 @@
Report Builder
+Oracle Report BuilderReport Builder
diff --git a/helpcontent2/source/text/shared/guide/chart_barformat.xhp b/helpcontent2/source/text/shared/guide/chart_barformat.xhp
index cdf29addb4..bdc5f5746e 100755
--- a/helpcontent2/source/text/shared/guide/chart_barformat.xhp
+++ b/helpcontent2/source/text/shared/guide/chart_barformat.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -40,15 +40,15 @@
-
-
-
+
+
+
charts; bars with texturestextures;on chart barsinserting;textures on chart barsMW changed "adding;" to "inserting;"
- Adding Texture to Chart Bars
+ Adding Texture to Chart Bars
You can add texture to the bars in a graph or chart (instead of the default colors) via bitmap graphics:
@@ -56,8 +56,8 @@
Enter edit mode by double-clicking on the chart.
- Double-click on any bar of the bar series you want to edit. All bars of this series are now selected.
- If you want to edit only one bar, double-click again on that bar.
+ Click on any bar of the bar series you want to edit. All bars of this series are now selected.
+ If you want to edit only one bar, click again on that bar.In the context menu choose Object Properties. Then choose the Area tab.
@@ -67,11 +67,11 @@
-
+
-
+
diff --git a/helpcontent2/source/text/shared/guide/copytable2application.xhp b/helpcontent2/source/text/shared/guide/copytable2application.xhp
index 53c48ed5ba..7a1715a469 100755
--- a/helpcontent2/source/text/shared/guide/copytable2application.xhp
+++ b/helpcontent2/source/text/shared/guide/copytable2application.xhp
@@ -5,7 +5,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -29,7 +29,7 @@
*
************************************************************************
-->
-
+
@@ -59,10 +59,10 @@
To copy a cell range into a text document, select the cell range in the sheet and then use either the clipboard or drag-and-drop to insert the cells into the text document. You will then find an OLE object in the text document, which you can edit further.
-If you drag cells to the normal view of a presentation document, the cells will be inserted there as an OLE object. If you drag cells into the outline view, each cell will form a line of the outline view. If you just drag the cells you will move the cells. The cells will only be copied if you press the Shift key when dragging.
+If you drag cells to the normal view of a presentation document, the cells will be inserted there as an OLE object. If you drag cells into the outline view, each cell will form a line of the outline view.
-When you copy a cell range from $[officename] Calc to the clipboard, the drawing objects, OLE objects and charts within this range are also copied. They are also copied when you start a drag-and-drop action. However, the objects will be inserted only if you drop them within the same document.
+When you copy a cell range from $[officename] Calc to the clipboard, the drawing objects, OLE objects and charts within this range are also copied.If you insert a cell range with an enclosed chart, the chart will keep its link to the source cell range only if you copied the chart and the source cell range together.
diff --git a/helpcontent2/source/text/shared/optionen/01030500.xhp b/helpcontent2/source/text/shared/optionen/01030500.xhp
index e734f5ed4b..9bc9fa77bb 100644
--- a/helpcontent2/source/text/shared/optionen/01030500.xhp
+++ b/helpcontent2/source/text/shared/optionen/01030500.xhp
@@ -36,10 +36,6 @@
HTML compatibility/text/shared/optionen/01030500.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
@@ -100,7 +96,7 @@
Print layout
-If you mark this field, the print layout of the current document is exported as well. It can be read by $[officename] as well as Netscape Navigator from 4.0 and above and by MS Internet Explorer from 4.0 and above.
+If you mark this field, the print layout of the current document is exported as well. It can be read by $[officename], Netscape Navigator, and MS Internet Explorer.The HTML filter supports CSS2 (Cascading Style Sheets Level 2) for printing documents. These capabilities are only effective if print layout export is activated.
diff --git a/helpcontent2/source/text/shared/optionen/01060500.xhp b/helpcontent2/source/text/shared/optionen/01060500.xhp
index 4f6356b778..9f9684ab87 100644
--- a/helpcontent2/source/text/shared/optionen/01060500.xhp
+++ b/helpcontent2/source/text/shared/optionen/01060500.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Calculate
@@ -56,7 +56,7 @@
UFI: removed a double entrymw changed "cell contents;" to "case sensitivity;.."mw deleted "numbers;decimal places (Calc)"Calculate
- Defines the calculation settings for spreadsheets. Defines the behavior of spreadsheets with iterative references, the date settings, the number of decimal places, and if capitalization or lower cases are to be considered when searching within sheets.
+ Defines the calculation settings for spreadsheets. Defines the behavior of spreadsheets with iterative references, the date settings, the number of decimal places, and if capitalization or lower cases are to be considered when searching within sheets.
@@ -217,7 +217,7 @@
Enable regular expressions in formulas
- Specifies that regular expressions are enabled when searching and also for character string comparisons. This relates to the database functions, and to VLOOKUP, HLOOKUP and SEARCH.
+ Specifies that regular expressions are enabled when searching and also for character string comparisons. This relates to the database functions, and to VLOOKUP, HLOOKUP and SEARCH.
Sorry, no more switches allowed inside AVIS tagsSpecifies that you can use the text in any cell as a label for the column below the text or the row to the right of the text. The text must consist of at least one word and must not contain any operators.Example: Cell E5 contains the text "Europe". Below, in cell E6, is the value 100 and in cell E7 the value 200. If the Automatically find column and row labels box is marked, you can write the following formula in cell A1: =SUM(Europe).
-
+
+
+
+Limit decimals for general number format
+You can specify the maximum number of decimal places that are shown by default for cells with General number format. If not enabled, cells with General number format show as many decimal places as the column width allows.
+
+
\ No newline at end of file
diff --git a/helpcontent2/source/text/simpress/02/10020000.xhp b/helpcontent2/source/text/simpress/02/10020000.xhp
index c73d733fb3..8a9c10cc91 100644
--- a/helpcontent2/source/text/simpress/02/10020000.xhp
+++ b/helpcontent2/source/text/simpress/02/10020000.xhp
@@ -4,7 +4,7 @@
-
+
@@ -102,9 +102,9 @@
-
+
Zoom Out
-Displays the slide at half its current size.
+Displays the slide at half its current size.
@@ -138,7 +138,7 @@
Previous Zoom
-Returns the display of the slide to the previous zoom factor you applied. You can also press Command
+Returns the display of the slide to the previous zoom factor you applied. You can also press Command
Ctrl+Comma(,).
@@ -156,7 +156,7 @@
Next Zoom
-Undoes the action of the Previous Zoom command. You can also press Command
+Undoes the action of the Previous Zoom command. You can also press Command
Ctrl+Period(.).
diff --git a/helpcontent2/source/text/simpress/guide/individual.xhp b/helpcontent2/source/text/simpress/guide/individual.xhp
index 9b68a790ab..796c02053e 100755
--- a/helpcontent2/source/text/simpress/guide/individual.xhp
+++ b/helpcontent2/source/text/simpress/guide/individual.xhp
@@ -5,7 +5,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -29,7 +29,7 @@
*
************************************************************************
-->
-
+
@@ -91,9 +91,10 @@
Do not select this option if you want to run a custom slide show.To hide a slide:
+To hide the current slide, click the Hide Slide action button.
-Choose View - Slide Sorter, and then select the slide(s) that you want to hide.
+To hide several slides, choose View - Slide Sorter, and then select the slide(s) that you want to hide.Choose Slide Show - Show/Hide Slide.
diff --git a/helpcontent2/source/text/simpress/main0200.xhp b/helpcontent2/source/text/simpress/main0200.xhp
index 7f35cd873a..0cae0f12a3 100755
--- a/helpcontent2/source/text/simpress/main0200.xhp
+++ b/helpcontent2/source/text/simpress/main0200.xhp
@@ -36,10 +36,6 @@
Toolbars/text/simpress/main0200.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
@@ -69,6 +65,9 @@
+
+
+
diff --git a/helpcontent2/source/text/smath/00/00000004.xhp b/helpcontent2/source/text/smath/00/00000004.xhp
index d15d1ea55a..e291246b26 100644
--- a/helpcontent2/source/text/smath/00/00000004.xhp
+++ b/helpcontent2/source/text/smath/00/00000004.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -40,7 +40,7 @@
-To access this function...
+To access this function...
Choose Edit - Next Marker
@@ -156,12 +156,12 @@
Choose View - AutoUpdate Display
-Choose View - Formula Elements
+Choose View - ElementsOpen the context menu in the Commands window - choose Unary/Binary Operators
-Choose View - Formula Elements - symbol in the Formula Elements window:
+Choose View - Elements - in the Elements window, click
@@ -178,7 +178,7 @@
Open the context menu in the Commands window - choose Relations
-Choose View - Formula Elements - in the Formula Elements window, click
+Choose View - Elements - in the Elements window, click
@@ -195,7 +195,7 @@
Open the context menu in the Commands window - choose Operators
-Choose View - Formula Elements - in the Formula Elements window, click
+Choose View - Elements - in the Elements window, click
@@ -212,7 +212,7 @@
Open the context menu in the Commands window - choose Functions
-Choose View - Formula Elements - in the Formula Elements window, click
+Choose View - Elements - in the Elements window, click
@@ -229,7 +229,7 @@
Open the context menu in the Commands window - choose Brackets
-Choose View - Formula Elements - in the Formula Elements window, click
+Choose View - Elements - in the Elements window, click
@@ -246,7 +246,7 @@
Open the context menu in the Commands window - choose Attributes
-Choose View - Formula Elements - in the Formula Elements window, click
+Choose View - Elements - in the Elements window, click
@@ -263,7 +263,7 @@
Open the context menu in the Commands window - choose Formats
-Choose View - Formula Elements - in the Formula Elements window, click
+Choose View - Elements - in the Elements window, click
@@ -280,7 +280,7 @@
Open the context menu in the Commands window - choose Set Operations
-Choose View - Formula Elements - in the Formula Elements window, click
+Choose View - Elements - in the Elements window, click
@@ -319,7 +319,7 @@
-Symbols
+Catalog
@@ -334,7 +334,7 @@
Open the context menu in the Commands window - choose Others
-Choose View - Formula Elements - in the Formula Elements window, click
+Choose View - Elements - in the Elements window, click
diff --git a/helpcontent2/source/text/smath/01/02080000.xhp b/helpcontent2/source/text/smath/01/02080000.xhp
index 72d75588e1..ad32748678 100644
--- a/helpcontent2/source/text/smath/01/02080000.xhp
+++ b/helpcontent2/source/text/smath/01/02080000.xhp
@@ -4,7 +4,7 @@
-
+
Next Marker/text/smath/01/02080000.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
@@ -46,6 +42,7 @@
markers; definition
+Next MarkerMoves the cursor to the next marker (to the right).
diff --git a/helpcontent2/source/text/smath/01/02090000.xhp b/helpcontent2/source/text/smath/01/02090000.xhp
index c988675d13..683545ea37 100644
--- a/helpcontent2/source/text/smath/01/02090000.xhp
+++ b/helpcontent2/source/text/smath/01/02090000.xhp
@@ -4,7 +4,7 @@
-
+
Next Error/text/smath/01/02100000.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
@@ -45,6 +41,7 @@
finding ;errors in %PRODUCTNAME Math
+Next ErrorMoves the cursor to the next error (moving right).
diff --git a/helpcontent2/source/text/smath/01/02110000.xhp b/helpcontent2/source/text/smath/01/02110000.xhp
index 13771f495d..bb9096a51a 100755
--- a/helpcontent2/source/text/smath/01/02110000.xhp
+++ b/helpcontent2/source/text/smath/01/02110000.xhp
@@ -4,7 +4,7 @@
-
+
@@ -45,8 +45,9 @@
formulas; increasing size of display
+Zoom In
-Increases the display scale of the formula by 25%. The zoom scale is displayed on the status bar. You can also change the scale in the context menu of the status bar. The workspace context menu contains zoom options as well.
+Increases the display scale of the formula by 25%. The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the context menu. The context menu in the work area also contains zoom commands.
diff --git a/helpcontent2/source/text/smath/01/03050000.xhp b/helpcontent2/source/text/smath/01/03050000.xhp
index 3ec0ad470a..2b326dd8af 100755
--- a/helpcontent2/source/text/smath/01/03050000.xhp
+++ b/helpcontent2/source/text/smath/01/03050000.xhp
@@ -4,7 +4,7 @@
-
+
@@ -47,8 +47,9 @@
zooming out on formula display
+Zoom Out
-Decreases the display scale of formulas by 25%. The zoom scale is displayed on the status bar. You can also change the scale in the context menu of the status bar. The workspace context menu also has zoom options.
+Decreases the display scale of formulas by 25%. The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the context menu. The context menu in the work area also contains zoom commands.
diff --git a/helpcontent2/source/text/smath/01/03060000.xhp b/helpcontent2/source/text/smath/01/03060000.xhp
index b4f0c70410..480ce35b3b 100755
--- a/helpcontent2/source/text/smath/01/03060000.xhp
+++ b/helpcontent2/source/text/smath/01/03060000.xhp
@@ -4,7 +4,7 @@
-
+
Display All/text/smath/01/03060000.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
@@ -46,8 +42,9 @@
formulas; maximum size
-Display All
-Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area. Show All is equivalent to the Entire Formula icon on the toolbar. The current scale is displayed on the status bar. A selection of available scale options is accessible through the context menu. The context menu in the work area also contains the scale options.
+
+Show All / Display All
+Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area. The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the context menu. The context menu in the work area also contains zoom commands. The name of the icon is "Show All", the name of the context menu command is "Display All". The zoom commands and icons are only available in Math documents, not for embedded Math objects.
diff --git a/helpcontent2/source/text/smath/01/03070000.xhp b/helpcontent2/source/text/smath/01/03070000.xhp
index cc9c62bf07..c2f6e317f4 100755
--- a/helpcontent2/source/text/smath/01/03070000.xhp
+++ b/helpcontent2/source/text/smath/01/03070000.xhp
@@ -4,7 +4,7 @@
-
+
-Refreshing
+Update/text/smath/01/03070000.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-
-refreshing formula view
-formula view; refreshing
+updating formula view
+formula view; updating
-Refreshing
-This command refreshes the formula in the document window.
-Changes in the Commands window are automatically refreshed if Refresh View Automatically is activated.
+
+Update
+This command updates the formula in the document window.
+Changes in the Commands window are automatically updated if AutoUpdate Display is activated.
diff --git a/helpcontent2/source/text/smath/01/03080000.xhp b/helpcontent2/source/text/smath/01/03080000.xhp
index 54aaacf7f4..d64aafe852 100755
--- a/helpcontent2/source/text/smath/01/03080000.xhp
+++ b/helpcontent2/source/text/smath/01/03080000.xhp
@@ -4,7 +4,7 @@
-
+
-AutoRefresh Display
+AutoUpdate Display/text/smath/01/03080000.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-changes; accepting automatically
-AutoRefresh Display
-Choose this command to automatically refresh a modified formula. If you do not select this option, the formula will only be refreshed after you choose View - Refresh and press F9.
+
+AutoUpdate Display
+Automatically updates a modified formula. If you do not select this option, the formula will only be updated after you choose View - Update or press F9.
diff --git a/helpcontent2/source/text/smath/01/03090000.xhp b/helpcontent2/source/text/smath/01/03090000.xhp
index 65dc1e8413..e045ebe620 100755
--- a/helpcontent2/source/text/smath/01/03090000.xhp
+++ b/helpcontent2/source/text/smath/01/03090000.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
- Formula Elements
+ Elements/text/smath/01/03090000.xhp
@@ -41,9 +41,11 @@
selection options in formulasformulas; selections
+ elements;in Math
-Formula Elements
+
+Elements
This is a list of operators, functions, symbols and format options that can be inserted into the formula.
diff --git a/helpcontent2/source/text/smath/01/03090100.xhp b/helpcontent2/source/text/smath/01/03090100.xhp
index 3b3068617f..2d6b052709 100644
--- a/helpcontent2/source/text/smath/01/03090100.xhp
+++ b/helpcontent2/source/text/smath/01/03090100.xhp
@@ -4,7 +4,7 @@
-
+
@@ -70,12 +70,12 @@ dedr: fixed #i30769#
Unary/Binary Operators
-You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Formula Elements window displays the individual operators. The context menu of the Commands window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Formula Elements window, use the context menu or type it directly in the Commands window.
+You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements window displays the individual operators. The context menu of the Commands window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements window, use the context menu or type it directly in the Commands window.
-The following is a complete list of the unary and binary operators. The symbol next to the operator indicates that it can be accessed through the Formula Elements window (choose View - Formula Elements) or through the context menu of the Commands window.
+The following is a complete list of the unary and binary operators. The symbol next to the operator indicates that it can be accessed through the Elements window (choose View - Elements) or through the context menu of the Commands window.Unary and Binary Operators
@@ -317,8 +317,8 @@ dedr: fixed #i30769#
-You can also insert user-defined unary operators by typing uoper in the Commands window, followed by the syntax for the character. This function is useful for incorporating special characters into a formula. For example, the command uoper %theta x produces a small Greek letter theta (a component of the $[officename] Math character set). You can also insert characters not in the $[officename] character set by choosing Tools - Symbols - Catalog - Edit.
- You can also insert user-defined binary commands by typing boper into the Commands window. For example, the command y boper %theta x produces the small Greek letter theta preceded by a y and followed by an x. You can also insert characters not in the $[officename] character set by choosing Tools - Symbols - Catalog - Edit.
+You can also insert user-defined unary operators by typing uoper in the Commands window, followed by the syntax for the character. This function is useful for incorporating special characters into a formula. For example, the command uoper %theta x produces a small Greek letter theta (a component of the $[officename] Math character set). You can also insert characters not in the $[officename] character set by choosing Tools - Catalog - Edit.
+ You can also insert user-defined binary commands by typing boper into the Commands window. For example, the command y boper %theta x produces the small Greek letter theta preceded by a y and followed by an x. You can also insert characters not in the $[officename] character set by choosing Tools - Catalog - Edit.By typing <?>oplus<?> in the Commands window, you insert a circled plus operator in your document.Type <?>ominus<?> in the Commands window to insert a circled minus operator.Type <?>odot<?> in the Commands window to insert a circled dot operator in the formula.
@@ -328,7 +328,7 @@ dedr: fixed #i30769#
Type a widebslash b in the Commands window to produce two characters with a slash (from upper left to lower right) between them. The characters are set such that everything to the left of the slash is down, and everything to the right is up. This command is also available in the context menu of the Commands window.Type sub or sup in the Commands window to add indexes and powers to the characters in your formula; for example, a sub 2.
-If you want to use a colon ':' as division sign, choose Tools - Symbols - Catalog or click the Catalog icon on the Tools bar. Click the Edit button in the dialog that appears, then select the Special symbol set. Enter a meaningful name next to Symbol, for example, "divide" and then click the colon in the set of symbols. Click Add and then OK. Click OK to close the Symbols dialog,too. Now you can use the new symbol, in this case the colon, by entering its name in the Commands window, for example, a %divide b = c.
+If you want to use a colon ':' as division sign, choose Tools - Catalog or click the Catalog icon on the Tools bar. Click the Edit button in the dialog that appears, then select the Special symbol set. Enter a meaningful name next to Symbol, for example, "divide" and then click the colon in the set of symbols. Click Add and then OK. Click OK to close the Symbols dialog,too. Now you can use the new symbol, in this case the colon, by entering its name in the Commands window, for example, a %divide b = c.When entering information manually in the Commands window, please note that a number of operators require spaces between the elements for the correct structure. This is especially true if you are using values instead of placeholders in your operators, for example, to construct a division 4 div 3 or a div b.
diff --git a/helpcontent2/source/text/smath/01/03090200.xhp b/helpcontent2/source/text/smath/01/03090200.xhp
index 29ae79d0c6..7317e0a093 100644
--- a/helpcontent2/source/text/smath/01/03090200.xhp
+++ b/helpcontent2/source/text/smath/01/03090200.xhp
@@ -4,7 +4,7 @@
-
+
@@ -77,12 +77,12 @@
Relations
-You can choose among various relations to structure your $[officename] Math formula. The relation functions are displayed in the lower part of the Formula Elements window. The list is also in the context menu of the Commands window. All relations that are not contained in the Formula Elements window or in the context menu can be typed manually in the Commands window.
+You can choose among various relations to structure your $[officename] Math formula. The relation functions are displayed in the lower part of the Elements window. The list is also in the context menu of the Commands window. All relations that are not contained in the Elements window or in the context menu can be typed manually in the Commands window.
-The following is a complete list of the relations. The symbol next to the name of the relation indicates that it can be accessed through the Formula Elements window (choose View - Formula Elements) or through the context menu of the Commands window.
+The following is a complete list of the relations. The symbol next to the name of the relation indicates that it can be accessed through the Elements window (choose View - Elements) or through the context menu of the Commands window.Relations:
diff --git a/helpcontent2/source/text/smath/01/03090300.xhp b/helpcontent2/source/text/smath/01/03090300.xhp
index f202426a8a..da8f48c3ce 100644
--- a/helpcontent2/source/text/smath/01/03090300.xhp
+++ b/helpcontent2/source/text/smath/01/03090300.xhp
@@ -4,7 +4,7 @@
-
+
@@ -57,12 +57,12 @@
Operators
-You can choose among various operators to structure your $[officename] Math formula. All available operators appear in the lower part of the Formula Elements window. They are also listed in the context menu of the Commands window. All operators not contained in the Formula Elements window or in the context menu must be typed manually in the Commands window.
+You can choose among various operators to structure your $[officename] Math formula. All available operators appear in the lower part of the Elements window. They are also listed in the context menu of the Commands window. All operators not contained in the Elements window or in the context menu must be typed manually in the Commands window.
-The following is a list of the available operators. An icon next to the operator name indicates that it can be accessed through the Formula Elements window (choose View - Formula Elements) or through the context menu of the Commands window.
+The following is a list of the available operators. An icon next to the operator name indicates that it can be accessed through the Elements window (choose View - Elements) or through the context menu of the Commands window.Operator Functions
diff --git a/helpcontent2/source/text/smath/01/03090400.xhp b/helpcontent2/source/text/smath/01/03090400.xhp
index 827b36fe58..b1799af0fa 100644
--- a/helpcontent2/source/text/smath/01/03090400.xhp
+++ b/helpcontent2/source/text/smath/01/03090400.xhp
@@ -5,7 +5,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -29,7 +29,7 @@
*
************************************************************************
-->
-
+
@@ -74,12 +74,12 @@
Functions
-Choose a function in the lower part of the window. These functions are also listed in the context menu of the Commands window. Any functions not contained in the Formula Elements window need to be typed manually in the Commands window.
+Choose a function in the lower part of the window. These functions are also listed in the context menu of the Commands window. Any functions not contained in the Elements window need to be typed manually in the Commands window.
-The following is a list of all functions that appear in the Formula Elements window. The icon next to the function indicates that it can be accessed through the Formula Elements window (menu View - Formula Elements) or through the context menu of the Commands window.
+The following is a list of all functions that appear in the Elements window. The icon next to the function indicates that it can be accessed through the Elements window (menu View - Elements) or through the context menu of the Commands window.List of functions
diff --git a/helpcontent2/source/text/smath/01/03090500.xhp b/helpcontent2/source/text/smath/01/03090500.xhp
index 4a0f9b22ac..b4a4ebeada 100644
--- a/helpcontent2/source/text/smath/01/03090500.xhp
+++ b/helpcontent2/source/text/smath/01/03090500.xhp
@@ -4,7 +4,7 @@
-
+
@@ -76,12 +76,12 @@ dedr: reviewed
Brackets
-You can choose among various bracket types to structure a $[officename] Math formula. Bracket types are displayed in the lower part of the Formula Elements window. These brackets are also listed in the context menu of the Commands window. All brackets that are not contained in the Formula Elements window or in the context menu can be typed manually in the Commands window.
+You can choose among various bracket types to structure a $[officename] Math formula. Bracket types are displayed in the lower part of the Elements window. These brackets are also listed in the context menu of the Commands window. All brackets that are not contained in the Elements window or in the context menu can be typed manually in the Commands window.
-The following is a complete list of all available bracket types. The icon next to the bracket type indicates that it can be accessed through the Formula Elements window (menu View - Formula Elements) or through the context menu of the Commands window.
+The following is a complete list of all available bracket types. The icon next to the bracket type indicates that it can be accessed through the Elements window (menu View - Elements) or through the context menu of the Commands window.Bracket types
diff --git a/helpcontent2/source/text/smath/01/03090600.xhp b/helpcontent2/source/text/smath/01/03090600.xhp
index 31a241d37c..5d47bd0223 100644
--- a/helpcontent2/source/text/smath/01/03090600.xhp
+++ b/helpcontent2/source/text/smath/01/03090600.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Attributes
@@ -74,12 +74,12 @@
Attributes
You can choose from various attributes for %PRODUCTNAME
- Math formulas. Some attributes are displayed in the lower part of the Formula Elements window. These attributes are also listed in the context menu of the Commands window. All attributes not contained in the Formula Elements window or in the context menu must be typed manually in the Commands window.
+ Math formulas. Some attributes are displayed in the lower part of the Elements window. These attributes are also listed in the context menu of the Commands window. All attributes not contained in the Elements window or in the context menu must be typed manually in the Commands window.
- The following is a complete list of all attributes available in %PRODUCTNAME Math. The symbol next to the attribute indicates that it can be accessed through the Formula Elements window (choose View - Formula Elements) or through the context menu of the Commands window.
+ The following is a complete list of all attributes available in %PRODUCTNAME Math. The symbol next to the attribute indicates that it can be accessed through the Elements window (choose View - Elements) or through the context menu of the Commands window.In describing the following attribute functions, the letter "a" in the icon refers to the placeholder that you would like to assign to the respective attribute. You can substitute this character with any other character that you choose.Attribute Functions
diff --git a/helpcontent2/source/text/smath/01/03090700.xhp b/helpcontent2/source/text/smath/01/03090700.xhp
index 0bd7041a3c..e76baee7da 100644
--- a/helpcontent2/source/text/smath/01/03090700.xhp
+++ b/helpcontent2/source/text/smath/01/03090700.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -67,12 +67,12 @@
mw added two index entries about formula alignement and made "formatting.." a two level entryFormat
-You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower half of the Formula Elements window. These options are also listed in the context menu of the Commands window.
+You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower half of the Elements window. These options are also listed in the context menu of the Commands window.
-The following is a complete list of all available formatting options in $[officename] Math. The icon next to the formatting option indicates that it can be accessed through the Formula Elements window (menu View - Formula Elements) or through the context menu of the Commands window.
+The following is a complete list of all available formatting options in $[officename] Math. The icon next to the formatting option indicates that it can be accessed through the Elements window (menu View - Elements) or through the context menu of the Commands window.The letter "a" refers to the placeholder in your formula which you would like to assign to the respective formatting. You can substitute this character for any other you like.Formatting options
diff --git a/helpcontent2/source/text/smath/01/03090800.xhp b/helpcontent2/source/text/smath/01/03090800.xhp
index 40c9dc3547..f93a6766f3 100644
--- a/helpcontent2/source/text/smath/01/03090800.xhp
+++ b/helpcontent2/source/text/smath/01/03090800.xhp
@@ -4,7 +4,7 @@
-
+
@@ -66,12 +66,12 @@
Set Operations
-Assign different set operators to the characters in your $[officename] Math formula. The individual operators are shown in the lower section of the Formula Elements window. Call the context menu in the Commands window to see an identical list of the individual functions. Any operators not found in the Formula Elements window have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them.
+Assign different set operators to the characters in your $[officename] Math formula. The individual operators are shown in the lower section of the Elements window. Call the context menu in the Commands window to see an identical list of the individual functions. Any operators not found in the Elements window have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them.
-After clicking the Set Operations icon in the Formula Elements window additional icons will be shown in the lower part of this window. Simply click a symbol to incorporate the operator in the formula being edited in the Commands window.
+After clicking the Set Operations icon in the Elements window additional icons will be shown in the lower part of this window. Simply click a symbol to incorporate the operator in the formula being edited in the Commands window.The set operations in detail:
diff --git a/helpcontent2/source/text/smath/01/03091100.xhp b/helpcontent2/source/text/smath/01/03091100.xhp
index ed63c73cd2..0e06a533e1 100644
--- a/helpcontent2/source/text/smath/01/03091100.xhp
+++ b/helpcontent2/source/text/smath/01/03091100.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -47,7 +47,7 @@
Note: the quotation marks in the examples are used to emphasize text and do not belong to the content of the formulas and commands.When typing example formulas into the Commands window, note that spaces are often required for correct structure.Braces "{}" are used to group expressions together to form one new expression. For example, "sqrt {x * y}" is the square root of the entire product x*y, while "sqrt x * y" is the square root of x multiplied by y. Braces do not require an extra space.
-Set brackets were previously inserted in the Formula Elements window or directly in the Commands window as "left lbrace <?> right rbrace". Now, a left and a right set bracket can also be inserted using "lbrace" and "rbrace", with or without wildcards.
+Set brackets were previously inserted in the Elements window or directly in the Commands window as "left lbrace <?> right rbrace". Now, a left and a right set bracket can also be inserted using "lbrace" and "rbrace", with or without wildcards.There are a total of eight (8) different types of brackets available. The "ceil" and "floor" brackets are often used for rounding up or down the argument to the next integer: "lceil -3.7 rceil = -3" or "lfloor -3.7 rfloor = -4".Operator brackets, also known as Bra-kets (angle brackets with a vertical line in between), are common in Physics notation: "langle a mline b rangle" or "langle a mline b mline c over d mline e rangle." The height and positioning of the vertical lines always corresponds exactly to the enclosing brackets.All brackets may only be used in pairs. The brackets have some common characteristics:
diff --git a/helpcontent2/source/text/smath/01/03091500.xhp b/helpcontent2/source/text/smath/01/03091500.xhp
index 54680b8f07..e0324dc00f 100644
--- a/helpcontent2/source/text/smath/01/03091500.xhp
+++ b/helpcontent2/source/text/smath/01/03091500.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -47,7 +47,7 @@
Formula Reference Tables
-This reference section contains lists of many operators, functions, symbols and formatting features available in $[officename] Math. Many of the commands displayed can be inserted using the icons in the Formula Elements window or the context menu of the Commands window.
+This reference section contains lists of many operators, functions, symbols and formatting features available in $[officename] Math. Many of the commands displayed can be inserted using the icons in the Elements window or the context menu of the Commands window.
diff --git a/helpcontent2/source/text/smath/01/03091501.xhp b/helpcontent2/source/text/smath/01/03091501.xhp
index 65b64d5213..ffa4e8ed07 100644
--- a/helpcontent2/source/text/smath/01/03091501.xhp
+++ b/helpcontent2/source/text/smath/01/03091501.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -51,7 +51,7 @@
Typed command(s)
-Symbol in Formula Elements Window
+Symbol in Elements WindowMeaning
diff --git a/helpcontent2/source/text/smath/01/03091502.xhp b/helpcontent2/source/text/smath/01/03091502.xhp
index e4c49f30ac..1a99d9e19a 100644
--- a/helpcontent2/source/text/smath/01/03091502.xhp
+++ b/helpcontent2/source/text/smath/01/03091502.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -50,7 +50,7 @@
Typed command(s)
-Symbol in Formula Elements Window
+Symbol in Elements WindowMeaning
diff --git a/helpcontent2/source/text/smath/01/03091503.xhp b/helpcontent2/source/text/smath/01/03091503.xhp
index 2ba449b5fb..14c00a4754 100644
--- a/helpcontent2/source/text/smath/01/03091503.xhp
+++ b/helpcontent2/source/text/smath/01/03091503.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -50,7 +50,7 @@
Typed command(s)
-Symbol in Formula Elements Window
+Symbol in Elements WindowMeaning
diff --git a/helpcontent2/source/text/smath/01/03091504.xhp b/helpcontent2/source/text/smath/01/03091504.xhp
index baf604cd0c..b5bb8d2cc1 100644
--- a/helpcontent2/source/text/smath/01/03091504.xhp
+++ b/helpcontent2/source/text/smath/01/03091504.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -50,7 +50,7 @@
Typed command(s)
-Symbol in Formula Elements Window
+Symbol in Elements WindowMeaning
diff --git a/helpcontent2/source/text/smath/01/03091505.xhp b/helpcontent2/source/text/smath/01/03091505.xhp
index 6534b3a20f..c51166e619 100644
--- a/helpcontent2/source/text/smath/01/03091505.xhp
+++ b/helpcontent2/source/text/smath/01/03091505.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -50,7 +50,7 @@
Typed command(s)
-Symbol in Formula Elements Window
+Symbol in Elements WindowMeaning
diff --git a/helpcontent2/source/text/smath/01/03091506.xhp b/helpcontent2/source/text/smath/01/03091506.xhp
index b7d5fce23d..9aee16bdbe 100644
--- a/helpcontent2/source/text/smath/01/03091506.xhp
+++ b/helpcontent2/source/text/smath/01/03091506.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -50,7 +50,7 @@
Typed command(s)
-Symbol in Formula Elements Window
+Symbol in Elements WindowMeaning
diff --git a/helpcontent2/source/text/smath/01/03091507.xhp b/helpcontent2/source/text/smath/01/03091507.xhp
index 2c846d59fd..7b06a7831c 100644
--- a/helpcontent2/source/text/smath/01/03091507.xhp
+++ b/helpcontent2/source/text/smath/01/03091507.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -50,7 +50,7 @@
Typed command(s)
-Symbol in Formula Elements Window
+Symbol in Elements WindowMeaning
diff --git a/helpcontent2/source/text/smath/01/03091508.xhp b/helpcontent2/source/text/smath/01/03091508.xhp
index c4c4669dbb..71a52c901a 100644
--- a/helpcontent2/source/text/smath/01/03091508.xhp
+++ b/helpcontent2/source/text/smath/01/03091508.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -50,7 +50,7 @@
Typed command(s)
-Symbol in Formula Elements Window
+Symbol in Elements WindowMeaning
diff --git a/helpcontent2/source/text/smath/01/03091509.xhp b/helpcontent2/source/text/smath/01/03091509.xhp
index 0da2b9e197..9cc5b5b5b8 100644
--- a/helpcontent2/source/text/smath/01/03091509.xhp
+++ b/helpcontent2/source/text/smath/01/03091509.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -49,7 +49,7 @@
Typed command(s)
-Symbol in Formula Elements Window
+Symbol in Elements WindowMeaning
@@ -280,6 +280,19 @@
Wide space/gap
+
+
+
+
+nospace{e1 e2 ...}
+
+
+
+
+Suppress horizontal space between elements
+
+
+
diff --git a/helpcontent2/source/text/smath/01/05010000.xhp b/helpcontent2/source/text/smath/01/05010000.xhp
index 8250b869db..0a6ede90d0 100644
--- a/helpcontent2/source/text/smath/01/05010000.xhp
+++ b/helpcontent2/source/text/smath/01/05010000.xhp
@@ -4,7 +4,7 @@
-
+
@@ -46,6 +46,7 @@ dedr: fixed #i30893#
defining; formula fonts
+FontsDefines the fonts that can be applied to formula elements.
diff --git a/helpcontent2/source/text/smath/01/05020000.xhp b/helpcontent2/source/text/smath/01/05020000.xhp
index 0600348544..dc015e14d3 100644
--- a/helpcontent2/source/text/smath/01/05020000.xhp
+++ b/helpcontent2/source/text/smath/01/05020000.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -43,7 +43,9 @@
font sizes; in $[officename] Mathsizes; of fonts in $[officename] Math
-Font Sizes
+
+
+Font SizesUse this dialog to specify the font sizes for your formula. Select a base size and all elements of the formula will be scaled in relation to this base.
diff --git a/helpcontent2/source/text/smath/01/05030000.xhp b/helpcontent2/source/text/smath/01/05030000.xhp
index f6bdbe4fcc..38a3f8d9dc 100755
--- a/helpcontent2/source/text/smath/01/05030000.xhp
+++ b/helpcontent2/source/text/smath/01/05030000.xhp
@@ -4,7 +4,7 @@
-
+
Spacing/text/smath/01/05030000.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-spacing; formula elementsformulas;element spacing
+SpacingUse this dialog to determine the spacing between formula elements. The spacing is specified as a percentage in relation to the base size defined under Format - Font Size.
diff --git a/helpcontent2/source/text/smath/01/05040000.xhp b/helpcontent2/source/text/smath/01/05040000.xhp
index 33bb3596a9..0bd001161a 100644
--- a/helpcontent2/source/text/smath/01/05040000.xhp
+++ b/helpcontent2/source/text/smath/01/05040000.xhp
@@ -4,7 +4,7 @@
-
+
@@ -45,6 +45,7 @@
formulas; fit to text
+Text ModeSwitches the text mode on or off. In text mode, formulas are displayed as the same height as a line of text.
diff --git a/helpcontent2/source/text/smath/01/06010000.xhp b/helpcontent2/source/text/smath/01/06010000.xhp
index 438ff5cd18..0059d4a128 100755
--- a/helpcontent2/source/text/smath/01/06010000.xhp
+++ b/helpcontent2/source/text/smath/01/06010000.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Catalog
@@ -49,6 +49,7 @@
+CatalogOpens the Symbols dialog, in which you can select a symbol to insert in the formula.
diff --git a/helpcontent2/source/text/smath/01/06020000.xhp b/helpcontent2/source/text/smath/01/06020000.xhp
index 4e13b2dedd..ce7ddc2a13 100755
--- a/helpcontent2/source/text/smath/01/06020000.xhp
+++ b/helpcontent2/source/text/smath/01/06020000.xhp
@@ -4,7 +4,7 @@
-
+
Formula Cursor/text/smath/02/03010000.xhp
-
-Sun Microsystems, Inc.
-converted from old format - fpe
-formula cursor in $[officename] Mathcursor; in $[officename] Math
+Formula Cursor
-Use this icon on the Tools bar to turn the Formula Cursor on or off. The part of the formula where the cursor is positioned in the Commands window is marked with a thin border when the formula cursor is active.
+Use this icon on the Tools bar to turn the Formula Cursor on or off. The part of the formula where the cursor is positioned in the Commands window is marked with a thin border when the formula cursor is active.
You can also click a position in the document to move the cursor to its corresponding position in the Commands window.
diff --git a/helpcontent2/source/text/smath/04/01020000.xhp b/helpcontent2/source/text/smath/04/01020000.xhp
index 8b215b35e3..960ac98a88 100755
--- a/helpcontent2/source/text/smath/04/01020000.xhp
+++ b/helpcontent2/source/text/smath/04/01020000.xhp
@@ -4,7 +4,7 @@
-
+
@@ -68,7 +68,7 @@
F9Update
-Navigation in the Formula Elements Window
+Navigation in the Elements WindowLeft or right arrowMove left or right to the next category or function.
diff --git a/helpcontent2/source/text/smath/guide/keyboard.xhp b/helpcontent2/source/text/smath/guide/keyboard.xhp
index a842272f91..a3b8a86969 100755
--- a/helpcontent2/source/text/smath/guide/keyboard.xhp
+++ b/helpcontent2/source/text/smath/guide/keyboard.xhp
@@ -4,7 +4,7 @@
-
+
@@ -69,13 +69,13 @@
The cursor waits in the Commands window and you can type the formula.
-You can compose formulas using the Formula Elements window. Open it with the menu View - Formula Elements if it is not already open.
+You can compose formulas using the Elements window. Open it with the menu View - Elements if it is not already open.
-If the Formula Elements window is open, use F6 to switch from the Commands window to the Formula Elements window and back.
+If the Elements window is open, use F6 to switch from the Commands window to the Elements window and back.
-Formula Elements window
+Elements window
diff --git a/helpcontent2/source/text/smath/guide/limits.xhp b/helpcontent2/source/text/smath/guide/limits.xhp
index dffd6b592e..de96f144e7 100644
--- a/helpcontent2/source/text/smath/guide/limits.xhp
+++ b/helpcontent2/source/text/smath/guide/limits.xhp
@@ -6,7 +6,7 @@
***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -50,13 +50,13 @@
Choose Insert - Object - Formula.
-You see the Math input window and the Formula Elements window. If you don't see the Formula Elements window, you can enable it in the View menu.
+You see the Math input window and the Elements window. If you don't see the Elements window, you can enable it in the View menu.
-In the upper part of the Formula Elements window, click the Operators icon.
+In the upper part of the Elements window, click the Operators icon.
-In the lower part of the Formula Elements window, click the Sum icon.
+In the lower part of the Elements window, click the Sum icon.To enable lower and upper limits, click additionally the Upper and Lower Limits icon.
@@ -77,7 +77,7 @@
Now the formula is complete. Click into your text document outside the formula to leave the formula editor.
-In the same way, you can enter an Integral formula with limits. When you click an icon from the Formula Elements window, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window.
+In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements window, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window.Choose Insert - Object - Formula.
@@ -85,7 +85,7 @@
Click in the input window and enter the following line:int from{a} to{b} f(x)`dx
-A small gap exists between f(x) and dx, which you can also enter using the Formula Elements window: click the Format icon, then the Small Gap icon.
+A small gap exists between f(x) and dx, which you can also enter using the Elements window: click the Format icon, then the Small Gap icon.If you don't like the font of the letters f and x, choose Format - Fonts and select other fonts. Click the Default button to use the new fonts as default from now on.
diff --git a/helpcontent2/source/text/smath/main0103.xhp b/helpcontent2/source/text/smath/main0103.xhp
index 2ea3379f15..19a0a16582 100755
--- a/helpcontent2/source/text/smath/main0103.xhp
+++ b/helpcontent2/source/text/smath/main0103.xhp
@@ -4,7 +4,7 @@
-
+
@@ -42,7 +42,7 @@
View
-Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the Commands window can also be accessed through a mouse click if you have already opened the Formula Elements window with View - Formula Elements.
+Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the Commands window can also be accessed through a mouse click if you have already opened the Elements window with View - Elements.Zoom
diff --git a/helpcontent2/source/text/smath/main0503.xhp b/helpcontent2/source/text/smath/main0503.xhp
index c97072661e..28ed3f2017 100644
--- a/helpcontent2/source/text/smath/main0503.xhp
+++ b/helpcontent2/source/text/smath/main0503.xhp
@@ -4,7 +4,7 @@
-
+
@@ -57,6 +57,6 @@
Individual SymbolsYou can create your own symbols and import characters from other fonts. You can add new symbols to the basic catalog of $[officename] Math symbols, or create your own special catalogs. Numerous special characters are also available.Formulas in Context
-To make working with formulas easier, use the context menus, which can be called up with a right mouse click. This applies especially to the Commands window. This context menu contains all the commands that are found in the Formula Elements window, and also operators, and so on, which can be inserted into your formula by mouse-click without having to key them into the Commands window.
+To make working with formulas easier, use the context menus, which can be called up with a right mouse click. This applies especially to the Commands window. This context menu contains all the commands that are found in the Elements window, and also operators, and so on, which can be inserted into your formula by mouse-click without having to key them into the Commands window.
diff --git a/helpcontent2/source/text/swriter/01/04070000.xhp b/helpcontent2/source/text/swriter/01/04070000.xhp
index bb9c7ad51b..5444519cd1 100644
--- a/helpcontent2/source/text/swriter/01/04070000.xhp
+++ b/helpcontent2/source/text/swriter/01/04070000.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Envelope
@@ -45,7 +45,7 @@
Envelope
- Creates an envelope. On three tab pages, you can specify the addressee and sender, the position and format for both addresses, the size of the envelope, and the envelope orientation.
+ Creates an envelope. On three tab pages, you can specify the addressee and sender, the position and format for both addresses, the size of the envelope, and the envelope orientation.
@@ -58,7 +58,7 @@
Creates a new document and inserts the envelope.Insert
- Inserts the envelope before the current page in the document. The envelope is formatted with the Envelope page style.
+ Inserts the envelope before the current page in the document.To delete an envelope from a document
diff --git a/helpcontent2/source/text/swriter/02/10020000.xhp b/helpcontent2/source/text/swriter/02/10020000.xhp
index f04648bf25..2e189ad5fe 100644
--- a/helpcontent2/source/text/swriter/02/10020000.xhp
+++ b/helpcontent2/source/text/swriter/02/10020000.xhp
@@ -4,7 +4,7 @@
-
+
@@ -42,10 +42,10 @@
-
+
Zoom Out
-Zooms out to see more of the document at a reduced size.
+Zooms out to see more of the document at a reduced size.
diff --git a/helpcontent2/source/text/swriter/04/01020000.xhp b/helpcontent2/source/text/swriter/04/01020000.xhp
index cb5dc0ccdb..4087a50112 100755
--- a/helpcontent2/source/text/swriter/04/01020000.xhp
+++ b/helpcontent2/source/text/swriter/04/01020000.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Shortcut Keys for %PRODUCTNAME Writer
@@ -68,7 +68,7 @@
- Command
+ Command
Ctrl+F2
@@ -85,7 +85,7 @@
- Command
+ Command
Ctrl+F3
@@ -118,7 +118,7 @@
- Command
+ Command
Ctrl+Shift+F5
@@ -135,7 +135,7 @@
- Command
+ Command
Ctrl+F7
@@ -152,7 +152,7 @@
- Command
+ Command
Ctrl+F8
@@ -185,7 +185,7 @@
- Command
+ Command
Ctrl+F9
@@ -202,7 +202,7 @@
- Command
+ Command
Ctrl+Shift+F9
@@ -211,7 +211,7 @@
- Command
+ Command
Ctrl+F10
@@ -236,7 +236,7 @@
- Command
+ Command
Ctrl+F11
@@ -245,7 +245,7 @@
- Command
+ Command
Ctrl+Shift+F11
@@ -262,7 +262,7 @@
- Command
+ Command
Ctrl+F12
@@ -279,7 +279,7 @@
- Command
+ Command
Ctrl+Shift+F12
@@ -301,7 +301,7 @@
- Command
+ Command
Ctrl+A
@@ -310,7 +310,7 @@
- Command
+ Command
Ctrl+J
@@ -319,7 +319,7 @@
- Command
+ Command
Ctrl+D
@@ -328,7 +328,7 @@
- Command
+ Command
Ctrl+E
@@ -337,7 +337,7 @@
- Command
+ Command
Ctrl+F
@@ -346,7 +346,7 @@
- Command
+ Command
Ctrl+Shift+P
@@ -355,7 +355,7 @@
- Command
+ Command
Ctrl+L
@@ -364,7 +364,7 @@
- Command
+ Command
Ctrl+R
@@ -373,7 +373,7 @@
- Command
+ Command
Ctrl+Shift+B
@@ -390,7 +390,7 @@
- Command
+ Command
Ctrl+0 (zero)
@@ -399,7 +399,7 @@
- Command
+ Command
Ctrl+1
@@ -408,7 +408,7 @@
- Command
+ Command
Ctrl+2
@@ -417,25 +417,37 @@
- Command
+ Command
Ctrl+3Apply Heading 3 paragraph style
+
+
+
+ Command
+Ctrl+4
+
+
+ Apply Heading 4 paragraph style
+
+
+
+
- Command
+ Command
Ctrl+5
- 1.5 Line Spacing
+ Apply Heading 5 paragraph style
- Command
+ Command
Ctrl+ Plus Key(+)
@@ -444,7 +456,7 @@
- Command
+ Command
Ctrl+Hyphen(-)
@@ -453,7 +465,7 @@
- Command
+ Command
Ctrl+Shift+minus sign (-)
@@ -462,7 +474,7 @@
- Command
+ Command
Ctrl+multiplication sign * (only on number pad)
@@ -471,7 +483,7 @@
- Command
+ Command
Ctrl+Shift+Space
@@ -488,7 +500,7 @@
- Command
+ Command
Ctrl+Enter
@@ -497,7 +509,7 @@
- Command
+ Command
Ctrl+Shift+Enter
@@ -506,7 +518,7 @@
- Option
+ Option
Alt+Enter
@@ -515,7 +527,7 @@
- Option
+ Option
Alt+Enter
@@ -540,7 +552,7 @@
- Command
+ Command
Ctrl+Arrow Left
@@ -549,7 +561,7 @@
- Command
+ Command
Ctrl+Shift+Arrow Left
@@ -574,7 +586,7 @@
- Command
+ Command
Ctrl+Arrow Right
@@ -583,7 +595,7 @@
- Command
+ Command
Ctrl+Shift+Arrow Right
@@ -688,7 +700,7 @@
- Command
+ Command
Ctrl+Home
@@ -697,7 +709,7 @@
- Command
+ Command
Ctrl+Shift+Home
@@ -706,7 +718,7 @@
- Command
+ Command
Ctrl+End
@@ -715,7 +727,7 @@
- Command
+ Command
Ctrl+Shift+End
@@ -724,7 +736,7 @@
- Command
+ Command
Ctrl+PageUp
@@ -733,7 +745,7 @@
- Command
+ Command
Ctrl+PageDown
@@ -782,7 +794,7 @@
- Command
+ Command
Ctrl+Del
@@ -791,7 +803,7 @@
- Command
+ Command
Ctrl+Backspace
@@ -801,7 +813,7 @@
- Command
+ Command
Ctrl+Shift+Del
@@ -810,7 +822,7 @@
- Command
+ Command
Ctrl+Shift+Backspace
@@ -819,7 +831,7 @@
- Command
+ Command
Ctrl+Tab
@@ -828,7 +840,7 @@
- Command
+ Command
Ctrl+Shift+Tab
@@ -837,8 +849,8 @@
- Command
-Ctrl+ double-click or Command
+ Command
+Ctrl+ double-click or Command
Ctrl+Shift+F10
@@ -863,7 +875,7 @@
- Command+Option
+ Command+Option
Ctrl+Alt+Up ArrowUFI: see sw-features "Ctrl + Up/Down accelerators added to move paragraphs". See now also i31697
@@ -872,7 +884,7 @@
- Command+Option
+ Command+Option
Ctrl+Alt+Down Arrow
@@ -897,14 +909,14 @@
- Command
+ Command
Ctrl+Tabtab stops; before headingsheadings; starting with tab stops
-At the start of a heading: Inserts a tab stop. Depending on the Window Manager in use, Option
+At the start of a heading: Inserts a tab stop. Depending on the Window Manager in use, Option
Alt+Tab may be used instead.To change the heading level with the keyboard, first position the cursor in front of the heading.
@@ -924,7 +936,7 @@
- Command
+ Command
Ctrl+A
@@ -933,7 +945,7 @@
- Command
+ Command
Ctrl+Home
@@ -942,7 +954,7 @@
- Command
+ Command
Ctrl+End
@@ -951,17 +963,17 @@
- Command
+ Command
Ctrl+Tab
- Inserts a tab stop (only in tables). Depending on the Window Manager in use, Option
+ Inserts a tab stop (only in tables). Depending on the Window Manager in use, Option
Alt+Tab may be used instead.
- Option
+ Option
Alt+Arrow Keys
@@ -970,7 +982,7 @@
- Option
+ Option
Alt+Shift+Arrow Keys
@@ -979,41 +991,41 @@
- Option+Command
+ Option+Command
Alt+Ctrl+Arrow Keys
- Like Option
+ Like Option
Alt, but only the active cell is modified
- Option+Command
+ Option+Command
Ctrl+Alt+Shift+Arrow Keys
- Like Option
+ Like Option
Alt, but only the active cell is modified
- Option
+ Option
Alt+Insert
- 3 seconds in Insert mode, Arrow Key inserts row/column, Command
+ 3 seconds in Insert mode, Arrow Key inserts row/column, Command
Ctrl+Arrow Key inserts cell
- Option
+ Option
Alt+Del
- 3 seconds in Delete mode, Arrow key deletes row/column, Command
+ 3 seconds in Delete mode, Arrow key deletes row/column, Command
Ctrl+Arrow key merges cell with neighboring cell
@@ -1021,7 +1033,7 @@
removing; cell protection in text documents
-Command
+Command
Ctrl+Shift+T
@@ -1030,7 +1042,7 @@
- Shift+Command
+ Shift+Command
Ctrl+Del
@@ -1071,7 +1083,7 @@
- Option
+ Option
Alt+Arrow Keys
@@ -1080,7 +1092,7 @@
- Option+Command
+ Option+Command
Alt+Ctrl+Arrow Keys
@@ -1089,7 +1101,7 @@
- Option+Command
+ Option+Command
Alt+Ctrl+Shift+Arrow Keys
@@ -1098,7 +1110,7 @@
- Command
+ Command
Ctrl+Tab
diff --git a/helpcontent2/source/text/swriter/guide/borders.xhp b/helpcontent2/source/text/swriter/guide/borders.xhp
index 014c95b8a6..10d35ebdda 100755
--- a/helpcontent2/source/text/swriter/guide/borders.xhp
+++ b/helpcontent2/source/text/swriter/guide/borders.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
User Defined Borders in Text Documents
- text/swriter/guide/borders.xhp
+ /text/swriter/guide/borders.xhp
diff --git a/helpcontent2/source/text/swriter/guide/finding.xhp b/helpcontent2/source/text/swriter/guide/finding.xhp
index 789e9dfc29..cdb84991dc 100644
--- a/helpcontent2/source/text/swriter/guide/finding.xhp
+++ b/helpcontent2/source/text/swriter/guide/finding.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Finding and Replacing in Writer
- text/swriter/guide/finding.xhp
+ /text/swriter/guide/finding.xhp
diff --git a/helpcontent2/source/text/swriter/guide/globaldoc_howtos.xhp b/helpcontent2/source/text/swriter/guide/globaldoc_howtos.xhp
index 38d8de329d..39fd026fc0 100644
--- a/helpcontent2/source/text/swriter/guide/globaldoc_howtos.xhp
+++ b/helpcontent2/source/text/swriter/guide/globaldoc_howtos.xhp
@@ -54,8 +54,22 @@
Do one of the following:
-
-
+
+
+
+
+
+Choose File - New - Master Document.
+
+
+
+Open an existing document and choose File - Send - Create Master Document.
+
+
+
+
+
+
If you are creating a new master document, the first entry in the Navigator should be a Text
@@ -66,8 +80,21 @@
icon, and do one of the following:
-
-
+
+
+
+To insert an existing file as a subdocument, choose File, locate the file that you want to include, and then click OK.
+
+
+
+To create a new subdocument, choose New Document, type a name for the file, and then click Save.
+
+
+To insert some text between subdocuments, choose Text. Then type the text. You cannot insert text next to an existing text entry in the Navigator.i81372
+
+
+
+
Choose File - Save.
@@ -160,4 +187,4 @@
Navigator in master mode
-
\ No newline at end of file
+
diff --git a/helpcontent2/source/text/swriter/guide/header_with_line.xhp b/helpcontent2/source/text/swriter/guide/header_with_line.xhp
index cb096a691e..e4e8991450 100644
--- a/helpcontent2/source/text/swriter/guide/header_with_line.xhp
+++ b/helpcontent2/source/text/swriter/guide/header_with_line.xhp
@@ -64,12 +64,23 @@
dialog opens.
-
-
+
+
+
+To add a separator line between the header or the footer and the content of the page, click the bottom edge of the square in the Line arrangement area. Click a line style in the Style box.
+
+
+
+To adjust the spacing between the content of the header or footer and the line, clear the Synchronize box, and then enter a value in the Bottom box.
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/helpcontent2/source/text/swriter/guide/indices_delete.xhp b/helpcontent2/source/text/swriter/guide/indices_delete.xhp
index 3b832ae028..8eee7d6bb6 100755
--- a/helpcontent2/source/text/swriter/guide/indices_delete.xhp
+++ b/helpcontent2/source/text/swriter/guide/indices_delete.xhp
@@ -57,7 +57,19 @@
Choose Edit - Index Entry, and do one of the following:
-
+
+
+
+
+
+To change the entry, enter different text in the Entry box.
+
+
+To remove the entry, click Delete.
+
+
+
+
To cycle through the index entries in your document, click the next or the previous arrows in the Edit Index Entry dialog.
@@ -69,4 +81,4 @@
-
\ No newline at end of file
+
diff --git a/helpcontent2/source/text/swriter/guide/indices_enter.xhp b/helpcontent2/source/text/swriter/guide/indices_enter.xhp
index b0729eea40..cba62f51b9 100755
--- a/helpcontent2/source/text/swriter/guide/indices_enter.xhp
+++ b/helpcontent2/source/text/swriter/guide/indices_enter.xhp
@@ -53,7 +53,23 @@
Choose Insert - Indexes and Tables - Entry, and do one of the following:
-
+
+
+
+
+
+To change the text that appears in the index, type the text that you want in the Entry box. The text that you type here does not replace the selected text in the document.
+
+
+To add an index mark to similar words in your document, select Apply to all similar texts.
+
+
+To add the entries to a custom index, click the New User-defined Index icon, enter the name of the index, and then click OK.
+
+
+
+
+
To Define Table of Contents EntriesThe best way to generate a table of contents is to apply the predefined heading paragraph styles, such as "Heading 1", to the paragraphs that you want to include in your table of contents.
@@ -83,4 +99,4 @@
-
\ No newline at end of file
+
diff --git a/helpcontent2/source/text/swriter/guide/load_styles.xhp b/helpcontent2/source/text/swriter/guide/load_styles.xhp
index aed007936e..120a703118 100644
--- a/helpcontent2/source/text/swriter/guide/load_styles.xhp
+++ b/helpcontent2/source/text/swriter/guide/load_styles.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Using Styles From Another Document or Template
@@ -64,7 +64,16 @@
Do one of the following:
-
+ somehow the following list disappeared, see issue 112471
+
+
+
+Click an entry in the Categories list, then click the template containing the styles that you want to use in the Templates list, and then click OK.
+
+
+Click From File, locate the file containing the styles that you want to use, and then click name, and then click Open.
+
+
diff --git a/helpcontent2/source/text/swriter/guide/main.xhp b/helpcontent2/source/text/swriter/guide/main.xhp
index 728c52d6b6..652421d4df 100755
--- a/helpcontent2/source/text/swriter/guide/main.xhp
+++ b/helpcontent2/source/text/swriter/guide/main.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Instructions for Using $[officename] Writer
@@ -237,7 +237,7 @@
-
+removed a line
diff --git a/helpcontent2/source/text/swriter/guide/makefile.mk b/helpcontent2/source/text/swriter/guide/makefile.mk
index d70e6b8856..700a295c44 100644
--- a/helpcontent2/source/text/swriter/guide/makefile.mk
+++ b/helpcontent2/source/text/swriter/guide/makefile.mk
@@ -143,7 +143,6 @@ XHPFILES = \
section_edit.xhp \
section_insert.xhp \
sections.xhp \
- select_language.xhp \
send2html.xhp \
shortcut_writing.xhp \
smarttags.xhp \
diff --git a/helpcontent2/source/text/swriter/guide/number_sequence.xhp b/helpcontent2/source/text/swriter/guide/number_sequence.xhp
index 308e9e6cbb..0eb693f2ad 100644
--- a/helpcontent2/source/text/swriter/guide/number_sequence.xhp
+++ b/helpcontent2/source/text/swriter/guide/number_sequence.xhp
@@ -66,7 +66,19 @@
Do one of the following:
-
+
+
+
+
+Type a number in the Value box, or leave the box empty to use automatic numbering.
+
+
+Select the outline level where you want the numbering to restart in the Level box.
+
+
+
+
+
Click Insert, and then click Close.
@@ -80,4 +92,4 @@
-
\ No newline at end of file
+
diff --git a/helpcontent2/source/text/swriter/guide/numbering_paras.xhp b/helpcontent2/source/text/swriter/guide/numbering_paras.xhp
index a240828075..8373dbfd81 100755
--- a/helpcontent2/source/text/swriter/guide/numbering_paras.xhp
+++ b/helpcontent2/source/text/swriter/guide/numbering_paras.xhp
@@ -58,7 +58,19 @@
Do one of the following:
-
+
+
+
+
+To remove the number while preserving the indent of the paragraph, press the Backspace key.
+
+
+To remove the number and the indent of the paragraph, click the Numbering on/off icon on the Formatting Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph.
+
+
+
+
+
To Change the Number That a Numbered List Starts With
@@ -85,4 +97,4 @@
Wiki page about numbering paragraphs by styles
-
\ No newline at end of file
+
diff --git a/helpcontent2/source/text/swriter/guide/pagebackground.xhp b/helpcontent2/source/text/swriter/guide/pagebackground.xhp
index a04316fbe8..0e6c3be466 100755
--- a/helpcontent2/source/text/swriter/guide/pagebackground.xhp
+++ b/helpcontent2/source/text/swriter/guide/pagebackground.xhp
@@ -65,7 +65,19 @@
In the Next Style box, select the page style that you want to apply to the next page.
-
+
+
+
+
+To only apply the new page style to a single page, select "Default".
+
+
+To apply the new page style to all subsequent pages, select the name of the new page style.
+
+
+
+
+
Click the Background tab.
@@ -108,7 +120,21 @@
box, select a page style that uses the page background.
-
+
+
+
+
+To change the background of the current page only, select a page style where the Next Style option is set to "Default".
+
+
+To change the background of the current and subsequent pages, select a page style where the Next Style option is set to the name of the page style.
+If you want to change the page background later on in the document, repeat steps 1 to 3.
+
+
+
+
+
+
Click OK.
@@ -121,4 +147,4 @@
-
\ No newline at end of file
+
diff --git a/helpcontent2/source/text/swriter/guide/pagestyles.xhp b/helpcontent2/source/text/swriter/guide/pagestyles.xhp
index 4c42411263..ae06c70292 100755
--- a/helpcontent2/source/text/swriter/guide/pagestyles.xhp
+++ b/helpcontent2/source/text/swriter/guide/pagestyles.xhp
@@ -72,7 +72,19 @@
Do one of the following:
-
+
+
+
+
+To apply the custom page style to a single page, select the default page style that is used in your document in the Next Style box.
+
+
+To apply the custom page style to more than one page, select its name in the Next Style box. To stop using the style, insert a manual page break and assign it a different page style.
+
+
+
+
+
Use the tabs in the dialog to set the layout options for the page style, and then click OK.
@@ -120,4 +132,4 @@
-
\ No newline at end of file
+
diff --git a/helpcontent2/source/text/swriter/guide/section_edit.xhp b/helpcontent2/source/text/swriter/guide/section_edit.xhp
index 1454115711..da9347d3b6 100755
--- a/helpcontent2/source/text/swriter/guide/section_edit.xhp
+++ b/helpcontent2/source/text/swriter/guide/section_edit.xhp
@@ -61,7 +61,23 @@
Do one of the following:
-
+
+
+
+
+To convert a section into normal text, click Remove.
+
+
+To make a section read-only, select the Protected check box in the Write Protection area.
+
+
+To hide a section, select the Hide check box in the Hide area.
+
+
+
+
+
+
Set the other options that you want, and then click OK.
@@ -73,4 +89,4 @@
Format - SectionsProtecting Content in %PRODUCTNAME Writer
-
\ No newline at end of file
+
diff --git a/helpcontent2/source/text/swriter/guide/select_language.xhp b/helpcontent2/source/text/swriter/guide/select_language.xhp
deleted file mode 100644
index 8dae7863b3..0000000000
--- a/helpcontent2/source/text/swriter/guide/select_language.xhp
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
-
-
-
-
- Checking Spelling in Other Languages
- /text/swriter/guide/select_language.xhp
-
-
-
-languages; recognition of
-recognition;languages
-spellcheck;activating for all languages
-checking spelling;all languages
-MW made a two level entry of "regognition of languages"
-Checking Spelling in Other Languages
- $[officename] can check the spelling of words in more than one language, provided that you have installed dictionaries for the other languages.
-
-
- Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids, and ensure that the Check in all languages check box in the Options list is selected.
-
-
- Activate the AutoSpellcheck icon in the Standard bar.
-
-
- If you do not enable the Check in all languages feature, words that do not occur in the default language of the document are underlined by a wavy red line. To assign the underlined word to another language, right-click the word, and then choose Word is or Paragraph is, where the suggested language and country is shown in the command.
-
-
-
-
-
\ No newline at end of file
diff --git a/helpcontent2/source/text/swriter/guide/spellcheck_dialog.xhp b/helpcontent2/source/text/swriter/guide/spellcheck_dialog.xhp
index a4a57fbedd..b532178f2a 100644
--- a/helpcontent2/source/text/swriter/guide/spellcheck_dialog.xhp
+++ b/helpcontent2/source/text/swriter/guide/spellcheck_dialog.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Checking Spelling and Grammar
@@ -68,7 +68,7 @@
-
+removed a lineSpelling and Grammar dialog
diff --git a/helpcontent2/source/text/swriter/guide/subscript.xhp b/helpcontent2/source/text/swriter/guide/subscript.xhp
index 6825b72ced..aab232ac1a 100755
--- a/helpcontent2/source/text/swriter/guide/subscript.xhp
+++ b/helpcontent2/source/text/swriter/guide/subscript.xhp
@@ -1,11 +1,11 @@
-
+
-
-
+
+
Making Text Superscript or Subscript
@@ -53,7 +53,17 @@
Do one of the following:
-
+ somehow the following list disappeared, see issue 112471, and this remained: (list type="unordered"/) (replaced brackets)
+
+
+
+Choose Format - Character - Position, and then select Superscript or Subscript.
+
+
+Press CommandCtrl+Shift+P to make the text superscript, and CommandCtrl+Shift+B to make the text subscript.
+
+
+
Format - Character - PositionTools - AutoCorrect - Replace
diff --git a/helpcontent2/source/text/swriter/guide/table_insert.xhp b/helpcontent2/source/text/swriter/guide/table_insert.xhp
index 8b519ca824..df9caad445 100755
--- a/helpcontent2/source/text/swriter/guide/table_insert.xhp
+++ b/helpcontent2/source/text/swriter/guide/table_insert.xhp
@@ -96,7 +96,20 @@
In your text document, do one of the following:
-
+
+
+
+
+
+Choose Edit - Paste. The cell range is pasted as an OLE object. To edit the contents of the cells, double-click the object.
+
+
+Choose Edit - Paste Special, and choose from the following options:
+
+
+
+
+