remove untranslated nso help

This commit is contained in:
Andras Timar
2011-09-22 13:47:52 +02:00
parent 6a3a910e14
commit 7a7d02cd8c
51 changed files with 0 additions and 190793 deletions

View File

@@ -1,612 +0,0 @@
#. extracted from helpcontent2/source/text/sbasic/guide.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fguide.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:03+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: insert_control.xhp#tit.help.text
msgid "Creating Controls in the Dialog Editor"
msgstr ""
#: insert_control.xhp#bm_id3149182.help.text
msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
msgstr ""
#: insert_control.xhp#hd_id3149182.1.help.text
msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
msgstr ""
#: insert_control.xhp#par_id3146797.2.help.text
msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
msgstr ""
#: insert_control.xhp#par_id3150276.7.help.text
msgid "To open the <emph>Toolbox</emph>, click the arrow next to the <emph>Insert Controls</emph> icon on the <emph>Macro</emph> toolbar."
msgstr ""
#: insert_control.xhp#par_id3145068.3.help.text
msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
msgstr ""
#: insert_control.xhp#par_id3153360.4.help.text
msgid "On the dialog, drag the button to the size you want."
msgstr ""
#: sample_code.xhp#tit.help.text
msgid "Programming Examples for Controls in the Dialog Editor"
msgstr ""
#: sample_code.xhp#bm_id3155338.help.text
msgid "<bookmark_value>programming examples for controls</bookmark_value><bookmark_value>dialogs;loading (example)</bookmark_value><bookmark_value>dialogs;displaying (example)</bookmark_value><bookmark_value>controls;reading or editing properties (example)</bookmark_value><bookmark_value>list boxes;removing entries from (example)</bookmark_value><bookmark_value>list boxes;adding entries to (example)</bookmark_value><bookmark_value>examples; programming controls</bookmark_value><bookmark_value>dialog editor;programming examples for controls</bookmark_value>"
msgstr ""
#: sample_code.xhp#hd_id3155338.1.help.text
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
msgstr ""
#: sample_code.xhp#par_id3153031.2.help.text
msgid "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">dialog</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
msgstr ""
#: sample_code.xhp#par_id3154141.3.help.text
msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
msgstr ""
#: sample_code.xhp#hd_id3154909.4.help.text
msgid "Global Function for Loading Dialogs"
msgstr ""
#: sample_code.xhp#par_id3153193.73.help.text
msgid "Function LoadDialog(Libname as String, DialogName as String, Optional oLibContainer)"
msgstr ""
#: sample_code.xhp#par_id3145787.74.help.text
msgid "Dim oLib as Object"
msgstr ""
#: sample_code.xhp#par_id3148576.75.help.text
msgid "Dim oLibDialog as Object"
msgstr ""
#: sample_code.xhp#par_id3153726.76.help.text
msgid "Dim oRuntimeDialog as Object"
msgstr ""
#: sample_code.xhp#par_id3149261.77.help.text
msgid "If IsMissing(oLibContainer ) then"
msgstr ""
#: sample_code.xhp#par_id3148646.78.help.text
msgid "oLibContainer = DialogLibraries"
msgstr ""
#: sample_code.xhp#par_id3151115.79.help.text
msgid "End If"
msgstr ""
#: sample_code.xhp#par_id3146986.80.help.text
msgid "oLibContainer.LoadLibrary(LibName)"
msgstr ""
#: sample_code.xhp#par_id3145366.81.help.text
msgid "oLib = oLibContainer.GetByName(Libname)"
msgstr ""
#: sample_code.xhp#par_id3145271.82.help.text
msgid "oLibDialog = oLib.GetByName(DialogName)"
msgstr ""
#: sample_code.xhp#par_id3144764.83.help.text
msgid "oRuntimeDialog = CreateUnoDialog(oLibDialog)"
msgstr ""
#: sample_code.xhp#par_id3153876.84.help.text
msgid "LoadDialog() = oRuntimeDialog"
msgstr ""
#: sample_code.xhp#par_id3156286.85.help.text
msgid "End Function"
msgstr ""
#: sample_code.xhp#hd_id3149412.18.help.text
msgid "Displaying a Dialog"
msgstr ""
#: sample_code.xhp#par_id3145801.86.help.text
msgid "rem global definition of variables"
msgstr ""
#: sample_code.xhp#par_id3150716.87.help.text
msgid "Dim oDialog1 AS Object"
msgstr ""
#: sample_code.xhp#par_id3154510.88.help.text
msgid "Sub StartDialog1"
msgstr ""
#: sample_code.xhp#par_id3146913.162.help.text
msgctxt "sample_code.xhp#par_id3146913.162.help.text"
msgid "BasicLibraries.LoadLibrary(\"Tools\")"
msgstr ""
#: sample_code.xhp#par_id3150327.89.help.text
msgctxt "sample_code.xhp#par_id3150327.89.help.text"
msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
msgstr ""
#: sample_code.xhp#par_id3155767.92.help.text
msgctxt "sample_code.xhp#par_id3155767.92.help.text"
msgid "oDialog1.Execute()"
msgstr ""
#: sample_code.xhp#par_id3149019.93.help.text
msgctxt "sample_code.xhp#par_id3149019.93.help.text"
msgid "end sub"
msgstr ""
#: sample_code.xhp#hd_id3150042.27.help.text
msgid "Read or Edit Properties of Controls in the Program"
msgstr ""
#: sample_code.xhp#par_id3159267.136.help.text
msgid "Sub Sample1"
msgstr ""
#: sample_code.xhp#par_id3155335.163.help.text
msgctxt "sample_code.xhp#par_id3155335.163.help.text"
msgid "BasicLibraries.LoadLibrary(\"Tools\")"
msgstr ""
#: sample_code.xhp#par_id3163808.137.help.text
msgctxt "sample_code.xhp#par_id3163808.137.help.text"
msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
msgstr ""
#: sample_code.xhp#par_id3145232.138.help.text
msgid "REM get dialog model"
msgstr ""
#: sample_code.xhp#par_id3146316.139.help.text
msgctxt "sample_code.xhp#par_id3146316.139.help.text"
msgid "oDialog1Model = oDialog1.Model"
msgstr ""
#: sample_code.xhp#par_id3154021.140.help.text
msgid "REM display text of Label1"
msgstr ""
#: sample_code.xhp#par_id3150301.141.help.text
msgid "oLabel1 = oDialog1.GetControl(\"Label1\")"
msgstr ""
#: sample_code.xhp#par_id3152584.142.help.text
msgid "MsgBox oLabel1.Text"
msgstr ""
#: sample_code.xhp#par_id3151277.143.help.text
msgid "REM set new text for control Label1"
msgstr ""
#: sample_code.xhp#par_id3154119.144.help.text
msgid "oLabel1.Text = \"New Files\""
msgstr ""
#: sample_code.xhp#par_id3155115.145.help.text
msgid "REM display model properties for the control CheckBox1"
msgstr ""
#: sample_code.xhp#par_id3166426.146.help.text
msgid "oCheckBox1Model = oDialog1Model.CheckBox1"
msgstr ""
#: sample_code.xhp#par_id3153270.147.help.text
msgid "MsgBox oCheckBox1Model.Dbg_Properties"
msgstr ""
#: sample_code.xhp#par_id3149817.148.help.text
msgid "REM set new state for CheckBox1 for model of control"
msgstr ""
#: sample_code.xhp#par_id3145134.149.help.text
msgid "oCheckBox1Model.State = 1"
msgstr ""
#: sample_code.xhp#par_id3159102.150.help.text
msgid "REM display model properties for control CommandButton1"
msgstr ""
#: sample_code.xhp#par_id3152777.151.help.text
msgid "oCMD1Model = oDialog1Model.CommandButton1"
msgstr ""
#: sample_code.xhp#par_id3149209.152.help.text
msgid "MsgBox oCMD1Model.Dbg_Properties"
msgstr ""
#: sample_code.xhp#par_id3150368.153.help.text
msgid "REM display properties of control CommandButton1"
msgstr ""
#: sample_code.xhp#par_id3150883.154.help.text
msgid "oCMD1 = oDialog1.GetControl(\"CommandButton1\")"
msgstr ""
#: sample_code.xhp#par_id3155380.155.help.text
msgid "MsgBox oCMD1.Dbg_Properties"
msgstr ""
#: sample_code.xhp#par_id3150201.156.help.text
msgid "REM execute dialog"
msgstr ""
#: sample_code.xhp#par_id3154485.157.help.text
msgctxt "sample_code.xhp#par_id3154485.157.help.text"
msgid "oDialog1.Execute()"
msgstr ""
#: sample_code.xhp#par_id3146115.158.help.text
msgctxt "sample_code.xhp#par_id3146115.158.help.text"
msgid "End Sub"
msgstr ""
#: sample_code.xhp#hd_id3145387.55.help.text
msgid "Add an Entry to a ListBox"
msgstr ""
#: sample_code.xhp#par_id3155088.122.help.text
msgid "Sub AddEntry"
msgstr ""
#: sample_code.xhp#par_id3154528.164.help.text
msgctxt "sample_code.xhp#par_id3154528.164.help.text"
msgid "BasicLibraries.LoadLibrary(\"Tools\")"
msgstr ""
#: sample_code.xhp#par_id3159222.159.help.text
msgctxt "sample_code.xhp#par_id3159222.159.help.text"
msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
msgstr ""
#: sample_code.xhp#par_id3148700.123.help.text
msgid "REM adds a new entry to the ListBox"
msgstr ""
#: sample_code.xhp#par_id3159173.124.help.text
msgctxt "sample_code.xhp#par_id3159173.124.help.text"
msgid "oDialog1Model = oDialog1.Model"
msgstr ""
#: sample_code.xhp#par_id3153305.125.help.text
msgctxt "sample_code.xhp#par_id3153305.125.help.text"
msgid "oListBox = oDialog1.GetControl(\"ListBox1\")"
msgstr ""
#: sample_code.xhp#par_id3153914.126.help.text
msgid "dim iCount as integer"
msgstr ""
#: sample_code.xhp#par_id3151243.127.help.text
msgid "iCount = oListbox.ItemCount"
msgstr ""
#: sample_code.xhp#par_id3144504.128.help.text
msgid "oListbox.additem(\"New Item\" & iCount,0)"
msgstr ""
#: sample_code.xhp#par_id3149328.129.help.text
msgctxt "sample_code.xhp#par_id3149328.129.help.text"
msgid "end sub"
msgstr ""
#: sample_code.xhp#hd_id3147071.64.help.text
msgid "Remove an Entry from a ListBox"
msgstr ""
#: sample_code.xhp#par_id3159095.130.help.text
msgid "Sub RemoveEntry"
msgstr ""
#: sample_code.xhp#par_id3154958.165.help.text
msgctxt "sample_code.xhp#par_id3154958.165.help.text"
msgid "BasicLibraries.LoadLibrary(\"Tools\")"
msgstr ""
#: sample_code.xhp#par_id3149443.160.help.text
msgctxt "sample_code.xhp#par_id3149443.160.help.text"
msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
msgstr ""
#: sample_code.xhp#par_id3153247.131.help.text
msgid "REM remove the first entry from the ListBox"
msgstr ""
#: sample_code.xhp#par_id3151302.132.help.text
msgctxt "sample_code.xhp#par_id3151302.132.help.text"
msgid "oDialog1Model = oDialog1.Model"
msgstr ""
#: sample_code.xhp#par_id3153976.133.help.text
msgctxt "sample_code.xhp#par_id3153976.133.help.text"
msgid "oListBox = oDialog1.GetControl(\"ListBox1\")"
msgstr ""
#: sample_code.xhp#par_id3155383.134.help.text
msgid "oListbox.removeitems(0,1)"
msgstr ""
#: sample_code.xhp#par_id3150892.135.help.text
msgctxt "sample_code.xhp#par_id3150892.135.help.text"
msgid "end sub"
msgstr ""
#: control_properties.xhp#tit.help.text
msgid "Changing the Properties of Controls in the Dialog Editor"
msgstr ""
#: control_properties.xhp#bm_id3145786.help.text
msgid "<bookmark_value>properties; controls in dialog editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialog editor;changing control properties</bookmark_value>"
msgstr ""
#: control_properties.xhp#hd_id3145786.1.help.text
msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
msgstr ""
#: control_properties.xhp#par_id3147317.2.help.text
msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
msgstr ""
#: control_properties.xhp#par_id3145749.3.help.text
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
msgstr ""
#: show_dialog.xhp#tit.help.text
msgid "Opening a Dialog With Program Code"
msgstr ""
#: show_dialog.xhp#bm_id3154140.help.text
msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
msgstr ""
#: show_dialog.xhp#hd_id3154140.1.help.text
msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
msgstr ""
#: show_dialog.xhp#par_id3145171.2.help.text
msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
msgstr ""
#: show_dialog.xhp#par_id3153968.6.help.text
msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
msgstr ""
#: show_dialog.xhp#par_id3156443.7.help.text
msgctxt "show_dialog.xhp#par_id3156443.7.help.text"
msgid "Sub Dialog1Show"
msgstr ""
#: show_dialog.xhp#par_id3148575.24.help.text
msgctxt "show_dialog.xhp#par_id3148575.24.help.text"
msgid "BasicLibraries.LoadLibrary(\"Tools\")"
msgstr ""
#: show_dialog.xhp#par_id3152463.8.help.text
msgid "oDialog1 = <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"LoadDialog\">LoadDialog</link>(\"Standard\", \"Dialog1\")"
msgstr ""
#: show_dialog.xhp#par_id3148646.14.help.text
msgctxt "show_dialog.xhp#par_id3148646.14.help.text"
msgid "oDialog1.Execute()"
msgstr ""
#: show_dialog.xhp#par_id3147349.15.help.text
msgctxt "show_dialog.xhp#par_id3147349.15.help.text"
msgid "End Sub"
msgstr ""
#: show_dialog.xhp#par_id3152596.18.help.text
msgid "Without using \"LoadDialog\" you can call the code as follows:"
msgstr ""
#: show_dialog.xhp#par_id3163710.19.help.text
msgctxt "show_dialog.xhp#par_id3163710.19.help.text"
msgid "Sub Dialog1Show"
msgstr ""
#: show_dialog.xhp#par_id3146985.20.help.text
msgid "DialogLibraries.LoadLibrary( \"Standard\" )"
msgstr ""
#: show_dialog.xhp#par_id3155418.21.help.text
msgid "oDialog1 = CreateUnoDialog( DialogLibraries.Standard.Dialog1 )"
msgstr ""
#: show_dialog.xhp#par_id3154944.22.help.text
msgctxt "show_dialog.xhp#par_id3154944.22.help.text"
msgid "oDialog1.Execute()"
msgstr ""
#: show_dialog.xhp#par_id3145800.23.help.text
msgctxt "show_dialog.xhp#par_id3145800.23.help.text"
msgid "End Sub"
msgstr ""
#: show_dialog.xhp#par_id3153157.16.help.text
msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
msgstr ""
#: create_dialog.xhp#tit.help.text
msgid "Creating a Basic Dialog"
msgstr ""
#: create_dialog.xhp#bm_id3149346.help.text
msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
msgstr ""
#: create_dialog.xhp#hd_id3149346.1.help.text
msgid "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Creating a Basic Dialog</link></variable>"
msgstr ""
#: create_dialog.xhp#par_id3163802.3.help.text
msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
msgstr ""
#: create_dialog.xhp#par_id3150447.11.help.text
msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose <emph>Rename</emph>. "
msgstr ""
#: create_dialog.xhp#par_idN1065F.help.text
msgid "Click <emph>Edit</emph>. The Basic dialog editor opens and contains a blank dialog."
msgstr ""
#: create_dialog.xhp#par_id3153726.6.help.text
msgid "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar."
msgstr ""
#: create_dialog.xhp#par_id3148455.12.help.text
msgid "Click a tool and then drag in the dialog to create the control."
msgstr ""
#: translation.xhp#tit.help.text
msgid "Translation of Controls in the Dialog Editor"
msgstr ""
#: translation.xhp#bm_id8915372.help.text
msgid "<bookmark_value>dialogs;translating</bookmark_value><bookmark_value>localizing dialogs</bookmark_value><bookmark_value>translating dialogs</bookmark_value>"
msgstr ""
#: translation.xhp#hd_id3574896.help.text
msgid "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Translation of Controls in the Dialog Editor</link></variable>"
msgstr ""
#: translation.xhp#par_id4601940.help.text
msgid "<ahelp hid=\".\">The Language toolbar in the Basic IDE dialog editor shows controls to enable and manage localizable dialogs.</ahelp>"
msgstr ""
#: translation.xhp#par_id9538560.help.text
msgid "By default, any dialog that you create only contains string resources for one language. You may want to create dialogs that automatically show localized strings according to the user's language settings."
msgstr ""
#: translation.xhp#par_id6998809.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the language for the strings that you want to edit. Click the Manage Languages icon to add languages.</ahelp>"
msgstr ""
#: translation.xhp#par_id71413.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a language, then click Default to set the language as default, or click Delete to remove the language from the list.</ahelp>"
msgstr ""
#: translation.xhp#par_id2924283.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can add a language to the list.</ahelp>"
msgstr ""
#: translation.xhp#par_id5781731.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Delete to remove that language. When you remove all languages, the string resources for localizable dialogs are removed from all dialogs in the current library.</ahelp>"
msgstr ""
#: translation.xhp#par_id6942045.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Default to set the language as default language.</ahelp>"
msgstr ""
#: translation.xhp#par_id4721823.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">The default language will be used as a source for all other language strings.</ahelp>"
msgstr ""
#: translation.xhp#par_id5806756.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
msgstr ""
#: translation.xhp#hd_id6596881.help.text
msgid "To enable localizable dialogs"
msgstr ""
#: translation.xhp#par_id8750572.help.text
msgid "In the Basic IDE dialog editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>. "
msgstr ""
#: translation.xhp#par_id2224494.help.text
msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
msgstr ""
#: translation.xhp#par_id7359233.help.text
msgid "Click the <emph>Manage Languages</emph> icon <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Manage Language icon</alt></image> on the Language toolbar or on the Toolbox bar."
msgstr ""
#: translation.xhp#par_id6549272.help.text
msgid "You see the Manage User Interface Language dialog. The dialog manages languages for the current library. The name of the current library is shown on the title bar."
msgstr ""
#: translation.xhp#par_id6529740.help.text
msgid "Click Add in the dialog to add a language entry. "
msgstr ""
#: translation.xhp#par_id7811822.help.text
msgid "This step enables all new dialogs to contain localizable string resources."
msgstr ""
#: translation.xhp#par_id9121982.help.text
msgid "The first time you click Add, you see the Set Default User Interface Language dialog. The following times you click Add, this dialog has the name Add User Interface Language."
msgstr ""
#: translation.xhp#par_id3640247.help.text
msgid "You can also change the default language in the Manage User Interface Language dialog."
msgstr ""
#: translation.xhp#par_id3808404.help.text
msgid "Select a language. "
msgstr ""
#: translation.xhp#par_id4585100.help.text
msgid "This adds string resources to contain the translated versions of all strings to the dialog properties. The set of dialog strings of the default language is copied to the new set of strings. Later, you can switch to the new language and then translate the strings."
msgstr ""
#: translation.xhp#par_id2394482.help.text
msgid "Close the dialog or add additional languages."
msgstr ""
#: translation.xhp#hd_id631733.help.text
msgid "To edit localizable controls in your dialog"
msgstr ""
#: translation.xhp#par_id2334665.help.text
msgid "Once you have added the resources for localizable strings in your dialogs, you can select the current language from the Current Language listbox on the Language toolbar."
msgstr ""
#: translation.xhp#par_id8956572.help.text
msgid "Switch the Current Language listbox to display the default language."
msgstr ""
#: translation.xhp#par_id500808.help.text
msgid "Insert any number of controls to your dialog and enter all strings you want."
msgstr ""
#: translation.xhp#par_id8366649.help.text
msgid "Select another language in the Current Language listbox."
msgstr ""
#: translation.xhp#par_id476393.help.text
msgid "Using the control's property dialogs, edit all strings to the other language."
msgstr ""
#: translation.xhp#par_id2655720.help.text
msgid "Repeat for all languages that you added."
msgstr ""
#: translation.xhp#par_id3682058.help.text
msgid "The user of your dialog will see the strings of the user interface language of the user's version of %PRODUCTNAME, if you did provide strings in that language. "
msgstr ""
#: translation.xhp#par_id5977965.help.text
msgid "If no language matches the user's version, the user will see the default language strings. "
msgstr ""
#: translation.xhp#par_id3050325.help.text
msgid "If the user has an older version of %PRODUCTNAME that does not know localizable string resources for Basic dialogs, the user will see the default language strings."
msgstr ""

View File

@@ -1,296 +0,0 @@
#. extracted from helpcontent2/source/text/sbasic/shared/01.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fshared%2F01.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:03+0200\n"
"PO-Revision-Date: 2011-03-29 20:40+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 06130500.xhp#tit.help.text
msgctxt "06130500.xhp#tit.help.text"
msgid "Append libraries"
msgstr ""
#: 06130500.xhp#bm_id3150502.help.text
msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
msgstr ""
#: 06130500.xhp#hd_id3150502.1.help.text
msgctxt "06130500.xhp#hd_id3150502.1.help.text"
msgid "Append libraries"
msgstr ""
#: 06130500.xhp#par_id3154840.2.help.text
msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr ""
#: 06130500.xhp#hd_id3149119.3.help.text
msgid "File name:"
msgstr ""
#: 06130500.xhp#par_id3147102.4.help.text
msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
msgstr ""
#: 06130500.xhp#hd_id3147291.5.help.text
msgid "Options"
msgstr ""
#: 06130500.xhp#hd_id3147226.7.help.text
msgid "Insert as reference (read-only)"
msgstr ""
#: 06130500.xhp#par_id3155892.8.help.text
msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
msgstr ""
#: 06130500.xhp#hd_id3145071.9.help.text
msgid "Replace existing libraries"
msgstr ""
#: 06130500.xhp#par_id3149812.10.help.text
msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
msgstr ""
#: 06130000.xhp#tit.help.text
msgctxt "06130000.xhp#tit.help.text"
msgid "Macro"
msgstr ""
#: 06130000.xhp#bm_id3145786.help.text
msgid "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
msgstr ""
#: 06130000.xhp#hd_id3145786.1.help.text
msgctxt "06130000.xhp#hd_id3145786.1.help.text"
msgid "Macro"
msgstr ""
#: 06130000.xhp#par_id3152886.2.help.text
msgid "<variable id=\"makro\"><ahelp hid=\".\">Opens the <emph>Macro </emph>dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
msgstr ""
#: 06130000.xhp#hd_id3154145.3.help.text
msgid "Macro name"
msgstr ""
#: 06130000.xhp#par_id3151116.4.help.text
msgid "<ahelp hid=\"BASCTL_EDIT_RID_MACROCHOOSER_RID_ED_MACRONAME\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3153729.7.help.text
msgid "Macro from / Save macro in"
msgstr ""
#: 06130000.xhp#par_id3153190.8.help.text
msgid "<ahelp hid=\"HID_BASICIDE_LIBS\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3146975.11.help.text
msgid "Run / Save"
msgstr ""
#: 06130000.xhp#par_id3154791.12.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_RUN\">Runs or saves the current macro.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3153158.15.help.text
msgid "Assign"
msgstr ""
#: 06130000.xhp#par_id3149961.16.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ASSIGN\">Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3145799.17.help.text
msgctxt "06130000.xhp#hd_id3145799.17.help.text"
msgid "Edit"
msgstr ""
#: 06130000.xhp#par_id3147127.18.help.text
msgid "<ahelp hid=\".\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3149400.19.help.text
msgid "New/Delete"
msgstr ""
#: 06130000.xhp#par_id3155602.61.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_DEL\">Creates a new macro, or deletes the selected macro.</ahelp>"
msgstr ""
#: 06130000.xhp#par_id3149124.20.help.text
msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>. "
msgstr ""
#: 06130000.xhp#par_id3150749.21.help.text
msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
msgstr ""
#: 06130000.xhp#hd_id3153764.22.help.text
msgid "Organizer"
msgstr ""
#: 06130000.xhp#par_id3148405.23.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">Opens the <emph>Macro Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3166447.29.help.text
msgid "Module/Dialog"
msgstr ""
#: 06130000.xhp#par_id3155959.30.help.text
msgid "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Lists the existing macros and dialogs.</ahelp>"
msgstr ""
#: 06130000.xhp#par_id3149922.31.help.text
msgid "You can drag-and-drop a module or a dialog between libraries."
msgstr ""
#: 06130000.xhp#par_id3159333.33.help.text
msgid "To copy a dialog or a module, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you drag-and-drop."
msgstr ""
#: 06130000.xhp#hd_id3147131.34.help.text
msgctxt "06130000.xhp#hd_id3147131.34.help.text"
msgid "Edit"
msgstr ""
#: 06130000.xhp#par_id3149816.35.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Opens the selected macro or dialog for editing.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3151214.36.help.text
msgctxt "06130000.xhp#hd_id3151214.36.help.text"
msgid "New"
msgstr ""
#: 06130000.xhp#par_id3154202.37.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Creates a new module.</ahelp>"
msgstr ""
#: 06130000.xhp#par_id3153269.40.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Creates a new dialog.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3154587.42.help.text
msgid "Libraries tab page"
msgstr ""
#: 06130000.xhp#par_id3153705.43.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Lets you manage the macro libraries.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3145259.44.help.text
msgid "Location"
msgstr ""
#: 06130000.xhp#par_id3153234.45.help.text
msgid "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Select the location containing the macro libraries that you want to organize.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3148460.46.help.text
msgid "Library"
msgstr ""
#: 06130000.xhp#par_id3150828.47.help.text
msgid "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Lists the macro libraries in the chosen location.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3145134.48.help.text
msgctxt "06130000.xhp#hd_id3145134.48.help.text"
msgid "Edit"
msgstr ""
#: 06130000.xhp#par_id3150518.49.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Opens the $[officename] Basic editor so that you can modify the selected library.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3150371.50.help.text
msgctxt "06130000.xhp#hd_id3150371.50.help.text"
msgid "Password"
msgstr ""
#: 06130000.xhp#par_id3166430.51.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Assigns or edits the <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library. \"Standard\" libraries cannot have a password.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3154372.52.help.text
msgctxt "06130000.xhp#hd_id3154372.52.help.text"
msgid "New"
msgstr ""
#: 06130000.xhp#par_id3145387.53.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Creates a new library.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3154259.56.help.text
msgid "Name"
msgstr ""
#: 06130000.xhp#par_id3156169.57.help.text
msgid "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Enter a name for the new module, dialog, or library.</ahelp>"
msgstr ""
#: 06130000.xhp#hd_id3151183.54.help.text
msgid "Append"
msgstr ""
#: 06130000.xhp#par_id3155126.55.help.text
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr ""
#: 06130100.xhp#tit.help.text
msgctxt "06130100.xhp#tit.help.text"
msgid "Change Password"
msgstr ""
#: 06130100.xhp#hd_id3159399.1.help.text
msgctxt "06130100.xhp#hd_id3159399.1.help.text"
msgid "Change Password"
msgstr ""
#: 06130100.xhp#par_id3150276.2.help.text
msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
msgstr ""
#: 06130100.xhp#hd_id3154285.3.help.text
msgid "Old password"
msgstr ""
#: 06130100.xhp#hd_id3153665.4.help.text
msgctxt "06130100.xhp#hd_id3153665.4.help.text"
msgid "Password"
msgstr ""
#: 06130100.xhp#par_id3155628.5.help.text
msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
msgstr ""
#: 06130100.xhp#hd_id3153126.6.help.text
msgid "New password"
msgstr ""
#: 06130100.xhp#hd_id3153628.7.help.text
msgctxt "06130100.xhp#hd_id3153628.7.help.text"
msgid "Password"
msgstr ""
#: 06130100.xhp#par_id3159413.8.help.text
msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
msgstr ""
#: 06130100.xhp#hd_id3148947.9.help.text
msgid "Confirm"
msgstr ""
#: 06130100.xhp#par_id3149457.10.help.text
msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
msgstr ""

View File

@@ -1,860 +0,0 @@
#. extracted from helpcontent2/source/text/sbasic/shared/02.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fshared%2F02.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 11120000.xhp#tit.help.text
msgctxt "11120000.xhp#tit.help.text"
msgid "Find Parentheses"
msgstr ""
#: 11120000.xhp#hd_id3149497.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">Find Parentheses</link>"
msgstr ""
#: 11120000.xhp#par_id3155150.2.help.text
msgid "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">Highlights the text that is enclosed by two corresponding brackets. Place the text cursor in front of an opening or closing bracket, and then click this icon.</ahelp>"
msgstr ""
#: 11120000.xhp#par_id3149182.help.text
msgid "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_id3155892\">Icon</alt></image>"
msgstr ""
#: 11120000.xhp#par_id3147276.3.help.text
msgctxt "11120000.xhp#par_id3147276.3.help.text"
msgid "Find Parentheses"
msgstr ""
#: 11050000.xhp#tit.help.text
msgctxt "11050000.xhp#tit.help.text"
msgid "Single Step"
msgstr ""
#: 11050000.xhp#hd_id3155934.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
msgstr ""
#: 11050000.xhp#par_id3146117.2.help.text
msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
msgstr ""
#: 11050000.xhp#par_id3152801.4.help.text
msgctxt "11050000.xhp#par_id3152801.4.help.text"
msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
msgstr ""
#: 11050000.xhp#par_id3157958.help.text
msgid "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icon</alt></image>"
msgstr ""
#: 11050000.xhp#par_id3147573.3.help.text
msgctxt "11050000.xhp#par_id3147573.3.help.text"
msgid "Single Step"
msgstr ""
#: 11050000.xhp#par_id3149235.6.help.text
msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
msgstr ""
#: 11190000.xhp#tit.help.text
msgctxt "11190000.xhp#tit.help.text"
msgid "Export Dialog"
msgstr ""
#: 11190000.xhp#hd_id3156183.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
msgstr ""
#: 11190000.xhp#par_id3152363.2.help.text
msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
msgstr ""
#: 11190000.xhp#par_id3143267.help.text
msgid "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
msgstr ""
#: 11190000.xhp#par_id3145383.3.help.text
msgctxt "11190000.xhp#par_id3145383.3.help.text"
msgid "Export Dialog"
msgstr ""
#: 11150000.xhp#tit.help.text
msgctxt "11150000.xhp#tit.help.text"
msgid "Save Source As"
msgstr ""
#: 11150000.xhp#hd_id3149497.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
msgstr ""
#: 11150000.xhp#par_id3147261.3.help.text
msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
msgstr ""
#: 11150000.xhp#par_id3145071.help.text
msgid "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icon</alt></image>"
msgstr ""
#: 11150000.xhp#par_id3151110.2.help.text
msgctxt "11150000.xhp#par_id3151110.2.help.text"
msgid "Save Source As"
msgstr ""
#: 20000000.xhp#tit.help.text
msgctxt "20000000.xhp#tit.help.text"
msgid "Insert Controls"
msgstr ""
#: 20000000.xhp#bm_id3150402.help.text
msgid "<bookmark_value>controls; in dialog editor</bookmark_value><bookmark_value>push button control in dialog editor</bookmark_value><bookmark_value>icon control</bookmark_value><bookmark_value>buttons; controls</bookmark_value><bookmark_value>image control</bookmark_value><bookmark_value>check box control</bookmark_value><bookmark_value>radio button control</bookmark_value><bookmark_value>option button control</bookmark_value><bookmark_value>fixed text control</bookmark_value><bookmark_value>label field control</bookmark_value><bookmark_value>editing; controls</bookmark_value><bookmark_value>text boxes; controls</bookmark_value><bookmark_value>list boxes; controls</bookmark_value><bookmark_value>combo box control</bookmark_value><bookmark_value>scroll bar control</bookmark_value><bookmark_value>horizontal scrollbar control</bookmark_value><bookmark_value>vertical scrollbar control</bookmark_value><bookmark_value>group box control</bookmark_value><bookmark_value>progress bar control</bookmark_value><bookmark_value>fixed line control</bookmark_value><bookmark_value>horizontal line control</bookmark_value><bookmark_value>line control</bookmark_value><bookmark_value>vertical line control</bookmark_value><bookmark_value>date field control</bookmark_value><bookmark_value>time field control</bookmark_value><bookmark_value>numerical field control</bookmark_value><bookmark_value>currency field control</bookmark_value><bookmark_value>formatted field control</bookmark_value><bookmark_value>pattern field control</bookmark_value><bookmark_value>masked field control</bookmark_value><bookmark_value>file selection control</bookmark_value><bookmark_value>selection options for controls</bookmark_value><bookmark_value>test mode control</bookmark_value>"
msgstr ""
#: 20000000.xhp#hd_id3150402.1.help.text
msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
msgstr ""
#: 20000000.xhp#par_id3147000.2.help.text
msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
msgstr ""
#: 20000000.xhp#par_id3147226.help.text
msgid "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3153749.3.help.text
msgctxt "20000000.xhp#par_id3153749.3.help.text"
msgid "Insert Controls"
msgstr ""
#: 20000000.xhp#par_id3157958.5.help.text
msgid "In edit mode, double-click a control to open the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">properties dialog</link>."
msgstr ""
#: 20000000.xhp#par_id3148538.6.help.text
msgid "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
msgstr ""
#: 20000000.xhp#hd_id3148473.7.help.text
msgid "Button"
msgstr ""
#: 20000000.xhp#par_id3153824.help.text
msgid "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3147530.8.help.text
msgid "<ahelp hid=\".uno:InsertPushbutton\">Adds a command button.</ahelp> You can use a command button to execute a command for a defined event, such as a mouse click."
msgstr ""
#: 20000000.xhp#par_id3154923.9.help.text
msgid "If you want, you can add text or a graphic to the button."
msgstr ""
#: 20000000.xhp#hd_id3148550.10.help.text
msgid "Image Control"
msgstr ""
#: 20000000.xhp#par_id3154138.help.text
msgid "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144760\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3151042.11.help.text
msgid "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3150447.12.help.text
msgid "Check Box"
msgstr ""
#: 20000000.xhp#par_id3155131.help.text
msgid "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3147317.13.help.text
msgid "<ahelp hid=\".uno:Checkbox\">Adds a check box that you can use to turn a function on or off.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3150486.14.help.text
msgid "Option Button"
msgstr ""
#: 20000000.xhp#par_id3155856.help.text
msgid "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146921\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3153575.15.help.text
msgid "<ahelp hid=\".uno:Radiobutton\">Adds a button that allows a user to select from a number of options.</ahelp> Grouped option buttons must have consecutive tab indices. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab index between the tab indices of the two groups on the group frame."
msgstr ""
#: 20000000.xhp#hd_id3154729.16.help.text
msgid "Label Field"
msgstr ""
#: 20000000.xhp#par_id3149300.help.text
msgid "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3153415\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3156181.17.help.text
msgid "<ahelp hid=\".uno:InsertFixedText\">Adds a field for displaying text labels.</ahelp> These labels are only for displaying predefined text, and not for entering text."
msgstr ""
#: 20000000.xhp#hd_id3149123.18.help.text
msgid "Text Box"
msgstr ""
#: 20000000.xhp#par_id3153766.help.text
msgid "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3148996\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3153712.19.help.text
msgid "<ahelp hid=\".uno:InsertEdit\">Adds an input box where you can enter and edit text.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3154253.20.help.text
msgid "List Box"
msgstr ""
#: 20000000.xhp#par_id3155959.help.text
msgid "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3155176.21.help.text
msgid "<ahelp hid=\".uno:InsertListbox\">Adds a box where you can click an entry on a list.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3150644.22.help.text
msgid "Combo Box"
msgstr ""
#: 20000000.xhp#par_id3148418.help.text
msgid "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153200\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3154199.23.help.text
msgid "<ahelp hid=\".uno:Combobox\">Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list.</ahelp> If you want, you can make the entries in the combo box \"read only\"."
msgstr ""
#: 20000000.xhp#hd_id3154585.24.help.text
msgid "Horizontal Scrollbar"
msgstr ""
#: 20000000.xhp#par_id3153781.help.text
msgid "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3153232.25.help.text
msgid "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialog.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3154119.26.help.text
msgid "Vertical Scrollbar"
msgstr ""
#: 20000000.xhp#par_id3150515.help.text
msgid "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150203\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3155376.27.help.text
msgid "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialog.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3150313.28.help.text
msgid "Group Box"
msgstr ""
#: 20000000.xhp#par_id3151184.help.text
msgid "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151335\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3159622.29.help.text
msgid "<ahelp hid=\".uno:Groupbox\">Adds a frame that you can use to visually group similar controls, such as option buttons.</ahelp>"
msgstr ""
#: 20000000.xhp#par_id3148820.30.help.text
msgid "To define two different groups of option buttons, ensure that the tab index of the group frame is between the tab indices of the two groups."
msgstr ""
#: 20000000.xhp#hd_id3149330.31.help.text
msgid "Progress Bar"
msgstr ""
#: 20000000.xhp#par_id3159093.help.text
msgid "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150318\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3157979.32.help.text
msgid "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialog.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3145654.33.help.text
msgid "Horizontal Line"
msgstr ""
#: 20000000.xhp#par_id3150888.help.text
msgid "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id3152872\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3151000.34.help.text
msgid "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialog.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3155095.35.help.text
msgid "Vertical Line"
msgstr ""
#: 20000000.xhp#par_id3154913.help.text
msgid "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3159203.36.help.text
msgid "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialog.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3154540.37.help.text
msgid "Date Field"
msgstr ""
#: 20000000.xhp#par_id3148901.help.text
msgid "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151010\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3154214.38.help.text
msgid "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
msgstr ""
#: 20000000.xhp#par_id3150046.39.help.text
msgid "If you assign the \"dropdown\" property to the date field, a user can drop down a calendar to select a date."
msgstr ""
#: 20000000.xhp#hd_id3151126.40.help.text
msgid "Time Field"
msgstr ""
#: 20000000.xhp#par_id3154338.help.text
msgid "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3151191.41.help.text
msgid "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3154733.42.help.text
msgid "Numeric Field"
msgstr ""
#: 20000000.xhp#par_id3146107.help.text
msgid "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3147499\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3147244.43.help.text
msgid "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3149870.44.help.text
msgid "Currency Field"
msgstr ""
#: 20000000.xhp#par_id3153958.help.text
msgid "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150435\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3154064.45.help.text
msgid "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3150117.46.help.text
msgid "Formatted Field"
msgstr ""
#: 20000000.xhp#par_id3153162.help.text
msgid "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3146320.47.help.text
msgid "<ahelp hid=\".uno:InsertFormattedField\">Adds a text box where you can define the formatting for text that is inputted or outputted as well as any limiting values.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3156160.48.help.text
msgid "Pattern Field"
msgstr ""
#: 20000000.xhp#par_id3150379.help.text
msgid "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150032\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3147382.49.help.text
msgid "<ahelp hid=\".uno:InsertPatternField\">Adds a masked field.</ahelp> A masked field consists of an input mask and a literal mask. The input mask determines which user data can be entered. The literal mask determines the state of the masked field when the form is loaded."
msgstr ""
#: 20000000.xhp#hd_id3146815.50.help.text
msgid "File Selection"
msgstr ""
#: 20000000.xhp#par_id3149194.help.text
msgid "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3145632.51.help.text
msgid "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialog.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3155912.52.help.text
msgid "Select"
msgstr ""
#: 20000000.xhp#par_id3154903.help.text
msgid "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150653\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3148465.53.help.text
msgid "<ahelp hid=\".\">Activates or deactivates the Selection mode. In this mode, you can select the controls in a dialog so that you can edit them.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3154055.54.help.text
msgid "Properties"
msgstr ""
#: 20000000.xhp#par_id3148725.help.text
msgid "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146874\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3151105.55.help.text
msgid "<ahelp hid=\".uno:ShowPropBrowser\">Opens a dialog where you can edit the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">properties</link> of the selected control.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id3153746.56.help.text
msgid "Activate Test Mode"
msgstr ""
#: 20000000.xhp#par_id3147417.help.text
msgid "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">Icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id3150699.57.help.text
msgid "<ahelp hid=\".uno:TestMode\">Starts test mode. Click the dialog closer icon to end test mode.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id2954191.help.text
msgid "Manage Language"
msgstr ""
#: 20000000.xhp#par_id2320017.help.text
msgid "<image id=\"img_id2856837\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2856837\">Manage Language icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id1261940.help.text
msgid "<ahelp hid=\".uno:ManageLanguage\">Opens a <link href=\"text/sbasic/guide/translation.xhp\">dialog</link> to enable or manage multiple sets of dialog resources for multiple languages.</ahelp>"
msgstr ""
#: 20000000.xhp#hd_id11902.help.text
msgid "Tree Control"
msgstr ""
#: 20000000.xhp#par_id7511520.help.text
msgid "<image id=\"Graphic2\" src=\"cmd/sc_inserttreecontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Manage Language icon</alt></image>"
msgstr ""
#: 20000000.xhp#par_id9961851.help.text
msgid "<ahelp hid=\".\">Adds a tree control that can show a hierarchical list. You can populate the list by your program, using API calls (XtreeControl).</ahelp>"
msgstr ""
#: 11070000.xhp#tit.help.text
msgctxt "11070000.xhp#tit.help.text"
msgid "Breakpoint"
msgstr ""
#: 11070000.xhp#hd_id3154863.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
msgstr ""
#: 11070000.xhp#par_id3155364.2.help.text
msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
msgstr ""
#: 11070000.xhp#par_id3149346.4.help.text
msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
msgstr ""
#: 11070000.xhp#par_id3156346.help.text
msgid "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icon</alt></image>"
msgstr ""
#: 11070000.xhp#par_id3149416.3.help.text
msgctxt "11070000.xhp#par_id3149416.3.help.text"
msgid "Breakpoint"
msgstr ""
#: 11010000.xhp#tit.help.text
msgid "Library"
msgstr ""
#: 11010000.xhp#hd_id3151100.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
msgstr ""
#: 11010000.xhp#par_id3154136.2.help.text
msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
msgstr ""
#: 11010000.xhp#par_id3149095.help.text
msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
msgstr ""
#: 11010000.xhp#par_id3147654.3.help.text
msgid "Library List Box"
msgstr ""
#: 11040000.xhp#tit.help.text
msgctxt "11040000.xhp#tit.help.text"
msgid "Stop"
msgstr ""
#: 11040000.xhp#bm_id3154863.help.text
msgid "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>stopping macros</bookmark_value>"
msgstr ""
#: 11040000.xhp#hd_id3154863.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Stop</link>"
msgstr ""
#: 11040000.xhp#par_id3147226.2.help.text
msgid "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> You can also press Shift+Ctrl+Q.</defaultinline></switchinline>"
msgstr ""
#: 11040000.xhp#par_id3146797.help.text
msgid "<image id=\"img_id3148538\" src=\"cmd/sc_basicstop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148538\">Icon</alt></image>"
msgstr ""
#: 11040000.xhp#par_id3150986.3.help.text
msgctxt "11040000.xhp#par_id3150986.3.help.text"
msgid "Stop"
msgstr ""
#: 11140000.xhp#tit.help.text
msgid "Insert Source Text"
msgstr ""
#: 11140000.xhp#hd_id3154044.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
msgstr ""
#: 11140000.xhp#par_id3150702.2.help.text
msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
msgstr ""
#: 11140000.xhp#par_id3150445.3.help.text
msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
msgstr ""
#: 11140000.xhp#par_id3145136.help.text
msgid "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
msgstr ""
#: 11140000.xhp#par_id3145346.4.help.text
msgid "Insert source text"
msgstr ""
#: 11080000.xhp#tit.help.text
msgctxt "11080000.xhp#tit.help.text"
msgid "Enable Watch"
msgstr ""
#: 11080000.xhp#hd_id3154863.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
msgstr ""
#: 11080000.xhp#par_id3093440.2.help.text
msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
msgstr ""
#: 11080000.xhp#par_id3147399.6.help.text
msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
msgstr ""
#: 11080000.xhp#par_id3155892.help.text
msgid "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
msgstr ""
#: 11080000.xhp#par_id3150276.3.help.text
msgctxt "11080000.xhp#par_id3150276.3.help.text"
msgid "Enable Watch"
msgstr ""
#: 11080000.xhp#par_id3159158.4.help.text
msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
msgstr ""
#: 11060000.xhp#tit.help.text
msgctxt "11060000.xhp#tit.help.text"
msgid "Procedure Step"
msgstr ""
#: 11060000.xhp#hd_id3148520.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
msgstr ""
#: 11060000.xhp#par_id3152363.2.help.text
msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
msgstr ""
#: 11060000.xhp#par_id3153394.4.help.text
msgctxt "11060000.xhp#par_id3153394.4.help.text"
msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
msgstr ""
#: 11060000.xhp#par_id3147576.help.text
msgid "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
msgstr ""
#: 11060000.xhp#par_id3154307.3.help.text
msgctxt "11060000.xhp#par_id3154307.3.help.text"
msgid "Procedure Step"
msgstr ""
#: 11060000.xhp#par_id3153562.6.help.text
msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
msgstr ""
#: 11030000.xhp#tit.help.text
msgctxt "11030000.xhp#tit.help.text"
msgid "Run"
msgstr ""
#: 11030000.xhp#hd_id3153255.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
msgstr ""
#: 11030000.xhp#par_id3159201.2.help.text
msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
msgstr ""
#: 11030000.xhp#par_id3156410.help.text
msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
msgstr ""
#: 11030000.xhp#par_id3154750.3.help.text
msgctxt "11030000.xhp#par_id3154750.3.help.text"
msgid "Run"
msgstr ""
#: 11160000.xhp#tit.help.text
msgctxt "11160000.xhp#tit.help.text"
msgid "Step Out"
msgstr ""
#: 11160000.xhp#hd_id3148983.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
msgstr ""
#: 11160000.xhp#par_id3157898.2.help.text
msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
msgstr ""
#: 11160000.xhp#par_id3156410.help.text
msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
msgstr ""
#: 11160000.xhp#par_id3158421.3.help.text
msgctxt "11160000.xhp#par_id3158421.3.help.text"
msgid "Step Out"
msgstr ""
#: 11180000.xhp#tit.help.text
msgctxt "11180000.xhp#tit.help.text"
msgid "Import Dialog"
msgstr ""
#: 11180000.xhp#hd_id3156183.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
msgstr ""
#: 11180000.xhp#par_id3152363.2.help.text
msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
msgstr ""
#: 11180000.xhp#par_id0929200903505211.help.text
msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported."
msgstr ""
#: 11180000.xhp#par_id0929200903505360.help.text
msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
msgstr ""
#: 11180000.xhp#par_id0929200903505320.help.text
msgid "If the library contains additional languages compared to the imported dialog, or if the imported dialog is not localized at all, then the additional languages will silently be added to the imported dialog using the strings of the dialog's default locale."
msgstr ""
#: 11180000.xhp#par_id0929200903505383.help.text
msgid "If the imported dialog contains additional languages compared to the library, or if the library is not localized at all, then you see a message box with Add, Omit, and Cancel buttons."
msgstr ""
#: 11180000.xhp#par_id0929200903505340.help.text
msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually."
msgstr ""
#: 11180000.xhp#par_id0929200903505367.help.text
msgid "Omit: The library's language settings will stay unchanged. The imported dialog's resources for the omitted languages are not copied into the library, but they remain in the imported dialog's source files."
msgstr ""
#: 11180000.xhp#par_id3143267.help.text
msgid "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
msgstr ""
#: 11180000.xhp#par_id3145383.3.help.text
msgctxt "11180000.xhp#par_id3145383.3.help.text"
msgid "Import Dialog"
msgstr ""
#: 11020000.xhp#tit.help.text
msgctxt "11020000.xhp#tit.help.text"
msgid "Compile"
msgstr ""
#: 11020000.xhp#hd_id3148983.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
msgstr ""
#: 11020000.xhp#par_id3159201.2.help.text
msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
msgstr ""
#: 11020000.xhp#par_id3156426.help.text
msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
msgstr ""
#: 11020000.xhp#par_id3149399.3.help.text
msgctxt "11020000.xhp#par_id3149399.3.help.text"
msgid "Compile"
msgstr ""
#: 11170000.xhp#tit.help.text
msgctxt "11170000.xhp#tit.help.text"
msgid "Manage Breakpoints"
msgstr ""
#: 11170000.xhp#hd_id3156183.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
msgstr ""
#: 11170000.xhp#par_id3152363.2.help.text
msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
msgstr ""
#: 11170000.xhp#par_id3143267.help.text
msgid "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
msgstr ""
#: 11170000.xhp#par_id3145383.3.help.text
msgctxt "11170000.xhp#par_id3145383.3.help.text"
msgid "Manage Breakpoints"
msgstr ""
#: 11170000.xhp#par_id3154897.4.help.text
msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
msgstr ""
#: 11110000.xhp#tit.help.text
msgctxt "11110000.xhp#tit.help.text"
msgid "Modules"
msgstr ""
#: 11110000.xhp#hd_id3148520.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
msgstr ""
#: 11110000.xhp#par_id3156414.2.help.text
msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
msgstr ""
#: 11110000.xhp#par_id3157958.help.text
msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#: 11110000.xhp#par_id3145383.3.help.text
msgctxt "11110000.xhp#par_id3145383.3.help.text"
msgid "Modules"
msgstr ""
#: 11090000.xhp#tit.help.text
msgctxt "11090000.xhp#tit.help.text"
msgid "Object Catalog"
msgstr ""
#: 11090000.xhp#hd_id3153255.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
msgstr ""
#: 11090000.xhp#par_id3151384.2.help.text
msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> dialog, where you can view Basic objects.</ahelp>"
msgstr ""
#: 11090000.xhp#par_id3147576.15.help.text
msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Click the name of a module or dialog and then click the <emph>Show</emph> icon to load and display that module or dialog."
msgstr ""
#: 11090000.xhp#par_id3148538.help.text
msgid "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
msgstr ""
#: 11090000.xhp#par_id3154515.3.help.text
msgctxt "11090000.xhp#par_id3154515.3.help.text"
msgid "Object Catalog"
msgstr ""
#: 11090000.xhp#hd_id3155388.4.help.text
msgctxt "11090000.xhp#hd_id3155388.4.help.text"
msgid "Show"
msgstr ""
#: 11090000.xhp#par_id3155630.5.help.text
msgid "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Display the source text or dialog of a selected object.</ahelp>"
msgstr ""
#: 11090000.xhp#par_id3153126.help.text
msgid "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Icon</alt></image>"
msgstr ""
#: 11090000.xhp#par_id3147560.6.help.text
msgctxt "11090000.xhp#par_id3147560.6.help.text"
msgid "Show"
msgstr ""
#: 11090000.xhp#hd_id3146794.13.help.text
msgid "Window Area"
msgstr ""
#: 11090000.xhp#par_id3149655.14.help.text
msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double-click its name or select the name and click the <emph>Show</emph> icon.</ahelp>"
msgstr ""
#: 11100000.xhp#tit.help.text
msgctxt "11100000.xhp#tit.help.text"
msgid "Macros"
msgstr ""
#: 11100000.xhp#hd_id3156183.1.help.text
msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
msgstr ""
#: 11100000.xhp#par_id3147399.2.help.text
msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
msgstr ""
#: 11100000.xhp#par_id3148538.help.text
msgid "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt_id3153662\">Icon</alt></image>"
msgstr ""
#: 11100000.xhp#par_id3153542.3.help.text
msgctxt "11100000.xhp#par_id3153542.3.help.text"
msgid "Macros"
msgstr ""

View File

@@ -1,728 +0,0 @@
#. extracted from helpcontent2/source/text/scalc.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: main0101.xhp#tit.help.text
msgid "File"
msgstr ""
#: main0101.xhp#hd_id3156023.1.help.text
msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
msgstr ""
#: main0101.xhp#par_id3151112.2.help.text
msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
msgstr ""
#: main0101.xhp#hd_id3154684.4.help.text
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr ""
#: main0101.xhp#hd_id3147434.5.help.text
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
msgstr ""
#: main0101.xhp#hd_id3147396.11.help.text
msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr ""
#: main0101.xhp#hd_id3149400.7.help.text
msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
msgstr ""
#: main0101.xhp#hd_id3155445.9.help.text
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr ""
#: main0101.xhp#hd_id3147339.10.help.text
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
msgstr ""
#: main0206.xhp#tit.help.text
msgid "Formula Bar"
msgstr ""
#: main0206.xhp#hd_id3147264.1.help.text
msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
msgstr ""
#: main0206.xhp#par_id3150400.2.help.text
msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
msgstr ""
#: main0103.xhp#tit.help.text
msgid "View"
msgstr ""
#: main0103.xhp#hd_id3151112.1.help.text
msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
msgstr ""
#: main0103.xhp#par_id3149456.2.help.text
msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
msgstr ""
#: main0103.xhp#par_idN105AB.help.text
msgid "Normal"
msgstr ""
#: main0103.xhp#par_idN105AF.help.text
msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
msgstr ""
#: main0103.xhp#hd_id3125863.3.help.text
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr ""
#: main0112.xhp#tit.help.text
msgid "Data"
msgstr ""
#: main0112.xhp#hd_id3153254.1.help.text
msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
msgstr ""
#: main0112.xhp#par_id3147264.2.help.text
msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
msgstr ""
#: main0112.xhp#hd_id3150400.3.help.text
msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
msgstr ""
#: main0112.xhp#hd_id3125863.4.help.text
msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
msgstr ""
#: main0112.xhp#hd_id3153726.5.help.text
msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
msgstr ""
#: main0112.xhp#hd_id3153142.6.help.text
msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
msgstr ""
#: main0112.xhp#hd_id3151073.10.help.text
msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
msgstr ""
#: main0112.xhp#hd_id3145254.7.help.text
msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
msgstr ""
#: main0112.xhp#hd_id1387066.help.text
msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
msgstr ""
#: main0112.xhp#hd_id3150717.8.help.text
msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
msgstr ""
#: main0112.xhp#hd_id3154754.9.help.text
msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
msgstr ""
#: main0000.xhp#tit.help.text
msgctxt "main0000.xhp#tit.help.text"
msgid "Welcome to the $[officename] Calc Help"
msgstr ""
#: main0000.xhp#hd_id3147338.1.help.text
msgctxt "main0000.xhp#hd_id3147338.1.help.text"
msgid "Welcome to the $[officename] Calc Help"
msgstr ""
#: main0000.xhp#hd_id3153965.3.help.text
msgid "How to Work With $[officename] Calc"
msgstr ""
#: main0000.xhp#par_id3147004.5.help.text
msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
msgstr ""
#: main0000.xhp#hd_id3154659.6.help.text
msgid "$[officename] Calc Menus, Toolbars, and Keys"
msgstr ""
#: main0000.xhp#hd_id3150883.4.help.text
msgid "Help about the Help"
msgstr ""
#: main0104.xhp#tit.help.text
msgid "Insert"
msgstr ""
#: main0104.xhp#hd_id3157909.1.help.text
msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
msgstr ""
#: main0104.xhp#par_id3153896.2.help.text
msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elements, such as cells, rows, sheets and cell names into the current sheet.</ahelp>"
msgstr ""
#: main0104.xhp#hd_id3150769.3.help.text
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>"
msgstr ""
#: main0104.xhp#hd_id3149260.4.help.text
msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr ""
#: main0104.xhp#hd_id3153726.7.help.text
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
msgstr ""
#: main0104.xhp#hd_id3156285.13.help.text
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr ""
#: main0104.xhp#hd_id3154492.5.help.text
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</link>"
msgstr ""
#: main0104.xhp#hd_id3154511.12.help.text
msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
msgstr ""
#: main0104.xhp#hd_id3145640.6.help.text
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
msgstr ""
#: main0104.xhp#hd_id3146918.11.help.text
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
msgstr ""
#: main0104.xhp#par_id0302200904002496.help.text
msgid "Inserts a chart."
msgstr ""
#: main0104.xhp#hd_id3147003.10.help.text
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr ""
#: main0203.xhp#tit.help.text
msgid "Drawing Object Properties Bar"
msgstr ""
#: main0203.xhp#hd_id3154346.1.help.text
msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
msgstr ""
#: main0203.xhp#par_id3149656.2.help.text
msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
msgstr ""
#: main0203.xhp#hd_id3145748.3.help.text
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
msgstr ""
#: main0203.xhp#hd_id3151073.4.help.text
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr ""
#: main0203.xhp#hd_id3153417.5.help.text
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
msgstr ""
#: main0203.xhp#hd_id3147338.6.help.text
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
msgstr ""
#: main0503.xhp#tit.help.text
msgid "$[officename] Calc Features"
msgstr ""
#: main0503.xhp#hd_id3154758.1.help.text
msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
msgstr ""
#: main0503.xhp#par_id3149457.2.help.text
msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
msgstr ""
#: main0503.xhp#hd_id3148797.4.help.text
msgid "Calculations"
msgstr ""
#: main0503.xhp#par_id3145172.5.help.text
msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
msgstr ""
#: main0503.xhp#par_id3145271.6.help.text
msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
msgstr ""
#: main0503.xhp#hd_id3152596.13.help.text
msgid "What-If Calculations"
msgstr ""
#: main0503.xhp#par_id3156444.14.help.text
msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
msgstr ""
#: main0503.xhp#hd_id3148576.7.help.text
msgid "Database Functions"
msgstr ""
#: main0503.xhp#par_id3154011.8.help.text
msgid "Use spreadsheets to arrange, store, and filter your data."
msgstr ""
#: main0503.xhp#par_id3154942.25.help.text
msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
msgstr ""
#: main0503.xhp#hd_id3145800.9.help.text
msgid "Arranging Data"
msgstr ""
#: main0503.xhp#par_id3154490.10.help.text
msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
msgstr ""
#: main0503.xhp#hd_id3155601.16.help.text
msgid "Dynamic Charts"
msgstr ""
#: main0503.xhp#par_id3149121.17.help.text
msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
msgstr ""
#: main0503.xhp#hd_id3153707.18.help.text
msgid "Opening and Saving Microsoft Files"
msgstr ""
#: main0503.xhp#par_id3157867.19.help.text
msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
msgstr ""
#: main0205.xhp#tit.help.text
msgid "Text Formatting Bar"
msgstr ""
#: main0205.xhp#hd_id3156330.1.help.text
msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
msgstr ""
#: main0205.xhp#par_id3151112.2.help.text
msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
msgstr ""
#: main0205.xhp#hd_id3148575.7.help.text
msgctxt "main0205.xhp#hd_id3148575.7.help.text"
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
msgstr ""
#: main0205.xhp#hd_id3154944.8.help.text
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
msgstr ""
#: main0205.xhp#hd_id3146969.9.help.text
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
msgstr ""
#: main0205.xhp#hd_id3153711.10.help.text
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
msgstr ""
#: main0205.xhp#hd_id3147345.11.help.text
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
msgstr ""
#: main0205.xhp#hd_id3155337.12.help.text
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
msgstr ""
#: main0205.xhp#hd_id3147001.13.help.text
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
msgstr ""
#: main0205.xhp#hd_id3155115.14.help.text
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
msgstr ""
#: main0205.xhp#hd_id3150202.15.help.text
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
msgstr ""
#: main0205.xhp#hd_id3155531.16.help.text
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
msgstr ""
#: main0205.xhp#hd_id3145387.17.help.text
msgctxt "main0205.xhp#hd_id3145387.17.help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr ""
#: main0205.xhp#hd_id3153067.18.help.text
msgctxt "main0205.xhp#hd_id3153067.18.help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr ""
#: main0208.xhp#tit.help.text
msgid "Status Bar"
msgstr ""
#: main0208.xhp#hd_id3151385.1.help.text
msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
msgstr ""
#: main0208.xhp#par_id3149669.2.help.text
msgid "The <emph>Status Bar</emph> displays information about the current sheet."
msgstr ""
#: main0208.xhp#hd_id0821200911024321.help.text
msgid "Digital Signature"
msgstr ""
#: main0208.xhp#par_id0821200911024344.help.text
msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
msgstr ""
#: main0106.xhp#tit.help.text
msgid "Tools"
msgstr ""
#: main0106.xhp#hd_id3150769.1.help.text
msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr ""
#: main0106.xhp#par_id3150440.2.help.text
msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
msgstr ""
#: main0106.xhp#par_id3152576.10.help.text
msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
msgstr ""
#: main0106.xhp#hd_id3149122.12.help.text
msgctxt "main0106.xhp#hd_id3149122.12.help.text"
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr ""
#: main0106.xhp#hd_id3155768.6.help.text
msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
msgstr ""
#: main0106.xhp#hd_id3154015.9.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr ""
#: main0106.xhp#hd_id3150086.8.help.text
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr ""
#: main0105.xhp#tit.help.text
msgid "Format"
msgstr ""
#: main0105.xhp#hd_id3149669.1.help.text
msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
msgstr ""
#: main0105.xhp#par_id3145171.2.help.text
msgid "<ahelp hid=\".uno:FormatMenu\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
msgstr ""
#: main0105.xhp#hd_id3154732.4.help.text
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
msgstr ""
#: main0105.xhp#hd_id3155087.9.help.text
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
msgstr ""
#: main0105.xhp#hd_id3145748.12.help.text
msgctxt "main0105.xhp#hd_id3145748.12.help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr ""
#: main0105.xhp#hd_id3154485.13.help.text
msgctxt "main0105.xhp#hd_id3154485.13.help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr ""
#: main0105.xhp#hd_id3157980.11.help.text
msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
msgstr ""
#: main0105.xhp#hd_id3159206.14.help.text
msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>"
msgstr ""
#: main0105.xhp#hd_id3154703.17.help.text
msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
msgstr ""
#: main0105.xhp#hd_id3147005.16.help.text
msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
msgstr ""
#: main0102.xhp#tit.help.text
msgid "Edit"
msgstr ""
#: main0102.xhp#hd_id3156023.1.help.text
msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
#: main0102.xhp#par_id3154758.2.help.text
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
msgstr ""
#: main0102.xhp#hd_id3146119.3.help.text
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
msgstr ""
#: main0102.xhp#hd_id3153728.12.help.text
msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
msgstr ""
#: main0102.xhp#hd_id3154492.4.help.text
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
msgstr ""
#: main0102.xhp#hd_id3150715.5.help.text
msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
msgstr ""
#: main0102.xhp#hd_id3149018.6.help.text
msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
msgstr ""
#: main0102.xhp#hd_id3156384.7.help.text
msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
msgstr ""
#: main0102.xhp#hd_id3146919.10.help.text
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr ""
#: main0102.xhp#hd_id3148488.11.help.text
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
msgstr ""
#: main0218.xhp#tit.help.text
msgid "Tools Bar"
msgstr ""
#: main0218.xhp#hd_id3143268.1.help.text
msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
msgstr ""
#: main0218.xhp#par_id3151112.2.help.text
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
msgstr ""
#: main0218.xhp#par_idN10610.help.text
msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
msgstr ""
#: main0218.xhp#hd_id3154730.6.help.text
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
msgstr ""
#: main0218.xhp#par_idN10690.help.text
msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
msgstr ""
#: main0218.xhp#par_idN106A8.help.text
msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
msgstr ""
#: main0218.xhp#par_idN106C0.help.text
msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
msgstr ""
#: main0218.xhp#par_idN106D8.help.text
msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
msgstr ""
#: main0218.xhp#par_idN106F0.help.text
msgctxt "main0218.xhp#par_idN106F0.help.text"
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr ""
#: main0200.xhp#tit.help.text
msgid "Toolbars"
msgstr ""
#: main0200.xhp#hd_id3154758.1.help.text
msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr ""
#: main0200.xhp#par_id3148798.2.help.text
msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
msgstr ""
#: main0100.xhp#tit.help.text
msgid "Menus"
msgstr ""
#: main0100.xhp#hd_id3156023.1.help.text
msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr ""
#: main0100.xhp#par_id3154760.2.help.text
msgid "The following menu commands are available for spreadsheets."
msgstr ""
#: main0210.xhp#tit.help.text
msgid "Page Preview Bar"
msgstr ""
#: main0210.xhp#hd_id3156023.1.help.text
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
msgstr ""
#: main0210.xhp#par_id3148663.2.help.text
msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
msgstr ""
#: main0210.xhp#hd_id3147394.3.help.text
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page Format\">Page Format</link>"
msgstr ""
#: main0214.xhp#tit.help.text
msgid "Picture Bar"
msgstr ""
#: main0214.xhp#hd_id3153088.1.help.text
msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Picture Bar\">Picture Bar</link>"
msgstr ""
#: main0214.xhp#par_id3153896.2.help.text
msgid "<ahelp hid=\".\">The <emph>Picture</emph> bar is displayed when you insert or select a picture in a sheet.</ahelp>"
msgstr ""
#: main0202.xhp#tit.help.text
msgid "Formatting Bar"
msgstr ""
#: main0202.xhp#hd_id3150448.1.help.text
msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
msgstr ""
#: main0202.xhp#par_id3153897.2.help.text
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">The <emph>Formatting</emph> bar contains basic commands for applying manually formatting.</ahelp>"
msgstr ""
#: main0202.xhp#hd_id3153160.8.help.text
msgctxt "main0202.xhp#hd_id3153160.8.help.text"
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
msgstr ""
#: main0202.xhp#hd_id3150715.9.help.text
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Align Left</link>"
msgstr ""
#: main0202.xhp#hd_id3155064.10.help.text
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Align Center Horizontally</link>"
msgstr ""
#: main0202.xhp#hd_id3150042.11.help.text
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Align Right</link>"
msgstr ""
#: main0202.xhp#hd_id3154703.12.help.text
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
msgstr ""
#: main0202.xhp#hd_id3152986.13.help.text
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Align Top</link>"
msgstr ""
#: main0202.xhp#hd_id3153306.14.help.text
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Align Center Vertically</link>"
msgstr ""
#: main0202.xhp#hd_id3151240.15.help.text
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Align Bottom</link>"
msgstr ""
#: main0202.xhp#par_idN10843.help.text
msgid "Number Format : Date"
msgstr ""
#: main0202.xhp#par_idN10847.help.text
msgid "<ahelp hid=\".\">Applies the date format to the selected cells.</ahelp>"
msgstr ""
#: main0202.xhp#par_idN1085E.help.text
msgid "Number Format: Exponential"
msgstr ""
#: main0202.xhp#par_idN10862.help.text
msgid "<ahelp hid=\".\">Applies the exponential format to the selected cells.</ahelp>"
msgstr ""
#: main0202.xhp#par_idN10871.help.text
msgid "Additional icons"
msgstr ""
#: main0202.xhp#par_idN10875.help.text
msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> support is enabled, two additional icons are visible."
msgstr ""
#: main0202.xhp#par_idN1088E.help.text
msgid "Left-To-Right"
msgstr ""
#: main0202.xhp#par_idN1089C.help.text
msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
msgstr ""
#: main0202.xhp#par_idN108BA.help.text
msgid "<ahelp hid=\".uno:ParaLeftToRight\">The text is entered from left to right.</ahelp>"
msgstr ""
#: main0202.xhp#par_idN108D1.help.text
msgid "Right-To-Left"
msgstr ""
#: main0202.xhp#par_idN108DF.help.text
msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
msgstr ""
#: main0202.xhp#par_idN108FD.help.text
msgid "<ahelp hid=\".uno:ParaRightToLeft\">The text formatted in a complex text layout language is entered from right to left.</ahelp>"
msgstr ""
#: main0202.xhp#par_id192266.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left.</ahelp>"
msgstr ""
#: main0202.xhp#par_id1998962.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the right.</ahelp>"
msgstr ""
#: main0202.xhp#par_id2376476.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Horizontally centers the contents of the cell.</ahelp>"
msgstr ""
#: main0202.xhp#par_id349131.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
msgstr ""
#: main0107.xhp#tit.help.text
msgid "Window"
msgstr ""
#: main0107.xhp#hd_id3154758.1.help.text
msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
msgstr ""
#: main0107.xhp#par_id3150398.2.help.text
msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
msgstr ""

View File

@@ -1,832 +0,0 @@
#. extracted from helpcontent2/source/text/scalc/00.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F00.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:05+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 00000407.xhp#tit.help.text
msgctxt "00000407.xhp#tit.help.text"
msgid "Window Menu"
msgstr ""
#: 00000407.xhp#hd_id3155628.1.help.text
msgctxt "00000407.xhp#hd_id3155628.1.help.text"
msgid "Window Menu"
msgstr ""
#: 00000407.xhp#par_id3147335.2.help.text
msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
msgstr ""
#: 00000407.xhp#par_id3153663.3.help.text
msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
msgstr ""
#: 00000404.xhp#tit.help.text
msgctxt "00000404.xhp#tit.help.text"
msgid "Insert Menu"
msgstr ""
#: 00000404.xhp#hd_id3149346.1.help.text
msgctxt "00000404.xhp#hd_id3149346.1.help.text"
msgid "Insert Menu"
msgstr ""
#: 00000404.xhp#par_id3149095.36.help.text
msgid "<variable id=\"eimaum\">Choose <emph>Insert - Manual Break</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3149398.2.help.text
msgid "<variable id=\"eimaumze\">Choose <emph>Insert - Manual Break - Row Break</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3150084.3.help.text
msgid "<variable id=\"eimaumsp\">Choose <emph>Insert - Manual Break - Column Break</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3149784.4.help.text
msgid "Choose <emph>Insert - Cells</emph>"
msgstr ""
#: 00000404.xhp#par_id3154514.5.help.text
msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
msgstr ""
#: 00000404.xhp#par_id3149656.help.text
msgid "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154365\">Icon</alt></image>"
msgstr ""
#: 00000404.xhp#par_id3151041.6.help.text
msgid "Insert Cells"
msgstr ""
#: 00000404.xhp#par_id3145273.help.text
msgid "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
msgstr ""
#: 00000404.xhp#par_id3146985.7.help.text
msgid "Insert Cells Down"
msgstr ""
#: 00000404.xhp#par_id3144766.help.text
msgid "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154942\">Icon</alt></image>"
msgstr ""
#: 00000404.xhp#par_id3145646.8.help.text
msgid "Insert Cells Right"
msgstr ""
#: 00000404.xhp#par_id3153838.help.text
msgid "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153710\">Icon</alt></image>"
msgstr ""
#: 00000404.xhp#par_id3150324.9.help.text
msgid "Insert Rows"
msgstr ""
#: 00000404.xhp#par_id3147363.help.text
msgid "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
msgstr ""
#: 00000404.xhp#par_id3155334.10.help.text
msgid "Insert Columns"
msgstr ""
#: 00000404.xhp#par_id3148485.11.help.text
msgid "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3153200.12.help.text
msgid "<variable id=\"eispa\">Choose <emph>Insert - Columns</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3149033.13.help.text
msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
msgstr ""
#: 00000404.xhp#par_idN1082F.help.text
msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3155115.14.help.text
msgid "Choose <emph>Insert - Function</emph>"
msgstr ""
#: 00000404.xhp#par_id3152582.34.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr ""
#: 00000404.xhp#par_id3153269.15.help.text
msgid "On <emph>Formula Bar</emph>, click"
msgstr ""
#: 00000404.xhp#par_id3150515.help.text
msgid "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
msgstr ""
#: 00000404.xhp#par_id3154370.16.help.text
msgid "Function Wizard"
msgstr ""
#: 00000404.xhp#par_id3156288.17.help.text
msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3155809.18.help.text
msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3151334.19.help.text
msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3159222.20.help.text
msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3159173.21.help.text
msgid "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3153914.22.help.text
msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3150109.23.help.text
msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3157978.24.help.text
msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3156016.25.help.text
msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3147075.26.help.text
msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3154618.27.help.text
msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3154059.38.help.text
msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3155383.33.help.text
msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3153250.28.help.text
msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3146776.37.help.text
msgid "<variable id=\"eiextdata\">Choose <emph>Insert - Link to External data</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3143222.29.help.text
msgid "Choose <emph>Insert - Names - Define</emph>"
msgstr ""
#: 00000404.xhp#par_id3149385.35.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr ""
#: 00000404.xhp#par_id3145214.30.help.text
msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3153558.31.help.text
msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3153483.32.help.text
msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
msgstr ""
#: 00000004.xhp#tit.help.text
msgid "To access this function..."
msgstr ""
#: 00000004.xhp#hd_id3155535.1.help.text
msgid "<variable id=\"wie\">To access this function... </variable>"
msgstr ""
#: 00000004.xhp#par_idN1056E.help.text
msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
msgstr ""
#: 00000004.xhp#par_idN105AF.help.text
msgid "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. </variable>"
msgstr ""
#: 00000004.xhp#par_id9751884.help.text
msgid "<variable id=\"codes\">Codes greater than 127 may depend on your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), and hence may not be portable.</variable>"
msgstr ""
#: 00000406.xhp#tit.help.text
msgctxt "00000406.xhp#tit.help.text"
msgid "Tools Menu"
msgstr ""
#: 00000406.xhp#hd_id3147264.1.help.text
msgctxt "00000406.xhp#hd_id3147264.1.help.text"
msgid "Tools Menu"
msgstr ""
#: 00000406.xhp#par_id3150541.2.help.text
msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3153194.3.help.text
msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
msgstr ""
#: 00000406.xhp#par_id3150447.29.help.text
msgid "Shift+F7"
msgstr ""
#: 00000406.xhp#par_id3154123.33.help.text
msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3145785.4.help.text
msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3155411.5.help.text
msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
msgstr ""
#: 00000406.xhp#par_id3153363.30.help.text
msgid "Shift+F5"
msgstr ""
#: 00000406.xhp#par_id3146984.6.help.text
msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3154014.7.help.text
msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3153188.8.help.text
msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3149410.9.help.text
msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3156284.10.help.text
msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3153159.11.help.text
msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3147397.32.help.text
msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3154018.12.help.text
msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3269142.help.text
msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
msgstr ""
#: 00000406.xhp#par_id8554338.help.text
msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
msgstr ""
#: 00000406.xhp#par_id3156277.13.help.text
msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3145640.14.help.text
msgid "<variable id=\"exdos\">Choose <emph>Tools - Protect Document</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3149020.15.help.text
msgid "<variable id=\"exdst\">Choose <emph>Tools - Protect Document - Sheet</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3154256.16.help.text
msgid "<variable id=\"exdsd\">Choose <emph>Tools - Protect Document - Document</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3147363.17.help.text
msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3146919.18.help.text
msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
msgstr ""
#: 00000406.xhp#par_id3149257.31.help.text
msgid "F9"
msgstr ""
#: 00000406.xhp#par_id3150941.19.help.text
msgid "<variable id=\"exatmb\">Choose <emph>Tools - Cell Contents - AutoCalculate</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3151276.20.help.text
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
msgstr ""
#: 00000405.xhp#tit.help.text
msgctxt "00000405.xhp#tit.help.text"
msgid "Format Menu"
msgstr ""
#: 00000405.xhp#hd_id3150769.1.help.text
msgctxt "00000405.xhp#hd_id3150769.1.help.text"
msgid "Format Menu"
msgstr ""
#: 00000405.xhp#par_id3154685.2.help.text
msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3153194.3.help.text
msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
msgstr ""
#: 00000405.xhp#par_id3155854.4.help.text
msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3150012.5.help.text
msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3148645.6.help.text
msgid "Choose <emph>Format - Row - Hide</emph>"
msgstr ""
#: 00000405.xhp#par_id3153728.7.help.text
msgid "Choose <emph>Format - Column - Hide</emph>"
msgstr ""
#: 00000405.xhp#par_id3151114.8.help.text
msgid "Choose <emph>Format - Sheet - Hide</emph>"
msgstr ""
#: 00000405.xhp#par_id3148576.9.help.text
msgid "Choose <emph>Format - Row - Show</emph>"
msgstr ""
#: 00000405.xhp#par_id3156286.10.help.text
msgid "Choose <emph>Format - Column - Show</emph>"
msgstr ""
#: 00000405.xhp#par_id3145645.11.help.text
msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3145252.12.help.text
msgid "Choose <emph>Format - Column - Optimal Width</emph>"
msgstr ""
#: 00000405.xhp#par_id3146971.36.help.text
msgid "Double-click right column separator in column headers"
msgstr ""
#: 00000405.xhp#par_id3147362.15.help.text
msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3163805.16.help.text
msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3155333.17.help.text
msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3154020.18.help.text
msgid "<variable id=\"fozelzus\">Choose <emph>Format - Merge Cells</emph></variable>"
msgstr ""
#: 00000405.xhp#par_idN1077A.help.text
msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3155508.25.help.text
msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
msgstr ""
#: 00000405.xhp#par_id3150883.26.help.text
msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3156448.27.help.text
msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3156290.35.help.text
msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3155812.28.help.text
msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3153307.29.help.text
msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3153916.31.help.text
msgid "Choose <emph>Format - AutoFormat</emph>"
msgstr ""
#: 00000405.xhp#par_id3154532.32.help.text
msgid "On the Tools bar, click"
msgstr ""
#: 00000405.xhp#par_id3149332.help.text
msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
msgstr ""
#: 00000405.xhp#par_id3154060.33.help.text
msgid "AutoFormat"
msgstr ""
#: 00000405.xhp#par_id3154618.34.help.text
msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
msgstr ""
#: 00000412.xhp#tit.help.text
msgctxt "00000412.xhp#tit.help.text"
msgid "Data Menu"
msgstr ""
#: 00000412.xhp#hd_id3145136.1.help.text
msgctxt "00000412.xhp#hd_id3145136.1.help.text"
msgid "Data Menu"
msgstr ""
#: 00000412.xhp#par_id8366954.help.text
msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3147399.3.help.text
msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3145345.4.help.text
msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3150443.5.help.text
msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3148491.6.help.text
msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
msgstr ""
#: 00000412.xhp#par_id3154516.7.help.text
msgid "On Standard bar, click"
msgstr ""
#: 00000412.xhp#par_id3148663.help.text
msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
msgstr ""
#: 00000412.xhp#par_id3150767.8.help.text
msgid "Sort Ascending"
msgstr ""
#: 00000412.xhp#par_id3153969.help.text
msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
msgstr ""
#: 00000412.xhp#par_id3145364.9.help.text
msgid "Sort Descending"
msgstr ""
#: 00000412.xhp#par_id3146984.10.help.text
msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
msgstr ""
#: 00000412.xhp#par_id3155308.11.help.text
msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3148646.12.help.text
msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
msgstr ""
#: 00000412.xhp#par_id3151113.13.help.text
msgid "On Tools bar or Table Data bar, click"
msgstr ""
#: 00000412.xhp#par_id3145799.help.text
msgid "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
msgstr ""
#: 00000412.xhp#par_id3149401.14.help.text
msgid "AutoFilter"
msgstr ""
#: 00000412.xhp#par_id3156278.17.help.text
msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3153764.18.help.text
msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
msgstr ""
#: 00000412.xhp#par_id3155444.19.help.text
msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
msgstr ""
#: 00000412.xhp#par_id3156382.20.help.text
msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
msgstr ""
#: 00000412.xhp#par_id3155961.48.help.text
msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
msgstr ""
#: 00000412.xhp#par_id3148485.help.text
msgid "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
msgstr ""
#: 00000412.xhp#par_id3149207.49.help.text
msgid "Remove Filter/Sort"
msgstr ""
#: 00000412.xhp#par_id3152778.21.help.text
msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3166424.22.help.text
msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3154574.23.help.text
msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
msgstr ""
#: 00000412.xhp#par_id3151277.24.help.text
msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
msgstr ""
#: 00000412.xhp#par_id3145133.25.help.text
msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3152992.26.help.text
msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
msgstr ""
#: 00000412.xhp#par_id3150367.27.help.text
msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
msgstr ""
#: 00000412.xhp#par_id3154486.28.help.text
msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
msgstr ""
#: 00000412.xhp#par_id3146978.29.help.text
msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3155809.30.help.text
msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3148701.31.help.text
msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3153815.32.help.text
msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3159223.33.help.text
msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3146870.34.help.text
msgid "Choose <emph>Data - Group and Outline - Group</emph>"
msgstr ""
#: 00000412.xhp#par_id3144507.51.help.text
msgid "F12"
msgstr ""
#: 00000412.xhp#par_id3144772.35.help.text
msgctxt "00000412.xhp#par_id3144772.35.help.text"
msgid "On <emph>Tools</emph> bar, click"
msgstr ""
#: 00000412.xhp#par_id3149438.help.text
msgid "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
msgstr ""
#: 00000412.xhp#par_id3150214.36.help.text
msgid "Group"
msgstr ""
#: 00000412.xhp#par_id3146781.37.help.text
msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
msgstr ""
#: 00000412.xhp#par_id3150892.52.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
msgstr ""
#: 00000412.xhp#par_id3155097.38.help.text
msgctxt "00000412.xhp#par_id3155097.38.help.text"
msgid "On <emph>Tools</emph> bar, click"
msgstr ""
#: 00000412.xhp#par_id3150048.help.text
msgid "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
msgstr ""
#: 00000412.xhp#par_id3153555.39.help.text
msgid "Ungroup"
msgstr ""
#: 00000412.xhp#par_id3153008.40.help.text
msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3154709.41.help.text
msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id1774346.help.text
msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
msgstr ""
#: 00000412.xhp#par_id3155759.42.help.text
msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3154625.43.help.text
msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3147558.53.help.text
msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
msgstr ""
#: 00000412.xhp#par_id3153297.50.help.text
msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
msgstr ""
#: 00000412.xhp#par_id3145118.54.help.text
msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
msgstr ""
#: 00000412.xhp#par_id3153294.44.help.text
msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3151344.45.help.text
msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
msgstr ""
#: 00000412.xhp#par_id3150397.46.help.text
msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
msgstr ""
#: 00000412.xhp#par_idN10B8F.help.text
msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
msgstr ""
#: 00000402.xhp#tit.help.text
msgctxt "00000402.xhp#tit.help.text"
msgid "Edit Menu"
msgstr ""
#: 00000402.xhp#hd_id3147303.1.help.text
msgctxt "00000402.xhp#hd_id3147303.1.help.text"
msgid "Edit Menu"
msgstr ""
#: 00000402.xhp#par_id3155555.2.help.text
msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3159233.3.help.text
msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
msgstr ""
#: 00000402.xhp#par_id3150443.4.help.text
msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3143267.5.help.text
msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3153880.6.help.text
msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3151245.7.help.text
msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3145068.8.help.text
msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3150400.9.help.text
msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3154910.10.help.text
msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3154123.11.help.text
msgid "Choose <emph>Edit - Delete Contents</emph>"
msgstr ""
#: 00000402.xhp#par_id3145785.20.help.text
msgid "Delete key"
msgstr ""
#: 00000402.xhp#par_id3150011.12.help.text
msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3153951.13.help.text
msgid "Choose <emph>Edit Sheet - Delete</emph>"
msgstr ""
#: 00000402.xhp#par_id3155306.18.help.text
msgctxt "00000402.xhp#par_id3155306.18.help.text"
msgid "Open context menu for a sheet tab"
msgstr ""
#: 00000402.xhp#par_id3146119.14.help.text
msgid "Choose <emph>Edit Sheets Move/Copy</emph>"
msgstr ""
#: 00000402.xhp#par_id3148645.19.help.text
msgctxt "00000402.xhp#par_id3148645.19.help.text"
msgid "Open context menu for a sheet tab"
msgstr ""
#: 00000402.xhp#par_id3153093.15.help.text
msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3153191.16.help.text
msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3145645.17.help.text
msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
msgstr ""
#: 00000403.xhp#tit.help.text
msgctxt "00000403.xhp#tit.help.text"
msgid "View Menu"
msgstr ""
#: 00000403.xhp#hd_id3145673.1.help.text
msgctxt "00000403.xhp#hd_id3145673.1.help.text"
msgid "View Menu"
msgstr ""
#: 00000403.xhp#par_id3150275.2.help.text
msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
msgstr ""
#: 00000403.xhp#par_id3154514.3.help.text
msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
msgstr ""
#: 00000403.xhp#par_id3148947.4.help.text
msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
msgstr ""
#: 00000403.xhp#par_id3148663.5.help.text
msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,528 +0,0 @@
#. extracted from helpcontent2/source/text/scalc/02.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F02.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 06070000.xhp#tit.help.text
msgctxt "06070000.xhp#tit.help.text"
msgid "Accept"
msgstr ""
#: 06070000.xhp#bm_id3143267.help.text
msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
msgstr ""
#: 06070000.xhp#hd_id3143267.1.help.text
msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
msgstr ""
#: 06070000.xhp#par_id3151245.2.help.text
msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
msgstr ""
#: 06070000.xhp#par_id3150769.help.text
msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
msgstr ""
#: 06070000.xhp#par_id3125864.3.help.text
msgctxt "06070000.xhp#par_id3125864.3.help.text"
msgid "Accept"
msgstr ""
#: 06050000.xhp#tit.help.text
msgid "Input line"
msgstr ""
#: 06050000.xhp#hd_id3153821.1.help.text
msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
msgstr ""
#: 06050000.xhp#par_id3155922.2.help.text
msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
msgstr ""
#: 10060000.xhp#tit.help.text
msgid "Zoom Out"
msgstr ""
#: 10060000.xhp#bm_id3153561.help.text
msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
msgstr ""
#: 10060000.xhp#hd_id3153561.1.help.text
msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
msgstr ""
#: 10060000.xhp#par_id3151246.2.help.text
msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
msgstr ""
#: 10060000.xhp#par_id3150398.4.help.text
msgid "The minimum zoom factor is 20%."
msgstr ""
#: 10060000.xhp#par_id3153770.help.text
msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
msgstr ""
#: 10060000.xhp#par_id3150440.3.help.text
msgid "Zooming Out"
msgstr ""
#: 08080000.xhp#tit.help.text
msgid "Standard Formula, Date/Time, Error Warning"
msgstr ""
#: 08080000.xhp#bm_id3147335.help.text
msgid "<bookmark_value>formulas;status bar</bookmark_value>"
msgstr ""
#: 08080000.xhp#hd_id3147335.1.help.text
msgid "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">Standard Formula, Date/Time, Error Warning</link>"
msgstr ""
#: 08080000.xhp#par_id3150791.2.help.text
msgid "<ahelp hid=\".uno:StateTableCell\">Displays information about the current document. By default, the SUM of the contents of the selected cells is displayed.</ahelp>"
msgstr ""
#: 08080000.xhp#par_id3155061.3.help.text
msgid "To change the default formula that is displayed, right-click the field, and then choose the formula that you want. The available formulas are: Average, count of values (COUNTA), count of numbers (COUNT), Maximum, Minimum, Sum, or None."
msgstr ""
#: 08080000.xhp#par_id3153969.4.help.text
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
msgstr ""
#: 06030000.xhp#tit.help.text
msgctxt "06030000.xhp#tit.help.text"
msgid "Sum"
msgstr ""
#: 06030000.xhp#bm_id3157909.help.text
msgid "<bookmark_value>functions;sum function icon</bookmark_value> <bookmark_value>formula bar;sum function</bookmark_value> <bookmark_value>sum icon</bookmark_value> <bookmark_value>AutoSum button, see sum icon</bookmark_value>"
msgstr ""
#: 06030000.xhp#hd_id3157909.1.help.text
msgid "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Sum</link>"
msgstr ""
#: 06030000.xhp#par_id3150543.2.help.text
msgid "<ahelp hid=\"HID_INSWIN_SUMME\">Inserts the sum of a cell range into the current cell, or inserts sum values into selected cells. Click in a cell, click this icon, and optionally adjust the cell range. Or select some cells into which the sum values will be inserted, then click the icon.</ahelp>"
msgstr ""
#: 06030000.xhp#par_id3153770.help.text
msgid "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147434\">Icon</alt></image>"
msgstr ""
#: 06030000.xhp#par_id3152577.15.help.text
msgctxt "06030000.xhp#par_id3152577.15.help.text"
msgid "Sum"
msgstr ""
#: 06030000.xhp#par_id3156444.16.help.text
msgid "$[officename] automatically suggests a cell range, provided that the spreadsheet contains data. If the cell range already contains a sum function, you can combine it with the new one to yield the total sum of the range. If the range contains filters, the Subtotal function is inserted instead of the Sum function."
msgstr ""
#: 06030000.xhp#par_id3153189.3.help.text
msgid "Click the <emph>Accept</emph> icon (green check mark) to use the formula displayed in the input line."
msgstr ""
#: 02130000.xhp#tit.help.text
msgid "Number format: Currency"
msgstr ""
#: 02130000.xhp#hd_id3152892.1.help.text
msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
msgstr ""
#: 02130000.xhp#par_id3148837.2.help.text
msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
msgstr ""
#: 02130000.xhp#par_id3155267.help.text
msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
msgstr ""
#: 02130000.xhp#par_id3150214.3.help.text
msgid "Number Format: Currency"
msgstr ""
#: 02130000.xhp#par_id3146776.4.help.text
msgctxt "02130000.xhp#par_id3146776.4.help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr ""
#: 08010000.xhp#tit.help.text
msgid "Position in document"
msgstr ""
#: 08010000.xhp#hd_id3145119.1.help.text
msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
msgstr ""
#: 08010000.xhp#par_id3147265.2.help.text
msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
msgstr ""
#: 06010000.xhp#tit.help.text
msgid "Sheet Area"
msgstr ""
#: 06010000.xhp#bm_id3156326.help.text
msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
msgstr ""
#: 06010000.xhp#hd_id3156326.1.help.text
msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
msgstr ""
#: 06010000.xhp#par_id3149656.2.help.text
msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
msgstr ""
#: 06010000.xhp#par_id3163710.help.text
msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
msgstr ""
#: 06010000.xhp#par_id3151118.4.help.text
msgid "Name Box"
msgstr ""
#: 06010000.xhp#par_id3152596.6.help.text
msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
msgstr ""
#: 10050000.xhp#tit.help.text
msgctxt "10050000.xhp#tit.help.text"
msgid "Zoom In"
msgstr ""
#: 10050000.xhp#bm_id3148491.help.text
msgid "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
msgstr ""
#: 10050000.xhp#hd_id3148491.1.help.text
msgid "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
msgstr ""
#: 10050000.xhp#par_id3145069.2.help.text
msgid "<ahelp hid=\".uno:ZoomIn\">Enlarges the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
msgstr ""
#: 10050000.xhp#par_id3145171.4.help.text
msgid "The maximum zoom factor is 400%."
msgstr ""
#: 10050000.xhp#par_id3155854.help.text
msgid "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
msgstr ""
#: 10050000.xhp#par_id3145273.3.help.text
msgctxt "10050000.xhp#par_id3145273.3.help.text"
msgid "Zoom In"
msgstr ""
#: 02170000.xhp#tit.help.text
msgctxt "02170000.xhp#tit.help.text"
msgid "Number Format: Delete Decimal Place"
msgstr ""
#: 02170000.xhp#hd_id3149164.1.help.text
msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
msgstr ""
#: 02170000.xhp#par_id3147264.2.help.text
msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
msgstr ""
#: 02170000.xhp#par_id3145173.help.text
msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
msgstr ""
#: 02170000.xhp#par_id3154686.3.help.text
msgctxt "02170000.xhp#par_id3154686.3.help.text"
msgid "Number Format: Delete Decimal Place"
msgstr ""
#: 06080000.xhp#tit.help.text
msgid "Theme Selection"
msgstr ""
#: 06080000.xhp#hd_id3153087.1.help.text
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme Selection\">Theme Selection</link>"
msgstr ""
#: 06080000.xhp#par_id3154515.2.help.text
msgid "<variable id=\"thementext\"><ahelp hid=\".uno:ChooseDesign\">Applies a formatting style to the selected cells.</ahelp></variable> The styles include font, border, and background color information."
msgstr ""
#: 06080000.xhp#par_id3155132.help.text
msgid "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145785\">Icon</alt></image>"
msgstr ""
#: 06080000.xhp#par_id3153953.4.help.text
msgid "Choose Themes"
msgstr ""
#: 06080000.xhp#par_id3147127.5.help.text
msgid "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
msgstr ""
#: 02150000.xhp#tit.help.text
msgid "Number format: Default"
msgstr ""
#: 02150000.xhp#hd_id3149182.1.help.text
msgid "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\">Number format: Default</link>"
msgstr ""
#: 02150000.xhp#par_id3163802.2.help.text
msgid "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">Applies the default number format to the selected cells.</ahelp>"
msgstr ""
#: 02150000.xhp#par_id3155922.help.text
msgid "<image src=\"cmd/sc_numberformatstandard.png\" id=\"img_id3156024\"><alt id=\"alt_id3156024\">Icon</alt></image>"
msgstr ""
#: 02150000.xhp#par_id3153361.3.help.text
msgid "Number Format: Standard"
msgstr ""
#: 02150000.xhp#par_id3154908.4.help.text
msgctxt "02150000.xhp#par_id3154908.4.help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr ""
#: 02140000.xhp#tit.help.text
msgid "Number format: Percent"
msgstr ""
#: 02140000.xhp#hd_id3156329.1.help.text
msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
msgstr ""
#: 02140000.xhp#par_id3155629.2.help.text
msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
msgstr ""
#: 02140000.xhp#par_id3153968.help.text
msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
msgstr ""
#: 02140000.xhp#par_id3151114.3.help.text
msgid "Number Format: Percent"
msgstr ""
#: 02140000.xhp#bm_id3149260.help.text
msgid "<bookmark_value>percentage calculations</bookmark_value>"
msgstr ""
#: 02140000.xhp#par_id3149260.5.help.text
msgid "You can also enter a percentage sign (%) after a number in a cell:"
msgstr ""
#: 02140000.xhp#par_id3155411.6.help.text
msgid "1% corresponds to 0.01"
msgstr ""
#: 02140000.xhp#par_id3145749.7.help.text
msgid "1 + 16% corresponds to 116% or 1.16"
msgstr ""
#: 02140000.xhp#par_id3148575.8.help.text
msgid "1%% corresponds to 0.0001"
msgstr ""
#: 02140000.xhp#par_id3159153.10.help.text
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
msgstr ""
#: 06060000.xhp#tit.help.text
msgctxt "06060000.xhp#tit.help.text"
msgid "Cancel"
msgstr ""
#: 06060000.xhp#bm_id3154514.help.text
msgid "<bookmark_value>formula bar; canceling inputs</bookmark_value><bookmark_value>functions; canceling input icon</bookmark_value>"
msgstr ""
#: 06060000.xhp#hd_id3154514.1.help.text
msgid "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">Cancel</link>"
msgstr ""
#: 06060000.xhp#par_id3153823.2.help.text
msgid "<ahelp hid=\"HID_INSWIN_CANCEL\">Clears the contents of the <emph>Input line</emph>, or cancels the changes that you made to an existing formula.</ahelp>"
msgstr ""
#: 06060000.xhp#par_id3156281.help.text
msgid "<image id=\"img_id3156422\" src=\"svx/res/nu08.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
msgstr ""
#: 06060000.xhp#par_id3153970.3.help.text
msgctxt "06060000.xhp#par_id3153970.3.help.text"
msgid "Cancel"
msgstr ""
#: 18020000.xhp#tit.help.text
msgid "Insert Cells"
msgstr ""
#: 18020000.xhp#bm_id3150275.help.text
msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
msgstr ""
#: 18020000.xhp#hd_id3150275.1.help.text
msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
msgstr ""
#: 18020000.xhp#par_id3156024.2.help.text
msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
msgstr ""
#: 18020000.xhp#par_id3150398.3.help.text
msgctxt "18020000.xhp#par_id3150398.3.help.text"
msgid "Tools bar icon:"
msgstr ""
#: 18020000.xhp#par_id3150767.5.help.text
msgctxt "18020000.xhp#par_id3150767.5.help.text"
msgid "You can select the following icons:"
msgstr ""
#: 18020000.xhp#hd_id3150439.6.help.text
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
msgstr ""
#: 18020000.xhp#hd_id3146119.7.help.text
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
msgstr ""
#: 18020000.xhp#hd_id3153190.8.help.text
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
msgstr ""
#: 18020000.xhp#hd_id3153726.9.help.text
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
msgstr ""
#: 06040000.xhp#tit.help.text
msgctxt "06040000.xhp#tit.help.text"
msgid "Function"
msgstr ""
#: 06040000.xhp#bm_id3150084.help.text
msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
msgstr ""
#: 06040000.xhp#hd_id3150084.1.help.text
msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
msgstr ""
#: 06040000.xhp#par_id3151245.2.help.text
msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
msgstr ""
#: 06040000.xhp#par_id3153360.3.help.text
msgid "This icon is only available when the <emph>Input line</emph> box is not active."
msgstr ""
#: 06040000.xhp#par_id3153770.help.text
msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
msgstr ""
#: 06040000.xhp#par_id3153951.4.help.text
msgctxt "06040000.xhp#par_id3153951.4.help.text"
msgid "Function"
msgstr ""
#: 18010000.xhp#tit.help.text
msgctxt "18010000.xhp#tit.help.text"
msgid "Insert"
msgstr ""
#: 18010000.xhp#bm_id3156329.help.text
msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
msgstr ""
#: 18010000.xhp#hd_id3156329.1.help.text
msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
msgstr ""
#: 18010000.xhp#par_id3147336.2.help.text
msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
msgstr ""
#: 18010000.xhp#par_id3148664.3.help.text
msgctxt "18010000.xhp#par_id3148664.3.help.text"
msgid "Tools bar icon:"
msgstr ""
#: 18010000.xhp#par_id3150767.help.text
msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
msgstr ""
#: 18010000.xhp#par_id3146120.4.help.text
msgctxt "18010000.xhp#par_id3146120.4.help.text"
msgid "Insert"
msgstr ""
#: 18010000.xhp#par_id3153188.6.help.text
msgctxt "18010000.xhp#par_id3153188.6.help.text"
msgid "You can select the following icons:"
msgstr ""
#: 18010000.xhp#hd_id4283883.help.text
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr ""
#: 18010000.xhp#hd_id3149410.8.help.text
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
msgstr ""
#: 18010000.xhp#hd_id3151117.7.help.text
msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
msgstr ""
#: 18010000.xhp#hd_id3633533.help.text
msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
msgstr ""
#: 18010000.xhp#par_idN10769.help.text
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
msgstr ""
#: 18010000.xhp#hd_id7581408.help.text
msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
msgstr ""
#: 02160000.xhp#tit.help.text
msgctxt "02160000.xhp#tit.help.text"
msgid "Number Format: Add Decimal Place"
msgstr ""
#: 02160000.xhp#hd_id3150275.1.help.text
msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
msgstr ""
#: 02160000.xhp#par_id3150792.2.help.text
msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
msgstr ""
#: 02160000.xhp#par_id3145787.help.text
msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
msgstr ""
#: 02160000.xhp#par_id3149262.3.help.text
msgctxt "02160000.xhp#par_id3149262.3.help.text"
msgid "Number Format: Add Decimal Place"
msgstr ""

View File

@@ -1,752 +0,0 @@
#. extracted from helpcontent2/source/text/scalc/04.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F04.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 01020000.xhp#tit.help.text
msgid "Shortcut Keys for Spreadsheets"
msgstr ""
#: 01020000.xhp#bm_id3145801.help.text
msgid "<bookmark_value>spreadsheets; shortcut keys in</bookmark_value><bookmark_value>shortcut keys; spreadsheets</bookmark_value><bookmark_value>sheet ranges; filling</bookmark_value>"
msgstr ""
#: 01020000.xhp#hd_id3145801.1.help.text
msgid "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Shortcut Keys for Spreadsheets\">Shortcut Keys for Spreadsheets</link></variable>"
msgstr ""
#: 01020000.xhp#par_id3155067.3.help.text
msgid "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift to apply the cell format of the input cell to the entire cell range."
msgstr ""
#: 01020000.xhp#par_id3153967.84.help.text
msgid "To create a matrix in which all the cells contain the same information as what you entered on the <emph>Input line</emph>, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. You cannot edit the components of the matrix."
msgstr ""
#: 01020000.xhp#par_id3166426.4.help.text
msgid "To select multiple cells in different areas of a sheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl </defaultinline></switchinline>and drag in the different areas."
msgstr ""
#: 01020000.xhp#par_id3150207.127.help.text
msgid "To select multiple sheets in a spreadsheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then click the name tabs at the lower edge of the workspace. To select only one sheet in a selection, hold down Shift, and then click the name tab of the sheet."
msgstr ""
#: 01020000.xhp#par_id3166432.129.help.text
msgid "To insert a manual line break in a cell, click in the cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
msgstr ""
#: 01020000.xhp#par_id3146978.130.help.text
msgid "To delete the contents of selected cells, press Delete. This opens the <link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link> dialog, where you choose which contents of the cell you want to delete. To delete the contents of selected cells without a dialog, press the Backspace key."
msgstr ""
#: 01020000.xhp#hd_id3145386.85.help.text
msgid "Navigating in Spreadsheets"
msgstr ""
#: 01020000.xhp#hd_id3149407.86.help.text
msgctxt "01020000.xhp#hd_id3149407.86.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3153815.87.help.text
msgctxt "01020000.xhp#par_id3153815.87.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3146871.88.help.text
msgctxt "01020000.xhp#hd_id3146871.88.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
msgstr ""
#: 01020000.xhp#par_id3159093.89.help.text
msgid "Moves the cursor to the first cell in the sheet (A1)."
msgstr ""
#: 01020000.xhp#hd_id3145073.90.help.text
msgctxt "01020000.xhp#hd_id3145073.90.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
msgstr ""
#: 01020000.xhp#par_id3153283.91.help.text
msgid "Moves the cursor to the last cell on the sheet that contains data."
msgstr ""
#: 01020000.xhp#hd_id3149127.92.help.text
msgctxt "01020000.xhp#hd_id3149127.92.help.text"
msgid "Home"
msgstr ""
#: 01020000.xhp#par_id3159205.93.help.text
msgid "Moves the cursor to the first cell of the current row."
msgstr ""
#: 01020000.xhp#hd_id3149897.94.help.text
msgctxt "01020000.xhp#hd_id3149897.94.help.text"
msgid "End"
msgstr ""
#: 01020000.xhp#par_id3155095.95.help.text
msgid "Moves the cursor to the last cell of the current row."
msgstr ""
#: 01020000.xhp#hd_id3143220.101.help.text
msgctxt "01020000.xhp#hd_id3143220.101.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
msgstr ""
#: 01020000.xhp#par_id3154766.102.help.text
msgid "Moves the cursor to the left edge of the current data range. If the column to the left of the cell that contains the cursor is empty, the cursor moves to the next column to the left that contains data."
msgstr ""
#: 01020000.xhp#hd_id3153554.103.help.text
msgctxt "01020000.xhp#hd_id3153554.103.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
msgstr ""
#: 01020000.xhp#par_id3155593.104.help.text
msgid "Moves the cursor to the right edge of the current data range. If the column to the right of the cell that contains the cursor is empty, the cursor moves to the next column to the right that contains data."
msgstr ""
#: 01020000.xhp#hd_id3149317.105.help.text
msgctxt "01020000.xhp#hd_id3149317.105.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
msgstr ""
#: 01020000.xhp#par_id3153076.106.help.text
msgid "Moves the cursor to the top edge of the current data range. If the row above the cell that contains the cursor is empty, the cursor moves up to the next row that contains data."
msgstr ""
#: 01020000.xhp#hd_id3147250.107.help.text
msgctxt "01020000.xhp#hd_id3147250.107.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
msgstr ""
#: 01020000.xhp#par_id3149054.108.help.text
msgid "Moves the cursor to the bottom edge of the current data range. If the row below the cell that contains the cursor is empty, the cursor moves down to the next row that contains data."
msgstr ""
#: 01020000.xhp#hd_id3148744.184.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow"
msgstr ""
#: 01020000.xhp#par_id3159258.185.help.text
msgid "Selects all cells containing data from the current cell to the end of the continuous range of data cells, in the direction of the arrow pressed. If used to select rows and columns together, a rectangular cell range is selected."
msgstr ""
#: 01020000.xhp#hd_id3156399.109.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
msgstr ""
#: 01020000.xhp#par_id3145236.110.help.text
msgid "Moves one sheet to the left."
msgstr ""
#: 01020000.xhp#par_id3149725.131.help.text
msgid "In the page preview: Moves to the previous print page."
msgstr ""
#: 01020000.xhp#hd_id3147411.111.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
msgstr ""
#: 01020000.xhp#par_id3150372.112.help.text
msgid "Moves one sheet to the right."
msgstr ""
#: 01020000.xhp#par_id3159120.132.help.text
msgid "In the page preview: Moves to the next print page."
msgstr ""
#: 01020000.xhp#hd_id3146885.113.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + Page Up"
msgstr ""
#: 01020000.xhp#par_id3152976.114.help.text
msgid "Moves one screen to the left."
msgstr ""
#: 01020000.xhp#hd_id3149013.115.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + Page Down"
msgstr ""
#: 01020000.xhp#par_id3150477.116.help.text
msgid "Moves one screen page to the right."
msgstr ""
#: 01020000.xhp#par_idN10AFC.help.text
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
msgstr ""
#: 01020000.xhp#par_idN10B00.help.text
msgid "Adds the previous sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the previous sheet. Makes the previous sheet the current sheet."
msgstr ""
#: 01020000.xhp#par_idN10B03.help.text
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
msgstr ""
#: 01020000.xhp#par_idN10B07.help.text
msgid "Adds the next sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the next sheet. Makes the next sheet the current sheet."
msgstr ""
#: 01020000.xhp#hd_id3145826.96.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + *"
msgstr ""
#: 01020000.xhp#par_id3148882.97.help.text
msgid "where (*) is the multiplication sign on the numeric key pad"
msgstr ""
#: 01020000.xhp#par_id3154847.98.help.text
msgid "Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns."
msgstr ""
#: 01020000.xhp#hd_id3151233.180.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + /"
msgstr ""
#: 01020000.xhp#par_id3149949.181.help.text
msgid "where (/) is the division sign on the numeric key pad"
msgstr ""
#: 01020000.xhp#par_id3150144.182.help.text
msgid "Selects the matrix formula range that contains the cursor."
msgstr ""
#: 01020000.xhp#par_id8163396.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Plus key"
msgstr ""
#: 01020000.xhp#par_id9901425.help.text
msgid "Insert cells (as in menu Insert - Cells)"
msgstr ""
#: 01020000.xhp#par_id3389080.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Minus key"
msgstr ""
#: 01020000.xhp#par_id5104220.help.text
msgid "Delete cells (as in menu Edit - Delete Cells)"
msgstr ""
#: 01020000.xhp#hd_id3155825.99.help.text
msgid "Enter (in a selected range)"
msgstr ""
#: 01020000.xhp#par_id3153935.100.help.text
msgid "Moves the cursor down one cell in a selected range. To specify the direction that the cursor moves, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - General</emph>."
msgstr ""
#: 01020000.xhp#par_id5961180.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl </defaultinline></switchinline> + ` (see note below this table)"
msgstr ""
#: 01020000.xhp#par_id6407055.help.text
msgid "Displays or hides the formulas instead of the values in all cells."
msgstr ""
#: 01020000.xhp#par_id8070314.help.text
msgid "The ` key is located next to the \"1\" key on most English keyboards. If your keyboard does not show this key, you can assign another key: Choose Tools - Customize, click the Keyboard tab. Select the \"View\" category and the \"Toggle Formula\" function."
msgstr ""
#: 01020000.xhp#hd_id3148756.5.help.text
msgid "Function Keys Used in Spreadsheets"
msgstr ""
#: 01020000.xhp#hd_id3148581.6.help.text
msgctxt "01020000.xhp#hd_id3148581.6.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3152790.8.help.text
msgctxt "01020000.xhp#par_id3152790.8.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3154809.139.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F1"
msgstr ""
#: 01020000.xhp#par_id3145140.138.help.text
msgid "Displays the comment that is attached to the current cell"
msgstr ""
#: 01020000.xhp#hd_id3146142.9.help.text
msgid "F2"
msgstr ""
#: 01020000.xhp#par_id3148568.10.help.text
msgid "Switches to Edit mode and places the cursor at the end of the contents of the current cell. Press again to exit Edit mode."
msgstr ""
#: 01020000.xhp#par_id3153108.179.help.text
msgid "If the cursor is in an input box in a dialog that has a <emph>Minimize </emph>button, the dialog is hidden and the input box remains visible. Press F2 again to show the whole dialog."
msgstr ""
#: 01020000.xhp#hd_id3146850.11.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr ""
#: 01020000.xhp#par_id3145162.12.help.text
msgid "Opens the Function Wizard."
msgstr ""
#: 01020000.xhp#hd_id3147366.137.help.text
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr ""
#: 01020000.xhp#par_id3155929.136.help.text
msgid "Moves the cursor to the <emph>Input line</emph> where you can enter a formula for the current cell."
msgstr ""
#: 01020000.xhp#hd_id3153730.15.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr ""
#: 01020000.xhp#par_id3145245.16.help.text
msgid "Opens the <emph>Define Names</emph> dialog."
msgstr ""
#: 01020000.xhp#hd_id3148768.17.help.text
msgid "F4"
msgstr ""
#: 01020000.xhp#par_id3153047.18.help.text
msgid "Shows or Hides the Database explorer."
msgstr ""
#: 01020000.xhp#hd_id3145353.19.help.text
msgid "Shift+F4"
msgstr ""
#: 01020000.xhp#par_id3155620.20.help.text
msgid "Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field."
msgstr ""
#: 01020000.xhp#hd_id3156063.21.help.text
msgid "F5"
msgstr ""
#: 01020000.xhp#par_id3149540.22.help.text
msgid "Shows or hides the <emph>Navigator</emph>."
msgstr ""
#: 01020000.xhp#hd_id3148392.23.help.text
msgid "Shift+F5"
msgstr ""
#: 01020000.xhp#par_id3150268.24.help.text
msgid "Traces dependents."
msgstr ""
#: 01020000.xhp#hd_id3148430.27.help.text
msgid "Shift+F7"
msgstr ""
#: 01020000.xhp#par_id3153179.28.help.text
msgid "Traces precedents."
msgstr ""
#: 01020000.xhp#hd_id3150568.135.help.text
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5"
msgstr ""
#: 01020000.xhp#par_id3153551.134.help.text
msgid "Moves the cursor from the <emph>Input line </emph>to the <emph>Sheet area</emph> box."
msgstr ""
#: 01020000.xhp#hd_id3155368.29.help.text
msgid "F7"
msgstr ""
#: 01020000.xhp#par_id3154871.30.help.text
msgid "Checks spelling in the current sheet."
msgstr ""
#: 01020000.xhp#hd_id3150688.31.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
msgstr ""
#: 01020000.xhp#par_id3149781.32.help.text
msgid "Opens the Thesaurus if the current cell contains text."
msgstr ""
#: 01020000.xhp#hd_id3156257.33.help.text
msgid "F8"
msgstr ""
#: 01020000.xhp#par_id3147482.34.help.text
msgid "Turns additional selection mode on or off. In this mode, you can use the arrow keys to extend the selection. You can also click in another cell to extend the selection."
msgstr ""
#: 01020000.xhp#hd_id3154313.37.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
msgstr ""
#: 01020000.xhp#par_id3150385.38.help.text
msgid "Highlights cells containing values."
msgstr ""
#: 01020000.xhp#hd_id3152479.39.help.text
msgid "F9"
msgstr ""
#: 01020000.xhp#par_id3163827.40.help.text
msgid "Recalculates changed formulas in the current sheet."
msgstr ""
#: 01020000.xhp#par_id9027069.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F9"
msgstr ""
#: 01020000.xhp#par_id1729178.help.text
msgid "Recalculates all formulas in all sheets."
msgstr ""
#: 01020000.xhp#hd_id3156300.41.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
msgstr ""
#: 01020000.xhp#par_id3154817.42.help.text
msgid "Updates the selected chart."
msgstr ""
#: 01020000.xhp#hd_id3149279.46.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
msgstr ""
#: 01020000.xhp#par_id3150967.47.help.text
msgid "Opens the <emph>Styles and Formatting</emph> window where you can apply a formatting style to the contents of the cell or to the current sheet."
msgstr ""
#: 01020000.xhp#hd_id3156308.48.help.text
msgid "Shift+F11"
msgstr ""
#: 01020000.xhp#par_id3145209.49.help.text
msgid "Creates a document template."
msgstr ""
#: 01020000.xhp#hd_id3147622.50.help.text
msgid "Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+F11"
msgstr ""
#: 01020000.xhp#par_id3153215.51.help.text
msgid "Updates the templates."
msgstr ""
#: 01020000.xhp#hd_id3150760.52.help.text
msgid "F12"
msgstr ""
#: 01020000.xhp#par_id3156321.53.help.text
msgid "Groups the selected data range."
msgstr ""
#: 01020000.xhp#hd_id3146859.54.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
msgstr ""
#: 01020000.xhp#par_id3156128.55.help.text
msgid "Ungroups the selected data range."
msgstr ""
#: 01020000.xhp#hd_id3151264.117.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + Down Arrow"
msgstr ""
#: 01020000.xhp#par_id3153155.118.help.text
msgid "Increases the height of current row."
msgstr ""
#: 01020000.xhp#hd_id3151297.119.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + Up Arrow"
msgstr ""
#: 01020000.xhp#par_id3155849.120.help.text
msgid "Decreases the height of current row."
msgstr ""
#: 01020000.xhp#hd_id3155997.121.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + Right Arrow"
msgstr ""
#: 01020000.xhp#par_id3150256.122.help.text
msgid "Increases the width of the current column."
msgstr ""
#: 01020000.xhp#hd_id3154046.123.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + Left Arrow"
msgstr ""
#: 01020000.xhp#par_id3150155.124.help.text
msgid "Decreases the width of the current column."
msgstr ""
#: 01020000.xhp#hd_id3149293.125.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+Arrow Key"
msgstr ""
#: 01020000.xhp#par_id3159180.126.help.text
msgid "Optimizes the column width or row height based on the current cell."
msgstr ""
#: 01020000.xhp#hd_id3156013.56.help.text
msgid "Formatting Cells Using Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3153979.57.help.text
msgid "The following cell formats can be applied with the keyboard:"
msgstr ""
#: 01020000.xhp#hd_id3147492.58.help.text
msgctxt "01020000.xhp#hd_id3147492.58.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3154305.60.help.text
msgctxt "01020000.xhp#par_id3154305.60.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3145669.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+1 (not on the number pad)"
msgstr ""
#: 01020000.xhp#par_id3149197.help.text
msgid "Open Format Cells dialog"
msgstr ""
#: 01020000.xhp#hd_id3145668.61.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+1 (not on the number pad)"
msgstr ""
#: 01020000.xhp#par_id3149196.63.help.text
msgid "Two decimal places, thousands separator"
msgstr ""
#: 01020000.xhp#hd_id3155331.64.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+2 (not on the number pad)"
msgstr ""
#: 01020000.xhp#par_id3150120.66.help.text
msgid "Standard exponential format"
msgstr ""
#: 01020000.xhp#hd_id3154932.67.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+3 (not on the number pad)"
msgstr ""
#: 01020000.xhp#par_id3148822.69.help.text
msgid "Standard date format"
msgstr ""
#: 01020000.xhp#hd_id3148829.70.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+4 (not on the number pad)"
msgstr ""
#: 01020000.xhp#par_id3159152.72.help.text
msgid "Standard currency format"
msgstr ""
#: 01020000.xhp#hd_id3150776.73.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+5 (not on the number pad)"
msgstr ""
#: 01020000.xhp#par_id3148800.75.help.text
msgid "Standard percentage format (two decimal places)"
msgstr ""
#: 01020000.xhp#hd_id3158407.76.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+6 (not on the number pad)"
msgstr ""
#: 01020000.xhp#par_id3148444.78.help.text
msgid "Standard format"
msgstr ""
#: 01020000.xhp#hd_id3154205.178.help.text
msgid "Using the pivot table"
msgstr ""
#: 01020000.xhp#par_idN11326.help.text
msgid "Keys"
msgstr ""
#: 01020000.xhp#par_idN1132C.help.text
msgid "Effect"
msgstr ""
#: 01020000.xhp#hd_id3153577.177.help.text
msgid "Tab"
msgstr ""
#: 01020000.xhp#par_id3147511.176.help.text
msgid "Changes the focus by moving forwards through the areas and buttons of the dialog."
msgstr ""
#: 01020000.xhp#hd_id3154266.175.help.text
msgid "Shift+Tab"
msgstr ""
#: 01020000.xhp#par_id3155362.174.help.text
msgid "Changes the focus by moving backwards through the areas and buttons of the dialog."
msgstr ""
#: 01020000.xhp#hd_id3148484.173.help.text
msgid "up arrow"
msgstr ""
#: 01020000.xhp#par_id3149152.172.help.text
msgid "Moves the focus up one item in the current dialog area."
msgstr ""
#: 01020000.xhp#hd_id3154273.171.help.text
msgid "down arrow"
msgstr ""
#: 01020000.xhp#par_id3158424.170.help.text
msgid "Moves the focus down one item in the current dialog area."
msgstr ""
#: 01020000.xhp#hd_id3148912.169.help.text
msgid "left arrow"
msgstr ""
#: 01020000.xhp#par_id3153238.168.help.text
msgid "Moves the focus one item to the left in the current dialog area."
msgstr ""
#: 01020000.xhp#hd_id3150712.167.help.text
msgid "right arrow"
msgstr ""
#: 01020000.xhp#par_id3166458.166.help.text
msgid "Moves the focus one item to the right in the current dialog area."
msgstr ""
#: 01020000.xhp#hd_id3146947.165.help.text
msgctxt "01020000.xhp#hd_id3146947.165.help.text"
msgid "Home"
msgstr ""
#: 01020000.xhp#par_id3153742.164.help.text
msgid "Selects the first item in the current dialog area."
msgstr ""
#: 01020000.xhp#hd_id3153387.163.help.text
msgctxt "01020000.xhp#hd_id3153387.163.help.text"
msgid "End"
msgstr ""
#: 01020000.xhp#par_id3153684.162.help.text
msgid "Selects the last item in the current dialog area."
msgstr ""
#: 01020000.xhp#hd_id3155584.161.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Row\""
msgstr ""
#: 01020000.xhp#par_id3152949.160.help.text
msgid "Copies or moves the current field into the \"Row\" area."
msgstr ""
#: 01020000.xhp#hd_id3159269.159.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Column\""
msgstr ""
#: 01020000.xhp#par_id3149968.158.help.text
msgid "Copies or moves the current field into the \"Column\" area."
msgstr ""
#: 01020000.xhp#hd_id3149923.157.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Data\""
msgstr ""
#: 01020000.xhp#par_id3148649.156.help.text
msgid "Copies or moves the current field into the \"Data\" area."
msgstr ""
#: 01020000.xhp#hd_id3149418.155.help.text
msgctxt "01020000.xhp#hd_id3149418.155.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
msgstr ""
#: 01020000.xhp#par_id3154335.154.help.text
msgid "Moves the current field up one place."
msgstr ""
#: 01020000.xhp#hd_id3148462.153.help.text
msgctxt "01020000.xhp#hd_id3148462.153.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
msgstr ""
#: 01020000.xhp#par_id3154603.152.help.text
msgid "Moves the current field down one place."
msgstr ""
#: 01020000.xhp#hd_id3145373.151.help.text
msgctxt "01020000.xhp#hd_id3145373.151.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
msgstr ""
#: 01020000.xhp#par_id3151125.150.help.text
msgid "Moves the current field one place to the left."
msgstr ""
#: 01020000.xhp#hd_id3150423.149.help.text
msgctxt "01020000.xhp#hd_id3150423.149.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
msgstr ""
#: 01020000.xhp#par_id3153316.148.help.text
msgid "Moves the current field one place to the right."
msgstr ""
#: 01020000.xhp#hd_id3149519.147.help.text
msgctxt "01020000.xhp#hd_id3149519.147.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
msgstr ""
#: 01020000.xhp#par_id3149237.146.help.text
msgid "Moves the current field to the first place."
msgstr ""
#: 01020000.xhp#hd_id3145310.145.help.text
msgctxt "01020000.xhp#hd_id3145310.145.help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
msgstr ""
#: 01020000.xhp#par_id3153942.144.help.text
msgid "Moves the current field to the last place."
msgstr ""
#: 01020000.xhp#hd_id3149933.143.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+O"
msgstr ""
#: 01020000.xhp#par_id3154798.142.help.text
msgid "Displays the options for the current field."
msgstr ""
#: 01020000.xhp#hd_id3148418.141.help.text
msgid "Delete"
msgstr ""
#: 01020000.xhp#par_id3159251.140.help.text
msgid "Removes the current field from the area."
msgstr ""
#: 01020000.xhp#par_id3150630.183.help.text
msgid "<link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys in $[officename]\">Shortcut keys in $[officename]</link>"
msgstr ""

View File

@@ -1,546 +0,0 @@
#. extracted from helpcontent2/source/text/scalc/05.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F05.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: empty_cells.xhp#tit.help.text
msgid "Handling of Empty Cells"
msgstr ""
#: empty_cells.xhp#bm_id3146799.help.text
msgid "<bookmark_value>empty cells;handling of</bookmark_value>"
msgstr ""
#: empty_cells.xhp#hd_id1502121.help.text
msgid "<variable id=\"empty_cells\"><link href=\"text/scalc/05/empty_cells.xhp\">Handling of Empty Cells</link></variable>"
msgstr ""
#: empty_cells.xhp#par_id8266853.help.text
msgid "In older versions of the software, empty cells were forced to numeric 0 in some contexts and to empty string in others, except in direct comparison where =A1=0 and =A1=\"\" both resulted in TRUE if A1 was empty. Emptiness now is inherited until used, so both =VLOOKUP(...)=0 and =VLOOKUP(...)=\"\" give TRUE if the lookup resulted in an empty cell being returned. "
msgstr ""
#: empty_cells.xhp#par_id2733542.help.text
msgid "A simple reference to an empty cell is still displayed as numeric 0 but is not necessarily of type numeric anymore, so also comparisons with the referencing cell work as expected. "
msgstr ""
#: empty_cells.xhp#par_id4238715.help.text
msgid "For the following examples, A1 contains a number, B1 is empty, C1 contains the reference to B1:"
msgstr ""
#: empty_cells.xhp#par_id8277230.help.text
msgid "A1: 1 B1: <empty> C1: =B1 (displays 0)"
msgstr ""
#: empty_cells.xhp#par_id4086428.help.text
msgctxt "empty_cells.xhp#par_id4086428.help.text"
msgid "=B1=0 => TRUE"
msgstr ""
#: empty_cells.xhp#par_id9024628.help.text
msgid "=B1=\"\" => TRUE"
msgstr ""
#: empty_cells.xhp#par_id3067110.help.text
msgid "=C1=0 => TRUE"
msgstr ""
#: empty_cells.xhp#par_id8841822.help.text
msgid "=C1=\"\" => TRUE (previously was FALSE)"
msgstr ""
#: empty_cells.xhp#par_id4077578.help.text
msgid "=ISNUMBER(B1) => FALSE"
msgstr ""
#: empty_cells.xhp#par_id9094515.help.text
msgid "=ISNUMBER(C1) => FALSE (previously was TRUE)"
msgstr ""
#: empty_cells.xhp#par_id396740.help.text
msgid "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => FALSE (B1)"
msgstr ""
#: empty_cells.xhp#par_id3859675.help.text
msgid "=ISNUMBER(VLOOKUP(1;A1:C1;3)) => FALSE (C1, previously was TRUE)"
msgstr ""
#: empty_cells.xhp#par_id402233.help.text
msgctxt "empty_cells.xhp#par_id402233.help.text"
msgid "=ISTEXT(B1) => FALSE"
msgstr ""
#: empty_cells.xhp#par_id1623889.help.text
msgctxt "empty_cells.xhp#par_id1623889.help.text"
msgid "=ISTEXT(C1) => FALSE"
msgstr ""
#: empty_cells.xhp#par_id7781914.help.text
msgid "=ISTEXT(VLOOKUP(1;A1:C1;2)) => FALSE (B1, previously was TRUE)"
msgstr ""
#: empty_cells.xhp#par_id300912.help.text
msgid "=ISTEXT(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
msgstr ""
#: empty_cells.xhp#par_id9534592.help.text
msgid "=ISBLANK(B1) => TRUE"
msgstr ""
#: empty_cells.xhp#par_id4969328.help.text
msgid "=ISBLANK(C1) => FALSE"
msgstr ""
#: empty_cells.xhp#par_id9635914.help.text
msgid "=ISBLANK(VLOOKUP(1;A1:C1;2)) => TRUE (B1, previously was FALSE)"
msgstr ""
#: empty_cells.xhp#par_id2476577.help.text
msgid "=ISBLANK(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
msgstr ""
#: empty_cells.xhp#par_id4217047.help.text
msgid "Note that Microsoft Excel behaves different and always returns a number as the result of a reference to an empty cell or a formula cell with the result of an empty cell. For example:"
msgstr ""
#: empty_cells.xhp#par_id2629474.help.text
msgid "A1: <empty>"
msgstr ""
#: empty_cells.xhp#par_id8069704.help.text
msgid "B1: =A1 => displays 0, but is just a reference to an empty cell"
msgstr ""
#: empty_cells.xhp#par_id4524674.help.text
msgid "=ISNUMBER(A1) => FALSE"
msgstr ""
#: empty_cells.xhp#par_id4396801.help.text
msgid "=ISTEXT(A1) => FALSE"
msgstr ""
#: empty_cells.xhp#par_id5293740.help.text
msgid "=A1=0 => TRUE"
msgstr ""
#: empty_cells.xhp#par_id7623828.help.text
msgid "=A1=\"\" => TRUE"
msgstr ""
#: empty_cells.xhp#par_id2861720.help.text
msgid "=ISNUMBER(B1) => FALSE (MS-Excel: TRUE)"
msgstr ""
#: empty_cells.xhp#par_id9604480.help.text
msgctxt "empty_cells.xhp#par_id9604480.help.text"
msgid "=ISTEXT(B1) => FALSE"
msgstr ""
#: empty_cells.xhp#par_id2298959.help.text
msgctxt "empty_cells.xhp#par_id2298959.help.text"
msgid "=B1=0 => TRUE"
msgstr ""
#: empty_cells.xhp#par_id4653767.help.text
msgid "=B1=\"\" => TRUE (MS-Excel: FALSE)"
msgstr ""
#: empty_cells.xhp#par_id8801538.help.text
msgid "C1: =VLOOKUP(...) with empty cell result => displays empty (MS-Excel: displays 0)"
msgstr ""
#: empty_cells.xhp#par_id6746421.help.text
msgid "=ISNUMBER(VLOOKUP(...)) => FALSE"
msgstr ""
#: empty_cells.xhp#par_id4876247.help.text
msgid "=ISTEXT(VLOOKUP(...)) => FALSE"
msgstr ""
#: empty_cells.xhp#par_id7458723.help.text
msgid "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)"
msgstr ""
#: empty_cells.xhp#par_id2753379.help.text
msgctxt "empty_cells.xhp#par_id2753379.help.text"
msgid "=ISTEXT(C1) => FALSE"
msgstr ""
#: 02140000.xhp#tit.help.text
msgid "Error Codes in %PRODUCTNAME Calc"
msgstr ""
#: 02140000.xhp#bm_id3146797.help.text
msgid "<bookmark_value>error codes;list of</bookmark_value>"
msgstr ""
#: 02140000.xhp#hd_id3146797.1.help.text
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">Error Codes in <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
msgstr ""
#: 02140000.xhp#par_id3150275.2.help.text
msgid "The following table is an overview of the error messages for <item type=\"productname\">%PRODUCTNAME</item> Calc. If the error occurs in the cell that contains the cursor, the error message is displayed on the <emph>Status Bar</emph>."
msgstr ""
#: 02140000.xhp#par_id3153968.3.help.text
msgid "Error Code"
msgstr ""
#: 02140000.xhp#par_id3125863.4.help.text
msgid "Message"
msgstr ""
#: 02140000.xhp#par_id3151112.5.help.text
msgid "Explanation"
msgstr ""
#: 02140000.xhp#par_id1668467.help.text
msgid "###"
msgstr ""
#: 02140000.xhp#bm_id0202201010205429.help.text
msgid "<bookmark_value>### error message</bookmark_value>"
msgstr ""
#: 02140000.xhp#par_id3165766.13.help.text
msgid "none"
msgstr ""
#: 02140000.xhp#par_id3169266.14.help.text
msgid "The cell is not wide enough to display the contents."
msgstr ""
#: 02140000.xhp#par_id3153188.6.help.text
msgid "501"
msgstr ""
#: 02140000.xhp#par_id3148645.7.help.text
msgid "Invalid character"
msgstr ""
#: 02140000.xhp#par_id3155854.8.help.text
msgid "Character in a formula is not valid."
msgstr ""
#: 02140000.xhp#par_id3145253.9.help.text
msgid "502"
msgstr ""
#: 02140000.xhp#par_id3147397.10.help.text
msgid "Invalid argument"
msgstr ""
#: 02140000.xhp#par_id3153160.11.help.text
msgid "Function argument is not valid, for example, a negative number for the root function."
msgstr ""
#: 02140000.xhp#par_id3154015.12.help.text
msgid "503"
msgstr ""
#: 02140000.xhp#par_id1628467.help.text
msgid "#NUM!"
msgstr ""
#: 02140000.xhp#par_id3155766.13.help.text
msgid "Invalid floating point operation"
msgstr ""
#: 02140000.xhp#par_id3159266.14.help.text
msgid "A calculation results in an overflow of the defined value range."
msgstr ""
#: 02140000.xhp#par_id3149258.15.help.text
msgid "504"
msgstr ""
#: 02140000.xhp#par_id3147344.16.help.text
msgid "Parameter list error"
msgstr ""
#: 02140000.xhp#par_id3147003.17.help.text
msgid "Function parameter is not valid, for example, text instead of a number, or a domain reference instead of cell reference."
msgstr ""
#: 02140000.xhp#par_id3154532.27.help.text
msgid "508"
msgstr ""
#: 02140000.xhp#par_id3150107.28.help.text
msgid "Error: Pair missing"
msgstr ""
#: 02140000.xhp#par_id3149129.29.help.text
msgid "Missing bracket, for example, closing brackets, but no opening brackets"
msgstr ""
#: 02140000.xhp#par_id3149895.30.help.text
msgid "509"
msgstr ""
#: 02140000.xhp#par_id3155097.31.help.text
msgid "Missing operator"
msgstr ""
#: 02140000.xhp#par_id3154649.32.help.text
msgid "Operator is missing, for example, \"=2(3+4) * \", where the operator between \"2\" and \"(\" is missing."
msgstr ""
#: 02140000.xhp#par_id3153813.33.help.text
msgid "510"
msgstr ""
#: 02140000.xhp#par_id3153483.34.help.text
msgctxt "02140000.xhp#par_id3153483.34.help.text"
msgid "Missing variable"
msgstr ""
#: 02140000.xhp#par_id3154710.35.help.text
msgid "Variable is missing, for example when two operators are together \"=1+*2\"."
msgstr ""
#: 02140000.xhp#par_id3154739.36.help.text
msgid "511"
msgstr ""
#: 02140000.xhp#par_id3145112.37.help.text
msgctxt "02140000.xhp#par_id3145112.37.help.text"
msgid "Missing variable"
msgstr ""
#: 02140000.xhp#par_id3145319.38.help.text
msgid "Function requires more variables than are provided, for example, AND() and OR()."
msgstr ""
#: 02140000.xhp#par_id3149050.39.help.text
msgid "512"
msgstr ""
#: 02140000.xhp#par_id3150393.40.help.text
msgid "Formula overflow"
msgstr ""
#: 02140000.xhp#par_id3159259.41.help.text
msgid " <emph>Compiler:</emph> the total number of internal tokens, (that is, operators, variables, brackets) in the formula exceeds 512."
msgstr ""
#: 02140000.xhp#par_id3150537.42.help.text
msgid "513"
msgstr ""
#: 02140000.xhp#par_id3147412.43.help.text
msgid "String overflow"
msgstr ""
#: 02140000.xhp#par_id3145635.44.help.text
msgid " <emph>Compiler:</emph> an identifier in the formula exceeds 64 KB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 KB in size."
msgstr ""
#: 02140000.xhp#par_id3149147.45.help.text
msgid "514"
msgstr ""
#: 02140000.xhp#par_id3157904.46.help.text
msgctxt "02140000.xhp#par_id3157904.46.help.text"
msgid "Internal overflow"
msgstr ""
#: 02140000.xhp#par_id3149352.47.help.text
msgid "Sort operation attempted on too much numerical data (max. 100000) or a calculation stack overflow."
msgstr ""
#: 02140000.xhp#par_id3154841.51.help.text
msgid "516"
msgstr ""
#: 02140000.xhp#par_id3147423.52.help.text
msgctxt "02140000.xhp#par_id3147423.52.help.text"
msgid "Internal syntax error"
msgstr ""
#: 02140000.xhp#par_id3148437.53.help.text
msgid "Matrix is expected on the calculation stack, but is not available."
msgstr ""
#: 02140000.xhp#par_id3155261.54.help.text
msgid "517"
msgstr ""
#: 02140000.xhp#par_id3153934.55.help.text
msgctxt "02140000.xhp#par_id3153934.55.help.text"
msgid "Internal syntax error"
msgstr ""
#: 02140000.xhp#par_id3149507.56.help.text
msgid "Unknown code, for example, a document with a newer function is loaded in an older version that does not contain the function."
msgstr ""
#: 02140000.xhp#par_id3148585.57.help.text
msgid "518"
msgstr ""
#: 02140000.xhp#par_id3149189.58.help.text
msgctxt "02140000.xhp#par_id3149189.58.help.text"
msgid "Internal syntax error"
msgstr ""
#: 02140000.xhp#par_id3149545.59.help.text
msgid "Variable is not available"
msgstr ""
#: 02140000.xhp#par_id3146142.60.help.text
msgid "519"
msgstr ""
#: 02140000.xhp#par_id8169499.help.text
msgid "#VALUE"
msgstr ""
#: 02140000.xhp#par_id3155954.61.help.text
msgid "No result (#VALUE is in the cell rather than Err:519!)"
msgstr ""
#: 02140000.xhp#par_id3153108.62.help.text
msgid "The formula yields a value that does not correspond to the definition; or a cell that is referenced in the formula contains text instead of a number."
msgstr ""
#: 02140000.xhp#par_id3150338.63.help.text
msgid "520"
msgstr ""
#: 02140000.xhp#par_id3150017.64.help.text
msgctxt "02140000.xhp#par_id3150017.64.help.text"
msgid "Internal syntax error"
msgstr ""
#: 02140000.xhp#par_id3148758.65.help.text
msgid "Compiler creates an unknown compiler code."
msgstr ""
#: 02140000.xhp#par_id3154324.66.help.text
msgid "521"
msgstr ""
#: 02140000.xhp#par_id3153737.67.help.text
msgctxt "02140000.xhp#par_id3153737.67.help.text"
msgid "Internal syntax error"
msgstr ""
#: 02140000.xhp#par_id3155436.68.help.text
msgid "No result."
msgstr ""
#: 02140000.xhp#par_id3153045.69.help.text
msgid "522"
msgstr ""
#: 02140000.xhp#par_id3149008.70.help.text
msgid "Circular reference"
msgstr ""
#: 02140000.xhp#par_id3157972.71.help.text
msgid "Formula refers directly or indirectly to itself and the <emph>Iterations</emph> option is not set under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate."
msgstr ""
#: 02140000.xhp#par_id3149538.72.help.text
msgid "523"
msgstr ""
#: 02140000.xhp#par_id3150930.73.help.text
msgid "The calculation procedure does not converge"
msgstr ""
#: 02140000.xhp#par_id3150272.74.help.text
msgid "Function missed a targeted value, or <link href=\"text/shared/optionen/01060500.xhp\">iterative references</link> do not reach the minimum change within the maximum steps that are set."
msgstr ""
#: 02140000.xhp#par_id3153544.75.help.text
msgid "524"
msgstr ""
#: 02140000.xhp#par_id2129886.help.text
msgid "#REF"
msgstr ""
#: 02140000.xhp#bm_id3154634.help.text
msgid "<bookmark_value>invalid references; error messages</bookmark_value> <bookmark_value>error messages;invalid references</bookmark_value> <bookmark_value>#REF error message</bookmark_value>"
msgstr ""
#: 02140000.xhp#par_id3154634.76.help.text
msgid "invalid references (instead of Err:524 cell contains #REF)"
msgstr ""
#: 02140000.xhp#par_id3147539.77.help.text
msgid " <emph>Compiler:</emph> a column or row description name could not be resolved. <emph>Interpreter:</emph> in a formula, the column, row, or sheet that contains a referenced cell is missing."
msgstr ""
#: 02140000.xhp#par_id3155984.78.help.text
msgid "525"
msgstr ""
#: 02140000.xhp#par_id4737083.help.text
msgid "#NAME?"
msgstr ""
#: 02140000.xhp#bm_id3148428.help.text
msgid "<bookmark_value>invalid names; error messages</bookmark_value> <bookmark_value>#NAME error message</bookmark_value>"
msgstr ""
#: 02140000.xhp#par_id3148428.79.help.text
msgid "invalid names (instead of Err:525 cell contains #NAME?)"
msgstr ""
#: 02140000.xhp#par_id3156259.80.help.text
msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found."
msgstr ""
#: 02140000.xhp#par_id3153720.81.help.text
msgid "526"
msgstr ""
#: 02140000.xhp#par_id3154315.82.help.text
msgctxt "02140000.xhp#par_id3154315.82.help.text"
msgid "Internal syntax error"
msgstr ""
#: 02140000.xhp#par_id3083286.83.help.text
msgid "Obsolete, no longer used, but could come from old documents if the result is a formula from a domain."
msgstr ""
#: 02140000.xhp#par_id3152483.84.help.text
msgid "527"
msgstr ""
#: 02140000.xhp#par_id3152966.85.help.text
msgctxt "02140000.xhp#par_id3152966.85.help.text"
msgid "Internal overflow"
msgstr ""
#: 02140000.xhp#par_id3149709.86.help.text
msgid " <emph>Interpreter: </emph>References, such as when a cell references a cell, are too encapsulated."
msgstr ""
#: 02140000.xhp#par_id5324564.help.text
msgid "532"
msgstr ""
#: 02140000.xhp#par_id3623462.help.text
msgid "#DIV/0!"
msgstr ""
#: 02140000.xhp#par_id7941831.help.text
msgid "Division by zero"
msgstr ""
#: 02140000.xhp#par_id5844294.help.text
msgid "Division operator / if the denominator is 0<br/>Some more functions return this error, for example:<br/>VARP with less than 1 argument<br/>STDEVP with less than 1 argument<br/>VAR with less than 2 arguments<br/>STDEV with less than 2 arguments<br/>STANDARDIZE with stdev=0<br/>NORMDIST with stdev=0"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,398 +0,0 @@
#. extracted from helpcontent2/source/text/schart.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fschart.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: main0000.xhp#tit.help.text
msgid "Charts in $[officename]"
msgstr ""
#: main0000.xhp#bm_id3148664.help.text
msgid "<bookmark_value>charts; overview</bookmark_value> <bookmark_value>HowTos for charts</bookmark_value>"
msgstr ""
#: main0000.xhp#hd_id3148664.1.help.text
msgid "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name=\"Charts in $[officename]\">Using Charts in %PRODUCTNAME</link></variable>"
msgstr ""
#: main0000.xhp#par_id3154685.2.help.text
msgid "<variable id=\"chart\">$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations. </variable>"
msgstr ""
#: main0000.xhp#hd_id3153143.5.help.text
msgid "Chart Data"
msgstr ""
#: main0000.xhp#par_id5181432.help.text
msgid "Charts can be based on the following data:"
msgstr ""
#: main0000.xhp#par_id7787102.help.text
msgid "Spreadsheet values from Calc cell ranges"
msgstr ""
#: main0000.xhp#par_id7929929.help.text
msgid "Cell values from a Writer table"
msgstr ""
#: main0000.xhp#par_id4727011.help.text
msgid "Values that you enter in the Chart Data Table dialog (you can create these charts in Writer, Draw, or Impress, and you can copy and paste them also to Calc)"
msgstr ""
#: main0000.xhp#par_id76601.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a chart in the current document. To use a continuous range of cells as the data source for your chart, click inside the cell range, and then choose this command. Alternatively, select some cells and choose this command to create a chart of the selected cells.</ahelp>"
msgstr ""
#: main0000.xhp#hd_id5345011.help.text
msgid "To insert a chart"
msgstr ""
#: main0000.xhp#hd_id5631580.help.text
msgid "To edit a chart"
msgstr ""
#: main0000.xhp#par_id7911008.help.text
msgid "Click a chart to edit the object properties:"
msgstr ""
#: main0000.xhp#par_id9844660.help.text
msgid "Size and position on the current page."
msgstr ""
#: main0000.xhp#par_id8039796.help.text
msgid "Alignment, text wrap, outer borders, and more."
msgstr ""
#: main0000.xhp#par_id7986693.help.text
msgid "Double-click a chart to enter the chart edit mode:"
msgstr ""
#: main0000.xhp#par_id2350840.help.text
msgid "Chart data values (for charts with own data)."
msgstr ""
#: main0000.xhp#par_id3776055.help.text
msgid "Chart type, axes, titles, walls, grid, and more."
msgstr ""
#: main0000.xhp#par_id8442335.help.text
msgid "Double-click a chart element in chart edit mode:"
msgstr ""
#: main0000.xhp#par_id4194769.help.text
msgid "Double-click an axis to edit the scale, type, color, and more."
msgstr ""
#: main0000.xhp#par_id8644672.help.text
msgid "Double-click a data point to select and edit the data series to which the data point belongs."
msgstr ""
#: main0000.xhp#par_id6574907.help.text
msgid "With a data series selected, click, then double-click a single data point to edit the properties of this data point (for example, a single bar in a bar chart)."
msgstr ""
#: main0000.xhp#par_id1019200902360575.help.text
msgid "Double-click the legend to select and edit the legend. Click, then double-click a symbol in the selected legend to edit the associated data series."
msgstr ""
#: main0000.xhp#par_id7528916.help.text
msgid "Double-click any other chart element, or click the element and open the Format menu, to edit the properties."
msgstr ""
#: main0000.xhp#par_id8420667.help.text
msgid "Click outside the chart to leave the current edit mode."
msgstr ""
#: main0000.xhp#par_id4923856.help.text
msgid "To print a chart in high quality, you can export the chart to a PDF file and print that file."
msgstr ""
#: main0000.xhp#par_id0810200912061033.help.text
msgid "In chart edit mode, you see the <link href=\"text/schart/main0202.xhp\">Formatting Bar</link> for charts near the upper border of the document. The Drawing Bar for charts appears near the lower border of the document. The Drawing Bar shows a subset of the icons from the <link href=\"text/simpress/main0210.xhp\">Drawing</link> toolbar of Draw and Impress."
msgstr ""
#: main0000.xhp#par_id0810200902080452.help.text
msgid "You can right-click an element of a chart to open the context menu. The context menu offers many commands to format the selected element."
msgstr ""
#: main0000.xhp#par_id081020090354489.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected title.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903405629.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart area.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903544867.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart wall.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903544952.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart floor.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903544927.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart legend.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903544949.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected axis.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903544984.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected data point.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903545096.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the major grid.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903545057.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the minor grid.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903545095.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the data series.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903545094.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the stock loss indicators.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903545113.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the stock gain indicators.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903545149.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the data labels.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903545159.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the Y error bars.</ahelp>"
msgstr ""
#: main0000.xhp#par_id081020090354524.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the mean value line.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200903545274.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904063285.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline equation.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904063252.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected data label.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904063239.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert chart titles.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904233047.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert or delete axes.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904233058.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904233089.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis title.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904233160.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a major grid.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904233175.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a minor grid.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904233111.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts data labels.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904233174.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the trendline equation and the coefficient of determination R².</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904265639.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the coefficient of determination R² value.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904362614.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a single data label.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904362666.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the chart legend.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904362777.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the selected axis.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904362785.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the major grid.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904362748.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the minor grid.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904362778.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes all data labels.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904362893.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the trendline equation.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904362896.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the R² value.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904362827.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the selected data label.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904431376.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the mean value line.</ahelp>"
msgstr ""
#: main0000.xhp#par_id081020090443142.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the Y error bars.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904393229.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets the selected data point to default format.</ahelp>"
msgstr ""
#: main0000.xhp#par_id0810200904393351.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets all data points to default format.</ahelp>"
msgstr ""
#: main0503.xhp#tit.help.text
msgid "$[officename] Chart Features"
msgstr ""
#: main0503.xhp#hd_id3150543.1.help.text
msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
msgstr ""
#: main0503.xhp#par_id3150868.2.help.text
msgid "Charts allow you to present data so that it is easy to visualize."
msgstr ""
#: main0503.xhp#par_id3146974.6.help.text
msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
msgstr ""
#: main0503.xhp#hd_id3153143.7.help.text
msgid "Chart Types"
msgstr ""
#: main0503.xhp#par_id3151112.8.help.text
msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
msgstr ""
#: main0503.xhp#hd_id3149665.10.help.text
msgid "Individual Formatting"
msgstr ""
#: main0503.xhp#par_id3156441.11.help.text
msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
msgstr ""
#: main0202.xhp#tit.help.text
msgid "Formatting Bar"
msgstr ""
#: main0202.xhp#hd_id0810200911433792.help.text
msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
msgstr ""
#: main0202.xhp#par_id0810200911433835.help.text
msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
msgstr ""
#: main0202.xhp#par_id0810200911433878.help.text
msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
msgstr ""
#: main0202.xhp#hd_id0810200902300436.help.text
msgid "Select Chart Element"
msgstr ""
#: main0202.xhp#par_id0810200902300479.help.text
msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
msgstr ""
#: main0202.xhp#hd_id0810200902300555.help.text
msgid "Format Selection"
msgstr ""
#: main0202.xhp#par_id0810200902300539.help.text
msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>"
msgstr ""
#: main0202.xhp#hd_id0810200902300545.help.text
msgid "Chart Type"
msgstr ""
#: main0202.xhp#par_id0810200902300594.help.text
msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>"
msgstr ""
#: main0202.xhp#hd_id0810200902300537.help.text
msgid "Chart Data Table"
msgstr ""
#: main0202.xhp#par_id0810200902300699.help.text
msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>"
msgstr ""
#: main0202.xhp#hd_id0810200902300672.help.text
msgid "Horizontal Grid On/Off"
msgstr ""
#: main0202.xhp#par_id0810200902300630.help.text
msgid "<ahelp hid=\".\">The Horizontal Grid On/Off icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
msgstr ""
#: main0202.xhp#hd_id0810200902300738.help.text
msgid "Legend On/Off"
msgstr ""
#: main0202.xhp#par_id081020090230076.help.text
msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>"
msgstr ""
#: main0202.xhp#hd_id0810200902300785.help.text
msgid "Scale Text"
msgstr ""
#: main0202.xhp#par_id0810200902300784.help.text
msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
msgstr ""
#: main0202.xhp#hd_id081020090230087.help.text
msgid "Automatic Layout"
msgstr ""
#: main0202.xhp#par_id0810200902300834.help.text
msgid "<ahelp hid=\".\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
msgstr ""

View File

@@ -1,271 +0,0 @@
#. extracted from helpcontent2/source/text/schart/00.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fschart%2F00.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 00000004.xhp#tit.help.text
msgid "To access this function..."
msgstr ""
#: 00000004.xhp#hd_id3156023.1.help.text
msgid "<variable id=\"wie\">To access this function...</variable>"
msgstr ""
#: 00000004.xhp#par_id3150791.9.help.text
msgid "Choose <emph>View - Chart Data Table</emph> (Charts)"
msgstr ""
#: 00000004.xhp#par_id3154686.55.help.text
msgctxt "00000004.xhp#par_id3154686.55.help.text"
msgid "On Formatting bar, click"
msgstr ""
#: 00000004.xhp#par_id3153728.help.text
msgid "<image id=\"img_id3147428\" src=\"cmd/sc_grid.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147428\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3154942.11.help.text
msgid "Chart Data"
msgstr ""
#: 00000004.xhp#par_id3153160.12.help.text
msgid "<variable id=\"efgttl\">Choose <emph>Insert - Title </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3149121.13.help.text
msgid "Choose <emph>Insert - Legend </emph>(Charts)"
msgstr ""
#: 00000004.xhp#par_id3155444.56.help.text
msgid "Choose <emph>Format - Legend - Position</emph> tab (Charts)"
msgstr ""
#: 00000004.xhp#par_id3156385.16.help.text
msgid "Choose <emph>Insert - Data Labels </emph>(Charts)"
msgstr ""
#: 00000004.xhp#par_id3147341.68.help.text
msgid "Choose <emph>Format - Format Selection - Data Point/Data Series - Data Labels</emph> tab (for data series and data point) (Charts)"
msgstr ""
#: 00000004.xhp#par_id3149565.69.help.text
msgid "<variable id=\"efgaug\">Choose <emph>Insert - Axes </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3150297.17.help.text
msgid "Choose <emph>Insert - Grids </emph>(Charts)"
msgstr ""
#: 00000004.xhp#par_id3145789.58.help.text
msgctxt "00000004.xhp#par_id3145789.58.help.text"
msgid "On Formatting bar, click"
msgstr ""
#: 00000004.xhp#par_id3150307.help.text
msgid "<image id=\"img_id3155111\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155111\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3155378.19.help.text
msgctxt "00000004.xhp#par_id3155378.19.help.text"
msgid "Horizontal Grid On/Off"
msgstr ""
#: 00000004.xhp#par_id3145384.help.text
msgid "<image id=\"img_id3152989\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152989\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3153067.20.help.text
msgctxt "00000004.xhp#par_id3153067.20.help.text"
msgid "Vertical Grid On/Off"
msgstr ""
#: 00000004.xhp#par_id3148869.21.help.text
msgid "<variable id=\"efgsta\">Choose <emph>Insert - Y Error Bars </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id1061738.help.text
msgid "<variable id=\"trendlines\">Choose Insert - Trend Lines (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3154532.67.help.text
msgid "<variable id=\"sonderz\">Choose <emph>Insert - Special Character </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3153246.22.help.text
msgid "<variable id=\"frtoes\">Choose <emph>Format - Format Selection </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3150214.23.help.text
msgid "<variable id=\"frtodd\">Choose <emph>Format - Format Selection - Data Point</emph> dialog (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3154765.24.help.text
msgid "<variable id=\"frtodr\">Choose <emph>Format - Format Selection - Data Series</emph> dialog (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3153009.66.help.text
msgid "<variable id=\"optionen\">Choose <emph>Format - Format Selection - Data Series - Options</emph> tab (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3154707.25.help.text
msgid "<variable id=\"frtttl\">Choose <emph>Format - Title </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3155758.26.help.text
msgid "<variable id=\"frtoe\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3153075.27.help.text
msgid "<variable id=\"frtegt\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3149048.28.help.text
msgid "<variable id=\"frttya\">Choose <emph>Format - Title </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3147402.70.help.text
msgid "<variable id=\"frttyab\">Choose <emph>Format - Axis </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3147297.29.help.text
msgid "<variable id=\"frtlgd\">Choose <emph>Format - Legend, or Format - Format Selection</emph> - <emph>Legend </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3157876.31.help.text
msgid "<variable id=\"frtaa\">Choose <emph>Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3146883.32.help.text
msgid "<variable id=\"frtyas\">Choose <emph>Format - Axis - Y Axis/Secondary Y Axis </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3149349.33.help.text
msgid "<variable id=\"frtysk\">Choose <emph>Format - Axis - Y Axis - Scale</emph> tab (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id1006200812385491.help.text
msgid "<variable id=\"positioning\">Choose <emph>Format - Axis - X Axis - Positioning</emph> tab (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id31493459.33.help.text
msgid "<variable id=\"positioningy\">Choose <emph>Format - Axis - Y Axis - Positioning</emph> tab (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3150477.34.help.text
msgid "<variable id=\"frtgt\">Choose <emph>Format - Grid </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3150746.35.help.text
msgid "<variable id=\"frtgtr\">Choose <emph>Format - Grid - X, Y, Z Axis Major Grid/ X, Y, Z Minor Grid/ All Axis Grids </emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3145828.36.help.text
msgid "<variable id=\"frtdgw\">Choose <emph>Format - Chart Wall - Chart</emph> dialog (Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3153039.37.help.text
msgid "<variable id=\"frtdgb\">Choose <emph>Format - Chart Floor</emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3150141.38.help.text
msgid "<variable id=\"frtdgf\">Choose <emph>Format - Chart Area</emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3155830.39.help.text
msgid "Choose <emph>Format - Chart Type </emph>(Charts)"
msgstr ""
#: 00000004.xhp#par_id3145140.59.help.text
msgctxt "00000004.xhp#par_id3145140.59.help.text"
msgid "On Formatting bar, click"
msgstr ""
#: 00000004.xhp#par_id3148582.help.text
msgid "<image id=\"img_id3153124\" src=\"cmd/sc_diagramtype.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153124\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3155956.41.help.text
msgid "Edit Chart Type"
msgstr ""
#: 00000004.xhp#par_id3155621.45.help.text
msgid "<variable id=\"frtdda\">Choose <emph>Format - 3D View</emph>(Charts)</variable>"
msgstr ""
#: 00000004.xhp#par_id3150661.61.help.text
msgid "Choose <emph>Format - Arrangement </emph>(Charts)"
msgstr ""
#: 00000004.xhp#par_id3153046.65.help.text
msgid "Open context menu - choose <emph>Arrangement </emph>(Charts)"
msgstr ""
#: 00000004.xhp#par_id3151020.help.text
msgid "<image id=\"img_id3150936\" src=\"cmd/sc_toggletitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150936\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3150467.48.help.text
msgid "Title On/Off"
msgstr ""
#: 00000004.xhp#par_id3149775.help.text
msgid "<image id=\"img_id3149781\" src=\"cmd/sc_toggleaxistitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149781\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3147168.49.help.text
msgid "Axis Titles On/Off"
msgstr ""
#: 00000004.xhp#par_id3163824.help.text
msgid "<image id=\"img_id3149708\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149708\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3150962.50.help.text
msgctxt "00000004.xhp#par_id3150962.50.help.text"
msgid "Horizontal Grid On/Off"
msgstr ""
#: 00000004.xhp#par_id3151183.help.text
msgid "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151189\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3153210.51.help.text
msgid "Show/Hide Axis Descriptions"
msgstr ""
#: 00000004.xhp#par_id3156315.help.text
msgid "<image id=\"img_id3156322\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156322\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3153153.52.help.text
msgctxt "00000004.xhp#par_id3153153.52.help.text"
msgid "Vertical Grid On/Off"
msgstr ""
#: 00000004.xhp#par_id9631641.help.text
msgctxt "00000004.xhp#par_id9631641.help.text"
msgid "Choose Insert - <switchinline select=\"appl\"><caseinline select=\"WRITER\"> Object -</caseinline></switchinline> Chart "
msgstr ""
#: 00000004.xhp#par_id2985320.help.text
msgctxt "00000004.xhp#par_id2985320.help.text"
msgid "Choose Insert - <switchinline select=\"appl\"><caseinline select=\"WRITER\"> Object -</caseinline></switchinline> Chart "
msgstr ""
#: 00000004.xhp#par_id1096530.help.text
msgid "Double-click a chart, then choose Format - Data Ranges"
msgstr ""
#: 00000004.xhp#par_id733359.help.text
msgid "<variable id=\"slp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, mark Smooth lines checkbox, then click the Properties button.</variable>"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,122 +0,0 @@
#. extracted from helpcontent2/source/text/schart/02.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fschart%2F02.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 01220000.xhp#tit.help.text
msgctxt "01220000.xhp#tit.help.text"
msgid "Automatic Layout"
msgstr ""
#: 01220000.xhp#bm_id3150400.help.text
msgid "<bookmark_value>reorganizing charts</bookmark_value><bookmark_value>charts; reorganizing</bookmark_value>"
msgstr ""
#: 01220000.xhp#hd_id3150400.1.help.text
msgid "<link href=\"text/schart/02/01220000.xhp\" name=\"Automatic Layout\">Automatic Layout</link>"
msgstr ""
#: 01220000.xhp#par_id3146120.2.help.text
msgid "<ahelp hid=\".uno:NewArrangement\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
msgstr ""
#: 01220000.xhp#par_id3150010.help.text
msgid "<image id=\"img_id3152577\" src=\"cmd/sc_newarrangement.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152577\">Icon</alt></image>"
msgstr ""
#: 01220000.xhp#par_id3153143.3.help.text
msgctxt "01220000.xhp#par_id3153143.3.help.text"
msgid "Automatic Layout"
msgstr ""
#: 02020000.xhp#tit.help.text
msgid "Current Chart Type"
msgstr ""
#: 02020000.xhp#hd_id3150791.1.help.text
msgid "<link href=\"text/schart/02/02020000.xhp\" name=\"Current Chart Type\">Current Chart Type</link>"
msgstr ""
#: 02020000.xhp#par_id3145173.2.help.text
msgid "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Displays the name of the current chart type.</ahelp>"
msgstr ""
#: 01210000.xhp#tit.help.text
msgctxt "01210000.xhp#tit.help.text"
msgid "Scale Text"
msgstr ""
#: 01210000.xhp#bm_id3152996.help.text
msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
msgstr ""
#: 01210000.xhp#hd_id3152996.1.help.text
msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
msgstr ""
#: 01210000.xhp#par_id3144510.2.help.text
msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
msgstr ""
#: 01210000.xhp#par_id3150441.help.text
msgid "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Icon</alt></image>"
msgstr ""
#: 01210000.xhp#par_id3153190.3.help.text
msgctxt "01210000.xhp#par_id3153190.3.help.text"
msgid "Scale Text"
msgstr ""
#: 01190000.xhp#tit.help.text
msgctxt "01190000.xhp#tit.help.text"
msgid "Data in Rows"
msgstr ""
#: 01190000.xhp#hd_id3146976.1.help.text
msgid "<link href=\"text/schart/02/01190000.xhp\" name=\"Data in Rows\">Data in Rows</link>"
msgstr ""
#: 01190000.xhp#par_id3154490.2.help.text
msgid "<ahelp hid=\".uno:DataInRows\">Changes the arrangement of the chart data.</ahelp>"
msgstr ""
#: 01190000.xhp#par_id3150751.help.text
msgid "<image id=\"img_id3145643\" src=\"cmd/sc_datainrows.png\"><alt id=\"alt_id3145643\">Icon</alt></image>"
msgstr ""
#: 01190000.xhp#par_id3154754.3.help.text
msgctxt "01190000.xhp#par_id3154754.3.help.text"
msgid "Data in Rows"
msgstr ""
#: 01200000.xhp#tit.help.text
msgctxt "01200000.xhp#tit.help.text"
msgid "Data in Columns"
msgstr ""
#: 01200000.xhp#hd_id3150868.1.help.text
msgid "<link href=\"text/schart/02/01200000.xhp\" name=\"Data in Columns\">Data in Columns</link>"
msgstr ""
#: 01200000.xhp#par_id3145749.2.help.text
msgid "<ahelp hid=\".uno:DataInColumns\">Changes the arrangement of the chart data.</ahelp>"
msgstr ""
#: 01200000.xhp#par_id3149260.help.text
msgid "<image id=\"img_id3149379\" src=\"cmd/sc_dataincolumns.png\"><alt id=\"alt_id3149379\">Icon</alt></image>"
msgstr ""
#: 01200000.xhp#par_id3149377.3.help.text
msgctxt "01200000.xhp#par_id3149377.3.help.text"
msgid "Data in Columns"
msgstr ""

View File

@@ -1,142 +0,0 @@
#. extracted from helpcontent2/source/text/schart/04.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fschart%2F04.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 01020000.xhp#tit.help.text
msgid "Shortcuts for Charts"
msgstr ""
#: 01020000.xhp#bm_id3150767.help.text
msgid "<bookmark_value>shortcut keys; charts</bookmark_value><bookmark_value>charts; shortcuts</bookmark_value>"
msgstr ""
#: 01020000.xhp#hd_id3150767.1.help.text
msgid "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" name=\"Shortcuts for Charts\">Shortcuts for Charts</link></variable>"
msgstr ""
#: 01020000.xhp#par_id3155412.2.help.text
msgid "You can use the following shortcut keys in charts."
msgstr ""
#: 01020000.xhp#par_id3159154.3.help.text
msgid "You can also use the general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">shortcut keys</link> for $[officename]."
msgstr ""
#: 01020000.xhp#hd_id3149262.4.help.text
msgid "Shortcuts in Charts"
msgstr ""
#: 01020000.xhp#hd_id3151073.5.help.text
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3154490.6.help.text
msgid "Results"
msgstr ""
#: 01020000.xhp#hd_id3154729.7.help.text
msgid "Tab"
msgstr ""
#: 01020000.xhp#par_id3154511.8.help.text
msgid "Select next object."
msgstr ""
#: 01020000.xhp#hd_id3155064.9.help.text
msgid "Shift+Tab"
msgstr ""
#: 01020000.xhp#par_id3149020.10.help.text
msgid "Select previous object."
msgstr ""
#: 01020000.xhp#hd_id3155443.11.help.text
msgid "Home"
msgstr ""
#: 01020000.xhp#par_id3156382.12.help.text
msgid "Select first object."
msgstr ""
#: 01020000.xhp#hd_id3153963.13.help.text
msgid "End"
msgstr ""
#: 01020000.xhp#par_id3154702.14.help.text
msgid "Select last object."
msgstr ""
#: 01020000.xhp#hd_id3143218.15.help.text
msgid "Esc"
msgstr ""
#: 01020000.xhp#par_id3147005.16.help.text
msgid "Cancel selection"
msgstr ""
#: 01020000.xhp#hd_id3159239.17.help.text
msgid "up/down/left/right arrow"
msgstr ""
#: 01020000.xhp#par_id3149210.18.help.text
msgid "Move the object in the direction of the arrow."
msgstr ""
#: 01020000.xhp#hd_id3150364.19.help.text
msgid "up/down/left/right arrow in pie charts"
msgstr ""
#: 01020000.xhp#par_id3150369.20.help.text
msgid "Moves the selected pie segment in the direction of the arrow."
msgstr ""
#: 01020000.xhp#hd_id3145584.21.help.text
msgid "F2 in titles"
msgstr ""
#: 01020000.xhp#par_id3154372.22.help.text
msgid "Enter text input mode."
msgstr ""
#: 01020000.xhp#hd_id3146980.23.help.text
msgid "F3"
msgstr ""
#: 01020000.xhp#par_id3152988.24.help.text
msgid "Open group so that you can edit the individual components (in legend and data series)."
msgstr ""
#: 01020000.xhp#hd_id3153815.25.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr ""
#: 01020000.xhp#par_id3153915.26.help.text
msgid "Exit group (in legend and data series)."
msgstr ""
#: 01020000.xhp#hd_id3155269.27.help.text
msgid "+/-"
msgstr ""
#: 01020000.xhp#par_id3156016.28.help.text
msgid "Reduce or enlarge the chart"
msgstr ""
#: 01020000.xhp#hd_id3150210.29.help.text
msgid "+/- in pie charts"
msgstr ""
#: 01020000.xhp#par_id3159204.30.help.text
msgid "Moves the selected pie segment off or into the pie chart."
msgstr ""

View File

@@ -1,546 +0,0 @@
#. extracted from helpcontent2/source/text/sdraw.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: main0101.xhp#tit.help.text
msgid "File"
msgstr ""
#: main0101.xhp#hd_id3149655.1.help.text
msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
msgstr ""
#: main0101.xhp#par_id3150868.2.help.text
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
msgstr ""
#: main0101.xhp#hd_id3156441.4.help.text
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr ""
#: main0101.xhp#hd_id3153876.6.help.text
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
msgstr ""
#: main0101.xhp#hd_id3150718.7.help.text
msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
msgstr ""
#: main0101.xhp#hd_id3154754.14.help.text
msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr ""
#: main0101.xhp#hd_id3150044.9.help.text
msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
msgstr ""
#: main0101.xhp#hd_id3149127.12.help.text
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr ""
#: main0101.xhp#hd_id3145790.13.help.text
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
msgstr ""
#: main0103.xhp#tit.help.text
msgid "View"
msgstr ""
#: main0103.xhp#hd_id3152576.1.help.text
msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
msgstr ""
#: main0103.xhp#par_id3159155.2.help.text
msgid "Sets the display properties of Draw documents."
msgstr ""
#: main0103.xhp#par_idN105AB.help.text
msgid "Normal"
msgstr ""
#: main0103.xhp#par_idN105AF.help.text
msgid "Switch to normal view of the page."
msgstr ""
#: main0103.xhp#par_idN105B2.help.text
msgid "Master"
msgstr ""
#: main0103.xhp#par_idN105B6.help.text
msgid "Switch to the master page view."
msgstr ""
#: main0103.xhp#hd_id3149666.3.help.text
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr ""
#: main0000.xhp#tit.help.text
msgid "Welcome to the $[officename] Draw Help"
msgstr ""
#: main0000.xhp#hd_id3155960.1.help.text
msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Welcome to the $[officename] Draw Help"
msgstr ""
#: main0000.xhp#hd_id3154022.3.help.text
msgid "How to Work With $[officename] Draw"
msgstr ""
#: main0000.xhp#hd_id3150363.5.help.text
msgid "$[officename] Draw Menus, Toolbars, and Keys"
msgstr ""
#: main0000.xhp#hd_id3166430.4.help.text
msgid "Help about the Help"
msgstr ""
#: main0104.xhp#tit.help.text
msgid "Insert"
msgstr ""
#: main0104.xhp#hd_id3148797.1.help.text
msgid "<link href=\"text/sdraw/main0104.xhp\" name=\"Insert\">Insert</link>"
msgstr ""
#: main0104.xhp#par_id3153770.2.help.text
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
msgstr ""
#: main0104.xhp#hd_id3154320.3.help.text
msgid "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slide\">Slide</link>"
msgstr ""
#: main0104.xhp#hd_id3146974.4.help.text
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
msgstr ""
#: main0104.xhp#hd_id3147397.5.help.text
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
msgstr ""
#: main0104.xhp#hd_id0915200910361385.help.text
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
msgstr ""
#: main0104.xhp#hd_id3154018.6.help.text
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
msgstr ""
#: main0104.xhp#hd_id3150749.11.help.text
msgctxt "main0104.xhp#hd_id3150749.11.help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr ""
#: main0104.xhp#hd_id3156385.7.help.text
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
msgstr ""
#: main0104.xhp#hd_id3147003.8.help.text
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
msgstr ""
#: main0104.xhp#par_id0302200904020595.help.text
msgid "Inserts a chart."
msgstr ""
#: main0104.xhp#hd_id3155111.9.help.text
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr ""
#: main0104.xhp#hd_id3157867.10.help.text
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
msgstr ""
#: main0503.xhp#tit.help.text
msgid "$[officename] Draw Features"
msgstr ""
#: main0503.xhp#hd_id3148797.1.help.text
msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
msgstr ""
#: main0503.xhp#par_id3146975.2.help.text
msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
msgstr ""
#: main0503.xhp#hd_id3147435.11.help.text
msgid "Vector Graphics"
msgstr ""
#: main0503.xhp#par_id3153142.12.help.text
msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
msgstr ""
#: main0503.xhp#hd_id3154320.14.help.text
msgid "Creating 3D Objects"
msgstr ""
#: main0503.xhp#par_id3145251.15.help.text
msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
msgstr ""
#: main0503.xhp#hd_id3154491.20.help.text
msgid "Grids and Snap Lines"
msgstr ""
#: main0503.xhp#par_id3149379.6.help.text
msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
msgstr ""
#: main0503.xhp#hd_id3155601.16.help.text
msgid "Connecting Objects to Show Relationships"
msgstr ""
#: main0503.xhp#par_id3149124.17.help.text
msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
msgstr ""
#: main0503.xhp#hd_id3155764.21.help.text
msgid "Displaying Dimensions"
msgstr ""
#: main0503.xhp#par_id3155333.22.help.text
msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
msgstr ""
#: main0503.xhp#hd_id3154705.18.help.text
msgid "Gallery"
msgstr ""
#: main0503.xhp#par_id3154022.7.help.text
msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
msgstr ""
#: main0503.xhp#hd_id3149207.19.help.text
msgid "Graphic File Formats"
msgstr ""
#: main0503.xhp#par_id3155112.5.help.text
msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
msgstr ""
#: main0213.xhp#tit.help.text
msgid "Options Bar"
msgstr ""
#: main0213.xhp#hd_id3150793.1.help.text
msgid "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">Options Bar</link>"
msgstr ""
#: main0213.xhp#par_id3154685.2.help.text
msgid "The <emph>Options</emph> bar can be displayed by choosing <emph>View - Toolbars - Options</emph>."
msgstr ""
#: main0213.xhp#hd_id3145251.3.help.text
msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
msgstr ""
#: main0213.xhp#hd_id3149018.5.help.text
msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
msgstr ""
#: main0213.xhp#hd_id3147338.6.help.text
msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
msgstr ""
#: main0213.xhp#hd_id3146313.7.help.text
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
msgstr ""
#: main0213.xhp#hd_id3155111.8.help.text
msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
msgstr ""
#: main0213.xhp#hd_id3150343.9.help.text
msgid "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Snap to Object Border</link>"
msgstr ""
#: main0213.xhp#hd_id3150368.10.help.text
msgid "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Snap to Object Points</link>"
msgstr ""
#: main0213.xhp#hd_id3146980.11.help.text
msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
msgstr ""
#: main0213.xhp#hd_id3148870.12.help.text
msgid "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Select Text Area Only</link>"
msgstr ""
#: main0106.xhp#tit.help.text
msgid "Tools"
msgstr ""
#: main0106.xhp#hd_id3159155.1.help.text
msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr ""
#: main0106.xhp#par_id3156443.2.help.text
msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
msgstr ""
#: main0106.xhp#hd_id3153415.4.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr ""
#: main0106.xhp#hd_id3150044.6.help.text
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr ""
#: main0105.xhp#tit.help.text
msgid "Format"
msgstr ""
#: main0105.xhp#hd_id3153770.1.help.text
msgid "<link href=\"text/sdraw/main0105.xhp\" name=\"Format\">Format</link>"
msgstr ""
#: main0105.xhp#par_id3152578.2.help.text
msgid "Contains commands for formatting the layout and the contents of your document."
msgstr ""
#: main0105.xhp#hd_id3155111.10.help.text
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr ""
#: main0105.xhp#hd_id3146979.12.help.text
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr ""
#: main0105.xhp#hd_id3166426.19.help.text
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr ""
#: main0105.xhp#hd_id3155091.14.help.text
msgid "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Page</link>"
msgstr ""
#: main0105.xhp#hd_id3146971.6.help.text
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
msgstr ""
#: main0105.xhp#hd_id3148576.3.help.text
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
msgstr ""
#: main0105.xhp#hd_id3151076.4.help.text
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
msgstr ""
#: main0105.xhp#hd_id3153878.5.help.text
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
msgstr ""
#: main0105.xhp#hd_id3153913.16.help.text
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
msgstr ""
#: main0102.xhp#tit.help.text
msgid "Edit"
msgstr ""
#: main0102.xhp#hd_id3150868.1.help.text
msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
#: main0102.xhp#par_id3146974.2.help.text
msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
msgstr ""
#: main0102.xhp#hd_id3147396.3.help.text
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
msgstr ""
#: main0102.xhp#hd_id3149400.4.help.text
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
msgstr ""
#: main0102.xhp#hd_id3153713.13.help.text
msgctxt "main0102.xhp#hd_id3153713.13.help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
msgstr ""
#: main0102.xhp#par_id3147340.14.help.text
msgctxt "main0102.xhp#par_id3147340.14.help.text"
msgid "Enables you to edit points on your drawing."
msgstr ""
#: main0102.xhp#hd_id3149258.15.help.text
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
msgstr ""
#: main0102.xhp#par_id3146315.16.help.text
msgctxt "main0102.xhp#par_id3146315.16.help.text"
msgid "Enables you to edit glue points on your drawing."
msgstr ""
#: main0102.xhp#hd_id3147005.5.help.text
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
msgstr ""
#: main0102.xhp#hd_id3150205.6.help.text
msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
msgstr ""
#: main0102.xhp#hd_id3154650.7.help.text
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
msgstr ""
#: main0102.xhp#hd_id3156446.10.help.text
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr ""
#: main0102.xhp#hd_id3148699.11.help.text
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
msgstr ""
#: main0102.xhp#hd_id3157867.12.help.text
msgctxt "main0102.xhp#hd_id3157867.12.help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr ""
#: main0200.xhp#tit.help.text
msgid "Toolbars"
msgstr ""
#: main0200.xhp#hd_id3148663.1.help.text
msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr ""
#: main0200.xhp#par_id3125863.2.help.text
msgid "This section provides an overview of the toolbars available in $[officename] Draw."
msgstr ""
#: main0100.xhp#tit.help.text
msgid "Menus"
msgstr ""
#: main0100.xhp#hd_id3148664.1.help.text
msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr ""
#: main0100.xhp#par_id3154684.2.help.text
msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
msgstr ""
#: main0210.xhp#tit.help.text
msgid "Drawing Bar"
msgstr ""
#: main0210.xhp#hd_id3150398.1.help.text
msgid "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
msgstr ""
#: main0210.xhp#par_id3149656.2.help.text
msgid "The <emph>Drawing</emph> bar holds the main drawing tools."
msgstr ""
#: main0210.xhp#par_idN105D1.help.text
msgid "<link href=\"text/simpress/02/10060000.xhp\">Rectangle</link>"
msgstr ""
#: main0210.xhp#par_idN105E1.help.text
msgid "Draws a filled rectangle where you drag in the current document. Click where you want to place a corner of the rectangle, and drag to the size you want. To draw a square, hold down Shift while you drag."
msgstr ""
#: main0210.xhp#par_idN105EE.help.text
msgid "<link href=\"text/simpress/02/10070000.xhp\">Ellipse</link>"
msgstr ""
#: main0210.xhp#par_idN105FE.help.text
msgid "Draws a filled oval where you drag in the current document. Click where you want to draw the oval, and drag to the size you want. To draw a circle, hold down Shift while you drag."
msgstr ""
#: main0210.xhp#par_idN1060B.help.text
msgid "<link href=\"text/simpress/02/10050000.xhp\">Text</link>"
msgstr ""
#: main0210.xhp#par_idN1061B.help.text
msgid "Draws a text box where you click or drag in the current document. Click anywhere in the document, and then type or paste your text."
msgstr ""
#: main0210.xhp#par_idN107C8.help.text
msgid "<link href=\"text/simpress/02/10120000.xhp\" name=\"Lines and Arrows\">Lines and Arrows</link>"
msgstr ""
#: main0210.xhp#par_idN126D7.help.text
msgid "Opens the Arrows toolbar to insert lines and arrows."
msgstr ""
#: main0210.xhp#par_idN106B4.help.text
msgctxt "main0210.xhp#par_idN106B4.help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
msgstr ""
#: main0210.xhp#par_idN106C3.help.text
msgctxt "main0210.xhp#par_idN106C3.help.text"
msgid "Enables you to edit points on your drawing."
msgstr ""
#: main0210.xhp#par_idN106C8.help.text
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue Points</link>"
msgstr ""
#: main0210.xhp#par_idN106D7.help.text
msgctxt "main0210.xhp#par_idN106D7.help.text"
msgid "Enables you to edit glue points on your drawing."
msgstr ""
#: main0210.xhp#par_idN10754.help.text
msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
msgstr ""
#: main0210.xhp#par_idN1072C.help.text
msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
msgstr ""
#: main0210.xhp#par_idN1074B.help.text
msgid "<link href=\"text/shared/3dsettings_toolbar.xhp\">Extrusion On/Off</link>"
msgstr ""
#: main0210.xhp#par_idN1075A.help.text
msgid "Switches the 3D effects on and off for the selected objects."
msgstr ""
#: main0202.xhp#tit.help.text
msgid "Line and Filling Bar"
msgstr ""
#: main0202.xhp#hd_id3149669.1.help.text
msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
msgstr ""
#: main0202.xhp#par_id3150543.2.help.text
msgid "The Line and Filling bar contains commands for the current editing mode."
msgstr ""
#: main0202.xhp#hd_id3149664.3.help.text
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
msgstr ""
#: main0202.xhp#hd_id3156285.4.help.text
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr ""
#: main0202.xhp#hd_id3154015.5.help.text
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
msgstr ""
#: main0202.xhp#hd_id3155767.6.help.text
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
msgstr ""
#: main0202.xhp#hd_id3341471.help.text
msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
msgstr ""

View File

@@ -1,22 +0,0 @@
#. extracted from helpcontent2/source/text/sdraw/00.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw%2F00.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:05+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 00000004.xhp#tit.help.text
msgid "To access this command..."
msgstr ""
#: 00000004.xhp#hd_id3156024.1.help.text
msgid "<variable id=\"wie\">To access this command...</variable>"
msgstr ""

View File

@@ -1,26 +0,0 @@
#. extracted from helpcontent2/source/text/sdraw/01.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw%2F01.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 04010000.xhp#tit.help.text
msgid "Insert Page"
msgstr ""
#: 04010000.xhp#hd_id3150202.1.help.text
msgid "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Insert Page\">Insert Page</link>"
msgstr ""
#: 04010000.xhp#par_id3152988.2.help.text
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
msgstr ""

View File

@@ -1,436 +0,0 @@
#. extracted from helpcontent2/source/text/sdraw/04.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw%2F04.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 01020000.xhp#tit.help.text
msgctxt "01020000.xhp#tit.help.text"
msgid "Shortcut Keys for Drawings"
msgstr ""
#: 01020000.xhp#bm_id3156441.help.text
msgid "<bookmark_value>shortcut keys;in drawings</bookmark_value> <bookmark_value>drawings; shortcut keys</bookmark_value>"
msgstr ""
#: 01020000.xhp#hd_id3156441.1.help.text
msgid "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" name=\"Shortcut Keys for Drawings\">Shortcut Keys for Drawings</link></variable>"
msgstr ""
#: 01020000.xhp#par_id3153877.2.help.text
msgid "The following is a list of shortcut keys specific to Drawing documents."
msgstr ""
#: 01020000.xhp#par_id3154730.103.help.text
msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys for $[officename]\">general shortcut keys for $[officename]</link>."
msgstr ""
#: 01020000.xhp#hd_id3149121.3.help.text
msgid "Function Keys for Drawings"
msgstr ""
#: 01020000.xhp#hd_id3155768.4.help.text
msgctxt "01020000.xhp#hd_id3155768.4.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3153713.6.help.text
msgctxt "01020000.xhp#par_id3153713.6.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3150044.7.help.text
msgctxt "01020000.xhp#hd_id3150044.7.help.text"
msgid "F2"
msgstr ""
#: 01020000.xhp#par_id3152346.8.help.text
msgid "Add or edit text."
msgstr ""
#: 01020000.xhp#hd_id3154705.9.help.text
msgid "F3"
msgstr ""
#: 01020000.xhp#par_id3147004.10.help.text
msgid "Opens group to edit individual objects."
msgstr ""
#: 01020000.xhp#hd_id3155113.11.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr ""
#: 01020000.xhp#par_id3159238.12.help.text
msgid "Close group editor."
msgstr ""
#: 01020000.xhp#hd_id3150199.13.help.text
msgid "Shift+F3"
msgstr ""
#: 01020000.xhp#par_id3152994.14.help.text
msgid "Opens the <emph>Duplicate</emph> dialog."
msgstr ""
#: 01020000.xhp#hd_id3154488.15.help.text
msgid "F4"
msgstr ""
#: 01020000.xhp#par_id3149406.16.help.text
msgid "Opens the <emph>Position and Size</emph> dialog."
msgstr ""
#: 01020000.xhp#hd_id3148870.21.help.text
msgid "F5"
msgstr ""
#: 01020000.xhp#par_id3153917.22.help.text
msgid "Opens the <emph>Navigator</emph>."
msgstr ""
#: 01020000.xhp#hd_id3157982.25.help.text
msgid "F7"
msgstr ""
#: 01020000.xhp#par_id3154649.26.help.text
msgid "Checks spelling."
msgstr ""
#: 01020000.xhp#hd_id3152869.27.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
msgstr ""
#: 01020000.xhp#par_id3154765.28.help.text
msgid "Opens the <emph>Thesaurus</emph>."
msgstr ""
#: 01020000.xhp#hd_id3146962.29.help.text
msgid "F8"
msgstr ""
#: 01020000.xhp#par_id3154707.30.help.text
msgid "Edit points on/off."
msgstr ""
#: 01020000.xhp#hd_id3149317.31.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8"
msgstr ""
#: 01020000.xhp#par_id3147250.32.help.text
msgid "Fits to frame."
msgstr ""
#: 01020000.xhp#hd_id3150434.35.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
msgstr ""
#: 01020000.xhp#par_id3151389.36.help.text
msgid "Opens Styles and Formatting window."
msgstr ""
#: 01020000.xhp#bm_id3150393.help.text
msgid "<bookmark_value>zooming;shortcut keys</bookmark_value> <bookmark_value>drawings; zoom function in</bookmark_value>"
msgstr ""
#: 01020000.xhp#hd_id3150393.41.help.text
msgctxt "01020000.xhp#hd_id3150393.41.help.text"
msgid "Shortcut Keys for Drawings"
msgstr ""
#: 01020000.xhp#hd_id3156401.42.help.text
msgctxt "01020000.xhp#hd_id3156401.42.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3146323.43.help.text
msgctxt "01020000.xhp#par_id3146323.43.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3149946.44.help.text
msgid "Plus(+) Key"
msgstr ""
#: 01020000.xhp#par_id3159119.45.help.text
msgid "Zooms in."
msgstr ""
#: 01020000.xhp#hd_id3150655.46.help.text
msgid "Minus(-) Key"
msgstr ""
#: 01020000.xhp#par_id3145827.47.help.text
msgid "Zooms out."
msgstr ""
#: 01020000.xhp#hd_id3149886.99.help.text
msgid "Multiple(×) Key (number pad)"
msgstr ""
#: 01020000.xhp#par_id3150746.102.help.text
msgid "Zooms to fit entire page in screen."
msgstr ""
#: 01020000.xhp#hd_id3154841.101.help.text
msgid "Divide (÷) Key (number pad)"
msgstr ""
#: 01020000.xhp#par_id3153039.100.help.text
msgid "Zooms in on the current selection."
msgstr ""
#: 01020000.xhp#hd_id3150867.52.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+G"
msgstr ""
#: 01020000.xhp#par_id3149250.53.help.text
msgid "Groups selected objects."
msgstr ""
#: 01020000.xhp#hd_id3149955.54.help.text
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+A"
msgstr ""
#: 01020000.xhp#par_id3148582.55.help.text
msgid "Ungroups selected group."
msgstr ""
#: 01020000.xhp#hd_id3146852.56.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+K"
msgstr ""
#: 01020000.xhp#par_id3153110.57.help.text
msgid "Combines selected objects."
msgstr ""
#: 01020000.xhp#hd_id3153567.58.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+K"
msgstr ""
#: 01020000.xhp#par_id3147366.59.help.text
msgid "Uncombines selected objects."
msgstr ""
#: 01020000.xhp#hd_id3153730.60.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+ +"
msgstr ""
#: 01020000.xhp#par_id3155928.61.help.text
msgid "Bring to front."
msgstr ""
#: 01020000.xhp#hd_id3145245.62.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ +"
msgstr ""
#: 01020000.xhp#par_id3148393.63.help.text
msgid "Bring forward."
msgstr ""
#: 01020000.xhp#hd_id3150928.64.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ -"
msgstr ""
#: 01020000.xhp#par_id3156062.65.help.text
msgid "Send backward."
msgstr ""
#: 01020000.xhp#hd_id3145298.66.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+ -"
msgstr ""
#: 01020000.xhp#par_id3149028.67.help.text
msgid "Send to back."
msgstr ""
#: 01020000.xhp#hd_id3147533.68.help.text
msgid "Shortcut Keys Specific to Drawings"
msgstr ""
#: 01020000.xhp#hd_id3154865.69.help.text
msgctxt "01020000.xhp#hd_id3154865.69.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3155370.70.help.text
msgctxt "01020000.xhp#par_id3155370.70.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#par_idN10AD7.help.text
msgid "Page Up"
msgstr ""
#: 01020000.xhp#par_idN10ADC.help.text
msgid "Switch to previous page"
msgstr ""
#: 01020000.xhp#par_idN10AE2.help.text
msgid "Page Down"
msgstr ""
#: 01020000.xhp#par_idN10AE7.help.text
msgid "Switch to next page"
msgstr ""
#: 01020000.xhp#par_idN10AED.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
msgstr ""
#: 01020000.xhp#par_idN10AFD.help.text
msgid "Switch to previous layer"
msgstr ""
#: 01020000.xhp#par_idN10AF8.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
msgstr ""
#: 01020000.xhp#par_idN10AF2.help.text
msgid "Switch to next layer"
msgstr ""
#: 01020000.xhp#hd_id3153927.71.help.text
msgid "Arrow Key"
msgstr ""
#: 01020000.xhp#par_id3155986.72.help.text
msgid "Moves the selected object in the direction of the arrow key."
msgstr ""
#: 01020000.xhp#hd_id3156259.73.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow Key"
msgstr ""
#: 01020000.xhp#par_id3147171.74.help.text
msgid "Moves the page view in the direction of the arrow key."
msgstr ""
#: 01020000.xhp#hd_id3152484.79.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click while dragging an object. Note: you must first enable the <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Copy when moving</link> option in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Draw - General to use this shortcut key."
msgstr ""
#: 01020000.xhp#par_id3149450.80.help.text
msgid "Creates a copy of the dragged object when mouse button is released."
msgstr ""
#: 01020000.xhp#hd_id3154643.104.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter with keyboard focus (F6) on a drawing object icon on Tools bar"
msgstr ""
#: 01020000.xhp#par_id3150756.105.help.text
msgid "Inserts a drawing object of default size into the center of the current view."
msgstr ""
#: 01020000.xhp#hd_id3151189.106.help.text
msgid "Shift+F10"
msgstr ""
#: 01020000.xhp#par_id3151266.107.help.text
msgid "Opens the context menu for the selected object."
msgstr ""
#: 01020000.xhp#hd_id3156100.108.help.text
msgctxt "01020000.xhp#hd_id3156100.108.help.text"
msgid "F2"
msgstr ""
#: 01020000.xhp#par_id3156323.109.help.text
msgid "Enters text mode."
msgstr ""
#: 01020000.xhp#hd_id3147563.110.help.text
msgid "Enter"
msgstr ""
#: 01020000.xhp#par_id3150258.111.help.text
msgid "Enters text mode if a text object is selected."
msgstr ""
#: 01020000.xhp#hd_id3155851.112.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter"
msgstr ""
#: 01020000.xhp#par_id3154046.113.help.text
msgid "Enters text mode if a text object is selected. If there are no text objects or if you have cycled through all of the text objects on the page, a new page is inserted."
msgstr ""
#: 01020000.xhp#hd_id3149977.81.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>"
msgstr ""
#: 01020000.xhp#par_id3152812.82.help.text
msgid "Press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key and drag with the mouse to draw or resize an object from the center of the object outward."
msgstr ""
#: 01020000.xhp#hd_id3143232.83.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> + click on an object"
msgstr ""
#: 01020000.xhp#par_id3156007.84.help.text
msgid "Selects the object behind the currently selected object."
msgstr ""
#: 01020000.xhp#hd_id3147252.85.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+click an object"
msgstr ""
#: 01020000.xhp#par_id3145666.86.help.text
msgid "Selects the object in front of the currently selected object."
msgstr ""
#: 01020000.xhp#hd_id3155325.87.help.text
msgid "Shift key while selecting an object"
msgstr ""
#: 01020000.xhp#par_id3159343.88.help.text
msgid "Adds or removes object to or from the selection."
msgstr ""
#: 01020000.xhp#hd_id3083282.75.help.text
msgid "Shift+ drag while moving an object"
msgstr ""
#: 01020000.xhp#par_id3145620.76.help.text
msgid "The movement of the selected object is constrained by multiples of 45 degrees."
msgstr ""
#: 01020000.xhp#hd_id3154933.89.help.text
msgid "Shift+drag while creating or resizing an object"
msgstr ""
#: 01020000.xhp#par_id3148831.90.help.text
msgid "Constrains the size to keep the object's aspect ratio."
msgstr ""
#: 01020000.xhp#hd_id3154205.91.help.text
msgid "Tab"
msgstr ""
#: 01020000.xhp#par_id3148804.92.help.text
msgid "Cycles through the objects on the page in the order in which they were created."
msgstr ""
#: 01020000.xhp#hd_id3145410.93.help.text
msgid "Shift+Tab"
msgstr ""
#: 01020000.xhp#par_id3149764.94.help.text
msgid "Cycles through the objects on the page in the reverse-order in which they were created."
msgstr ""
#: 01020000.xhp#hd_id3158399.97.help.text
msgid "Esc"
msgstr ""
#: 01020000.xhp#par_id3109840.98.help.text
msgid "Exits current mode."
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,600 +0,0 @@
#. extracted from helpcontent2/source/text/shared/05.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2F05.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 00000130.xhp#tit.help.text
msgid "Index - Keyword Search in the Help"
msgstr ""
#: 00000130.xhp#bm_id3149428.help.text
msgid "<bookmark_value>Index tab in Help</bookmark_value><bookmark_value>Help; keywords</bookmark_value>"
msgstr ""
#: 00000130.xhp#hd_id3153884.5.help.text
msgid "<variable id=\"00000130\"><link href=\"text/shared/05/00000130.xhp\" name=\"Index - Keyword Search in the Help\">Index - Keyword Search in the Help</link></variable>"
msgstr ""
#: 00000130.xhp#par_id3150960.3.help.text
msgid "<ahelp hid=\"SFX2_COMBOBOX_TP_HELP_INDEX_CB_INDEX\" visibility=\"hidden\">Double-click an entry or type the word you want to find in the index.</ahelp>"
msgstr ""
#: 00000130.xhp#par_id3148668.8.help.text
msgid "<ahelp hid=\"SFX2_PUSHBUTTON_TP_HELP_INDEX_PB_OPEN_INDEX\" visibility=\"hidden\">Click to display the selected topic.</ahelp>"
msgstr ""
#: 00000130.xhp#par_id3155934.1.help.text
msgid "You can search for a specific topic by typing a word into the <emph>Search term</emph> text box. The window contains an alphabetical list of index terms."
msgstr ""
#: 00000130.xhp#par_id3145669.6.help.text
msgid "If the cursor is in the index list when you type the search term, the display will jump directly to the next match. When you type a word in the <emph>Search term</emph> text box, the focus will jump to the best match in the index list."
msgstr ""
#: 00000130.xhp#par_id3147653.7.help.text
msgid "The index and full-text searches always apply to the currently selected <item type=\"productname\">%PRODUCTNAME</item> application. Select the appropriate application using the list box on the help viewer's toolbar."
msgstr ""
#: 00000150.xhp#tit.help.text
msgid "Managing Bookmarks"
msgstr ""
#: 00000150.xhp#bm_id3153244.help.text
msgid "<bookmark_value>Help; bookmarks</bookmark_value><bookmark_value>bookmarks; Help</bookmark_value>"
msgstr ""
#: 00000150.xhp#hd_id3154349.2.help.text
msgid "<variable id=\"doc_title\"><link href=\"text/shared/05/00000150.xhp\" name=\"Managing Bookmarks\">Managing Bookmarks</link></variable>"
msgstr ""
#: 00000150.xhp#par_id3154840.11.help.text
msgid "<ahelp hid=\"SFX2_EDIT_DLG_HELP_ADDBOOKMARK_ED_BOOKMARK_TITLE\" visibility=\"hidden\">Displays the name of the bookmarked page. You can also type a new name for the bookmark.</ahelp>"
msgstr ""
#: 00000150.xhp#par_id3149140.help.text
msgid "<image src=\"sfx2/res/favourite.png\" id=\"img_id3149549\"><alt id=\"alt_id3149549\">Icon</alt></image>"
msgstr ""
#: 00000150.xhp#par_id3145314.10.help.text
msgid "Use the <emph>Add to Bookmarks</emph> icon to set a bookmark for the current page shown in the Help."
msgstr ""
#: 00000150.xhp#par_id3149827.3.help.text
msgid "You can find the bookmarks on the <emph>Bookmarks</emph> tab page."
msgstr ""
#: 00000150.xhp#par_id3145345.4.help.text
msgid "<ahelp hid=\"SFX2_LISTBOX_TP_HELP_BOOKMARKS_LB_BOOKMARKS\" visibility=\"visible\">Double-clicking a bookmark or pressing the Return key opens the assigned page in Help. A right-click opens the context menu.</ahelp>"
msgstr ""
#: 00000150.xhp#par_id3166410.5.help.text
msgid "Use the Del key to delete a selected bookmark."
msgstr ""
#: 00000150.xhp#par_id3145382.6.help.text
msgid "The following commands are on the context menu of a bookmark:"
msgstr ""
#: 00000150.xhp#par_id3147573.7.help.text
msgid "<emph>Display</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_OPEN\" visibility=\"visible\">displays the selected help subject</ahelp>."
msgstr ""
#: 00000150.xhp#par_id3150771.8.help.text
msgid "<emph>Rename</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_RENAME\" visibility=\"visible\">opens a dialog for entering another name for the bookmark</ahelp>."
msgstr ""
#: 00000150.xhp#par_id3153087.9.help.text
msgid "<emph>Delete</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_DELETE\" visibility=\"visible\">deletes the bookmark selected </ahelp>."
msgstr ""
#: err_html.xhp#tit.help.text
msgid "Help Page Not Found"
msgstr ""
#: err_html.xhp#hd_id3146957.1.help.text
msgid "Could not find Help page."
msgstr ""
#: err_html.xhp#par_id3147088.2.help.text
msgid "Unfortunately the Help page you selected was not found. The following data could be helpful in locating the error:"
msgstr ""
#: err_html.xhp#par_id3143268.3.help.text
msgid "Help ID: <emph><help-id-missing/></emph>"
msgstr ""
#: err_html.xhp#par_idN10681.help.text
msgid "You can install missing Help modules using the Setup application."
msgstr ""
#: err_html.xhp#par_id3150541.16.help.text
msgid "Click <image id=\"img_id3148946\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148946\">Icon</alt></image><emph>Back</emph> to return to the previous page."
msgstr ""
#: 00000120.xhp#tit.help.text
msgid "Help Agent, Tips and Extended Tips"
msgstr ""
#: 00000120.xhp#bm_id3150672.help.text
msgid "<bookmark_value>Help; Help tips</bookmark_value> <bookmark_value>tooltips; help</bookmark_value> <bookmark_value>Help Agent; help</bookmark_value> <bookmark_value>Clippy, see Help Agent</bookmark_value>"
msgstr ""
#: 00000120.xhp#hd_id3155599.1.help.text
msgid "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\" name=\"Help Agent, Tips and Extended Tips\">Help Agent, Tips and Extended Tips</link></variable>"
msgstr ""
#: 00000120.xhp#par_id3148520.2.help.text
msgid "The Help Agent, Tips, and Extended Tips provide help while you work. "
msgstr ""
#: 00000120.xhp#hd_id3147285.7.help.text
msgid "The Help Agent"
msgstr ""
#: 00000120.xhp#par_id3149716.8.help.text
msgid "The <link href=\"text/shared/optionen/01010600.xhp\" name=\"Help Agent\">Help Agent</link> starts automatically when you are performing a task that might require some assistance. The Help Agent appears in a small window in a corner of the document. To view the help for the task, click inside the Help Agent window."
msgstr ""
#: 00000120.xhp#par_idN10634.help.text
msgid "The Help Agent automatically closes after a short delay. If you ignore or close the Help Agent three times you perform a certain task, the Help Agent no longer opens for that task. To disable the Help Agent choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - General</emph>."
msgstr ""
#: 00000120.xhp#hd_id3149140.3.help.text
msgid "Tips"
msgstr ""
#: 00000120.xhp#par_id3157896.4.help.text
msgid "Tips provide you with the names of toolbar buttons. To display a tip, rest the pointer over a toolbar button until the name of the button appears."
msgstr ""
#: 00000120.xhp#par_id3153910.9.help.text
msgid "Tips are also displayed for some elements in a document, such as chapter names when you scroll through a long document."
msgstr ""
#: 00000120.xhp#par_id992156.help.text
msgid "Enable or disable the tips on <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - General</emph>."
msgstr ""
#: 00000120.xhp#hd_id3147571.5.help.text
msgid "Extended Tips"
msgstr ""
#: 00000120.xhp#par_id3149346.6.help.text
msgid "Extended tips provide a brief description about buttons and commands. To display an extended tip, press Shift+F1, then point to a button or command."
msgstr ""
#: 00000120.xhp#par_idN10666.help.text
msgid "If you always want extended tips instead of tips, enable the extended tips on <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - General</emph>."
msgstr ""
#: 00000110.xhp#tit.help.text
msgid "The %PRODUCTNAME Help Window"
msgstr ""
#: 00000110.xhp#hd_id3153884.1.help.text
msgid "<variable id=\"00000110\"><link href=\"text/shared/05/00000110.xhp\" name=\"The %PRODUCTNAME Help Window\">The <item type=\"productname\">%PRODUCTNAME</item> Help Window</link></variable>"
msgstr ""
#: 00000110.xhp#par_id3156183.25.help.text
msgid "The Help system for all versions of the software is based on the same source files. Some of the functions described in Help may not be included in this particular distribution. Some features specific to a distribution may not be mentioned in this Help."
msgstr ""
#: 00000110.xhp#par_id3147143.2.help.text
msgid "<ahelp hid=\".uno:HelpOnHelp\" visibility=\"hidden\">Provides an overview of the Help system</ahelp>The Help window shows the currently selected Help page."
msgstr ""
#: 00000110.xhp#par_id3159201.24.help.text
msgid "<ahelp hid=\"HID_HELP_TOOLBOX\">The <emph>Toolbar</emph> contains important functions for controlling the Help system</ahelp>:"
msgstr ""
#: 00000110.xhp#par_id3153311.help.text
msgid "<image id=\"img_id3155892\" src=\"sfx2/res/indexon_small.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155892\">Icon</alt></image>"
msgstr ""
#: 00000110.xhp#par_id3147089.3.help.text
msgid "<ahelp hid=\"HID_HELP_TOOLBOXITEM_INDEX\">Hides and shows the <emph>navigation pane</emph></ahelp>"
msgstr ""
#: 00000110.xhp#par_id3152781.help.text
msgid "<image id=\"img_id3149811\" src=\"res/sc06301.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149811\">Icon</alt></image>"
msgstr ""
#: 00000110.xhp#par_id3151111.5.help.text
msgid "<ahelp hid=\"HID_HELP_TOOLBOXITEM_BACKWARD\">Moves back to the <emph>previous</emph> page</ahelp>"
msgstr ""
#: 00000110.xhp#par_id3149415.help.text
msgid "<image id=\"img_id3159399\" src=\"cmd/sc_browseforward.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3159399\">Icon</alt></image>"
msgstr ""
#: 00000110.xhp#par_id3154514.6.help.text
msgid "<ahelp hid=\"HID_HELP_TOOLBOXITEM_FORWARD\">Moves forward to the <emph>next</emph> page</ahelp>"
msgstr ""
#: 00000110.xhp#par_id3149580.help.text
msgid "<image id=\"img_id3148642\" src=\"res/sc06303.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3148642\">Icon</alt></image>"
msgstr ""
#: 00000110.xhp#par_id3154285.4.help.text
msgid "<ahelp hid=\"HID_HELP_TOOLBOXITEM_START\">Moves to the <emph>first page</emph> of the current Help topic</ahelp>"
msgstr ""
#: 00000110.xhp#par_id3149797.help.text
msgid "<image id=\"img_id3155434\" src=\"cmd/sc_print.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155434\">Icon</alt></image>"
msgstr ""
#: 00000110.xhp#par_id3148563.7.help.text
msgid "<ahelp hid=\"HID_HELP_TOOLBOXITEM_PRINT\"><emph>Prints</emph> the current page</ahelp>"
msgstr ""
#: 00000110.xhp#par_id3145068.help.text
msgid "<image id=\"img_id3149294\" src=\"sfx2/res/favourite.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149294\">Icon</alt></image>"
msgstr ""
#: 00000110.xhp#par_id3154939.18.help.text
msgid "<ahelp hid=\"HID_HELP_TOOLBOXITEM_BOOKMARKS\">Adds this page to your bookmarks</ahelp>"
msgstr ""
#: 00000110.xhp#par_idN108D9.help.text
msgid "<image id=\"img_id7358623\" src=\"cmd/sc_recsearch.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id7358623\">Search icon</alt></image>"
msgstr ""
#: 00000110.xhp#par_idN108FE.help.text
msgid "<ahelp hid=\"HID_HELP_TOOLBOXITEM_SEARCHDIALOG\">Opens the <emph>Find on this page</emph> dialog.</ahelp>"
msgstr ""
#: 00000110.xhp#par_id3154366.21.help.text
msgid "These commands can also be found in the context menu of the Help document."
msgstr ""
#: 00000110.xhp#par_idN10922.help.text
msgid "Help Page"
msgstr ""
#: 00000110.xhp#par_idN10926.help.text
msgid "You can copy from the Help Viewer to the clipboard on your operating system with standard copy commands. For example:"
msgstr ""
#: 00000110.xhp#par_idN1092C.help.text
msgid "On a Help page, select the text that you want to copy."
msgstr ""
#: 00000110.xhp#par_idN10930.help.text
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C."
msgstr ""
#: 00000110.xhp#par_idN10933.help.text
msgid "To search the current Help page:"
msgstr ""
#: 00000110.xhp#par_idN10939.help.text
msgid "Click the <emph>Find on this Page</emph> icon."
msgstr ""
#: 00000110.xhp#par_idN10940.help.text
msgid "The <emph>Find on this Page</emph> dialog opens."
msgstr ""
#: 00000110.xhp#par_idN10A36.help.text
msgid "You can also click in the Help page and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
msgstr ""
#: 00000110.xhp#par_idN10A22.help.text
msgid "In the <emph>Search for</emph> box, enter the text that you want to find."
msgstr ""
#: 00000110.xhp#par_idN10A48.help.text
msgid "Select the search options that you want to use."
msgstr ""
#: 00000110.xhp#par_idN10A26.help.text
msgid "Click <emph>Find</emph>."
msgstr ""
#: 00000110.xhp#par_idN10A59.help.text
msgid "To find the next occurrence of the search term on the page, click <emph>Find</emph> again."
msgstr ""
#: 00000110.xhp#par_idN10906.help.text
msgid "<ahelp hid=\"sfx2:ComboBox:RID_DLG_SEARCH:ED_SEARCH\" visibility=\"hidden\">Enter the text that you want to search for or select a text entry in the list.</ahelp>"
msgstr ""
#: 00000110.xhp#par_idN10993.help.text
msgid "<ahelp hid=\"sfx2:CheckBox:RID_DLG_SEARCH:CB_WHOLEWORDS\" visibility=\"hidden\">Finds complete words only.</ahelp>"
msgstr ""
#: 00000110.xhp#par_idN109AA.help.text
msgid "<ahelp hid=\"sfx2:CheckBox:RID_DLG_SEARCH:CB_MATCHCASE\" visibility=\"hidden\">Distinguishes between uppercase text and lowercase text.</ahelp>"
msgstr ""
#: 00000110.xhp#par_idN109C1.help.text
msgid "<ahelp hid=\"sfx2:CheckBox:RID_DLG_SEARCH:CB_WRAPAROUND\" visibility=\"hidden\">Searches the entire Help page, starting at the current position of the cursor.</ahelp>"
msgstr ""
#: 00000110.xhp#par_idN109D8.help.text
msgid "<ahelp hid=\"sfx2:CheckBox:RID_DLG_SEARCH:CB_BACKWARDS\" visibility=\"hidden\">Searches backwards from the current position of the cursor.</ahelp>"
msgstr ""
#: 00000110.xhp#par_idN109F5.help.text
msgid "<ahelp hid=\"sfx2:PushButton:RID_DLG_SEARCH:PB_FIND\" visibility=\"hidden\">Finds the next occurrence of the search term.</ahelp>"
msgstr ""
#: 00000110.xhp#hd_id3149202.8.help.text
msgid "Navigation Pane"
msgstr ""
#: 00000110.xhp#par_id3148673.9.help.text
msgid "<ahelp hid=\"HID_HELP_TABCONTROL\">The navigation pane of the Help window contains the tab pages <emph>Contents</emph>, <emph>Index</emph>, <emph>Find</emph> and <emph>Bookmarks</emph>.</ahelp>"
msgstr ""
#: 00000110.xhp#par_id3159149.19.help.text
msgid "<ahelp hid=\"HID_HELP_LISTBOX\">The list box located at the very top is where you can select other <item type=\"productname\">%PRODUCTNAME</item> Help modules.</ahelp> The <emph>Index</emph> and <emph>Find</emph> tab pages only contain the data for the selected <item type=\"productname\">%PRODUCTNAME</item> module."
msgstr ""
#: 00000110.xhp#par_id3149983.14.help.text
msgid "<link href=\"text/shared/05/00000160.xhp\" name=\"Contents\">Contents</link>"
msgstr ""
#: 00000110.xhp#par_id3145748.15.help.text
msgid "Displays an index of the main topics of all modules."
msgstr ""
#: 00000110.xhp#par_id3155366.10.help.text
msgid "<link href=\"text/shared/05/00000130.xhp\" name=\"Index\">Index</link>"
msgstr ""
#: 00000110.xhp#par_id3151351.11.help.text
msgid "Displays a list of index keywords for the currently selected %PRODUCTNAME module."
msgstr ""
#: 00000110.xhp#par_id3149260.12.help.text
msgid "<link href=\"text/shared/05/00000140.xhp\" name=\"Find\">Find</link>"
msgstr ""
#: 00000110.xhp#par_id3154188.13.help.text
msgid "Allows you to carry out a full-text search. The search will include the entire Help contents of the currently selected <item type=\"productname\">%PRODUCTNAME</item> module."
msgstr ""
#: 00000110.xhp#par_id3154985.16.help.text
msgid "<link href=\"text/shared/05/00000150.xhp\" name=\"Bookmarks\">Bookmarks</link>"
msgstr ""
#: 00000110.xhp#par_id3156062.17.help.text
msgid "Contains user-defined bookmarks. You can edit or delete bookmarks, or click them to go to the corresponding pages."
msgstr ""
#: 00000160.xhp#tit.help.text
msgid "Contents - The Main Help Topics"
msgstr ""
#: 00000160.xhp#bm_id3147090.help.text
msgid "<bookmark_value>Help; topics</bookmark_value><bookmark_value>tree view of Help</bookmark_value>"
msgstr ""
#: 00000160.xhp#hd_id3146856.2.help.text
msgid "<variable id=\"doc_title\"><link href=\"text/shared/05/00000160.xhp\" name=\"Contents - The Main Help Topics\">Contents - The Main Help Topics</link></variable>"
msgstr ""
#: 00000160.xhp#par_id3147000.3.help.text
msgid "<ahelp hid=\"HID_HELP_TABPAGE_CONTENTS\">Displays the main help themes, arranged in a similar way to folders in a file manager.</ahelp>"
msgstr ""
#: 00000160.xhp#par_id3151315.help.text
msgid "<image id=\"img_id3152924\" src=\"sfx2/res/hlpbookclosed.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152924\">Icon</alt></image>"
msgstr ""
#: 00000160.xhp#par_id3150774.4.help.text
msgid "Double-click a closed folder to open it and display the subfolders and Help pages."
msgstr ""
#: 00000160.xhp#par_id3150506.help.text
msgid "<image id=\"img_id3156426\" src=\"sfx2/res/hlpbookopen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156426\">Icon</alt></image>"
msgstr ""
#: 00000160.xhp#par_id3154749.5.help.text
msgid "Double-click an open folder to close it and hide the subfolders and Help pages."
msgstr ""
#: 00000160.xhp#par_id3166410.help.text
msgid "<image id=\"img_id3150255\" src=\"sfx2/res/hlpdoc.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150255\">Icon</alt></image>"
msgstr ""
#: 00000160.xhp#par_id3152909.6.help.text
msgid "Double-click a document icon to display the corresponding Help page."
msgstr ""
#: 00000160.xhp#par_id3158432.7.help.text
msgid "Use the arrow keys in combination with the Return key to drop down and roll up entries and to open documents."
msgstr ""
#: 00000001.xhp#tit.help.text
msgid "Getting Support"
msgstr ""
#: 00000001.xhp#bm_id3143272.help.text
msgid "<bookmark_value>support on the Web</bookmark_value> <bookmark_value>getting support</bookmark_value> <bookmark_value>forums and support</bookmark_value> <bookmark_value>Web support</bookmark_value>"
msgstr ""
#: 00000001.xhp#hd_id3146873.1.help.text
msgid "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\" name=\"Getting Support\">Getting Support</link></variable>"
msgstr ""
#: 00000001.xhp#par_id3150667.8.help.text
msgid "You can find support on the %PRODUCTNAME website at <link href=\"http://www.libreoffice.org/get-help/\">www.libreoffice.org</link>."
msgstr ""
#: 00000001.xhp#par_id3154230.3.help.text
msgid "For a summary of the current support services refer to the <emph>Readme</emph> file in the <item type=\"productname\">%PRODUCTNAME</item> folder."
msgstr ""
#: 00000001.xhp#hd_id26327.help.text
msgid "Local language support pages"
msgstr ""
#: 00000001.xhp#par_id1318380.help.text
msgid "The %PRODUCTNAME localization projects offer support pages in local languages. Find an overview of the native language projects at <link href=\"http://www.libreoffice.org/international-sites/\">http://www.libreoffice.org/international-sites/</link>. You can find help and support in English language on the %PRODUCTNAME website at <link href=\"http://www.libreoffice.org/get-help/\">www.libreoffice.org</link>."
msgstr ""
#: 00000001.xhp#hd_id2611386.help.text
msgid "Mailing lists"
msgstr ""
#: 00000001.xhp#par_id3166335.help.text
msgid "Ask about %PRODUCTNAME, find help by volunteers, and discuss topics on the public mailing lists. You can find many general and specialized mailing lists on the %PRODUCTNAME website at <link href=\"http://www.libreoffice.org/get-help/mailing-lists/\">www.libreoffice.org/get-help/mailing-lists/</link>."
msgstr ""
#: 00000001.xhp#hd_id0915200811081722.help.text
msgid "Forum"
msgstr ""
#: 00000001.xhp#par_id0915200811081778.help.text
msgid "You can access web forums to ask and answer questions about %PRODUCTNAME."
msgstr ""
#: 00000001.xhp#hd_id0804200803314150.help.text
msgid "Security"
msgstr ""
#: 00000001.xhp#par_id0804200803314235.help.text
msgid "In case you are concerned about any security issue with using this software, you can contact the developers on the <link href=\"http://lists.freedesktop.org/mailman/listinfo/libreoffice\">public mail list</link>. If you want to discuss any issue with other users, send an email to the public mail list users@libreoffice.org."
msgstr ""
#: 00000001.xhp#hd_id3168534.help.text
msgid "Downloads"
msgstr ""
#: 00000001.xhp#par_id3028143.help.text
msgid "You can download the latest version of %PRODUCTNAME at <link href=\"http://www.libreoffice.org/download/\">www.libreoffice.org/download/</link>."
msgstr ""
#: 00000001.xhp#hd_id2602967.help.text
msgid "Documentation"
msgstr ""
#: 00000001.xhp#par_id3497211.help.text
msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME website at <link href=\"http://www.libreoffice.org/get-help/documentation/\">www.libreoffice.org/get-help/documentation/</link>."
msgstr ""
#: 00000001.xhp#hd_id0120200910361765.help.text
msgid "Participate and give back"
msgstr ""
#: 00000001.xhp#par_id0120200910361848.help.text
msgid "If you want to take an active role in the worldwide %PRODUCTNAME community, you are very welcome to give feedback, discuss features, propose enhancements, write your own article in an FAQ, how-to, manual, create a video tutorial, etc."
msgstr ""
#: 00000001.xhp#par_id0120200910361874.help.text
msgid "Visit the <link href=\"http://www.libreoffice.org/get-involved/\">Get involved page on the website</link> and follow the links for contributors."
msgstr ""
#: 00000002.xhp#tit.help.text
msgctxt "00000002.xhp#tit.help.text"
msgid "Icons in the Documentation"
msgstr ""
#: 00000002.xhp#hd_id3153116.1.help.text
msgid "<link href=\"text/shared/05/00000002.xhp\" name=\"Icons in the Documentation\">Icons in the Documentation</link>"
msgstr ""
#: 00000002.xhp#hd_id3154962.8.help.text
msgctxt "00000002.xhp#hd_id3154962.8.help.text"
msgid "Icons in the Documentation"
msgstr ""
#: 00000002.xhp#par_id3146961.9.help.text
msgid "There are three icons used to call your attention to additional helpful information."
msgstr ""
#: 00000002.xhp#par_id3156152.10.help.text
msgid "The \"Important!\" icon points out important information regarding data and system security."
msgstr ""
#: 00000002.xhp#par_id3153897.11.help.text
msgid "The \"Note\" icon points out extra information: for example, alternative ways to reach a certain goal."
msgstr ""
#: 00000002.xhp#par_id3154216.12.help.text
msgid "The \"Tip\" icon points out tips for working with the program in a more efficient manner."
msgstr ""
#: 00000140.xhp#tit.help.text
msgid "Find - The Full-Text Search"
msgstr ""
#: 00000140.xhp#bm_id3148532.help.text
msgid "<bookmark_value>Find tab in Help</bookmark_value><bookmark_value>Help; full-text search</bookmark_value><bookmark_value>full-text search in Help</bookmark_value>"
msgstr ""
#: 00000140.xhp#hd_id3148523.7.help.text
msgid "<variable id=\"00000140\"><link href=\"text/shared/05/00000140.xhp\" name=\"Find - The Full-Text Search\">Find - The Full-Text Search</link></variable>"
msgstr ""
#: 00000140.xhp#par_id3155599.2.help.text
msgid "<ahelp hid=\"SFX2_COMBOBOX_TP_HELP_SEARCH_ED_SEARCH\" visibility=\"hidden\">Enter the search term here. The search is not case-sensitive.</ahelp>"
msgstr ""
#: 00000140.xhp#par_id3153323.3.help.text
msgid "<ahelp hid=\"SFX2_PUSHBUTTON_TP_HELP_SEARCH_PB_SEARCH\" visibility=\"hidden\">Click to start a full-text search for the term you entered.</ahelp>"
msgstr ""
#: 00000140.xhp#par_id3150499.4.help.text
msgid "<ahelp hid=\"SFX2_LISTBOX_TP_HELP_SEARCH_LB_RESULT\" visibility=\"hidden\">Lists the headings of the pages found in your full-text search. To display a page, double-click its entry.</ahelp>"
msgstr ""
#: 00000140.xhp#par_id3156027.14.help.text
msgid "<ahelp hid=\"SFX2_CHECKBOX_TP_HELP_SEARCH_CB_FULLWORDS\" visibility=\"hidden\">Specifies whether to carry out an exact search for the word you entered. Incomplete words will not be found.</ahelp>"
msgstr ""
#: 00000140.xhp#par_id3155552.5.help.text
msgid "<ahelp hid=\"SFX2_CHECKBOX_TP_HELP_SEARCH_CB_SCOPE\" visibility=\"hidden\">Specifies whether to only search in document headings for the search term.</ahelp>"
msgstr ""
#: 00000140.xhp#par_id3155555.6.help.text
msgid "<ahelp hid=\"SFX2_PUSHBUTTON_TP_HELP_SEARCH_PB_OPEN_SEARCH\" visibility=\"hidden\">Displays the entry selected in the list.</ahelp>"
msgstr ""
#: 00000140.xhp#par_id3152552.8.help.text
msgid "The full text search function in $[officename] Help allows you to find Help documents that contain any combination of search terms. To do this, type one or more words into the <emph>Search term</emph> text field."
msgstr ""
#: 00000140.xhp#par_id3153345.9.help.text
msgid "The <emph>Search term</emph> text field stores the words you entered last. To repeat a previous search, click the arrow icon and select the term from the list."
msgstr ""
#: 00000140.xhp#par_id3155941.10.help.text
msgid "After the search has been carried out, the document headings of the results appear in a list. Either double-click an entry, or select it and click <emph>Display</emph> to load the corresponding Help document."
msgstr ""
#: 00000140.xhp#par_id3157958.11.help.text
msgid "Use the check box <emph>Find in headings only</emph> to limit the search to document headings."
msgstr ""
#: 00000140.xhp#par_id3147210.15.help.text
msgid "The <emph>Complete words only</emph> check box allows you to perform an exact search. If this box is marked, incomplete words will not be found. Do not mark this check box if the search term you enter should also be found as part of a longer word."
msgstr ""
#: 00000140.xhp#par_id3146798.12.help.text
msgid "You can enter any combination of search terms, separated by spaces. Searching is not case-sensitive."
msgstr ""
#: 00000140.xhp#par_id3149732.13.help.text
msgid "The index and full-text searches always apply to the currently selected %PRODUCTNAME application. Select the appropriate application using the list box on the help viewer's toolbar."
msgstr ""
#: 00000100.xhp#par_id3150699.help.text
msgid "The Help references the default settings of the program on a system that is set to defaults. Descriptions of colors, mouse actions, or other configurable items can be different for your program and system."
msgstr ""
#: 00000100.xhp#par_id3150618.1.help.text
msgid "The <emph>$[officename] Help system</emph> provides easy access to information and support. There are several ways to find what you are looking for in the <link href=\"text/shared/05/00000110.xhp\" name=\"Help environment\">Help environment</link>: You can search for a specific keyword in the <link href=\"text/shared/05/00000130.xhp\" name=\"Index\">Index</link>, carry out a full-text search under <link href=\"text/shared/05/00000140.xhp\" name=\"Find\">Find</link>, or look through a hierarchical list of the <link href=\"text/shared/05/00000160.xhp\" name=\"Topics\">Topics</link>."
msgstr ""

View File

@@ -1,42 +0,0 @@
#. extracted from helpcontent2/source/text/shared/07.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2F07.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 09000000.xhp#tit.help.text
msgid "Web Pages"
msgstr ""
#: 09000000.xhp#hd_id3156014.1.help.text
msgid "<link href=\"text/shared/07/09000000.xhp\" name=\"Web Pages\">Web Pages</link>"
msgstr ""
#: 09000000.xhp#par_id3146946.2.help.text
msgid "To create a new web page for the Internet, open a new <emph>HTML Document</emph> by choosing <emph>File - New</emph>."
msgstr ""
#: 09000000.xhp#par_id3143284.3.help.text
msgid "A tool for creating new web pages is the Web Layout mode, which you enable with <emph>View - Web Layout</emph>."
msgstr ""
#: 09000000.xhp#hd_id3147285.8.help.text
msgid "Creating a New Web Page"
msgstr ""
#: 09000000.xhp#par_id3150808.9.help.text
msgid "Switch to the web layout mode by choosing <emph>View - Web Layout</emph> or by opening a new HTML document."
msgstr ""
#: 09000000.xhp#par_id3145136.15.help.text
msgid "To create an HTML page from your $[officename] document, save the page using one of the \"HTML Document\" file types."
msgstr ""

View File

@@ -1,230 +0,0 @@
#. extracted from helpcontent2/source/text/shared/autokorr.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared%2Fautokorr.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 13000000.xhp#tit.help.text
msgctxt "13000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 13000000.xhp#hd_id3149513.1.help.text
msgctxt "13000000.xhp#hd_id3149513.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 13000000.xhp#hd_id3147090.2.help.text
msgid "1st ... has been replaced with 1st ..."
msgstr ""
#: 13000000.xhp#par_id3153220.3.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has corrected your text so that ordinal number suffixes have been superscripted."
msgstr ""
#: 08000000.xhp#tit.help.text
msgctxt "08000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 08000000.xhp#hd_id3147240.1.help.text
msgctxt "08000000.xhp#hd_id3147240.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 08000000.xhp#hd_id3152823.2.help.text
msgid "An URL has been detected and a hyperlink attribute has been set"
msgstr ""
#: 08000000.xhp#par_id3150278.3.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text. A string has been detected as an URL and is now shown as a hyperlink."
msgstr ""
#: 09000000.xhp#tit.help.text
msgctxt "09000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 09000000.xhp#hd_id3149976.1.help.text
msgctxt "09000000.xhp#hd_id3149976.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 09000000.xhp#hd_id3147543.2.help.text
msgid "Double spaces have been ignored"
msgstr ""
#: 09000000.xhp#par_id3149297.3.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has corrected your text so that the multiple spaces you have entered have now been reduced to one single space."
msgstr ""
#: 12000000.xhp#tit.help.text
msgctxt "12000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 12000000.xhp#hd_id3153116.1.help.text
msgctxt "12000000.xhp#hd_id3153116.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 12000000.xhp#hd_id3149551.2.help.text
msgid "Minus signs have been replaced"
msgstr ""
#: 12000000.xhp#par_id3148932.3.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text, and minus signs have been replaced with dashes."
msgstr ""
#: 04000000.xhp#tit.help.text
msgctxt "04000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 04000000.xhp#hd_id3154283.1.help.text
msgctxt "04000000.xhp#hd_id3154283.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 04000000.xhp#hd_id3154812.2.help.text
msgid "A replacement has been carried out"
msgstr ""
#: 04000000.xhp#par_id3159241.3.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has replaced a word."
msgstr ""
#: 03000000.xhp#tit.help.text
msgctxt "03000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 03000000.xhp#hd_id3152459.1.help.text
msgctxt "03000000.xhp#hd_id3152459.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 03000000.xhp#hd_id3146946.2.help.text
msgid "Two capital letters at the beginning of a word and a sentence have been corrected to one capital letter"
msgstr ""
#: 03000000.xhp#par_id3158397.3.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text so that a word beginning with two capital letters at the beginning of a sentence now starts with one capital letter."
msgstr ""
#: 01000000.xhp#tit.help.text
msgctxt "01000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 01000000.xhp#hd_id3148410.1.help.text
msgctxt "01000000.xhp#hd_id3148410.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 01000000.xhp#hd_id3146946.2.help.text
msgid "TWo INitial CApitals have been corrected"
msgstr ""
#: 01000000.xhp#par_id3158397.3.help.text
msgid "Typing errors such as \"WOrd\" have been corrected and replaced by the <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> function to \"Word\"."
msgstr ""
#: 06000000.xhp#tit.help.text
msgctxt "06000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 06000000.xhp#hd_id3148932.1.help.text
msgctxt "06000000.xhp#hd_id3148932.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 06000000.xhp#hd_id3158421.2.help.text
msgid "Double quotation marks (\") have been replaced"
msgstr ""
#: 06000000.xhp#par_id3146060.3.help.text
msgid "Your text was corrected by <link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">Autocorrect</link> so that double quotation marks were replaced by <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typographical quotation marks</link>."
msgstr ""
#: 02000000.xhp#tit.help.text
msgctxt "02000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 02000000.xhp#hd_id3155354.1.help.text
msgctxt "02000000.xhp#hd_id3155354.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 02000000.xhp#hd_id3150502.2.help.text
msgid "Start each sentence with a capital letter"
msgstr ""
#: 02000000.xhp#par_id3158397.3.help.text
msgid "Your text was corrected with <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> so that the current word began with a capital letter. AutoCorrect changes words at the beginning of a paragraph, and words after the character at the end of a sentence (period, exclamation point, question mark)."
msgstr ""
#: 07000000.xhp#tit.help.text
msgctxt "07000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 07000000.xhp#hd_id3153629.1.help.text
msgctxt "07000000.xhp#hd_id3153629.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 07000000.xhp#hd_id3149987.2.help.text
msgid "Single quotes have been replaced"
msgstr ""
#: 07000000.xhp#par_id3154688.3.help.text
msgid "You text was corrected by <link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">Autocorrect</link> so that single quotation marks were replaced by <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typographical quotation marks</link>."
msgstr ""
#: 05000000.xhp#tit.help.text
msgctxt "05000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 05000000.xhp#hd_id3155354.1.help.text
msgctxt "05000000.xhp#hd_id3155354.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 05000000.xhp#hd_id3156418.2.help.text
msgid "AutoCorrect has performed a replacement. The beginning of the sentence now starts with a capital letter"
msgstr ""
#: 05000000.xhp#par_id3153341.3.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has performed a replacement, and the beginning of the sentence now starts with a capital letter."
msgstr ""
#: 10000000.xhp#tit.help.text
msgctxt "10000000.xhp#tit.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 10000000.xhp#hd_id3147446.1.help.text
msgctxt "10000000.xhp#hd_id3147446.1.help.text"
msgid "AutoCorrect has been activated"
msgstr ""
#: 10000000.xhp#hd_id3155577.2.help.text
msgid "Bold and underline attributes have been recognized and applied"
msgstr ""
#: 10000000.xhp#par_id3156014.3.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text, and the bold and/or underline text attributes have been automatically applied."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,820 +0,0 @@
#. extracted from helpcontent2/source/text/simpress.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsimpress.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: main0101.xhp#tit.help.text
msgid "File"
msgstr ""
#: main0101.xhp#hd_id3153190.1.help.text
msgid "<link href=\"text/simpress/main0101.xhp\" name=\"File\">File</link>"
msgstr ""
#: main0101.xhp#par_id3154321.2.help.text
msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
msgstr ""
#: main0101.xhp#hd_id3149379.4.help.text
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr ""
#: main0101.xhp#hd_id3149018.6.help.text
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
msgstr ""
#: main0101.xhp#hd_id3145792.14.help.text
msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr ""
#: main0101.xhp#hd_id3145389.7.help.text
msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
msgstr ""
#: main0101.xhp#hd_id3155524.9.help.text
msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
msgstr ""
#: main0101.xhp#hd_id3150051.12.help.text
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr ""
#: main0101.xhp#hd_id3146965.13.help.text
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
msgstr ""
#: main0206.xhp#tit.help.text
msgid "Status Bar"
msgstr ""
#: main0206.xhp#hd_id3153768.1.help.text
msgid "<link href=\"text/simpress/main0206.xhp\" name=\"Status Bar\">Status Bar</link>"
msgstr ""
#: main0206.xhp#par_id3154020.2.help.text
msgid "The status bar displays information about your document, including the currently selected object. You can double-click some status bar items to open a related dialog window."
msgstr ""
#: main0103.xhp#tit.help.text
msgid "View"
msgstr ""
#: main0103.xhp#hd_id3150297.1.help.text
msgid "<link href=\"text/simpress/main0103.xhp\" name=\"View\">View</link>"
msgstr ""
#: main0103.xhp#par_id3149378.2.help.text
msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
msgstr ""
#: main0103.xhp#hd_id3149121.3.help.text
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr ""
#: main0000.xhp#tit.help.text
msgctxt "main0000.xhp#tit.help.text"
msgid "Welcome to the $[officename] Impress Help"
msgstr ""
#: main0000.xhp#hd_id3150746.1.help.text
msgctxt "main0000.xhp#hd_id3150746.1.help.text"
msgid "Welcome to the $[officename] Impress Help"
msgstr ""
#: main0000.xhp#hd_id3153000.5.help.text
msgid "How to Work With $[officename] Impress"
msgstr ""
#: main0000.xhp#hd_id3149880.7.help.text
msgid "$[officename] Impress Menus, Toolbars, and Keys"
msgstr ""
#: main0000.xhp#hd_id3148386.6.help.text
msgid "Help about the Help"
msgstr ""
#: main0104.xhp#tit.help.text
msgid "Insert"
msgstr ""
#: main0104.xhp#hd_id3153726.1.help.text
msgid "<link href=\"text/simpress/main0104.xhp\" name=\"Insert\">Insert</link>"
msgstr ""
#: main0104.xhp#par_id3146971.2.help.text
msgid "<ahelp hid=\".\">This menu contains the commands that are used to insert new elements into the document, for example, graphics, objects, special characters and other files.</ahelp>"
msgstr ""
#: main0104.xhp#hd_id3145801.3.help.text
msgid "<link href=\"text/simpress/01/04010000.xhp\" name=\"Slide\">Slide</link>"
msgstr ""
#: main0104.xhp#par_idN105C7.help.text
msgid "<link href=\"text/simpress/01/03152000.xhp\">Page Number</link>"
msgstr ""
#: main0104.xhp#par_idN10609.help.text
msgid "Adds the slide number or the page number."
msgstr ""
#: main0104.xhp#par_idN105D7.help.text
msgid "<link href=\"text/simpress/01/03152000.xhp\">Date and Time</link>"
msgstr ""
#: main0104.xhp#par_idN10624.help.text
msgid "Adds the date and time as a field."
msgstr ""
#: main0104.xhp#hd_id0915200910362363.help.text
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
msgstr ""
#: main0104.xhp#hd_id3153964.4.help.text
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
msgstr ""
#: main0104.xhp#hd_id3145790.10.help.text
msgctxt "main0104.xhp#hd_id3145790.10.help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr ""
#: main0104.xhp#par_idN10651.help.text
msgid "<link href=\"text/simpress/01/06050000.xhp\">Animated Image</link>"
msgstr ""
#: main0104.xhp#hd_id3145768.5.help.text
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
msgstr ""
#: main0104.xhp#hd_id3143232.7.help.text
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
msgstr ""
#: main0104.xhp#par_id0302200904013251.help.text
msgid "Inserts a chart."
msgstr ""
#: main0104.xhp#hd_id3153812.8.help.text
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr ""
#: main0104.xhp#hd_id3149050.9.help.text
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
msgstr ""
#: main0203.xhp#tit.help.text
msgid "Text Formatting Bar"
msgstr ""
#: main0203.xhp#hd_id3150010.1.help.text
msgid "<link href=\"text/simpress/main0203.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
msgstr ""
#: main0203.xhp#par_id3152597.2.help.text
msgid "To display the <emph>Text Formatting</emph> Bar, place the cursor inside a text object."
msgstr ""
#: main0203.xhp#hd_id3151391.4.help.text
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
msgstr ""
#: main0203.xhp#hd_id3154645.5.help.text
msgctxt "main0203.xhp#hd_id3154645.5.help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr ""
#: main0203.xhp#hd_id3149984.6.help.text
msgctxt "main0203.xhp#hd_id3149984.6.help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr ""
#: main0203.xhp#hd_id3153619.7.help.text
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/01/06050000.xhp\" name=\"Numbering Symbols\">Numbering Symbols</link></caseinline></switchinline>"
msgstr ""
#: main0203.xhp#hd_id0122200903104143.help.text
msgid "Increase Font"
msgstr ""
#: main0203.xhp#par_id0122200903104255.help.text
msgid "<ahelp hid=\".\">Increases the font size of the selected text.</ahelp>"
msgstr ""
#: main0203.xhp#hd_id0122200903104228.help.text
msgid "Reduce Font"
msgstr ""
#: main0203.xhp#par_id0122200903104247.help.text
msgid "<ahelp hid=\".\">Reduces the font size of the selected text.</ahelp>"
msgstr ""
#: main0503.xhp#tit.help.text
msgid "$[officename] Impress Features"
msgstr ""
#: main0503.xhp#hd_id3146119.1.help.text
msgid "<variable id=\"main0503\"><link href=\"text/simpress/main0503.xhp\" name=\"$[officename] Impress Features\">$[officename] Impress Features</link></variable>"
msgstr ""
#: main0503.xhp#par_id3151074.2.help.text
msgid "$[officename] Impress lets you create professional slide shows that can include charts, drawing objects, text, multimedia and a variety of other items. If you want, you can even import and modify Microsoft PowerPoint presentations."
msgstr ""
#: main0503.xhp#par_id3149379.3.help.text
msgid "For on-screen slide shows, animation, slide transitions and multimedia are a few of the techniques you can use to make your presentation more exciting."
msgstr ""
#: main0503.xhp#hd_id3154016.22.help.text
msgid "Creating Vector Graphics"
msgstr ""
#: main0503.xhp#par_id3154485.23.help.text
msgid "Many of the tools for creating vector graphics in $[officename] Draw are available in $[officename] Impress."
msgstr ""
#: main0503.xhp#hd_id3150208.12.help.text
msgid "Creating Slides"
msgstr ""
#: main0503.xhp#par_id3153247.13.help.text
msgid "$[officename] Impress provides you with templates to create professional-looking slides."
msgstr ""
#: main0503.xhp#par_id3148610.14.help.text
msgid "You can also assign a number of dynamic effects to your slides, including animation and transition effects."
msgstr ""
#: main0503.xhp#hd_id3153820.15.help.text
msgid "Creating Presentations"
msgstr ""
#: main0503.xhp#par_id3153917.16.help.text
msgid "Several views or pages are available when you design a slide show. For example, the Slide Sorter displays an overview of your slides in thumbnail form, while the Handout page contains both the slide and the text you want to distribute to the audience."
msgstr ""
#: main0503.xhp#par_id3148608.17.help.text
msgid "$[officename] Impress also lets you rehearse the timing of your slide show."
msgstr ""
#: main0503.xhp#hd_id3154649.24.help.text
msgid "Publishing Presentations"
msgstr ""
#: main0503.xhp#par_id3150046.25.help.text
msgid "You can publish your slides on-screen, as handouts, or as HTML documents."
msgstr ""
#: main0503.xhp#hd_id3146965.18.help.text
msgid "Giving Presentations"
msgstr ""
#: main0503.xhp#par_id3145114.19.help.text
msgid "$[officename] Impress gives you the choice of running a slide show automatically or manually."
msgstr ""
#: main0114.xhp#tit.help.text
msgid "Slide Show"
msgstr ""
#: main0114.xhp#hd_id3154011.1.help.text
msgid "<link href=\"text/simpress/main0114.xhp\" name=\"Slide Show\">Slide Show</link>"
msgstr ""
#: main0114.xhp#par_id3145252.2.help.text
msgid "<ahelp hid=\".\">Contains commands and options for running a presentation.</ahelp>"
msgstr ""
#: main0114.xhp#hd_id3154510.3.help.text
msgid "<link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show Settings\">Slide Show Settings</link>"
msgstr ""
#: main0114.xhp#hd_id3153486.5.help.text
msgctxt "main0114.xhp#hd_id3153486.5.help.text"
msgid "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interaction\">Interaction</link>"
msgstr ""
#: main0114.xhp#par_idN10611.help.text
msgid "<link href=\"text/simpress/01/06060000.xhp\">Custom Animation</link>"
msgstr ""
#: main0114.xhp#hd_id3153711.4.help.text
msgid "<link href=\"text/simpress/01/06100000.xhp\" name=\"Custom Slide Show\">Custom Slide Show</link>"
msgstr ""
#: main0213.xhp#tit.help.text
msgid "Options Bar"
msgstr ""
#: main0213.xhp#hd_id3150012.1.help.text
msgid "<link href=\"text/simpress/main0213.xhp\" name=\"Options Bar\">Options Bar</link>"
msgstr ""
#: main0213.xhp#par_id3146971.2.help.text
msgid "To display the <emph>Options Bar</emph>, choose <emph>View - Toolbars - Options</emph>."
msgstr ""
#: main0213.xhp#hd_id3148487.3.help.text
msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
msgstr ""
#: main0213.xhp#hd_id3148700.4.help.text
msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
msgstr ""
#: main0213.xhp#hd_id3149603.5.help.text
msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
msgstr ""
#: main0213.xhp#hd_id3143233.6.help.text
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
msgstr ""
#: main0213.xhp#hd_id3146966.7.help.text
msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
msgstr ""
#: main0213.xhp#hd_id3149051.8.help.text
msgid "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Snap to Object Border</link>"
msgstr ""
#: main0213.xhp#hd_id3150392.9.help.text
msgid "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Snap to Object Points</link>"
msgstr ""
#: main0213.xhp#hd_id3156401.10.help.text
msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
msgstr ""
#: main0213.xhp#hd_id3145823.11.help.text
msgid "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Select Text Area Only</link>"
msgstr ""
#: main0106.xhp#tit.help.text
msgid "Tools"
msgstr ""
#: main0106.xhp#hd_id3154017.1.help.text
msgid "<link href=\"text/simpress/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr ""
#: main0106.xhp#par_id3155064.2.help.text
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
msgstr ""
#: main0106.xhp#hd_id3153248.4.help.text
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr ""
#: main0106.xhp#hd_id3149130.6.help.text
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr ""
#: main0105.xhp#tit.help.text
msgid "Format"
msgstr ""
#: main0105.xhp#hd_id3152596.1.help.text
msgid "<link href=\"text/simpress/main0105.xhp\" name=\"Format\">Format</link>"
msgstr ""
#: main0105.xhp#par_id3145801.2.help.text
msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr ""
#: main0105.xhp#hd_id3147401.8.help.text
msgctxt "main0105.xhp#hd_id3147401.8.help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr ""
#: main0105.xhp#hd_id3149941.10.help.text
msgctxt "main0105.xhp#hd_id3149941.10.help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr ""
#: main0105.xhp#hd_id3147299.15.help.text
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr ""
#: main0105.xhp#hd_id3148727.11.help.text
msgid "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Page</link>"
msgstr ""
#: main0105.xhp#hd_id3149499.6.help.text
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
msgstr ""
#: main0105.xhp#hd_id3154510.3.help.text
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
msgstr ""
#: main0105.xhp#hd_id3149021.4.help.text
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
msgstr ""
#: main0105.xhp#hd_id3155961.5.help.text
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
msgstr ""
#: main0105.xhp#hd_id3156286.4.help.text
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
msgstr ""
#: main0105.xhp#hd_id3163827.12.help.text
msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
msgstr ""
#: main0113.xhp#tit.help.text
msgid "Modify"
msgstr ""
#: main0113.xhp#hd_id3154020.1.help.text
msgid "<link href=\"text/simpress/main0113.xhp\" name=\"Modify\">Modify</link>"
msgstr ""
#: main0113.xhp#par_id3154321.2.help.text
msgid "<ahelp hid=\".\">Contains commands for modifying objects in your document.</ahelp>"
msgstr ""
#: main0113.xhp#hd_id3153188.9.help.text
msgid "<link href=\"text/shared/02/05090000.xhp\" name=\"Rotate\">Rotate</link>"
msgstr ""
#: main0113.xhp#par_id3149378.10.help.text
msgid "Rotates the selected object(s)."
msgstr ""
#: main0113.xhp#hd_id3149019.8.help.text
msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribution</link>"
msgstr ""
#: main0113.xhp#hd_id3153966.3.help.text
msgid "<link href=\"text/shared/01/05190000.xhp\" name=\"Name Object\">Name Object</link>"
msgstr ""
#: main0113.xhp#hd_id3154656.4.help.text
msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
msgstr ""
#: main0113.xhp#hd_id3153484.7.help.text
msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr ""
#: main0113.xhp#hd_id3148870.5.help.text
msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Edit Group\">Edit Group</link>"
msgstr ""
#: main0113.xhp#hd_id3143233.6.help.text
msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
msgstr ""
#: main0102.xhp#tit.help.text
msgid "Edit"
msgstr ""
#: main0102.xhp#hd_id3153726.1.help.text
msgid "<link href=\"text/simpress/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
#: main0102.xhp#par_id3151075.2.help.text
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
msgstr ""
#: main0102.xhp#hd_id3146316.3.help.text
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
msgstr ""
#: main0102.xhp#hd_id3154659.4.help.text
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
msgstr ""
#: main0102.xhp#hd_id3148866.5.help.text
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
msgstr ""
#: main0102.xhp#hd_id3154649.11.help.text
msgctxt "main0102.xhp#hd_id3154649.11.help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
msgstr ""
#: main0102.xhp#par_id3154766.12.help.text
msgid "Switches the <emph>Edit Points</emph> mode on and off."
msgstr ""
#: main0102.xhp#hd_id3145116.13.help.text
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
msgstr ""
#: main0102.xhp#par_id3147403.14.help.text
msgid "Switches the <emph>Edit Glue Points</emph> mode on and off."
msgstr ""
#: main0102.xhp#hd_id3150396.6.help.text
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
msgstr ""
#: main0102.xhp#hd_id3149355.8.help.text
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr ""
#: main0102.xhp#hd_id3145590.9.help.text
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
msgstr ""
#: main0102.xhp#hd_id3145082.10.help.text
msgctxt "main0102.xhp#hd_id3145082.10.help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr ""
#: main0211.xhp#tit.help.text
msgid "Outline Bar"
msgstr ""
#: main0211.xhp#hd_id3154013.1.help.text
msgid "<link href=\"text/simpress/main0211.xhp\" name=\"Outline Bar\">Outline Bar</link>"
msgstr ""
#: main0211.xhp#par_id3145252.2.help.text
msgid "<ahelp hid=\".\">In<emph> Outline View</emph>, the Outline bar contains frequently used editing tools.</ahelp> Click the arrow next to an icon to open a toolbar that contains additional commands."
msgstr ""
#: main0211.xhp#hd_id3153912.8.help.text
msgctxt "main0211.xhp#hd_id3153912.8.help.text"
msgid "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Slide Show</link>"
msgstr ""
#: main0209.xhp#tit.help.text
msgid "Rulers"
msgstr ""
#: main0209.xhp#bm_id3153191.help.text
msgid "<bookmark_value>rulers; in presentations</bookmark_value><bookmark_value>origin of rulers</bookmark_value>"
msgstr ""
#: main0209.xhp#hd_id3153191.1.help.text
msgid "<link href=\"text/simpress/main0209.xhp\" name=\"Rulers\">Rulers</link>"
msgstr ""
#: main0209.xhp#par_id3149666.2.help.text
msgid "You can use vertical and horizontal rulers at the left and upper edges of the $[officename] Impress workspace to assist you in creating your slide. The sections of the rulers that cover the area of the slide are white."
msgstr ""
#: main0209.xhp#par_id3153963.4.help.text
msgid "When you select an object, its dimensions are displayed on the rulers as gray double lines. To precisely resize the object, drag one of the double lines to a new location on the ruler."
msgstr ""
#: main0209.xhp#par_id3150206.8.help.text
msgid "When you select a text object on a slide, indents and tabs are displayed on the horizontal ruler. To change the indent or tab settings for the text object, drag an indent or a tab marker to a new location on the ruler."
msgstr ""
#: main0209.xhp#par_id3150253.7.help.text
msgid "You can also drag a <link href=\"text/simpress/01/04030000.xhp\" name=\"snap line\">snap line</link> from a ruler to help you align objects on your slide. To insert a snap line using a ruler, drag the edge of a ruler into the slide."
msgstr ""
#: main0209.xhp#par_id3153820.3.help.text
msgid "To show or hide the rulers, choose <link href=\"text/simpress/01/03060000.xhp\" name=\"View - Rulers\"><emph>View - Rulers</emph></link>. "
msgstr ""
#: main0209.xhp#par_id3148609.9.help.text
msgid "To specify the measurement units for a ruler, right-click the ruler, and then choose a new unit from the list."
msgstr ""
#: main0209.xhp#par_id3149129.6.help.text
msgid "To change the origin (0 point) of the rulers, drag the intersection of the two rulers in the top left corner into the workspace. Vertical and horizontal guides appear. Continue to drag until the vertical and horizontal guides are where you want the new origin to be, and then release. To reset the origins of the rulers to the default values, double-click the intersection."
msgstr ""
#: main0209.xhp#par_id3154651.5.help.text
msgid "To change the slide margins, drag the edge of the white areas in the rulers."
msgstr ""
#: main0212.xhp#tit.help.text
msgid "Slide Sorter Bar"
msgstr ""
#: main0212.xhp#hd_id3149664.1.help.text
msgid "<link href=\"text/simpress/main0212.xhp\" name=\"Slide Sorter Bar\">Slide Sorter Bar</link>"
msgstr ""
#: main0212.xhp#par_id3146970.2.help.text
msgid "<ahelp hid=\".\">In<emph> Slide Sorter</emph> view, the <emph>Slide Sorter</emph> bar can be used.</ahelp>"
msgstr ""
#: main0212.xhp#hd_id3153711.8.help.text
msgctxt "main0212.xhp#hd_id3153711.8.help.text"
msgid "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Slide Show</link>"
msgstr ""
#: main0200.xhp#tit.help.text
msgid "Toolbars"
msgstr ""
#: main0200.xhp#hd_id3147434.1.help.text
msgid "<variable id=\"main0200\"><link href=\"text/simpress/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr ""
#: main0200.xhp#par_id31474099.help.text
msgid "Add objects, including charts, spreadsheets, and images, to your document."
msgstr ""
#: main0100.xhp#tit.help.text
msgid "Menus"
msgstr ""
#: main0100.xhp#hd_id3149664.1.help.text
msgid "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr ""
#: main0100.xhp#par_id3150012.2.help.text
msgid "The following section lists the help topics available for menus and dialogs."
msgstr ""
#: main0210.xhp#tit.help.text
msgid "Drawing Bar"
msgstr ""
#: main0210.xhp#hd_id3150342.1.help.text
msgid "<link href=\"text/simpress/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
msgstr ""
#: main0210.xhp#par_id3150202.2.help.text
msgid "<ahelp hid=\".\">The <emph>Drawing</emph> bar contains frequently used editing tools. Click the arrow next to an icon to open a toolbar that contains additional commands.</ahelp>"
msgstr ""
#: main0210.xhp#par_id31502029.help.text
msgid "You can view the Drawing bar also from a text document or spreadsheet. The set of visible icons can be slightly different according to the current document type."
msgstr ""
#: main0210.xhp#hd_id3155962.3.help.text
msgid "Select"
msgstr ""
#: main0210.xhp#par_id3148488.4.help.text
msgid "To select an object on the current slide, click the <emph>Select</emph> tool (white arrow) on the Drawing bar, and then click the object."
msgstr ""
#: main0210.xhp#par_id3148610.5.help.text
msgid "To select more than one object, hold down Shift while you click."
msgstr ""
#: main0210.xhp#par_id3148699.6.help.text
msgid "To select an object that is behind another object, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then click the object. To select the next underlying object in the stacking, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then click again. To return the selection to the previously selected object, hold down Shift + <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then click."
msgstr ""
#: main0210.xhp#par_id3154651.7.help.text
msgid "To add text to a selected object, double-click the object and type or enter your text."
msgstr ""
#: main0210.xhp#par_id3153812.12.help.text
msgid "To remove a selection, click anywhere outside the selected object, or press Escape."
msgstr ""
#: main0210.xhp#par_idN106B0.help.text
msgid "<link href=\"text/simpress/02/10060000.xhp\">Rectangle</link>"
msgstr ""
#: main0210.xhp#par_idN106C0.help.text
msgid "Draws a filled rectangle where you drag in the current document. Click where you want to place a corner of the rectangle, and drag to the size you want. To draw a square, hold down Shift while you drag."
msgstr ""
#: main0210.xhp#par_idN106CD.help.text
msgid "<link href=\"text/simpress/02/10070000.xhp\">Ellipse</link>"
msgstr ""
#: main0210.xhp#par_idN106DD.help.text
msgid "Draws a filled oval where you drag in the current document. Click where you want to draw the oval, and drag to the size you want. To draw a circle, hold down Shift while you drag."
msgstr ""
#: main0210.xhp#par_idN106EA.help.text
msgid "<link href=\"text/simpress/02/10050000.xhp\">Text</link>"
msgstr ""
#: main0210.xhp#par_idN106FA.help.text
msgid "Draws a text box where you click or drag in the current document. Click anywhere in the document, and then type or paste your text."
msgstr ""
#: main0210.xhp#par_idN107C8.help.text
msgid "<link href=\"text/simpress/02/10120000.xhp\" name=\"Lines and Arrows\">Lines and Arrows</link>"
msgstr ""
#: main0210.xhp#par_idN126D7.help.text
msgid "Opens the Arrows toolbar to insert lines and arrows."
msgstr ""
#: main0210.xhp#par_idN10770.help.text
msgctxt "main0210.xhp#par_idN10770.help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
msgstr ""
#: main0210.xhp#par_idN10780.help.text
msgid "Enables you to edit points on your drawing."
msgstr ""
#: main0210.xhp#par_idN10783.help.text
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue Points</link>"
msgstr ""
#: main0210.xhp#par_idN10793.help.text
msgid "Enables you to edit glue points on your drawing."
msgstr ""
#: main0210.xhp#par_idN10803.help.text
msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
msgstr ""
#: main0210.xhp#hd_id3153078.8.help.text
msgid "<link href=\"text/simpress/02/10030000.xhp\" name=\"Rotate\">Rotate</link>"
msgstr ""
#: main0210.xhp#par_id3154556.9.help.text
msgid "This tool is used to rotate the object."
msgstr ""
#: main0210.xhp#par_idN107FF.help.text
msgid "<link href=\"text/shared/3dsettings_toolbar.xhp\">Extrusion On/Off</link>"
msgstr ""
#: main0210.xhp#par_idN1080F.help.text
msgid "Switches the 3D effects on and off for the selected objects."
msgstr ""
#: main0210.xhp#hd_id3145350.11.help.text
msgctxt "main0210.xhp#hd_id3145350.11.help.text"
msgid "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interaction\">Interaction</link>"
msgstr ""
#: main0214.xhp#tit.help.text
msgid "Picture Bar"
msgstr ""
#: main0214.xhp#hd_id3151245.1.help.text
msgid "<link href=\"text/simpress/main0214.xhp\" name=\"Picture Bar\">Picture Bar</link>"
msgstr ""
#: main0214.xhp#par_id3150543.2.help.text
msgid "Use the <emph>Picture</emph> bar to set the color, contrast, and brightness options for the selected graphic object(s)."
msgstr ""
#: main0204.xhp#tit.help.text
msgid "Slide View Bar"
msgstr ""
#: main0204.xhp#hd_id3150010.1.help.text
msgid "<link href=\"text/simpress/main0204.xhp\" name=\"Slide View Bar\">Slide View Bar</link>"
msgstr ""
#: main0204.xhp#par_id3146971.2.help.text
msgid "<ahelp hid=\"dummy\">The <emph>Slide View</emph> bar opens with the Slide Sorter view.</ahelp>"
msgstr ""
#: main0202.xhp#tit.help.text
msgid "Line and Filling Bar"
msgstr ""
#: main0202.xhp#hd_id3149664.1.help.text
msgid "<link href=\"text/simpress/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
msgstr ""
#: main0202.xhp#par_id3153729.2.help.text
msgid "<ahelp hid=\".\">The Line and Filling Bar contains commands and options that you can apply in the current view.</ahelp>"
msgstr ""
#: main0202.xhp#hd_id3156382.3.help.text
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
msgstr ""
#: main0202.xhp#hd_id3159184.4.help.text
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr ""
#: main0202.xhp#hd_id3150250.5.help.text
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
msgstr ""
#: main0202.xhp#hd_id3148609.6.help.text
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
msgstr ""
#: main0202.xhp#hd_id3150048.7.help.text
msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
msgstr ""
#: main0107.xhp#tit.help.text
msgid "Window"
msgstr ""
#: main0107.xhp#hd_id3153770.1.help.text
msgid "<link href=\"text/simpress/main0107.xhp\" name=\"Window\">Window</link>"
msgstr ""
#: main0107.xhp#par_id3147435.2.help.text
msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
msgstr ""

View File

@@ -1,687 +0,0 @@
#. extracted from helpcontent2/source/text/simpress/00.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsimpress%2F00.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:03+0200\n"
"PO-Revision-Date: 2011-03-29 20:40+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 00000407.xhp#tit.help.text
msgctxt "00000407.xhp#tit.help.text"
msgid "Slide Show Menu"
msgstr ""
#: 00000407.xhp#hd_id3150541.1.help.text
msgctxt "00000407.xhp#hd_id3150541.1.help.text"
msgid "Slide Show Menu"
msgstr ""
#: 00000407.xhp#par_id3158394.2.help.text
msgid "<variable id=\"etdaw\">Choose <emph>Slide Show - Slide Transition</emph></variable>"
msgstr ""
#: 00000407.xhp#par_id3152576.3.help.text
msgid "Choose <emph>Insert - Animated Image</emph>"
msgstr ""
#: 00000407.xhp#par_id3149262.6.help.text
msgid "Choose <emph>Slide Show - Custom Animation</emph>"
msgstr ""
#: 00000407.xhp#par_id3146976.7.help.text
msgctxt "00000407.xhp#par_id3146976.7.help.text"
msgid "On the <emph>Drawing</emph> toolbar, click"
msgstr ""
#: 00000407.xhp#par_id3155603.help.text
msgid "<image id=\"img_id3149400\" src=\"cmd/sc_customanimation.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149400\">Icon</alt></image>"
msgstr ""
#: 00000407.xhp#par_id3154754.8.help.text
msgid "Custom Animation"
msgstr ""
#: 00000407.xhp#par_id3146316.9.help.text
msgid "Choose <emph>Slide Show - Interaction</emph>"
msgstr ""
#: 00000407.xhp#par_id3149257.10.help.text
msgctxt "00000407.xhp#par_id3149257.10.help.text"
msgid "On the <emph>Drawing</emph> toolbar, click"
msgstr ""
#: 00000407.xhp#par_id3154649.help.text
msgid "<image id=\"img_id3150205\" src=\"cmd/sc_animationeffects.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150205\">Icon</alt></image>"
msgstr ""
#: 00000407.xhp#par_id3155380.11.help.text
msgid "Interaction"
msgstr ""
#: 00000407.xhp#par_id3152987.12.help.text
msgid "<variable id=\"praesent\">Choose <emph>Slide Show - Slide Show Settings</emph></variable>"
msgstr ""
#: 00000407.xhp#par_id3155089.13.help.text
msgid "<variable id=\"indipra\">Choose <emph>Slide Show - Custom Slide Show</emph></variable>"
msgstr ""
#: 00000401.xhp#tit.help.text
msgctxt "00000401.xhp#tit.help.text"
msgid "File Menu"
msgstr ""
#: 00000401.xhp#hd_id3153188.1.help.text
msgctxt "00000401.xhp#hd_id3153188.1.help.text"
msgid "File Menu"
msgstr ""
#: 00000401.xhp#par_id3146974.2.help.text
msgid "<variable id=\"dtvlc\">Choose <emph>File - Export</emph></variable>"
msgstr ""
#: 00000404.xhp#tit.help.text
msgctxt "00000404.xhp#tit.help.text"
msgid "Insert Menu"
msgstr ""
#: 00000404.xhp#hd_id3143219.1.help.text
msgctxt "00000404.xhp#hd_id3143219.1.help.text"
msgid "Insert Menu"
msgstr ""
#: 00000404.xhp#par_id3147264.2.help.text
msgid "Choose <emph>Insert - Slide</emph>"
msgstr ""
#: 00000404.xhp#par_id3152597.3.help.text
msgid "On the <emph>Presentation</emph> bar, click"
msgstr ""
#: 00000404.xhp#par_id3145251.help.text
msgid "<image id=\"img_id3151073\" src=\"cmd/sc_insertdoc.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151073\">Icon</alt></image>"
msgstr ""
#: 00000404.xhp#par_id3154512.4.help.text
msgid "Slide"
msgstr ""
#: 00000404.xhp#par_id3155064.5.help.text
msgid "<variable id=\"seiteduplizieren\">Choose <emph>Insert - Duplicate Slide</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3153711.6.help.text
msgid "<variable id=\"seitegliederung\">Choose <emph>Insert - Expand Slide</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3154254.7.help.text
msgid "<variable id=\"uebersicht\">Choose <emph>Insert - Summary Slide</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3147002.8.help.text
msgid "Choose <emph>Insert - Layer</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000404.xhp#par_id3150363.27.help.text
msgid "Open context menu of layer tabs - choose <emph>Insert Layer</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000404.xhp#par_id3155376.9.help.text
msgid "Choose <emph>Insert - Insert Snap Point/Line</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000404.xhp#par_id3154372.28.help.text
msgid "Open a context menu and choose <emph>Insert Snap Point/Line</emph>"
msgstr ""
#: 00000404.xhp#par_id3145388.10.help.text
msgid "<variable id=\"efglbe\">Select a snap point or line, open the context menu, and choose <emph>Edit Snap Point/Line</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3151239.11.help.text
msgid "Choose <emph>Insert - Spreadsheet</emph>"
msgstr ""
#: 00000404.xhp#par_id3144769.12.help.text
msgctxt "00000404.xhp#par_id3144769.12.help.text"
msgid "On the <emph>Insert</emph> toolbar, click"
msgstr ""
#: 00000404.xhp#par_id3163703.help.text
msgid "<image id=\"img_id3145361\" src=\"cmd/sc_grid.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145361\">Icon</alt></image>"
msgstr ""
#: 00000404.xhp#par_id3146963.13.help.text
msgid "Spreadsheet"
msgstr ""
#: 00000404.xhp#par_id3153075.14.help.text
msgid "Choose <emph>Insert - File</emph>"
msgstr ""
#: 00000404.xhp#par_id3153958.15.help.text
msgctxt "00000404.xhp#par_id3153958.15.help.text"
msgid "On the <emph>Insert</emph> toolbar, click"
msgstr ""
#: 00000404.xhp#par_id3156397.help.text
msgid "<image id=\"img_id3145237\" src=\"cmd/sc_inserttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145237\">Icon</alt></image>"
msgstr ""
#: 00000404.xhp#par_id3157900.16.help.text
msgid "File"
msgstr ""
#: 00000404.xhp#par_id3149351.17.help.text
msgid "<variable id=\"feldbf\">Choose <emph>Insert - Fields</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3150477.22.help.text
msgid "<variable id=\"feldbf1\">Choose <emph>Insert - Fields - Date (fixed)</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3146879.18.help.text
msgid "<variable id=\"feldbf2\">Choose <emph>Insert - Fields - Date (variable)</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3153036.19.help.text
msgid "<variable id=\"feldbf3\">Choose <emph>Insert - Fields - Time (fixed)</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3145590.20.help.text
msgid "<variable id=\"feldbf4\">Choose <emph>Insert - Fields - Time (variable)</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3153935.21.help.text
msgid "<variable id=\"feldbf5\">Choose Insert <switchinline select=\"appl\"><caseinline select=\"DRAW\">- Fields </caseinline></switchinline>- Page Number </variable>"
msgstr ""
#: 00000404.xhp#par_id3148583.23.help.text
msgid "<variable id=\"feldbf6\">Choose <emph>Insert - Fields - Author</emph></variable>"
msgstr ""
#: 00000404.xhp#par_id3155951.24.help.text
msgid "<variable id=\"feldbf7\">Choose <emph>Insert - Fields - File Name</emph></variable>"
msgstr ""
#: 00000413.xhp#tit.help.text
msgctxt "00000413.xhp#tit.help.text"
msgid "Modify Menu"
msgstr ""
#: 00000413.xhp#hd_id3152578.1.help.text
msgctxt "00000413.xhp#hd_id3152578.1.help.text"
msgid "Modify Menu"
msgstr ""
#: 00000413.xhp#par_id3151075.2.help.text
msgid "Choose <emph>Modify - Convert </emph>(<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3153415.46.help.text
msgid "Open the context menu of a selected object and choose <emph>Convert</emph>"
msgstr ""
#: 00000413.xhp#par_id3149124.3.help.text
msgid "Choose <emph>Modify - Convert - To Curve</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3149018.27.help.text
msgid "Open the context menu of a selected object and choose <emph>Convert - To Curve</emph>"
msgstr ""
#: 00000413.xhp#par_id3156384.4.help.text
msgid "Choose <emph>Modify - Convert - To Polygon</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3154702.26.help.text
msgid "Open the context menu of a selected object and choose <emph>Convert - To Polygon</emph>"
msgstr ""
#: 00000413.xhp#par_id3147001.5.help.text
msgid "Choose <emph>Modify - Convert - To 3D</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3155111.28.help.text
msgid "Open the context menu of a selected object and choose <emph>Convert - To 3D </emph>"
msgstr ""
#: 00000413.xhp#par_id3150205.6.help.text
msgid "Choose <emph>Modify - Convert - To 3D Rotation Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3152992.29.help.text
msgid "Open the context menu of a selected object and choose <emph>Convert - To 3D Rotation Body</emph>"
msgstr ""
#: 00000413.xhp#par_id3152986.33.help.text
msgid "Choose <emph>Modify - Convert - To Bitmap</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3149409.34.help.text
msgid "Open the context menu of a selected object and choose <emph>Convert - To Bitmap</emph>"
msgstr ""
#: 00000413.xhp#par_id3148870.35.help.text
msgid "Choose <emph>Modify - Convert - To Metafile</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3148608.36.help.text
msgid "Open the context menu of a selected object and choose <emph>Convert - To Metafile</emph>"
msgstr ""
#: 00000413.xhp#par_id3153246.41.help.text
msgid "Choose <emph>Modify - Convert - To Contour</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3159231.42.help.text
msgid "Open the context menu of a selected object and choose <emph>Convert - To Contour</emph>"
msgstr ""
#: 00000413.xhp#par_id3153008.7.help.text
msgid "Choose <emph>Modify - Arrange - In Front of Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3145117.30.help.text
msgid "Open the context menu of a selected object and choose <emph>Arrange - In Front of Object</emph>"
msgstr ""
#: 00000413.xhp#par_id3147249.8.help.text
msgctxt "00000413.xhp#par_id3147249.8.help.text"
msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
msgstr ""
#: 00000413.xhp#par_id3150537.help.text
msgid "<image id=\"img_id3145233\" src=\"cmd/sc_beforeobject.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145233\">Icon</alt></image>"
msgstr ""
#: 00000413.xhp#par_id3153121.9.help.text
msgid "In Front of Object"
msgstr ""
#: 00000413.xhp#par_id3150654.10.help.text
msgid "Choose <emph>Modify - Arrange - Behind Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3150482.31.help.text
msgid "Open the context menu of a selected object and choose <emph>Arrange - Behind Object</emph>"
msgstr ""
#: 00000413.xhp#par_id3149886.11.help.text
msgctxt "00000413.xhp#par_id3149886.11.help.text"
msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
msgstr ""
#: 00000413.xhp#par_id3150865.help.text
msgid "<image id=\"img_id3145597\" src=\"cmd/sc_behindobject.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145597\">Icon</alt></image>"
msgstr ""
#: 00000413.xhp#par_id3153110.12.help.text
msgid "Behind Object"
msgstr ""
#: 00000413.xhp#par_id3150002.13.help.text
msgid "Choose <emph>Modify - Arrange - Reverse</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3150339.32.help.text
msgid "Open the context menu of a selected object and choose <emph>Arrange - Reverse</emph>"
msgstr ""
#: 00000413.xhp#par_id3145164.14.help.text
msgctxt "00000413.xhp#par_id3145164.14.help.text"
msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
msgstr ""
#: 00000413.xhp#par_id3154327.help.text
msgid "<image id=\"img_id3155439\" src=\"cmd/sc_reverseorder.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155439\">Icon</alt></image>"
msgstr ""
#: 00000413.xhp#par_id3150272.15.help.text
msgid "Reverse"
msgstr ""
#: 00000413.xhp#par_id3145298.21.help.text
msgid "Choose <emph>Modify - Combine</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3148386.47.help.text
msgid "Select two or more objects, open the context menu and choose <emph>Combine</emph>. "
msgstr ""
#: 00000413.xhp#par_id3150930.22.help.text
msgid "Choose <emph>Modify - Split</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3151022.48.help.text
msgid "Select a combined object, open the context menu and choose <emph>Split</emph>. "
msgstr ""
#: 00000413.xhp#par_id3154872.23.help.text
msgid "Choose <emph>Modify - Connect</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3150470.49.help.text
msgid "Select two or more lines, open the context menu and choose <emph>Connect</emph>."
msgstr ""
#: 00000413.xhp#par_id3153920.24.help.text
msgid "Choose <emph>Modify - Break</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3148430.50.help.text
msgid "Select a line that was created by connecting two or more lines, open the context menu and choose <emph>Break</emph>."
msgstr ""
#: 00000413.xhp#par_id3155408.37.help.text
msgid "Choose <emph>Modify - Shapes</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3145615.51.help.text
msgid "Select two or more objects, open the context menu and choose <emph>Shapes</emph>"
msgstr ""
#: 00000413.xhp#par_id3163822.38.help.text
msgid "Choose <emph>Modify - Shapes - Merge</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3156309.43.help.text
msgid "Select two or more objects, open the context menu and choose <emph>Shapes - Merge</emph>"
msgstr ""
#: 00000413.xhp#par_id3150874.39.help.text
msgid "Choose <emph>Modify - Shapes - Subtract</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3154643.44.help.text
msgid "Select two or more objects, open the context menu and choose <emph>Shapes - Subtract</emph>"
msgstr ""
#: 00000413.xhp#par_id3145204.40.help.text
msgid "Choose <emph>Modify - Shapes - Intersect</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
msgstr ""
#: 00000413.xhp#par_id3152931.45.help.text
msgid "Select two or more objects, open the context menu and choose <emph>Shapes - Intersect</emph>"
msgstr ""
#: 00000004.xhp#tit.help.text
msgid "To access this command"
msgstr ""
#: 00000004.xhp#hd_id3149655.1.help.text
msgid "<variable id=\"wie\">To access this command </variable>"
msgstr ""
#: 00000004.xhp#par_id8789025.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to save the selected bitmap picture as a file. The default file format is the internal format of the image.</ahelp>"
msgstr ""
#: 00000004.xhp#par_id5316324.help.text
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Custom Animation window on the Task pane.</ahelp>"
msgstr ""
#: 00000004.xhp#par_id3147435.help.text
msgid "<image id=\"img_id3156441\" src=\"cmd/sc_rect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3145801.2.help.text
msgid "Rectangle"
msgstr ""
#: 00000004.xhp#par_id3150749.help.text
msgid "<image id=\"img_id3155065\" src=\"cmd/sc_ellipse.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155065\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3147344.3.help.text
msgid "Ellipse"
msgstr ""
#: 00000004.xhp#par_id3147004.help.text
msgid "<image id=\"img_id3159236\" src=\"cmd/sc_linetoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159236\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3150202.4.help.text
msgid "Curve"
msgstr ""
#: 00000004.xhp#par_id3156449.help.text
msgid "<image id=\"img_id3149409\" src=\"cmd/sc_objectalign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149409\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3157979.5.help.text
msgid "Alignment"
msgstr ""
#: 00000004.xhp#par_id3159208.help.text
msgid "<image id=\"img_id3159231\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159231\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3153013.6.help.text
msgid "Arrange"
msgstr ""
#: 00000406.xhp#tit.help.text
msgctxt "00000406.xhp#tit.help.text"
msgid "Tools Menu"
msgstr ""
#: 00000406.xhp#hd_id3153770.1.help.text
msgctxt "00000406.xhp#hd_id3153770.1.help.text"
msgid "Tools Menu"
msgstr ""
#: 00000406.xhp#par_id3153727.2.help.text
msgid "<variable id=\"silbentrennung\">Choose <emph>Tools - Language - Hyphenation</emph></variable>"
msgstr ""
#: 00000406.xhp#par_id3163803.22.help.text
msgid "<variable id=\"neuprae\">Choose <emph>Slide Show - Custom Slide Show</emph> and then click <emph>New</emph>.</variable>"
msgstr ""
#: 00000405.xhp#tit.help.text
msgctxt "00000405.xhp#tit.help.text"
msgid "Format Menu"
msgstr ""
#: 00000405.xhp#hd_id3147001.1.help.text
msgctxt "00000405.xhp#hd_id3147001.1.help.text"
msgid "Format Menu"
msgstr ""
#: 00000405.xhp#par_id3148489.2.help.text
msgid "In the context menu of a dimension line, choose <emph>Dimensions</emph>."
msgstr ""
#: 00000405.xhp#par_id3150207.15.help.text
msgid "On the <emph>Lines and Arrows</emph> toolbar, click the <emph>Dimension Line</emph> icon."
msgstr ""
#: 00000405.xhp#par_id3155530.9.help.text
msgid "<variable id=\"frtite\">Choose <emph>Format - Page</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3145386.13.help.text
msgid "<variable id=\"frtites\">Choose <emph>Format - Page</emph> and then click the <emph>Page</emph> tab</variable>"
msgstr ""
#: 00000405.xhp#par_id3148866.14.help.text
msgid "<variable id=\"frtiteh\">Choose <emph>Format - Page</emph> and then click the <emph>Background</emph> tab</variable>"
msgstr ""
#: 00000405.xhp#par_id3155266.10.help.text
msgid "<variable id=\"adnsei\">Choose <emph>Format - Slide Layout</emph></variable>"
msgstr ""
#: 00000405.xhp#par_id3152874.11.help.text
msgid "In a Draw document, right-click a layer tab and choose <emph>Modify Layer</emph>"
msgstr ""
#: 00000405.xhp#par_id3154765.17.help.text
msgid "Choose <emph>Format - Layer</emph> (only $[officename] Draw)"
msgstr ""
#: 00000405.xhp#par_id3153012.12.help.text
msgid "<variable id=\"seitenvorlage\">Choose <emph>Format - Slide Design</emph></variable>"
msgstr ""
#: 00000402.xhp#tit.help.text
msgctxt "00000402.xhp#tit.help.text"
msgid "Edit Menu"
msgstr ""
#: 00000402.xhp#hd_id3150792.1.help.text
msgctxt "00000402.xhp#hd_id3150792.1.help.text"
msgid "Edit Menu"
msgstr ""
#: 00000402.xhp#par_id3145171.2.help.text
msgid "Choose <emph>Edit - Duplicate</emph>"
msgstr ""
#: 00000402.xhp#par_id3156441.7.help.text
msgid "Shift+F3"
msgstr ""
#: 00000402.xhp#par_id3149263.3.help.text
msgid "<variable id=\"bearbueber\">Choose <emph>Edit - Cross-fading</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only) </variable>"
msgstr ""
#: 00000402.xhp#par_id3149666.4.help.text
msgid "<variable id=\"basl\">Choose <emph>Edit - Delete Slide</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3147397.5.help.text
msgid "<variable id=\"baebl\">Open the context menu of an inserted layer, then choose <emph>Delete Layer</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id3155603.6.help.text
msgid "<variable id=\"feldbefehl\">Choose <emph>Edit - Fields</emph></variable>"
msgstr ""
#: 00000402.xhp#par_id8695944.help.text
msgid "<variable id=\"gluebar\">Click the <emph>Glue Points</emph> icon on the Drawing Bar </variable>"
msgstr ""
#: 00000403.xhp#tit.help.text
msgctxt "00000403.xhp#tit.help.text"
msgid "View Menu"
msgstr ""
#: 00000403.xhp#hd_id3150542.1.help.text
msgctxt "00000403.xhp#hd_id3150542.1.help.text"
msgid "View Menu"
msgstr ""
#: 00000403.xhp#par_id3148798.2.help.text
msgid "<variable id=\"aslal\">Choose <emph>View - Ruler</emph></variable>"
msgstr ""
#: 00000403.xhp#par_id3153771.3.help.text
msgid "<variable id=\"option\">Choose <emph>View - Toolbars - Options</emph></variable>"
msgstr ""
#: 00000403.xhp#par_id3152576.4.help.text
msgid "Choose <emph>View - Toolbars - Presentation</emph>"
msgstr ""
#: 00000403.xhp#par_id3146316.8.help.text
msgid "<variable id=\"quali\">Choose <emph>View - Color/Grayscale</emph></variable>"
msgstr ""
#: 00000403.xhp#par_idN106A4.help.text
msgid "<variable id=\"taskpane\">Choose <emph>View - Task Pane</emph></variable>"
msgstr ""
#: 00000403.xhp#par_id3166426.10.help.text
msgctxt "00000403.xhp#par_id3166426.10.help.text"
msgid "Choose <emph>View - Normal</emph>"
msgstr ""
#: 00000403.xhp#par_id3157982.13.help.text
msgid "Choose <emph>View - Outline</emph>"
msgstr ""
#: 00000403.xhp#par_id3149875.16.help.text
msgid "Choose <emph>View - Slide Sorter</emph>"
msgstr ""
#: 00000403.xhp#par_id3149352.19.help.text
msgid "Choose <emph>View - Notes Page </emph>"
msgstr ""
#: 00000403.xhp#par_id3155255.22.help.text
msgid "Choose <emph>View - Handout Page</emph>"
msgstr ""
#: 00000403.xhp#par_id3154328.25.help.text
msgid "Choose <emph>Slide Show - Slide Show</emph>"
msgstr ""
#: 00000403.xhp#par_id3150134.44.help.text
msgid "F5"
msgstr ""
#: 00000403.xhp#par_id3145244.26.help.text
msgid "On the <emph>Presentation</emph> toolbar, click"
msgstr ""
#: 00000403.xhp#par_id3148768.help.text
msgid "<image id=\"img_id3148774\" src=\"cmd/sc_presentation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148774\">Icon</alt></image>"
msgstr ""
#: 00000403.xhp#par_id3151016.27.help.text
msgid "Slide Show"
msgstr ""
#: 00000403.xhp#par_id3153719.31.help.text
msgctxt "00000403.xhp#par_id3153719.31.help.text"
msgid "Choose <emph>View - Normal</emph>"
msgstr ""
#: 00000403.xhp#par_id3151264.34.help.text
msgid "Choose <emph>View - Master</emph>"
msgstr ""
#: 00000403.xhp#par_idN10AF7.help.text
msgid "<variable id=\"masterlayouts\">Choose <emph>View - Master - Slide Master </emph></variable>"
msgstr ""
#: 00000403.xhp#par_idN10B19.help.text
msgid "<variable id=\"notesmaster\">Choose <emph>View - Master - Notes Master</emph></variable>"
msgstr ""
#: 00000403.xhp#par_idN10B07.help.text
msgid "<variable id=\"master\">Choose <emph>View - Master - Master Elements</emph></variable>"
msgstr ""
#: 00000403.xhp#par_idN10B57.help.text
msgid "Choose <emph>View - Header and Footer</emph>"
msgstr ""
#: 00000403.xhp#par_idN10B6E.help.text
msgid "Choose <emph>Insert - Page number</emph>"
msgstr ""
#: 00000403.xhp#par_idN10B74.help.text
msgid "Choose <emph>Insert - Date and time</emph>"
msgstr ""
#: 00000403.xhp#par_id3149286.37.help.text
msgid "<variable id=\"hinterzeichnung\">Choose <emph>View - Normal</emph></variable>"
msgstr ""
#: 00000403.xhp#par_id3153480.56.help.text
msgid "<variable id=\"master_drawing\">Choose <emph>View - Master - Slide Master</emph></variable>"
msgstr ""
#: 00000403.xhp#par_id3147254.39.help.text
msgid "<variable id=\"hinternotizen\">Choose <emph>View - Notes Page</emph></variable>"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,564 +0,0 @@
#. extracted from helpcontent2/source/text/simpress/04.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsimpress%2F04.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 01020000.xhp#tit.help.text
msgctxt "01020000.xhp#tit.help.text"
msgid "Shortcut Keys for $[officename] Impress"
msgstr ""
#: 01020000.xhp#bm_id3150342.help.text
msgid "<bookmark_value>shortcut keys; in presentations</bookmark_value><bookmark_value>presentations; shortcut keys</bookmark_value>"
msgstr ""
#: 01020000.xhp#hd_id3150342.1.help.text
msgid "<variable id=\"impress_keys\"><link href=\"text/simpress/04/01020000.xhp\" name=\"Shortcut Keys for $[officename] Impress\">Shortcut Keys for $[officename] Impress</link></variable>"
msgstr ""
#: 01020000.xhp#par_id3145791.2.help.text
msgid "The following is a list of shortcut keys for $[officename] Impress."
msgstr ""
#: 01020000.xhp#par_id3154658.128.help.text
msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys\">general shortcut keys</link> in $[officename]."
msgstr ""
#: 01020000.xhp#hd_id3145386.3.help.text
msgid "Function Keys for $[officename] Impress"
msgstr ""
#: 01020000.xhp#hd_id3151242.4.help.text
msgctxt "01020000.xhp#hd_id3151242.4.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3148604.6.help.text
msgctxt "01020000.xhp#par_id3148604.6.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3150214.7.help.text
msgid "F2"
msgstr ""
#: 01020000.xhp#par_id3154653.8.help.text
msgid "Edit text."
msgstr ""
#: 01020000.xhp#hd_id3153811.11.help.text
msgid "F3"
msgstr ""
#: 01020000.xhp#par_id3145116.12.help.text
msgid "Edit group."
msgstr ""
#: 01020000.xhp#hd_id3149052.13.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr ""
#: 01020000.xhp#par_id3147298.14.help.text
msgid "Exit group."
msgstr ""
#: 01020000.xhp#hd_id3166468.15.help.text
msgid "Shift+F3"
msgstr ""
#: 01020000.xhp#par_id3157874.16.help.text
msgid "Duplicate"
msgstr ""
#: 01020000.xhp#hd_id3149349.17.help.text
msgid "F4"
msgstr ""
#: 01020000.xhp#par_id3150746.18.help.text
msgid "Position and Size"
msgstr ""
#: 01020000.xhp#hd_id3153036.19.help.text
msgid "F5"
msgstr ""
#: 01020000.xhp#par_id3153085.20.help.text
msgid "View Slide Show."
msgstr ""
#: 01020000.xhp#par_idN10769.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F5"
msgstr ""
#: 01020000.xhp#par_idN1078E.help.text
msgid "Navigator"
msgstr ""
#: 01020000.xhp#hd_id3150860.21.help.text
msgid "F7"
msgstr ""
#: 01020000.xhp#par_id3154559.22.help.text
msgid "Spellcheck"
msgstr ""
#: 01020000.xhp#hd_id3153004.23.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
msgstr ""
#: 01020000.xhp#par_id3147366.24.help.text
msgid "Thesaurus"
msgstr ""
#: 01020000.xhp#hd_id3155925.25.help.text
msgid "F8"
msgstr ""
#: 01020000.xhp#par_id3149882.26.help.text
msgid "Edit Points."
msgstr ""
#: 01020000.xhp#hd_id3155439.27.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8"
msgstr ""
#: 01020000.xhp#par_id3148393.28.help.text
msgid "Fit text to frame."
msgstr ""
#: 01020000.xhp#hd_id3155373.29.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
msgstr ""
#: 01020000.xhp#par_id3150470.30.help.text
msgid "Styles and Formatting"
msgstr ""
#: 01020000.xhp#hd_id3150962.35.help.text
msgid "Shortcut Keys in Slide Shows"
msgstr ""
#: 01020000.xhp#hd_id3147562.36.help.text
msgctxt "01020000.xhp#hd_id3147562.36.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3151268.37.help.text
msgctxt "01020000.xhp#par_id3151268.37.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3154642.38.help.text
msgid " Esc "
msgstr ""
#: 01020000.xhp#par_id3152934.39.help.text
msgid "End presentation."
msgstr ""
#: 01020000.xhp#hd_id3153625.40.help.text
msgid " Spacebar or Right arrow or Down arrow or Page Down or Enter or Return or N "
msgstr ""
#: 01020000.xhp#par_id3150262.41.help.text
msgid "Play next effect (if any, else go to next slide)."
msgstr ""
#: 01020000.xhp#hd_id3155848.42.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down"
msgstr ""
#: 01020000.xhp#par_id3149984.43.help.text
msgid "Go to next slide without playing effects."
msgstr ""
#: 01020000.xhp#hd_id3149290.44.help.text
msgid "[number] + Enter"
msgstr ""
#: 01020000.xhp#par_id3149757.45.help.text
msgid "Type a number of a slide and press Enter to go to the slide."
msgstr ""
#: 01020000.xhp#par_id7291787.help.text
msgid " Left arrow or Up arrow or Page Up or Backspace or P "
msgstr ""
#: 01020000.xhp#par_id945158.help.text
msgid "Play previous effect again. If no previous effect exists on this slide, show previous slide."
msgstr ""
#: 01020000.xhp#hd_id3151172.46.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up"
msgstr ""
#: 01020000.xhp#par_id3153906.47.help.text
msgid "Go to the previous slide without playing effects."
msgstr ""
#: 01020000.xhp#hd_id3158399.50.help.text
msgid " Home "
msgstr ""
#: 01020000.xhp#par_id3145412.51.help.text
msgid "Jump to first slide in the slide show."
msgstr ""
#: 01020000.xhp#hd_id3154294.52.help.text
msgid " End "
msgstr ""
#: 01020000.xhp#par_id3154258.53.help.text
msgid "Jump to the last slide in the slide show."
msgstr ""
#: 01020000.xhp#hd_id3153580.54.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> +Page Up "
msgstr ""
#: 01020000.xhp#par_id3150702.55.help.text
msgid "Go to the previous slide."
msgstr ""
#: 01020000.xhp#hd_id3152944.56.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> +Page Down "
msgstr ""
#: 01020000.xhp#par_id3153690.57.help.text
msgid "Go to the next slide."
msgstr ""
#: 01020000.xhp#hd_id3149933.141.help.text
msgid "B or ."
msgstr ""
#: 01020000.xhp#par_id3154794.142.help.text
msgid "Show black screen until next key or mouse wheel event."
msgstr ""
#: 01020000.xhp#hd_id3153532.143.help.text
msgid "W or ,"
msgstr ""
#: 01020000.xhp#par_id3150975.144.help.text
msgid "Show white screen until next key or mouse wheel event."
msgstr ""
#: 01020000.xhp#hd_id3151313.60.help.text
msgid "Shortcut Keys in the Normal View"
msgstr ""
#: 01020000.xhp#hd_id3150994.61.help.text
msgctxt "01020000.xhp#hd_id3150994.61.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3152960.62.help.text
msgctxt "01020000.xhp#par_id3152960.62.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3154472.67.help.text
msgid "Plus(+) Key"
msgstr ""
#: 01020000.xhp#par_id3146125.68.help.text
msgid "Zoom in."
msgstr ""
#: 01020000.xhp#hd_id3147526.69.help.text
msgid "Minus(-) Key"
msgstr ""
#: 01020000.xhp#par_id3154570.70.help.text
msgid "Zoom out."
msgstr ""
#: 01020000.xhp#hd_id3153670.124.help.text
msgid "Times(×) Key (number pad)"
msgstr ""
#: 01020000.xhp#par_id3150831.127.help.text
msgid "Fit page in window."
msgstr ""
#: 01020000.xhp#hd_id3148406.126.help.text
msgid "Divide(÷) Key (number pad)"
msgstr ""
#: 01020000.xhp#par_id3155902.125.help.text
msgid "Zoom in on current selection."
msgstr ""
#: 01020000.xhp#hd_id3154195.71.help.text
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+G"
msgstr ""
#: 01020000.xhp#par_id3151284.72.help.text
msgid "Group selected objects."
msgstr ""
#: 01020000.xhp#hd_id3154127.73.help.text
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+A"
msgstr ""
#: 01020000.xhp#par_id3151325.74.help.text
msgid "Ungroup selected group."
msgstr ""
#: 01020000.xhp#hd_id3149309.120.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + click"
msgstr ""
#: 01020000.xhp#par_id3148996.121.help.text
msgid "Enter a group, so that you can edit the individual objects of the group. Click outside the group to return to the normal view."
msgstr ""
#: 01020000.xhp#hd_id3149485.75.help.text
msgctxt "01020000.xhp#hd_id3149485.75.help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+K"
msgstr ""
#: 01020000.xhp#par_id3151253.76.help.text
msgid "Combine selected objects."
msgstr ""
#: 01020000.xhp#hd_id3149104.77.help.text
msgctxt "01020000.xhp#hd_id3149104.77.help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+K"
msgstr ""
#: 01020000.xhp#par_id3154834.78.help.text
msgid "Split selected object. This combination only works on an object that was created by combining two or more objects."
msgstr ""
#: 01020000.xhp#hd_id3149784.79.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Plus key"
msgstr ""
#: 01020000.xhp#par_id3147088.80.help.text
msgid "Bring to Front."
msgstr ""
#: 01020000.xhp#hd_id3148972.81.help.text
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Plus key"
msgstr ""
#: 01020000.xhp#par_id3154900.82.help.text
msgid "Bring Forward."
msgstr ""
#: 01020000.xhp#hd_id3149040.83.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Minus key"
msgstr ""
#: 01020000.xhp#par_id3147580.84.help.text
msgid "Send Backward."
msgstr ""
#: 01020000.xhp#hd_id3148742.85.help.text
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Minus key"
msgstr ""
#: 01020000.xhp#par_id3152775.86.help.text
msgid "Send to Back."
msgstr ""
#: 01020000.xhp#hd_id3156192.87.help.text
msgctxt "01020000.xhp#hd_id3156192.87.help.text"
msgid "Shortcut Keys for $[officename] Impress"
msgstr ""
#: 01020000.xhp#hd_id3147326.88.help.text
msgctxt "01020000.xhp#hd_id3147326.88.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_id3155137.89.help.text
msgctxt "01020000.xhp#par_id3155137.89.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3153520.90.help.text
msgctxt "01020000.xhp#hd_id3153520.90.help.text"
msgid "Arrow key"
msgstr ""
#: 01020000.xhp#par_id3147077.91.help.text
msgid "Moves the selected object or the page view in the direction of the arrow."
msgstr ""
#: 01020000.xhp#hd_id3154384.92.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow Key"
msgstr ""
#: 01020000.xhp#par_id3153279.93.help.text
msgid "Move around in the page view."
msgstr ""
#: 01020000.xhp#hd_id3153354.94.help.text
msgid "Shift + drag"
msgstr ""
#: 01020000.xhp#par_id3148650.95.help.text
msgid "Constrains the movement of the selected object horizontally or vertically."
msgstr ""
#: 01020000.xhp#hd_id3154117.98.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + drag (with <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Copy when moving</link> option active)"
msgstr ""
#: 01020000.xhp#par_id3150584.99.help.text
msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and drag an object to create a copy of the object."
msgstr ""
#: 01020000.xhp#hd_id3151304.100.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> Key"
msgstr ""
#: 01020000.xhp#par_id3156274.101.help.text
msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> to draw or resize objects by dragging from the center of the object outward."
msgstr ""
#: 01020000.xhp#hd_id3147314.102.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key+click"
msgstr ""
#: 01020000.xhp#par_id3155122.103.help.text
msgid "Select the object behind the currently selected object."
msgstr ""
#: 01020000.xhp#hd_id3149008.104.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+click"
msgstr ""
#: 01020000.xhp#par_id3156368.105.help.text
msgid "Select the object in front of the currently selected object."
msgstr ""
#: 01020000.xhp#hd_id3148879.106.help.text
msgid "Shift+click"
msgstr ""
#: 01020000.xhp#par_id3155908.107.help.text
msgid "Select adjacent items or a text passage. Click at the start of a selection, move to the end of the selection, and then hold down Shift while you click."
msgstr ""
#: 01020000.xhp#hd_id3149543.108.help.text
msgid "Shift+drag (when resizing)"
msgstr ""
#: 01020000.xhp#par_id3150689.109.help.text
msgid "Hold down Shift while dragging to resize an object to maintain the proportions of the object."
msgstr ""
#: 01020000.xhp#hd_id3150115.110.help.text
msgid "Tab key"
msgstr ""
#: 01020000.xhp#par_id3155858.111.help.text
msgid "Select objects in the order in which they were created."
msgstr ""
#: 01020000.xhp#hd_id3147475.112.help.text
msgid "Shift+Tab"
msgstr ""
#: 01020000.xhp#par_id3153695.113.help.text
msgid "Select objects in the reverse order in which they were created."
msgstr ""
#: 01020000.xhp#hd_id3147496.116.help.text
msgctxt "01020000.xhp#hd_id3147496.116.help.text"
msgid "Escape"
msgstr ""
#: 01020000.xhp#par_id3146141.117.help.text
msgid "Exit current mode."
msgstr ""
#: 01020000.xhp#hd_id3147615.132.help.text
msgid "Enter"
msgstr ""
#: 01020000.xhp#par_id3145119.133.help.text
msgid "Activate a placeholder object in a new presentation (only if the frame is selected)."
msgstr ""
#: 01020000.xhp#hd_id3145258.131.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter"
msgstr ""
#: 01020000.xhp#par_id3149563.130.help.text
msgid "Moves to the next text object on the slide."
msgstr ""
#: 01020000.xhp#par_id3146910.129.help.text
msgid "If there are no text objects on the slide, or if you reached the last text object, a new slide is inserted after the current slide. The new slide uses the same layout as the current slide."
msgstr ""
#: 01020000.xhp#par_id4478286.help.text
msgid "PageUp"
msgstr ""
#: 01020000.xhp#par_id2616351.help.text
msgid "Switch to the previous slide. No function on the first slide."
msgstr ""
#: 01020000.xhp#par_id950956.help.text
msgid "PageDown"
msgstr ""
#: 01020000.xhp#par_id4433423.help.text
msgid "Switch to the next slide. No function on the last slide."
msgstr ""
#: 01020000.xhp#hd_id3149138.134.help.text
msgid "Navigating with the Keyboard in Slide Sorter"
msgstr ""
#: 01020000.xhp#par_idN110AA.help.text
msgctxt "01020000.xhp#par_idN110AA.help.text"
msgid "Shortcut Keys"
msgstr ""
#: 01020000.xhp#par_idN110B0.help.text
msgctxt "01020000.xhp#par_idN110B0.help.text"
msgid "<emph>Effect</emph>"
msgstr ""
#: 01020000.xhp#hd_id3153254.135.help.text
msgctxt "01020000.xhp#hd_id3153254.135.help.text"
msgid "Escape"
msgstr ""
#: 01020000.xhp#par_id3153268.136.help.text
msgid "Sets the focus to the first slide."
msgstr ""
#: 01020000.xhp#hd_id3154811.137.help.text
msgctxt "01020000.xhp#hd_id3154811.137.help.text"
msgid "Arrow key"
msgstr ""
#: 01020000.xhp#par_id3145073.138.help.text
msgid "Sets the focus to the next slide."
msgstr ""
#: 01020000.xhp#hd_id3145086.139.help.text
msgid "Spacebar"
msgstr ""
#: 01020000.xhp#par_id3157548.140.help.text
msgid "Makes the slide with the focus the current slide."
msgstr ""

View File

@@ -1,288 +0,0 @@
#. extracted from helpcontent2/source/text/smath.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsmath.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: main0101.xhp#tit.help.text
msgid "File"
msgstr ""
#: main0101.xhp#hd_id3149018.1.help.text
msgid "<link href=\"text/smath/main0101.xhp\" name=\"File\">File</link>"
msgstr ""
#: main0101.xhp#par_id3155959.2.help.text
msgid "This menu contains the general commands for working with formula documents, such as open, save and print."
msgstr ""
#: main0101.xhp#hd_id3148489.3.help.text
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr ""
#: main0101.xhp#hd_id3149501.10.help.text
msgid "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">Wizards</link>"
msgstr ""
#: main0101.xhp#par_id3148840.11.help.text
msgid "Use a Wizard to create interactive documents, such as professional letters and faxes, into which you can insert your saved formulas."
msgstr ""
#: main0101.xhp#hd_id3153251.4.help.text
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
msgstr ""
#: main0101.xhp#hd_id3149871.12.help.text
msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr ""
#: main0101.xhp#hd_id3146325.6.help.text
msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
msgstr ""
#: main0101.xhp#hd_id3155621.7.help.text
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr ""
#: main0101.xhp#hd_id3145826.8.help.text
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
msgstr ""
#: main0103.xhp#tit.help.text
msgid "View"
msgstr ""
#: main0103.xhp#hd_id3155064.1.help.text
msgid "<link href=\"text/smath/main0103.xhp\" name=\"View\">View</link>"
msgstr ""
#: main0103.xhp#par_id3147338.2.help.text
msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements window with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>View - Elements</emph></link>."
msgstr ""
#: main0103.xhp#hd_id3150205.5.help.text
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr ""
#: main0000.xhp#tit.help.text
msgctxt "main0000.xhp#tit.help.text"
msgid "Welcome to the $[officename] Math Help"
msgstr ""
#: main0000.xhp#hd_id3148868.1.help.text
msgctxt "main0000.xhp#hd_id3148868.1.help.text"
msgid "Welcome to the $[officename] Math Help"
msgstr ""
#: main0000.xhp#hd_id3153915.5.help.text
msgid "How to Work With $[officename] Math"
msgstr ""
#: main0000.xhp#par_id3143229.6.help.text
msgid "<link href=\"text/smath/01/03091500.xhp\" name=\"Formula Reference Tables\">Formula Reference Tables</link>"
msgstr ""
#: main0000.xhp#hd_id3153808.8.help.text
msgid "$[officename] Math Menus, Toolbars, and Keys"
msgstr ""
#: main0000.xhp#par_id3143269.help.text
msgid "Have a look at <link href=\"http://www.dmaths.org\">www.dmaths.org</link> for a set of additional %PRODUCTNAME Math icons and macros."
msgstr ""
#: main0000.xhp#hd_id3156396.7.help.text
msgid "Help about the Help"
msgstr ""
#: main0203.xhp#tit.help.text
msgid "Tools Bar"
msgstr ""
#: main0203.xhp#hd_id3149123.1.help.text
msgid "<link href=\"text/smath/main0203.xhp\" name=\"Tools Bar\">Tools Bar</link>"
msgstr ""
#: main0203.xhp#par_id3147338.2.help.text
msgid "The Tools bar contains frequently used functions."
msgstr ""
#: main0203.xhp#hd_id3151242.3.help.text
msgid "<link href=\"text/smath/02/03010000.xhp\" name=\"Formula Cursor\">Formula Cursor</link>"
msgstr ""
#: main0503.xhp#tit.help.text
msgid "$[officename] Math Features"
msgstr ""
#: main0503.xhp#hd_id3155064.1.help.text
msgid "<variable id=\"main0503\"><link href=\"text/smath/main0503.xhp\" name=\"$[officename] Math Features\">$[officename] Math Features</link></variable>"
msgstr ""
#: main0503.xhp#par_id3156386.2.help.text
msgid "This section contains an overview of some of the important functions and capabilities that $[officename] Math offers."
msgstr ""
#: main0503.xhp#par_id3148486.3.help.text
msgid "$[officename] Math provides numerous operators, functions and formatting assistants to help you create formulas. These are all listed in a selection window, in which you can click the required element with the mouse to insert the object into your work. There is an exhaustive <link href=\"text/smath/01/03091500.xhp\" name=\"reference\">reference</link> list and numerous <link href=\"text/smath/01/03090900.xhp\" name=\"samples\">samples</link> contained in the Help."
msgstr ""
#: main0503.xhp#hd_id3150207.10.help.text
msgid "Creating a Formula"
msgstr ""
#: main0503.xhp#par_id3145386.12.help.text
msgid "As with charts and images, formulas are created as objects within a document. Inserting a formula into a document automatically starts $[officename] Math. You can create, edit and format the formula using a large selection of predefined symbols and functions."
msgstr ""
#: main0503.xhp#hd_id3153916.15.help.text
msgid "Typing a Formula Directly"
msgstr ""
#: main0503.xhp#par_id3150213.13.help.text
msgid "If you are familiar with the $[officename] Math language, you can also type a formula directly into the document. For example, type this formula into a text document: \"a sup 2 + b sup 2 = c sup 2\". Select this text and choose <emph>Insert - Object - Formula</emph>. The text will be converted into a formatted formula."
msgstr ""
#: main0503.xhp#par_id3146325.14.help.text
msgid "Formulas cannot be calculated in $[officename] Math because it is a formula editor (for writing and showing formulas) and not a calculation program. Use spreadsheets to calculate formulas, or for simple calculations use the text document calculation function."
msgstr ""
#: main0503.xhp#hd_id3145829.16.help.text
msgid "Creating a Formula in the Commands Window"
msgstr ""
#: main0503.xhp#par_id3153001.4.help.text
msgid "<ahelp hid=\"HID_SMA_COMMAND_WIN_EDIT\">Use the $[officename] Math Commands window to enter and edit formulas. As you make entries in the Commands window, you see the results in the document.</ahelp> To maintain an overview when creating long and complicated formulas, use the Formula Cursor on the Tools bar. When this function is activated, the cursor location within the Commands window is also shown in the text window."
msgstr ""
#: main0503.xhp#hd_id3150014.17.help.text
msgid "Individual Symbols"
msgstr ""
#: main0503.xhp#par_id3145246.6.help.text
msgid "You 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."
msgstr ""
#: main0503.xhp#hd_id3148392.18.help.text
msgid "Formulas in Context"
msgstr ""
#: main0503.xhp#par_id3148774.8.help.text
msgid "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."
msgstr ""
#: main0106.xhp#tit.help.text
msgid "Tools"
msgstr ""
#: main0106.xhp#hd_id3149019.1.help.text
msgid "<link href=\"text/smath/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr ""
#: main0106.xhp#par_id3155959.2.help.text
msgid "Use this menu to open and edit the symbol catalog, or import an external formula as a data file. The program interface can be adjusted to meet your requirements. You can also change the program options."
msgstr ""
#: main0106.xhp#hd_id3150206.4.help.text
msgid "<link href=\"text/smath/01/06020000.xhp\" name=\"Import Formula\">Import Formula</link>"
msgstr ""
#: main0106.xhp#hd_id3145385.5.help.text
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr ""
#: main0105.xhp#tit.help.text
msgid "Format"
msgstr ""
#: main0105.xhp#hd_id3149121.1.help.text
msgid "<link href=\"text/smath/main0105.xhp\" name=\"Format\">Format</link>"
msgstr ""
#: main0105.xhp#par_id3149018.2.help.text
msgid "This menu contains commands needed to format formulas."
msgstr ""
#: main0105.xhp#hd_id3156385.3.help.text
msgid "<link href=\"text/smath/01/05010000.xhp\" name=\"Fonts\">Fonts</link>"
msgstr ""
#: main0105.xhp#hd_id3154656.4.help.text
msgid "<link href=\"text/smath/01/05020000.xhp\" name=\"Font Size\">Font Size</link>"
msgstr ""
#: main0105.xhp#hd_id3154484.5.help.text
msgid "<link href=\"text/smath/01/05030000.xhp\" name=\"Spacing\">Spacing</link>"
msgstr ""
#: main0105.xhp#hd_id3151242.6.help.text
msgid "<link href=\"text/smath/01/05040000.xhp\" name=\"Alignment\">Alignment</link>"
msgstr ""
#: main0102.xhp#tit.help.text
msgid "Edit"
msgstr ""
#: main0102.xhp#hd_id3156385.1.help.text
msgid "<link href=\"text/smath/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
#: main0102.xhp#par_id3145790.2.help.text
msgid "The commands in this menu are used to edit formulas. In addition to basic commands, (for example, copying contents) there are functions specific to $[officename] Math such as searching for placeholders or errors."
msgstr ""
#: main0200.xhp#tit.help.text
msgid "Toolbars"
msgstr ""
#: main0200.xhp#hd_id3149121.1.help.text
msgid "<variable id=\"main0200\"><link href=\"text/smath/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr ""
#: main0200.xhp#par_id3147338.2.help.text
msgid "The default toolbars available when working with an activated formula document in $[officename] Math are described here. You can customize the toolbars to meet your requirements by moving, deleting or adding new icons."
msgstr ""
#: main0100.xhp#tit.help.text
msgid "Menus"
msgstr ""
#: main0100.xhp#hd_id3149021.1.help.text
msgid "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr ""
#: main0100.xhp#par_id3154702.2.help.text
msgid "The menu bar contains all the commands for working with $[officename] Math. It contains a list of all the available operators as well as the commands for editing, viewing, arranging, formatting and printing formula documents and the objects contained in them. Most of the menu commands are only available when you are creating or editing a formula."
msgstr ""
#: main0202.xhp#tit.help.text
msgid "Status Bar"
msgstr ""
#: main0202.xhp#hd_id3150749.1.help.text
msgid "<link href=\"text/smath/main0202.xhp\" name=\"Status Bar\">Status Bar</link>"
msgstr ""
#: main0202.xhp#par_id3083278.2.help.text
msgid "The status bar displays information about the active document."
msgstr ""
#: main0107.xhp#tit.help.text
msgid "Window"
msgstr ""
#: main0107.xhp#hd_id3155066.1.help.text
msgid "<link href=\"text/smath/main0107.xhp\" name=\"Window\">Window</link>"
msgstr ""
#: main0107.xhp#par_id3147339.2.help.text
msgid "In the Window menu, you can open a new window and see the document list."
msgstr ""

View File

@@ -1,361 +0,0 @@
#. extracted from helpcontent2/source/text/smath/00.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsmath%2F00.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 00000004.xhp#tit.help.text
msgid "To access this function..."
msgstr ""
#: 00000004.xhp#hd_id3152598.1.help.text
msgid "<variable id=\"wie\">To access this function...</variable>"
msgstr ""
#: 00000004.xhp#par_id3153415.9.help.text
msgid "Choose <emph>Edit - Next Marker</emph>"
msgstr ""
#: 00000004.xhp#par_id3146971.85.help.text
msgid "F4 key"
msgstr ""
#: 00000004.xhp#par_id3149021.10.help.text
msgid "Choose <emph>Edit - Previous Marker</emph>"
msgstr ""
#: 00000004.xhp#par_id3153966.86.help.text
msgid "Shift+F4"
msgstr ""
#: 00000004.xhp#par_id3154020.11.help.text
msgid "Choose <emph>Edit - Next Error</emph>"
msgstr ""
#: 00000004.xhp#par_id3150205.87.help.text
msgid "F3 key"
msgstr ""
#: 00000004.xhp#par_id3149499.12.help.text
msgid "Choose <emph>Edit - Previous Error</emph>"
msgstr ""
#: 00000004.xhp#par_id3148870.88.help.text
msgid "Shift+F3"
msgstr ""
#: 00000004.xhp#par_id3149127.32.help.text
msgctxt "00000004.xhp#par_id3149127.32.help.text"
msgid "On the Tools bar, click"
msgstr ""
#: 00000004.xhp#par_id3154653.help.text
msgid "<image id=\"img_id3154765\" src=\"cmd/sc_zoom100percent.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3154765\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3147298.16.help.text
msgid "Zoom 100%"
msgstr ""
#: 00000004.xhp#par_id3147407.18.help.text
msgid "Choose <emph>View - Zoom In</emph>"
msgstr ""
#: 00000004.xhp#par_id3156398.33.help.text
msgctxt "00000004.xhp#par_id3156398.33.help.text"
msgid "On the Tools bar, click"
msgstr ""
#: 00000004.xhp#par_id3150743.help.text
msgid "<image id=\"img_id3163822\" src=\"cmd/sc_helpzoomin.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163822\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3154504.20.help.text
msgid "Zoom In"
msgstr ""
#: 00000004.xhp#par_id3147366.21.help.text
msgid "Choose <emph>View - Zoom Out</emph>"
msgstr ""
#: 00000004.xhp#par_id3149878.34.help.text
msgctxt "00000004.xhp#par_id3149878.34.help.text"
msgid "On the Tools bar, click"
msgstr ""
#: 00000004.xhp#par_id3150934.help.text
msgid "<image id=\"img_id3148387\" src=\"cmd/sc_zoomminus.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148387\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3154871.23.help.text
msgid "Zoom Out"
msgstr ""
#: 00000004.xhp#par_id3153922.24.help.text
msgid "Choose <emph>View - Show All</emph>"
msgstr ""
#: 00000004.xhp#par_id3147169.35.help.text
msgctxt "00000004.xhp#par_id3147169.35.help.text"
msgid "On the Tools bar, click"
msgstr ""
#: 00000004.xhp#par_id3151265.help.text
msgid "<image id=\"img_id3151272\" src=\"cmd/sc_zoom.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3151272\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3154646.26.help.text
msgid "Show All"
msgstr ""
#: 00000004.xhp#par_id3150257.27.help.text
msgid "Choose <emph>View - Update</emph>"
msgstr ""
#: 00000004.xhp#par_id3153619.89.help.text
msgid "F9 key"
msgstr ""
#: 00000004.xhp#par_id3149289.36.help.text
msgctxt "00000004.xhp#par_id3149289.36.help.text"
msgid "On the Tools bar, click"
msgstr ""
#: 00000004.xhp#par_id3147260.help.text
msgid "<image id=\"img_id3151168\" src=\"cmd/sc_refresh.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3151168\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3145417.29.help.text
msgid "Update"
msgstr ""
#: 00000004.xhp#par_id3154262.83.help.text
msgid "<variable id=\"neuzeichnen\">Choose <emph>View - AutoUpdate Display</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3154273.69.help.text
msgid "<variable id=\"astopa\">Choose <emph>View - Elements</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3152942.70.help.text
msgid "Open the context menu in the Commands window - choose <emph>Unary/Binary Operators</emph>"
msgstr ""
#: 00000004.xhp#par_id3154106.71.help.text
msgctxt "00000004.xhp#par_id3154106.71.help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
msgstr ""
#: 00000004.xhp#par_id3153535.help.text
msgid "<image id=\"img_id3151310\" src=\"starmath/res/im21101.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151310\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3153774.72.help.text
msgid "Unary/Binary Operators"
msgstr ""
#: 00000004.xhp#par_id3150360.73.help.text
msgid "Open the context menu in the Commands window - choose <emph>Relations</emph>"
msgstr ""
#: 00000004.xhp#par_id3154473.74.help.text
msgctxt "00000004.xhp#par_id3154473.74.help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
msgstr ""
#: 00000004.xhp#par_id3147531.help.text
msgid "<image id=\"img_id3151103\" src=\"starmath/res/bi21309.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151103\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3150833.75.help.text
msgid "Relations"
msgstr ""
#: 00000004.xhp#par_id3149687.37.help.text
msgid "Open the context menu in the Commands window - choose <emph>Operators</emph>"
msgstr ""
#: 00000004.xhp#par_id3149342.76.help.text
msgctxt "00000004.xhp#par_id3149342.76.help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
msgstr ""
#: 00000004.xhp#par_id3146921.help.text
msgid "<image id=\"img_id3146927\" src=\"starmath/res/im21105.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146927\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3148990.39.help.text
msgid "Operators"
msgstr ""
#: 00000004.xhp#par_id3149297.40.help.text
msgid "Open the context menu in the Commands window - choose <emph>Functions</emph>"
msgstr ""
#: 00000004.xhp#par_id3143275.77.help.text
msgctxt "00000004.xhp#par_id3143275.77.help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
msgstr ""
#: 00000004.xhp#par_id3149103.help.text
msgid "<image id=\"img_id3154825\" src=\"starmath/res/im21104.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154825\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3149796.42.help.text
msgid "Functions"
msgstr ""
#: 00000004.xhp#par_id3147092.43.help.text
msgid "Open the context menu in the Commands window - choose <emph>Brackets</emph>"
msgstr ""
#: 00000004.xhp#par_id3147220.78.help.text
msgctxt "00000004.xhp#par_id3147220.78.help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
msgstr ""
#: 00000004.xhp#par_id3147584.help.text
msgid "<image id=\"img_id3148733\" src=\"starmath/res/im21107.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148733\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3147330.45.help.text
msgid "Brackets"
msgstr ""
#: 00000004.xhp#par_id3153510.46.help.text
msgid "Open the context menu in the Commands window - choose <emph>Attributes</emph>"
msgstr ""
#: 00000004.xhp#par_id3147126.79.help.text
msgctxt "00000004.xhp#par_id3147126.79.help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
msgstr ""
#: 00000004.xhp#par_id3154376.help.text
msgid "<image id=\"img_id3154390\" src=\"starmath/res/at21706.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154390\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3153361.48.help.text
msgid "Attributes"
msgstr ""
#: 00000004.xhp#par_id3154114.49.help.text
msgid "Open the context menu in the Commands window - choose <emph>Formats</emph>"
msgstr ""
#: 00000004.xhp#par_id3150581.80.help.text
msgctxt "00000004.xhp#par_id3150581.80.help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
msgstr ""
#: 00000004.xhp#par_id3151029.help.text
msgid "<image id=\"img_id3151036\" src=\"starmath/res/im21108.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151036\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3155119.51.help.text
msgid "Formats"
msgstr ""
#: 00000004.xhp#par_id3149008.52.help.text
msgid "Open the context menu in the Commands window - choose <emph>Set Operations</emph>"
msgstr ""
#: 00000004.xhp#par_id3147313.81.help.text
msgctxt "00000004.xhp#par_id3147313.81.help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
msgstr ""
#: 00000004.xhp#par_id3151377.help.text
msgid "<image id=\"img_id3151384\" src=\"starmath/res/op21401.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151384\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3150686.54.help.text
msgid "Set Operations"
msgstr ""
#: 00000004.xhp#par_id3150109.55.help.text
msgid "<variable id=\"fmtsfa\">Choose <emph>Format - Fonts</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3155860.56.help.text
msgid "<variable id=\"fmtssa\">Choose <emph>Format - Fonts - Modify</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3147419.57.help.text
msgid "<variable id=\"fmtsgr\">Choose <emph>Format - Font Size</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3147482.58.help.text
msgid "<variable id=\"fmtabs\">Choose <emph>Format - Spacing</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3147628.59.help.text
msgid "<variable id=\"fmtarg\">Choose <emph>Format - Alignment</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3149553.93.help.text
msgid "<variable id=\"textmodus\">Choose <emph>Format - Text Mode</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3145131.60.help.text
msgid "Choose <emph>Tools - Catalog</emph>"
msgstr ""
#: 00000004.xhp#par_id3145268.82.help.text
msgctxt "00000004.xhp#par_id3145268.82.help.text"
msgid "On the Tools bar, click"
msgstr ""
#: 00000004.xhp#par_id3153258.help.text
msgid "<image id=\"img_id3153264\" src=\"cmd/sc_autosum.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153264\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3148448.62.help.text
msgid "Catalog"
msgstr ""
#: 00000004.xhp#par_id3145318.63.help.text
msgid "<variable id=\"etssba\">Choose <emph>Tools - Catalog - Edit</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3153802.64.help.text
msgid "<variable id=\"etsfim\">Choose <emph>Tools - Import Formula</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3154594.65.help.text
msgid "<variable id=\"etsaps\">Choose <emph>Tools - Customize</emph></variable>"
msgstr ""
#: 00000004.xhp#par_id3153291.90.help.text
msgid "Open the context menu in the Commands window - choose <emph>Others</emph>"
msgstr ""
#: 00000004.xhp#par_id3153968.91.help.text
msgctxt "00000004.xhp#par_id3153968.91.help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
msgstr ""
#: 00000004.xhp#par_id3154715.help.text
msgid "<image id=\"img_id3154722\" src=\"starmath/res/im21117.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154722\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3150459.92.help.text
msgid "Others"
msgstr ""
#: 00000004.xhp#par_id3145626.help.text
msgid "<image id=\"img_id3145632\" src=\"cmd/sc_formelcursor.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145632\">Icon</alt></image>"
msgstr ""
#: 00000004.xhp#par_id3149768.95.help.text
msgid "Formula Cursor"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,40 +0,0 @@
#. extracted from helpcontent2/source/text/smath/02.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsmath%2F02.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 03010000.xhp#tit.help.text
msgctxt "03010000.xhp#tit.help.text"
msgid "Formula Cursor"
msgstr ""
#: 03010000.xhp#bm_id3149500.help.text
msgid "<bookmark_value>formula cursor in $[officename] Math</bookmark_value><bookmark_value>cursor; in $[officename] Math</bookmark_value>"
msgstr ""
#: 03010000.xhp#hd_id3149500.1.help.text
msgctxt "03010000.xhp#hd_id3149500.1.help.text"
msgid "Formula Cursor"
msgstr ""
#: 03010000.xhp#par_id3153916.2.help.text
msgid "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">Use this icon on the Tools bar to turn the Formula Cursor on or off.</ahelp> The part of the formula where the cursor is positioned in the <emph>Commands</emph> window is marked with a thin border when the formula cursor is active.</variable>"
msgstr ""
#: 03010000.xhp#par_id3150048.14.help.text
msgid "You can also click a position in the document to move the cursor to its corresponding position in the <emph>Commands</emph> window."
msgstr ""
#: 03010000.xhp#par_id3146966.15.help.text
msgid "Double-clicking a character or symbol in the document moves the focus of the cursor to the <emph>Commands</emph> window and highlights its respective position. "
msgstr ""

View File

@@ -1,118 +0,0 @@
#. extracted from helpcontent2/source/text/smath/04.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsmath%2F04.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:04+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: 01020000.xhp#tit.help.text
msgid "Formula Shortcut Keys"
msgstr ""
#: 01020000.xhp#bm_id3154702.help.text
msgid "<bookmark_value>shortcut keys; in formulas</bookmark_value>"
msgstr ""
#: 01020000.xhp#hd_id3154702.1.help.text
msgid "<variable id=\"math_keys\"><link href=\"text/smath/04/01020000.xhp\" name=\"Formula Shortcut Keys\">Formula Shortcut Keys</link></variable>"
msgstr ""
#: 01020000.xhp#par_id3150345.2.help.text
msgid "A list of the shortcut keys specific to creating formulas is contained in this section."
msgstr ""
#: 01020000.xhp#par_id3150203.20.help.text
msgid "The general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys in $[officename]\">shortcut keys in $[officename]</link> also apply."
msgstr ""
#: 01020000.xhp#hd_id3148870.3.help.text
msgid "Shortcut Keys for Formula Functions"
msgstr ""
#: 01020000.xhp#par_id3153246.19.help.text
msgid "The following shortcut keys correspond to commands in the <emph>Edit</emph> and <emph>View </emph>menus."
msgstr ""
#: 01020000.xhp#hd_id3146324.11.help.text
msgid "F3"
msgstr ""
#: 01020000.xhp#par_id3150537.12.help.text
msgid "Next Error"
msgstr ""
#: 01020000.xhp#hd_id3155620.13.help.text
msgid "Shift+F3"
msgstr ""
#: 01020000.xhp#par_id3149355.14.help.text
msgid "Previous Error"
msgstr ""
#: 01020000.xhp#hd_id3153808.7.help.text
msgid "F4"
msgstr ""
#: 01020000.xhp#par_id3149871.8.help.text
msgid "Next Marker (Placeholder)"
msgstr ""
#: 01020000.xhp#hd_id3150396.9.help.text
msgid "Shift+F4"
msgstr ""
#: 01020000.xhp#par_id3151390.10.help.text
msgid "Previous Marker (Placeholder)"
msgstr ""
#: 01020000.xhp#hd_id3154554.17.help.text
msgid "F9"
msgstr ""
#: 01020000.xhp#par_id3153003.18.help.text
msgid "Update"
msgstr ""
#: 01020000.xhp#hd_id3153732.21.help.text
msgid "Navigation in the Elements Window"
msgstr ""
#: 01020000.xhp#hd_id3155927.23.help.text
msgid "Left or right arrow"
msgstr ""
#: 01020000.xhp#par_id3145249.24.help.text
msgid "Move left or right to the next category or function."
msgstr ""
#: 01020000.xhp#hd_id3150928.25.help.text
msgid "Enter key"
msgstr ""
#: 01020000.xhp#par_id3148390.26.help.text
msgid "Selects a category (within the category section) or inserts a function in the <emph>Commands</emph> window (within the function section)."
msgstr ""
#: 01020000.xhp#hd_id3155988.27.help.text
msgid "Tab"
msgstr ""
#: 01020000.xhp#par_id3153723.28.help.text
msgid "Jump from the first category item to the first function of the category."
msgstr ""
#: 01020000.xhp#hd_id3083451.29.help.text
msgid "Shift+Tab"
msgstr ""
#: 01020000.xhp#par_id3151181.30.help.text
msgid "Jump from the last category item to the last function of the category."
msgstr ""

View File

@@ -1,432 +0,0 @@
#. extracted from helpcontent2/source/text/smath/guide.oo
msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.3\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsmath%2Fguide.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-08-03 22:05+0200\n"
"PO-Revision-Date: 2011-03-29 20:41+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.8.1\n"
"X-Accelerator-Marker: ~\n"
#: parentheses.xhp#tit.help.text
msgid "Inserting Brackets"
msgstr ""
#: parentheses.xhp#bm_id3153415.help.text
msgid "<bookmark_value>brackets; inserting in %PRODUCTNAME Math</bookmark_value><bookmark_value>inserting;brackets</bookmark_value><bookmark_value>distances between brackets</bookmark_value>"
msgstr ""
#: parentheses.xhp#hd_id3153415.1.help.text
msgid "<variable id=\"parentheses\"><link href=\"text/smath/guide/parentheses.xhp\" name=\"Inserting Brackets\">Inserting Brackets</link></variable>"
msgstr ""
#: parentheses.xhp#hd_id3150751.2.help.text
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Math, can brackets be shown separately so that the distance between them is freely definable?"
msgstr ""
#: parentheses.xhp#par_id3083281.3.help.text
msgid "You can set individual brackets using \"left\" and \"right\", but the distance between the brackets will not be fixed, as they adapt to the argument. Nevertheless, there is a way to display brackets so that the distance between them is fixed. To accomplish this, place a \"\\\" (backslash) before the normal brackets. These brackets now behave like any other symbol and the alignment is the same as with other symbols:"
msgstr ""
#: parentheses.xhp#par_id3155960.6.help.text
msgid "left lbrace x right none"
msgstr ""
#: parentheses.xhp#par_id3148489.5.help.text
msgid "size *2 langle x rangle"
msgstr ""
#: parentheses.xhp#par_id3150344.4.help.text
msgid "size *2 \\langle x \\rangle"
msgstr ""
#: text.xhp#tit.help.text
msgid "Entering Text"
msgstr ""
#: text.xhp#bm_id3155962.help.text
msgid "<bookmark_value>text strings; entering in $[officename] Math</bookmark_value><bookmark_value>direct text; entering in $[officename] Math</bookmark_value><bookmark_value>inserting;text in $[officename] Math</bookmark_value>"
msgstr ""
#: text.xhp#hd_id5676442.help.text
msgid "<variable id=\"text\"><link href=\"text/smath/guide/text.xhp\" name=\"Entering Text\">Entering Text</link></variable>"
msgstr ""
#: text.xhp#hd_id8509170.help.text
msgid "How to enter direct text strings that do not get interpreted?"
msgstr ""
#: text.xhp#par_id337229.help.text
msgid "Some text strings get interpreted as operators automatically. Sometimes this is not what you want. If you want to write W<emph>*</emph> (a letter with a superscripted asterisk), the asterisk will be interpreted as a multiplication operator. Enclose the direct text within double quotes or add spaceholders."
msgstr ""
#: text.xhp#par_idN105D0.help.text
msgid "Examples:"
msgstr ""
#: text.xhp#par_id521866.help.text
msgid "An imported MathType formula contains the following string"
msgstr ""
#: text.xhp#par_id9413739.help.text
msgid "W rSup { size 8{*} }"
msgstr ""
#: text.xhp#par_id755943.help.text
msgid "If you have set up Math to convert imported MathType formulas (in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - Microsoft Office), you see the formula with a placeholder instead of the asterisk."
msgstr ""
#: text.xhp#par_id5988952.help.text
msgid "Change {*} to {} * {} as in the following formula:"
msgstr ""
#: text.xhp#par_id3304544.help.text
msgid "W rSup { size 8{} * {} }"
msgstr ""
#: text.xhp#par_id4941557.help.text
msgid "You can also use W^\"*\" to enter the character as direct text."
msgstr ""
#: text.xhp#par_id9961851.help.text
msgid "Some formulas start with an = sign. Use \"=\" to enter that character as direct text."
msgstr ""
#: newline.xhp#tit.help.text
msgid "Entering Line Breaks"
msgstr ""
#: newline.xhp#bm_id1295205.help.text
msgid "<bookmark_value>line breaks; in formulas</bookmark_value><bookmark_value>formulas;line breaks</bookmark_value><bookmark_value>wrapping text;in formulas</bookmark_value>"
msgstr ""
#: newline.xhp#hd_id3146970.1.help.text
msgid "<variable id=\"newline\"><link href=\"text/smath/guide/newline.xhp\" name=\"Entering Line Breaks\">Entering Line Breaks</link></variable>"
msgstr ""
#: newline.xhp#hd_id3147339.2.help.text
msgid "How to write formulas in $[officename] Math over two lines (with manual line break):"
msgstr ""
#: newline.xhp#par_id3154702.3.help.text
msgid "Create a line break by using the \"newline\" command. Everything coming after the line break is placed on the next line."
msgstr ""
#: keyboard.xhp#tit.help.text
msgid "Shortcuts ($[officename] Math Accessibility)"
msgstr ""
#: keyboard.xhp#bm_id3149018.help.text
msgid "<bookmark_value>accessibility; $[officename] Math shortcuts</bookmark_value>"
msgstr ""
#: keyboard.xhp#hd_id3149018.12.help.text
msgid "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\" name=\"Shortcuts ($[officename] Math Accessibility)\">Shortcuts ($[officename] Math Accessibility)</link></variable>"
msgstr ""
#: keyboard.xhp#par_id3150298.1.help.text
msgid "You can control $[officename] Math without a mouse."
msgstr ""
#: keyboard.xhp#hd_id3150343.2.help.text
msgid "Inserting a Formula Directly"
msgstr ""
#: keyboard.xhp#par_id3154659.3.help.text
msgid "If you want to insert a formula into a text document, and you already know the correct writing, you can proceed as follows:"
msgstr ""
#: keyboard.xhp#par_id3153818.4.help.text
msgid "Write the formula into your text"
msgstr ""
#: keyboard.xhp#par_id3153915.5.help.text
msgid "Select the formula"
msgstr ""
#: keyboard.xhp#par_id3150213.6.help.text
msgid "Choose the command <emph>Insert - Object - Formula</emph>."
msgstr ""
#: keyboard.xhp#hd_id3154767.7.help.text
msgid "Inserting a Formula using a Window"
msgstr ""
#: keyboard.xhp#par_id3149875.8.help.text
msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
msgstr ""
#: keyboard.xhp#par_id3150391.9.help.text
msgid "The cursor waits in the Commands window and you can type the formula."
msgstr ""
#: keyboard.xhp#par_id3150537.13.help.text
msgid "You can compose formulas using the Elements window. Open it with the menu <emph>View - Elements</emph> if it is not already open."
msgstr ""
#: keyboard.xhp#par_id3155625.10.help.text
msgid "If the Elements window is open, use F6 to switch from the Commands window to the Elements window and back."
msgstr ""
#: keyboard.xhp#hd_id3154554.11.help.text
msgid "Elements window"
msgstr ""
#: brackets.xhp#tit.help.text
msgid "Merging Formula Parts in Brackets"
msgstr ""
#: brackets.xhp#bm_id3152596.help.text
msgid "<bookmark_value>brackets; merging formula parts</bookmark_value><bookmark_value>formula parts; merging</bookmark_value><bookmark_value>fractions in formulas</bookmark_value><bookmark_value>merging;formula parts</bookmark_value>"
msgstr ""
#: brackets.xhp#hd_id3152596.1.help.text
msgid "<variable id=\"brackets\"><link href=\"text/smath/guide/brackets.xhp\" name=\"Merging Formula Parts in Brackets\">Merging Formula Parts in Brackets</link></variable>"
msgstr ""
#: brackets.xhp#hd_id3154511.2.help.text
msgid "Inserting fractions into formulas"
msgstr ""
#: brackets.xhp#par_id3146971.4.help.text
msgid "In the case of a fraction whose numerator and denominator consist of a product, a sum, and so on, the values that belong together must be bracketed together."
msgstr ""
#: brackets.xhp#par_id3149021.3.help.text
msgid "Use the following syntax:"
msgstr ""
#: brackets.xhp#par_id3083280.7.help.text
msgid "{a + c} over 2 = m"
msgstr ""
#: brackets.xhp#par_id3154703.6.help.text
msgid "or"
msgstr ""
#: brackets.xhp#par_id3150297.5.help.text
msgid "m = {a + c} over 2"
msgstr ""
#: comment.xhp#tit.help.text
msgid "Entering Comments"
msgstr ""
#: comment.xhp#bm_id3155961.help.text
msgid "<bookmark_value>comments; entering in $[officename] Math</bookmark_value><bookmark_value>inserting;comments in $[officename] Math</bookmark_value>"
msgstr ""
#: comment.xhp#hd_id3155961.1.help.text
msgid "<variable id=\"comment\"><link href=\"text/smath/guide/comment.xhp\" name=\"Entering Comments\">Entering Comments</link></variable>"
msgstr ""
#: comment.xhp#hd_id3154657.2.help.text
msgid "How does one attach comments that don't appear in the document to a formula?"
msgstr ""
#: comment.xhp#par_id3149499.3.help.text
msgid "A comment begins with a double percent sign <emph>%%</emph>, and extends to the next line-end character (Enter key). Everything that lies in between is ignored and is not printed out. If there are percent signs in the text, they are treated as part of the text."
msgstr ""
#: comment.xhp#par_idN105D0.help.text
msgid "Example:"
msgstr ""
#: comment.xhp#par_idN105D3.help.text
msgid "a^2+b^2=c^2 %% Pythagorean theorem."
msgstr ""
#: attributes.xhp#tit.help.text
msgid "Changing Default Attributes"
msgstr ""
#: attributes.xhp#bm_id3145792.help.text
msgid "<bookmark_value>attributes; changing in $[officename] Math</bookmark_value><bookmark_value>font attributes;changing defaults</bookmark_value><bookmark_value>formatting;changing default attributes</bookmark_value><bookmark_value>defaults;changing default formatting</bookmark_value><bookmark_value>changing;default formatting</bookmark_value>"
msgstr ""
#: attributes.xhp#hd_id3145792.1.help.text
msgid "<variable id=\"attributes\"><link href=\"text/smath/guide/attributes.xhp\" name=\"Changing Default Attributes\">Changing Default Attributes</link></variable>"
msgstr ""
#: attributes.xhp#hd_id3154484.2.help.text
msgid "Can default formats in $[officename] Math be modified?"
msgstr ""
#: attributes.xhp#par_id3148870.3.help.text
msgid "Some parts of formulas are always formatted bold or italic by default."
msgstr ""
#: attributes.xhp#par_id3150210.7.help.text
msgid "You can remove these attributes using \"nbold\" and \"nitalic\". Example:"
msgstr ""
#: attributes.xhp#par_id3143231.6.help.text
msgid "a + b"
msgstr ""
#: attributes.xhp#par_id3153810.5.help.text
msgid "nitalic a + bold b."
msgstr ""
#: attributes.xhp#par_id3149872.4.help.text
msgid "In the second formula, the a is not italic. The b is bold. You cannot change the plus sign by this method."
msgstr ""
#: limits.xhp#tit.help.text
msgid "Working with Limits"
msgstr ""
#: limits.xhp#bm_id8404492.help.text
msgid "<bookmark_value>limits;in sums/integrals</bookmark_value><bookmark_value>integral limits</bookmark_value>"
msgstr ""
#: limits.xhp#hd_id1892147.help.text
msgid "<variable id=\"limits\"><link href=\"text/smath/guide/limits.xhp\">Working with Limits</link></variable>"
msgstr ""
#: limits.xhp#hd_id9881893.help.text
msgid "How can I define the limits in a Sum or Integral formula?"
msgstr ""
#: limits.xhp#par_id6504409.help.text
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr ""
#: limits.xhp#par_id8811304.help.text
msgctxt "limits.xhp#par_id8811304.help.text"
msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
msgstr ""
#: limits.xhp#par_id1276589.help.text
msgid "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."
msgstr ""
#: limits.xhp#par_id3283791.help.text
msgid "In the upper part of the Elements window, click the <emph>Operators</emph> icon."
msgstr ""
#: limits.xhp#par_id9734794.help.text
msgid "In the lower part of the Elements window, click the <emph>Sum</emph> icon."
msgstr ""
#: limits.xhp#par_id9641712.help.text
msgid "To enable lower and upper limits, click additionally the <emph>Upper and Lower Limits</emph> icon."
msgstr ""
#: limits.xhp#par_id3304239.help.text
msgid "In the input window, the first placeholder or marker is selected, and you can start to enter the lower limit: "
msgstr ""
#: limits.xhp#par_id8679158.help.text
msgid "k = 0"
msgstr ""
#: limits.xhp#par_id8471327.help.text
msgid "Press F4 to advance to the next marker, and enter the upper limit:"
msgstr ""
#: limits.xhp#par_id4731894.help.text
msgid "n"
msgstr ""
#: limits.xhp#par_id759300.help.text
msgid "Press F4 to advance to the next marker, and enter the summand:"
msgstr ""
#: limits.xhp#par_id651875.help.text
msgid "s^k"
msgstr ""
#: limits.xhp#par_id6756187.help.text
msgid "Now the formula is complete. Click into your text document outside the formula to leave the formula editor."
msgstr ""
#: limits.xhp#par_id9406414.help.text
msgid "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."
msgstr ""
#: limits.xhp#par_id5866267.help.text
msgctxt "limits.xhp#par_id5866267.help.text"
msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
msgstr ""
#: limits.xhp#par_id1965697.help.text
msgid "Click in the input window and enter the following line:"
msgstr ""
#: limits.xhp#par_id9004486.help.text
msgid "int from{a} to{b} f(x)`dx"
msgstr ""
#: limits.xhp#par_id4651020.help.text
msgid "A small gap exists between f(x) and dx, which you can also enter using the Elements window: click the <emph>Format</emph> icon, then the <emph>Small Gap</emph> icon."
msgstr ""
#: limits.xhp#par_id3877071.help.text
msgid "If you don't like the font of the letters f and x, choose <item type=\"menuitem\">Format - Fonts</item> and select other fonts. Click the <emph>Default</emph> button to use the new fonts as default from now on."
msgstr ""
#: limits.xhp#par_id3021332.help.text
msgid "If you need the formula within a line of text, the limits increase the line height. You can choose <item type=\"menuitem\">Format - Text Mode</item> to place the limits besides the Sum or Integral symbol, which reduces the line height."
msgstr ""
#: limits.xhp#par_id260322.help.text
msgid "<link href=\"text/smath/01/03090909.xhp\">Example of Integral and Sum ranges</link>"
msgstr ""
#: main.xhp#tit.help.text
msgid "Instructions for Using $[officename] Math"
msgstr ""
#: main.xhp#bm_id3147341.help.text
msgid "<bookmark_value>$[officename] Math;general instructions</bookmark_value><bookmark_value>instructions; $[officename] Math</bookmark_value><bookmark_value>Equation Editor, see $[officename] Math</bookmark_value>"
msgstr ""
#: main.xhp#hd_id3147341.1.help.text
msgid "<variable id=\"main\"><link href=\"text/smath/guide/main.xhp\" name=\"Instructions for Using $[officename] Math\">Instructions for Using $[officename] Math</link></variable>"
msgstr ""
#: main.xhp#hd_id3150199.2.help.text
msgid "Entering and Editing Formulas"
msgstr ""
#: align.xhp#tit.help.text
msgid "Manually Aligning Formula Parts"
msgstr ""
#: align.xhp#bm_id3156384.help.text
msgid "<bookmark_value>aligning; characters in %PRODUCTNAME Math</bookmark_value><bookmark_value>formula parts; manually aligning</bookmark_value>"
msgstr ""
#: align.xhp#hd_id3156384.1.help.text
msgid "<variable id=\"align\"><link href=\"text/smath/guide/align.xhp\" name=\"Manually Aligning Formula Parts\">Manually Aligning Formula Parts</link></variable>"
msgstr ""
#: align.xhp#hd_id3154657.2.help.text
msgid "How do you align characters in $[officename] Math quickly and easily?"
msgstr ""
#: align.xhp#par_id3150249.3.help.text
msgid "To accomplish this, you must define empty groups and character strings. They do not require any space, but carry information that helps in the alignment process."
msgstr ""
#: align.xhp#par_id3153912.4.help.text
msgid "To create empty groups, enter curly brackets <emph>{}</emph> in the Commands window. In the following example, the goal is to achieve a line break so that the plus signs are beneath one another, even though one less character is entered in the upper line:"
msgstr ""
#: align.xhp#par_id3153246.7.help.text
msgid "a+a+a+{} newline {}{}{}{}{}a+a+a+a"
msgstr ""
#: align.xhp#par_id3143229.5.help.text
msgid "Empty character strings are a simple way to ensure that texts and formulas are left-aligned. They are defined using double inverted commas \"\" . Make sure you do not use any typographic inverted commas. Example:"
msgstr ""
#: align.xhp#par_id3153809.6.help.text
msgid "\"A further example.\" newline a+b newline \"\"c-d"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff