From acd9333176eeb0205fd5984091bb5b15211bbcba Mon Sep 17 00:00:00 2001 From: Christian Lohmaier Date: Mon, 13 May 2019 15:44:49 +0200 Subject: update translations and force-fix errors using pocheck Change-Id: I2afa34705cebda561eb974fedf7a921666089f2b --- .../lv/helpcontent2/source/text/sbasic/python.po | 530 +- .../lv/helpcontent2/source/text/sbasic/shared.po | 8 +- source/lv/helpcontent2/source/text/scalc/01.po | 442 +- source/lv/helpcontent2/source/text/sdraw.po | 768 +-- source/lv/helpcontent2/source/text/sdraw/00.po | 80 +- source/lv/helpcontent2/source/text/sdraw/01.po | 62 +- source/lv/helpcontent2/source/text/shared/00.po | 5908 ++++++++++---------- source/lv/helpcontent2/source/text/shared/guide.po | 3214 ++++++++++- source/lv/helpcontent2/source/text/simpress.po | 522 +- source/lv/helpcontent2/source/text/simpress/00.po | 22 +- source/lv/helpcontent2/source/text/simpress/01.po | 134 +- source/lv/helpcontent2/source/text/simpress/02.po | 12 +- source/lv/helpcontent2/source/text/swriter/01.po | 8 +- 13 files changed, 7931 insertions(+), 3779 deletions(-) (limited to 'source/lv/helpcontent2') diff --git a/source/lv/helpcontent2/source/text/sbasic/python.po b/source/lv/helpcontent2/source/text/sbasic/python.po index 1998f3e9ded..543383eba82 100644 --- a/source/lv/helpcontent2/source/text/sbasic/python.po +++ b/source/lv/helpcontent2/source/text/sbasic/python.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-24 18:25+0200\n" +"POT-Creation-Date: 2019-04-30 14:59+0200\n" "PO-Revision-Date: 2019-02-27 15:23+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: LANGUAGE \n" @@ -152,6 +152,518 @@ msgctxt "" msgid "Refer to msgbox.py in {installation}/program/ directory for Python dynamic dialog examples." msgstr "" +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"tit\n" +"help.text" +msgid "Python : Monitoring Document Events" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0526\n" +"help.text" +msgid "Basic;Monitoring Document Events Python;Monitoring Document Events Access2Base;Console Access2Base;Trace Tools;Strings API;BasicLibraries API;DocumentEvent API;DocumentEventListener API;EventObject API;GlobalEventBroadcaster API;MasterScriptProviderFactory API;XDocumentEventBroadcaster API;XDocumentEventListener API;XScript" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0527\n" +"help.text" +msgid "Monitoring Document Events" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0528\n" +"help.text" +msgid "Next to assigning macros to events, one can monitor events raised by %PRODUCTNAME documents. Application Programming Interface (API) broadcasters are responsible for calling event scripts. Unlike listeners that require to define all supported methods, even if unused, document monitors require only two methods next to hooked event scripts." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0529\n" +"help.text" +msgid "Listening to Document Events" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0530\n" +"help.text" +msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning OnLoad script, to the Open Document event, suffices to initiate and terminate document event monitoring. Tools – Customise... menu Events tab is used to assign either scripts." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0531\n" +"help.text" +msgid "Intercepting events helps setting scripts pre- and post-conditions such as loading and unloading libraries or track script processing in the background. Access2Base Trace module usage is illustrating that second context." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0532\n" +"help.text" +msgid "With Python" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0533\n" +"help.text" +msgid "Events monitoring starts from object instantiation and ultimately stops when Python releases the object. Raised events are reported using Access2Base console." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0534\n" +"help.text" +msgid "OnLoad and OnUnload events can be used to respectively set and unset Python programs path. They are described as Open document and Document closed." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0543\n" +"help.text" +msgid "class UiDocument(unohelper.Base, AdapterPattern):" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0544\n" +"help.text" +msgid "\"\"\" Monitor document events \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0546\n" +"help.text" +msgid "adapted from 'Python script to monitor OnSave event' at" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0550\n" +"help.text" +msgid "\"\"\" Document events monitor \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0551\n" +"help.text" +msgid "''' report using Access2Base.Trace console OR" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0552\n" +"help.text" +msgid "report in 1st sheet, 1st column for Calc docs '''" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0558\n" +"help.text" +msgid "#self.row = 0 # uncomment for Calc documents only" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0560\n" +"help.text" +msgid "self.listen() # Start monitoring doc. events" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0569\n" +"help.text" +msgid "\"\"\" Output doc. events on 1st column of a Calc spreadsheet \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0575\n" +"help.text" +msgid "def listen(self, *args): # OnLoad/OnNew at the earliest" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0576\n" +"help.text" +msgid "\"\"\" Start doc. events monitoring \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0578\n" +"help.text" +msgid "Console.log(\"INFO\", \"Document events are being logged\", True)" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0580\n" +"help.text" +msgid "def sleep(self, *args): # OnUnload at the latest (optional)" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0581\n" +"help.text" +msgid "\"\"\" Stop doc. events monitoring \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0583\n" +"help.text" +msgid "Console.log(\"INFO\", \"Document events have been logged\", True)" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0587\n" +"help.text" +msgid "\"\"\" Intercepts all doc. events \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0588\n" +"help.text" +msgid "#self.setCell(event.Source, event.EventName) # only for Calc docs" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0595\n" +"help.text" +msgid "\"\"\" Release all activities \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0601\n" +"help.text" +msgid "def OnLoad(*args): # 'Open Document' event" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0604\n" +"help.text" +msgid "def OnUnload(*args): # 'Document has been closed' event" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0605\n" +"help.text" +msgid "pass # (optional) performed when disposed" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0613\n" +"help.text" +msgid "(Back/Fore)ground console to report/log program execution." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0617\n" +"help.text" +msgid "\"\"\" Print free item list to console \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0622\n" +"help.text" +msgid "\"\"\" Append log message to console, optional user prompt \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0627\n" +"help.text" +msgid "\"\"\" Set log messages lower limit \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0632\n" +"help.text" +msgid "\"\"\" Display console content/dialog \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0647\n" +"help.text" +msgid "Mind the misspelled documentEventOccured method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0648\n" +"help.text" +msgid "Start application and Close application events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using Open document and Document closed events. Refer to Importing Python Modules for more information." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0649\n" +"help.text" +msgid "With %PRODUCTNAME Basic" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0650\n" +"help.text" +msgid "The Onload script is assigned to Open document event using Tools – Customise... menu Events tab. Events monitoring starts from the moment a ConsoleLogger object is instantiated and ultimately stops when Basic engine releases it. OnLoad event loads necessary Basic libraries, while caught events are reported using Access2Base.Trace module." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0651\n" +"help.text" +msgid "REM controller.Events module" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0653\n" +"help.text" +msgid "Private _obj As Object ' controller.ConsoleLogger instance" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0655\n" +"help.text" +msgid "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0659\n" +"help.text" +msgid "REM controller.ConsoleLogger class module" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0664\n" +"help.text" +msgid "' ADAPTER design pattern object to be instantiated in « Open Document » event" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0668\n" +"help.text" +msgid "' CONSTRUCTOR/DESTRUCTOR" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0674\n" +"help.text" +msgid "' MEMBERS" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0679\n" +"help.text" +msgid "''' System-dependent filename '''" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0686\n" +"help.text" +msgid "' METHODS" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0688\n" +"help.text" +msgid "''' Monitor document events '''" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0701\n" +"help.text" +msgid "''' Initialize document events logging '''" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0706\n" +"help.text" +msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events are being logged\", _" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0714\n" +"help.text" +msgid "''' Terminate document events logging '''" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0717\n" +"help.text" +msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events have been logged\", _" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0723\n" +"help.text" +msgid "' Your code for handled events goes here" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0724\n" +"help.text" +msgid "Mind the misspelled _documentEventOccured method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0725\n" +"help.text" +msgid "Discovering Documents Events" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0726\n" +"help.text" +msgid "The broadcaster API object provides the list of events it is responsible for:" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0727\n" +"help.text" +msgid "With Python" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0734\n" +"help.text" +msgid "\"\"\" Display document events \"\"\"" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0736\n" +"help.text" +msgid "adapted from DisplayAvailableEvents() by A. Pitonyak" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0747\n" +"help.text" +msgid "The Alternative Python Script Organizer (APSO) extension is used to render events information on screen." +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0748\n" +"help.text" +msgid "With %PRODUCTNAME Basic" +msgstr "" + +#: python_document_events.xhp +msgctxt "" +"python_document_events.xhp\n" +"N0750\n" +"help.text" +msgid "''' Display document events '''" +msgstr "" + #: python_examples.xhp msgctxt "" "python_examples.xhp\n" @@ -541,7 +1053,7 @@ msgctxt "" "python_listener.xhp\n" "N0385\n" "help.text" -msgid "Python;Event Listener Python;createUnoListener Basic;Event Listener" +msgid "Python;Event Listener Python;createUnoListener Basic;Event Listener API;ActionEvent API;DialogProvider API;EventObject API;ExecutableDialogResults API;XActionListener" msgstr "" #: python_listener.xhp @@ -717,7 +1229,7 @@ msgctxt "" "python_listener.xhp\n" "N0499\n" "help.text" -msgid "Listeners are usually coded along with dialog opening. Numerous listener approaches are possible such as event handlers for dialogs or event monitors for documents or forms." +msgid "Listeners are usually coded along with dialog opening. Numerous listener approaches are possible such as event handlers for dialogs or event monitors for documents or forms." msgstr "" #: python_listener.xhp @@ -1477,7 +1989,7 @@ msgctxt "" "python_screen.xhp\n" "N0433\n" "help.text" -msgid "Python;InputBox Python;MsgBox Python;Print" +msgid "Python;InputBox Python;MsgBox Python;Print API;MasterScriptProvider API;XScript" msgstr "" #: python_screen.xhp @@ -1600,14 +2112,6 @@ msgctxt "" msgid "uiScripts Basic module" msgstr "" -#: python_screen.xhp -msgctxt "" -"python_screen.xhp\n" -"N0505\n" -"help.text" -msgid "Calling Basic macros from Python" -msgstr "" - #: python_session.xhp msgctxt "" "python_session.xhp\n" @@ -1621,7 +2125,7 @@ msgctxt "" "python_session.xhp\n" "N0339\n" "help.text" -msgid "Session;ComputerName Session;SharedScripts Session;SharedPythonScripts Session;UserProfile Session;UserScripts Session;UserPythonScripts" +msgid "Session;ComputerName Session;SharedScripts Session;SharedPythonScripts Session;UserProfile Session;UserScripts Session;UserPythonScripts API;PathSubstitution" msgstr "" #: python_session.xhp diff --git a/source/lv/helpcontent2/source/text/sbasic/shared.po b/source/lv/helpcontent2/source/text/sbasic/shared.po index ef9d0b700f2..4128e0ef19f 100644 --- a/source/lv/helpcontent2/source/text/sbasic/shared.po +++ b/source/lv/helpcontent2/source/text/sbasic/shared.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" "PO-Revision-Date: 2019-03-09 15:18+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: LANGUAGE \n" @@ -26157,7 +26157,7 @@ msgctxt "" "03103350.xhp\n" "par_id941552915528262\n" "help.text" -msgid "When VBA support is enabled, %PRODUCTNAME Basic functions arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different of their VBA counterparts." +msgid "When VBA support is enabled, %PRODUCTNAME Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different of their VBA counterparts." msgstr "" #: 03103350.xhp @@ -28021,7 +28021,7 @@ msgctxt "" "03120102.xhp\n" "par_id3149295\n" "help.text" -msgid "Expression: a numeric expression that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value." +msgid "Expression: a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value." msgstr "" #: 03120102.xhp @@ -28029,7 +28029,7 @@ msgctxt "" "03120102.xhp\n" "par_id991552913928635\n" "help.text" -msgid "When VBA compatibility mode is enabled (OPTION VBASUPPORT 1), Expression is a numeric expression that represent a valid 8 bit ASCII value (0-255) only." +msgid "When VBA compatibility mode is enabled (OPTION VBASUPPORT 1), Expression is a numeric expression that represents a valid 8-bit ASCII value (0-255) only." msgstr "" #: 03120102.xhp diff --git a/source/lv/helpcontent2/source/text/scalc/01.po b/source/lv/helpcontent2/source/text/scalc/01.po index 1aa3cf43596..b1491fa7ad4 100644 --- a/source/lv/helpcontent2/source/text/scalc/01.po +++ b/source/lv/helpcontent2/source/text/scalc/01.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-24 18:25+0200\n" +"POT-Creation-Date: 2019-04-30 14:59+0200\n" "PO-Revision-Date: 2019-02-27 15:24+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: LANGUAGE \n" @@ -51552,6 +51552,86 @@ msgctxt "" msgid "COLOR(0;0;400;0) returns Err:502 (Invalid argument) because the blue value is greater than 255." msgstr "" +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"tit\n" +"help.text" +msgid "CONCAT function" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"bm_id741556228031712\n" +"help.text" +msgid "CONCAT function" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"hd_id471556226436779\n" +"help.text" +msgid "CONCAT" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id891556226436781\n" +"help.text" +msgid "Concatenates one or more strings" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id701556226865876\n" +"help.text" +msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M." +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id461556226873963\n" +"help.text" +msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate." +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id911556226813411\n" +"help.text" +msgid "CONCAT( string1[, string2][, …] )" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id581556227044166\n" +"help.text" +msgid "string1[, string2][, …] are strings or references to cells or ranges that contains strings to concatenate." +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id531556227248228\n" +"help.text" +msgid "=CONCAT(\"Hello \", A1:C3) concatenates the string \"Hello\" with all strings in range A1:C3." +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id781556244709752\n" +"help.text" +msgid "CONCATENATE" +msgstr "" + #: func_countifs.xhp msgctxt "" "func_countifs.xhp\n" @@ -53488,6 +53568,150 @@ msgctxt "" msgid "YEAR, NOW, MINUTE, MONTH, DAY, WEEKDAY." msgstr "" +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"tit\n" +"help.text" +msgid "IFS function" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"bm_id901556242230198\n" +"help.text" +msgid "IFS function" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"hd_id271556234923654\n" +"help.text" +msgid "IFS" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id171556234923655\n" +"help.text" +msgid "IFS is a multiple IF-function." +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id271556235333493\n" +"help.text" +msgid "IFS( expression1, result1[, expression2, result2][, …] )" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id31556235655212\n" +"help.text" +msgid "expression1, expression2, ... are any boolean values or expressions that can be TRUE or FALSE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id441556235649549\n" +"help.text" +msgid "result1, result2, ... are the values that are returned if the logical test is TRUE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id641556235704257\n" +"help.text" +msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id551556235712759\n" +"help.text" +msgid "IF expression1 is TRUE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id1001556235718948\n" +"help.text" +msgid "THEN result1" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id571556235725969\n" +"help.text" +msgid "ELSE IF expression2 is TRUE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id581556235731982\n" +"help.text" +msgid "THEN result2" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id961556235738258\n" +"help.text" +msgid "ELSE IF expression3 is TRUE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id951556235743954\n" +"help.text" +msgid "THEN result3" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id671556235758504\n" +"help.text" +msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result." +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id541556235771022\n" +"help.text" +msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned." +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id181556235788473\n" +"help.text" +msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned." +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id781556244709752\n" +"help.text" +msgid "IF" +msgstr "" + #: func_imcos.xhp msgctxt "" "func_imcos.xhp\n" @@ -55760,6 +55984,222 @@ msgctxt "" msgid "If E2 = pen, the function returns 65, because the link to the cell is substituted with its content." msgstr "" +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"tit\n" +"help.text" +msgid "SWITCH function" +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"bm_id571556244875552\n" +"help.text" +msgid "SWITCH function" +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"hd_id21556242313791\n" +"help.text" +msgid "SWITCH" +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id361556242313793\n" +"help.text" +msgid "SWITCH compares expression with value1 to valuen and returns the result belonging to the first value that equals expression. If there is no match and default_value is given, that will be returned." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id521556242803283\n" +"help.text" +msgid "SWITCH( expression, value1, result1[, value2, result2][, … ][, default_result] )" +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id341556242996378\n" +"help.text" +msgid "expression is a text, numeric, logical or date input or reference to a cell." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id321556243790332\n" +"help.text" +msgid "value1, value2, ... is any value or reference to a cell. Each value must have a result given." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id171556243796068\n" +"help.text" +msgid "result1, result2, ... is any value or reference to a cell." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id331556245422283\n" +"help.text" +msgid "default_result: any value or reference to a cell that is returned when there is no match." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id871556243022881\n" +"help.text" +msgid "If no value equals expression and no default result is given, a #N/A error is returned." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id851556243961783\n" +"help.text" +msgid "=SWITCH(MONTH(A3),1,\"January\",2,\"February\",3,\"March\",\"No match\") returns \"January\" when A3=1, February when A3=2 , etc..." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id781556244709752\n" +"help.text" +msgid "IF" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"tit\n" +"help.text" +msgid "TEXTJOIN function" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"bm_id581556228060864\n" +"help.text" +msgid "TEXTJOIN function" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"hd_id551556227727946\n" +"help.text" +msgid "TEXTJOIN" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id121556227727948\n" +"help.text" +msgid "Concatenates one or more strings, and uses delimiters between them." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id541556228253979\n" +"help.text" +msgid "TEXTJOIN( delimiter, skip_empty, string1[, string2][, …] )" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id741556228390897\n" +"help.text" +msgid "delimiter is a text string and can be a range." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id621556228397269\n" +"help.text" +msgid "skip_empty is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id631556228516997\n" +"help.text" +msgid "string1[, string2][, …] are strings or references to cells or ranges that contains text to join." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id1001556228523394\n" +"help.text" +msgid "Ranges are traversed row by row (from top to bottom)." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id81556228530082\n" +"help.text" +msgid "If delimiter is a range, the range need not be of the same size as the number of strings to be joined." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id831556228543099\n" +"help.text" +msgid "If there are more delimiters than strings to be joined, not all delimiters will be used." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id321556228557611\n" +"help.text" +msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id441556229012536\n" +"help.text" +msgid "=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\") returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id441556239012536\n" +"help.text" +msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, =TEXTJOIN(\"-\",TRUE,A1:B2) returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id781556244709752\n" +"help.text" +msgid "CONCATENATE" +msgstr "" + #: func_time.xhp msgctxt "" "func_time.xhp\n" diff --git a/source/lv/helpcontent2/source/text/sdraw.po b/source/lv/helpcontent2/source/text/sdraw.po index 10795ab3fc7..346c15380dc 100644 --- a/source/lv/helpcontent2/source/text/sdraw.po +++ b/source/lv/helpcontent2/source/text/sdraw.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-10-21 20:57+0200\n" -"PO-Revision-Date: 2016-05-11 18:14+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" +"PO-Revision-Date: 2017-10-04 11:29+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462990457.000000\n" +"X-POOTLE-MTIME: 1507116576.000000\n" #: main0000.xhp msgctxt "" @@ -96,126 +96,6 @@ msgctxt "" msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click Exit." msgstr "" -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"tit\n" -"help.text" -msgid "Edit" -msgstr "Rediģēt" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3150868\n" -"help.text" -msgid "Edit" -msgstr "Rediģēt" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"par_id3146974\n" -"help.text" -msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)." -msgstr "" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3147396\n" -"help.text" -msgid "Paste Special" -msgstr "Ielīmēt norādot" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3149400\n" -"help.text" -msgid "Find & Replace" -msgstr "Atrast un aizstāt" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3153713\n" -"help.text" -msgid "Points" -msgstr "Punkti" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"par_id3147340\n" -"help.text" -msgid "Enables you to edit points on your drawing." -msgstr "" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3149258\n" -"help.text" -msgid "Glue points" -msgstr "Savienojuma punkti" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"par_id3146315\n" -"help.text" -msgid "Enables you to edit glue points on your drawing." -msgstr "" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3147005\n" -"help.text" -msgid "Duplicate" -msgstr "Dublēt" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3150205\n" -"help.text" -msgid "Cross-fading" -msgstr "" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3154650\n" -"help.text" -msgid "Fields" -msgstr "Lauki" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3156446\n" -"help.text" -msgid "Links" -msgstr "Saites" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3148699\n" -"help.text" -msgid "ImageMap" -msgstr "Attēlkarte" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3157867\n" -"help.text" -msgid "Hyperlink" -msgstr "Hipersaite" - #: main0103.xhp msgctxt "" "main0103.xhp\n" @@ -280,254 +160,6 @@ msgctxt "" msgid "Zoom" msgstr "Tālummaiņa" -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"tit\n" -"help.text" -msgid "Insert" -msgstr "Ievietot" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3148797\n" -"help.text" -msgid "Insert" -msgstr "Ievietot" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"par_id3153770\n" -"help.text" -msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents." -msgstr "" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3154320\n" -"help.text" -msgid "Slide" -msgstr "Slīde" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3146974\n" -"help.text" -msgid "Layer" -msgstr "Slānis" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3147397\n" -"help.text" -msgid "Insert Snap Point/Line" -msgstr "" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id0915200910361385\n" -"help.text" -msgid "Comment" -msgstr "Komentārs" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3154018\n" -"help.text" -msgid "Special Character" -msgstr "Īpašā rakstzīme" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3150749\n" -"help.text" -msgid "Hyperlink" -msgstr "Hipersaite" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3156385\n" -"help.text" -msgid "Table" -msgstr "Tabula" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3147003\n" -"help.text" -msgid "Chart" -msgstr "" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"par_id0302200904020595\n" -"help.text" -msgid "Inserts a chart." -msgstr "Ievieto grafiku." - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3155111\n" -"help.text" -msgid "Floating Frame" -msgstr "" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3157867\n" -"help.text" -msgid "File" -msgstr "Datne" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"tit\n" -"help.text" -msgid "Format" -msgstr "Formāts" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3153770\n" -"help.text" -msgid "Format" -msgstr "Formatēt" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"par_id3152578\n" -"help.text" -msgid "Contains commands for formatting the layout and the contents of your document." -msgstr "" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3155111\n" -"help.text" -msgid "Character" -msgstr "Rakstzīme" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3146979\n" -"help.text" -msgid "Paragraph" -msgstr "Rindkopa" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3166426\n" -"help.text" -msgid "Bullets and Numbering" -msgstr "" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3155091\n" -"help.text" -msgid "Page" -msgstr "Lappuse" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3146971\n" -"help.text" -msgid "Position and Size" -msgstr "Novietojums un izmērs" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3148576\n" -"help.text" -msgid "Line" -msgstr "Līnija" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3151076\n" -"help.text" -msgid "Area" -msgstr "Laukums" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3153878\n" -"help.text" -msgid "Text" -msgstr "Teksts" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3153913\n" -"help.text" -msgid "Layer" -msgstr "Slānis" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"tit\n" -"help.text" -msgid "Tools" -msgstr "Rīki" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"hd_id3159155\n" -"help.text" -msgid "Tools" -msgstr "Rīki" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"par_id3156443\n" -"help.text" -msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings." -msgstr "" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"hd_id3153415\n" -"help.text" -msgid "AutoCorrect Options" -msgstr "" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"hd_id3150044\n" -"help.text" -msgid "Customize" -msgstr "Pielāgot" - #: main0200.xhp msgctxt "" "main0200.xhp\n" @@ -999,3 +631,395 @@ msgctxt "" "help.text" msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG." msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"tit\n" +"help.text" +msgid "Edit" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3150868\n" +"help.text" +msgid "Edit" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"par_id3146974\n" +"help.text" +msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)." +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3147396\n" +"help.text" +msgid "Paste Special" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3149400\n" +"help.text" +msgid "Find & Replace" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3153713\n" +"help.text" +msgid "Points" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"par_id3147340\n" +"help.text" +msgid "Enables you to edit points on your drawing." +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3149258\n" +"help.text" +msgid "Glue points" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"par_id3146315\n" +"help.text" +msgid "Enables you to edit glue points on your drawing." +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3147005\n" +"help.text" +msgid "Duplicate" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3150205\n" +"help.text" +msgid "Cross-fading" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3154650\n" +"help.text" +msgid "Fields" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3156446\n" +"help.text" +msgid "Links" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3157867\n" +"help.text" +msgid "Hyperlink" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"tit\n" +"help.text" +msgid "Format" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3153770\n" +"help.text" +msgid "Format" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"par_id3152578\n" +"help.text" +msgid "Contains commands for formatting the layout and the contents of your document." +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3155111\n" +"help.text" +msgid "Character" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3146979\n" +"help.text" +msgid "Paragraph" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3166426\n" +"help.text" +msgid "Bullets and Numbering" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3146971\n" +"help.text" +msgid "Position and Size" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3148576\n" +"help.text" +msgid "Line" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3151076\n" +"help.text" +msgid "Area" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3153878\n" +"help.text" +msgid "Text" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3153913\n" +"help.text" +msgid "Layer" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"tit\n" +"help.text" +msgid "Insert" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id3148797\n" +"help.text" +msgid "Insert" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"par_id3153770\n" +"help.text" +msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents." +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id3146974\n" +"help.text" +msgid "Layer" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id3147397\n" +"help.text" +msgid "Insert Snap Point/Line" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id0915200910361385\n" +"help.text" +msgid "Comment" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id3154018\n" +"help.text" +msgid "Special Character" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id3150749\n" +"help.text" +msgid "Hyperlink" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id3156385\n" +"help.text" +msgid "Table" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id3147003\n" +"help.text" +msgid "Chart" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"par_id0302200904020595\n" +"help.text" +msgid "Inserts a chart." +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id3155111\n" +"help.text" +msgid "Floating Frame" +msgstr "" + +#: main_insert.xhp +msgctxt "" +"main_insert.xhp\n" +"hd_id3157867\n" +"help.text" +msgid "File" +msgstr "" + +#: main_page.xhp +msgctxt "" +"main_page.xhp\n" +"tit\n" +"help.text" +msgid "Page" +msgstr "" + +#: main_page.xhp +msgctxt "" +"main_page.xhp\n" +"hd_id41556822227733\n" +"help.text" +msgid "Page" +msgstr "" + +#: main_page.xhp +msgctxt "" +"main_page.xhp\n" +"par_id771556822318420\n" +"help.text" +msgid "This menu provides page management and navigation commands." +msgstr "" + +#: main_page.xhp +msgctxt "" +"main_page.xhp\n" +"hd_id131556822326832\n" +"help.text" +msgid "New Page" +msgstr "" + +#: main_page.xhp +msgctxt "" +"main_page.xhp\n" +"hd_id3155091\n" +"help.text" +msgid "Properties" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"tit\n" +"help.text" +msgid "Tools" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"hd_id3159155\n" +"help.text" +msgid "Tools" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"par_id3156443\n" +"help.text" +msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings." +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"hd_id3148699\n" +"help.text" +msgid "ImageMap" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"hd_id3153415\n" +"help.text" +msgid "AutoCorrect Options" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"hd_id3150044\n" +"help.text" +msgid "Customize" +msgstr "" diff --git a/source/lv/helpcontent2/source/text/sdraw/00.po b/source/lv/helpcontent2/source/text/sdraw/00.po index f40bea4050f..e3bb7749a2c 100644 --- a/source/lv/helpcontent2/source/text/sdraw/00.po +++ b/source/lv/helpcontent2/source/text/sdraw/00.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2017-05-09 16:45+0200\n" -"PO-Revision-Date: 2015-04-20 04:40+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" +"PO-Revision-Date: 2017-05-10 04:22+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1429504818.000000\n" +"X-POOTLE-MTIME: 1494390153.000000\n" #: 00000004.xhp msgctxt "" @@ -31,3 +31,75 @@ msgctxt "" "help.text" msgid "To access this command..." msgstr "Lai piekļūtu šai komandai..." + +#: page_menu.xhp +msgctxt "" +"page_menu.xhp\n" +"tit\n" +"help.text" +msgid "Page Menu" +msgstr "" + +#: page_menu.xhp +msgctxt "" +"page_menu.xhp\n" +"par_id341556823034391\n" +"help.text" +msgid "Choose Page - Properties " +msgstr "" + +#: page_menu.xhp +msgctxt "" +"page_menu.xhp\n" +"par_id561556823042778\n" +"help.text" +msgid "Choose Page - Properties and then click the Page tab " +msgstr "" + +#: page_menu.xhp +msgctxt "" +"page_menu.xhp\n" +"par_id321556823043909\n" +"help.text" +msgid "Choose Page - Properties and then click the Background tab " +msgstr "" + +#: page_menu.xhp +msgctxt "" +"page_menu.xhp\n" +"par_id941556823044342\n" +"help.text" +msgid "Choose Page - Master Page " +msgstr "" + +#: page_menu.xhp +msgctxt "" +"page_menu.xhp\n" +"par_id191556823044529\n" +"help.text" +msgid "Choose Page - New Page" +msgstr "" + +#: page_menu.xhp +msgctxt "" +"page_menu.xhp\n" +"par_id1001556823044677\n" +"help.text" +msgid "On the Insert bar, click" +msgstr "" + +#: page_menu.xhp +msgctxt "" +"page_menu.xhp\n" +"par_id351556823072396\n" +"help.text" +msgid "Icon" +msgstr "" + +#: page_menu.xhp +msgctxt "" +"page_menu.xhp\n" +"par_id831556823072396\n" +"help.text" +msgid "New Page" +msgstr "" diff --git a/source/lv/helpcontent2/source/text/sdraw/01.po b/source/lv/helpcontent2/source/text/sdraw/01.po index 61642b721df..5dfe7903c0c 100644 --- a/source/lv/helpcontent2/source/text/sdraw/01.po +++ b/source/lv/helpcontent2/source/text/sdraw/01.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2017-05-09 16:45+0200\n" -"PO-Revision-Date: 2016-06-19 12:09+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" +"PO-Revision-Date: 2017-05-10 04:22+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,28 +14,60 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1466338141.000000\n" +"X-POOTLE-MTIME: 1494390153.000000\n" -#: 04010000.xhp +#: new_page.xhp msgctxt "" -"04010000.xhp\n" +"new_page.xhp\n" "tit\n" "help.text" -msgid "Insert Page" -msgstr "Ievietot lappusi" +msgid "New Page" +msgstr "" -#: 04010000.xhp +#: new_page.xhp msgctxt "" -"04010000.xhp\n" +"new_page.xhp\n" "hd_id3150202\n" "help.text" -msgid "Insert Page" -msgstr "Ievietot lappusi" +msgid "New Page" +msgstr "" -#: 04010000.xhp +#: new_page.xhp msgctxt "" -"04010000.xhp\n" +"new_page.xhp\n" "par_id3152988\n" "help.text" msgid "Inserts a blank page after the selected page." -msgstr "Ievieto tukšu lappusi pēc atlasītās lappuses." +msgstr "" + +#: page_properties.xhp +msgctxt "" +"page_properties.xhp\n" +"tit\n" +"help.text" +msgid "Page" +msgstr "" + +#: page_properties.xhp +msgctxt "" +"page_properties.xhp\n" +"hd_id231556821873595\n" +"help.text" +msgid "Page" +msgstr "" + +#: page_properties.xhp +msgctxt "" +"page_properties.xhp\n" +"par_id571556821811542\n" +"help.text" +msgid "Sets page orientation, page margins, background and other layout options." +msgstr "" + +#: page_properties.xhp +msgctxt "" +"page_properties.xhp\n" +"par_id691556822054550\n" +"help.text" +msgid "To change the background of all of the pages in the active file, select a background, click OK and click Yes in the Page Setup dialog." +msgstr "" diff --git a/source/lv/helpcontent2/source/text/shared/00.po b/source/lv/helpcontent2/source/text/shared/00.po index 5b2da96ecb3..086870b25f1 100644 --- a/source/lv/helpcontent2/source/text/shared/00.po +++ b/source/lv/helpcontent2/source/text/shared/00.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-04-30 14:59+0200\n" "PO-Revision-Date: 2018-11-14 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -6344,6172 +6344,6172 @@ msgctxt "" msgid "Choose File - Versions." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" +"00000403.xhp\n" "tit\n" "help.text" -msgid "Edit Menu" -msgstr "Rediģēt izvēlne" +msgid "View Menu" +msgstr "Skats izvēlne" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"hd_id3147273\n" +"00000403.xhp\n" +"hd_id3156304\n" "help.text" -msgid "Edit Menu" -msgstr "Rediģēt izvēlne" +msgid "View Menu" +msgstr "Skats izvēlne" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3085157\n" +"00000403.xhp\n" +"par_id3146936\n" "help.text" -msgid "Choose Edit - Undo." +msgid "Choose View - Zoom." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3145160\n" +"00000403.xhp\n" +"par_id3149962\n" "help.text" -msgid "CommandCtrl+Z" -msgstr "CommandCtrl+Z" +msgid "Zoom also with (+) (-) (×) and (÷) on the number keypadZoom also with (+) (-) (×) and (÷) on the number keypad." +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3154094\n" +"00000403.xhp\n" +"par_id3152895\n" "help.text" -msgid "On the Standard bar or Table Data bar, click" +msgid "Double-click or right-click the field on the Status bar." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3155449\n" +"00000403.xhp\n" +"par_id3156183\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose View - Toolbars." +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3148563\n" +"00000403.xhp\n" +"par_id3166445\n" "help.text" -msgid "Undo" -msgstr "Atsaukt" +msgid "Choose View - Toolbars - Standard." +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3145068\n" +"00000403.xhp\n" +"par_id3153748\n" "help.text" -msgid "Choose Edit - Redo." +msgid "Choose View - Toolbars - Tools." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3153897\n" +"00000403.xhp\n" +"par_id3154317\n" "help.text" -msgid "On the Standard bar, click" +msgid "Choose View - Status Bar." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3154938\n" +"00000403.xhp\n" +"par_id3152780\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose View - Toolbars - Color Bar." +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3151211\n" +"00000403.xhp\n" +"par_id3157909\n" "help.text" -msgid "Redo" -msgstr "Atatsaukt" +msgid "Click Hyperlink icon on Standard bar, click Internet." +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3154365\n" +"00000403.xhp\n" +"par_id3146806\n" "help.text" -msgid "Choose Edit - Repeat." +msgid "Choose Insert - Hyperlink." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3149765\n" +"00000403.xhp\n" +"par_id3153717\n" "help.text" -msgid "Choose Edit - Cut." +msgid "Click Hyperlink icon on Standard bar, click Mail." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3144762\n" +"00000403.xhp\n" +"par_id3149415\n" "help.text" -msgid "CommandCtrl+X" -msgstr "CommandCtrl+X" +msgid "Click Hyperlink icon on Standard bar, click Document." +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3148744\n" +"00000403.xhp\n" +"par_id3150129\n" "help.text" -msgid "On the Standard bar, click" +msgid "Click Hyperlink icon on Standard bar, click New Document." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3145173\n" +"00000403.xhp\n" +"par_id3159269\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose View - Full Screen." +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3154153\n" +"00000403.xhp\n" +"par_id3149578\n" "help.text" -msgid "Cut" -msgstr "Izgriezt" +msgid "Shift+CommandCtrl+J" +msgstr "Shift+CommandCtrl+J" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3150742\n" +"00000403.xhp\n" +"par_id3153257\n" "help.text" -msgid "Choose Edit - Copy." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3148923\n" +"00000403.xhp\n" +"par_id3153627\n" "help.text" -msgid "CommandCtrl+C" -msgstr "CommandCtrl+C" +msgid "Full Screen (in Print Preview)" +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3159254\n" +"00000403.xhp\n" +"par_id3147559\n" "help.text" -msgid "On the Standard bar, click" +msgid "If a text document or spreadsheet is open:" msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3154985\n" +"00000403.xhp\n" +"par_id3145069\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Menu View - Data Sources." +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3150685\n" +"00000403.xhp\n" +"par_id3149046\n" "help.text" -msgid "Copy" -msgstr "Kopēt" +msgid "CommandCtrl+Shift+F4 keys" +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3159153\n" +"00000403.xhp\n" +"par_id3153778\n" "help.text" -msgid "Choose Edit - Paste." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3155860\n" +"00000403.xhp\n" +"par_id3146908\n" "help.text" -msgid "CommandCtrl+V" -msgstr "CommandCtrl+V" +msgid "Data Sources" +msgstr "Datu avoti" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3159083\n" +"00000403.xhp\n" +"par_id3154140\n" "help.text" -msgid "On the Standard bar, click" +msgid "Choose View - HTML Source." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3156106\n" +"00000403.xhp\n" +"par_id3154947\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open context menu in an HTML document." +msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3154471\n" +"00000403.xhp\n" +"par_id3152935\n" "help.text" -msgid "Paste" -msgstr "Ielīmēt" +msgid "Icon" +msgstr "Ikona" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3152791\n" +"00000403.xhp\n" +"par_id3144448\n" "help.text" -msgid "Choose Edit - Paste Special." -msgstr "" +msgid "HTML Source" +msgstr "HTML avots" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3148555\n" +"00000403.xhp\n" +"par_idN1091B\n" "help.text" -msgid "Choose Edit - Select All." +msgid "Choose View - Grid and Helplines (Impress or Draw)." msgstr "" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3152417\n" +"00000403.xhp\n" +"par_idN1092E\n" "help.text" -msgid "CommandCtrl+A" -msgstr "CommandCtrl+A" +msgid "Choose View - Snap Guides (Impress or Draw)." +msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3145748\n" +"00000404.xhp\n" +"tit\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Insert Menu" +msgstr "Ievietot izvēlne" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3153139\n" +"00000404.xhp\n" +"hd_id3156324\n" "help.text" -msgid "Select All" -msgstr "Atlasīt visus" +msgid "Insert Menu" +msgstr "Ievietot izvēlne" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3145251\n" +"00000404.xhp\n" +"par_id3153808\n" "help.text" -msgid "Choose Edit - Track Changes." +msgid "Choose Insert - Comment." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3153336\n" +"00000404.xhp\n" +"par_id3155619\n" "help.text" -msgid "Choose Edit - Track Changes - Record." +msgid "Choose Insert - Media - Scan." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3150594\n" +"00000404.xhp\n" +"par_id3150502\n" "help.text" -msgid "Choose Edit - Track Changes - Show.Choose Edit - Track Changes - Show." +msgid "Choose Insert - Media - Scan - Select Source." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3153845\n" +"00000404.xhp\n" +"par_id3155934\n" "help.text" -msgid "Choose Edit - Track Changes - Manage." +msgid "Choose Insert - Media - Scan - Request." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3148587\n" +"00000404.xhp\n" +"par_id3143281\n" "help.text" -msgid "Choose Edit - Track Changes - Manage - List tab." +msgid "Choose Insert - Special Character." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3150396\n" +"00000404.xhp\n" +"par_id3149525\n" "help.text" -msgid "Choose Tools - AutoCorrect - Apply and Edit Changes. The AutoCorrect dialog appears.
Click the Edit Changes button and navigate to the List tab." +msgid "Choose Format - Bullets and Numbering - Customize - Character button." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3153878\n" +"00000404.xhp\n" +"par_id3152372\n" "help.text" -msgid "Choose Edit - Track Changes - Manage - Filter tab." +msgid "Choose Format - Bullets and Numbering - Customize - Character button." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3151281\n" +"00000404.xhp\n" +"par_id3156560\n" "help.text" -msgid "Choose Edit - Track Changes - Merge Document." +msgid "On the Standard or the Insert bar, click" msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3153224\n" +"00000404.xhp\n" +"par_id3153527\n" "help.text" -msgid "Choose Edit - Track Changes - Compare Document." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3148773\n" +"00000404.xhp\n" +"par_id3149751\n" "help.text" -msgid "Choose Edit - Track Changes - Comment." -msgstr "" +msgid "Special Character" +msgstr "Īpaša rakstzīme" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3149488\n" +"00000404.xhp\n" +"par_idN107CD\n" "help.text" -msgid "Choose Edit - Track Changes - Manage - List tab.
Click an entry in the list and open the context menu.
Choose Edit Comment." +msgid "Choose Insert - Media - Audio or Video." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id31562971\n" +"00000404.xhp\n" +"par_idN107CE\n" "help.text" -msgid "Choose Edit - Find." +msgid "Choose Insert - Audio or Video." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id31545031\n" +"00000404.xhp\n" +"par_idN1085D\n" "help.text" -msgid "CommandCtrl+F" -msgstr "CommandCtrl+F" +msgid "Audio or Video" +msgstr "Audio vai video" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3156297\n" +"00000404.xhp\n" +"par_id3147242\n" "help.text" -msgid "Choose Edit - Find & Replace." +msgid "Choose Insert - Object." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3154503\n" +"00000404.xhp\n" +"par_id3152996\n" "help.text" -msgid "CommandCtrl+H" -msgstr "CommandCtrl+H" +msgid "Choose Insert - Object - OLE Object." +msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3155083\n" +"00000404.xhp\n" +"par_id3146806\n" "help.text" -msgid "On the Standard bar, click" +msgid "On the Insert bar, click" msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3150020\n" +"00000404.xhp\n" +"par_id3150254\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3144748\n" +"00000404.xhp\n" +"par_id3145417\n" "help.text" -msgid "Find & Replace" -msgstr "Meklēt un aizstāt" +msgid "OLE Object" +msgstr "OLE objekts" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3156357\n" +"00000404.xhp\n" +"par_id3150393\n" "help.text" -msgid "Choose Edit - Find & Replace - Attributes." +msgid "Choose Insert - Object - Formula." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3153840\n" +"00000404.xhp\n" +"par_id3153056\n" "help.text" -msgid "Choose Edit - Find & Replace - Format button." +msgid "On the Insert bar, click" msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3146971\n" +"00000404.xhp\n" +"par_id3148559\n" "help.text" -msgid "Choose Edit - Find & Replace - Similarity search check box, then click the Similarities button." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3153709\n" +"00000404.xhp\n" +"par_id3155858\n" "help.text" -msgid "On the Table Data bar, click Find icon, then Similarity search check box,
then click the Similarities button (database table view)." -msgstr "" +msgid "Formula" +msgstr "Formula" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3150749\n" +"00000404.xhp\n" +"par_id3153144\n" "help.text" -msgid "On the Form Design bar, click Record Search icon, then Similarity search check box,
then click the Similarities button (form view)." +msgid "Choose Format - Chart Type." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3152960\n" +"00000404.xhp\n" +"par_id3147578\n" "help.text" -msgid "Choose View - Navigator." +msgid "Choose Insert - Object - Chart ." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3163824\n" +"00000404.xhp\n" +"par_id3154011\n" "help.text" -msgid "On the Standard bar, click" +msgid "Choose Format - Chart Type." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3159183\n" +"00000404.xhp\n" +"par_id3153573\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Insert - Object - Chart." +msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3147359\n" +"00000404.xhp\n" +"par_id3159179\n" "help.text" -msgid "Navigator On/Off" -msgstr "Navigators ieslēgts/izslēgts" +msgid "Choose Format - Chart Type." +msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3147338\n" +"00000404.xhp\n" +"par_id3159196\n" "help.text" -msgid "Choose Tools - Bibliography Database." +msgid "Choose Insert - Object - Chart." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3149281\n" +"00000404.xhp\n" +"par_id3149664\n" "help.text" -msgid "Choose Edit - Links." +msgid "Choose Insert - Object - Chart." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3159339\n" +"00000404.xhp\n" +"par_id3154921\n" "help.text" -msgid "Choose Edit - Links to External Files - Modify... (DDE links only)." +msgid "On the Insert bar, click" msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3148927\n" +"00000404.xhp\n" +"par_id3156005\n" "help.text" -msgid "Select a frame, then choose Edit - Object - Properties." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3156315\n" +"00000404.xhp\n" +"par_id3145749\n" "help.text" -msgid "Open context menu of selected frame, choose Properties." -msgstr "" +msgid "Chart" +msgstr "Diagramma" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3156091\n" +"00000404.xhp\n" +"par_id3155513\n" "help.text" -msgid "Choose Edit - ImageMap, also in the context menu of selected object." +msgid "Choose Insert - Image." msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3155936\n" +"00000404.xhp\n" +"par_id3155308\n" "help.text" -msgid "Choose Edit - ImageMap,
then select a section of the ImageMap and click Properties - Description.
" +msgid "On the Standard bar, click" msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3149259\n" +"00000404.xhp\n" +"par_id3145594\n" "help.text" -msgid "Choose Edit - Object." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3154966\n" +"00000404.xhp\n" +"par_id3149960\n" "help.text" -msgid "Choose Edit - Object - Edit, also in the context menu of selected object." +msgid "Image" msgstr "" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3149565\n" +"00000404.xhp\n" +"par_id3150037\n" "help.text" -msgid "Choose Edit - Object - Open." +msgid "Choose Insert - Floating Frame." msgstr "" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"tit\n" +"00000404.xhp\n" +"par_id3083281\n" "help.text" -msgid "View Menu" -msgstr "Skats izvēlne" +msgid "On the Insert bar, click" +msgstr "" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"hd_id3156304\n" +"00000404.xhp\n" +"par_id3168607\n" "help.text" -msgid "View Menu" -msgstr "Skats izvēlne" +msgid "Icon" +msgstr "Ikona" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3146936\n" +"00000404.xhp\n" +"par_id3148588\n" "help.text" -msgid "Choose View - Zoom." -msgstr "" +msgid "Floating Frame" +msgstr "Peldošais ietvars" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3149962\n" +"00000404.xhp\n" +"par_id3150396\n" "help.text" -msgid "Zoom also with (+) (-) (×) and (÷) on the number keypadZoom also with (+) (-) (×) and (÷) on the number keypad." +msgid "Open a file of a type that is unknown to %PRODUCTNAME and that is no text file." msgstr "" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3152895\n" +"00000404.xhp\n" +"par_idN10DDC\n" "help.text" -msgid "Double-click or right-click the field on the Status bar." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3156183\n" +"00000404.xhp\n" +"par_idN10DD1\n" "help.text" -msgid "Choose View - Toolbars." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3166445\n" -"help.text" -msgid "Choose View - Toolbars - Standard." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3153748\n" -"help.text" -msgid "Choose View - Toolbars - Tools." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3154317\n" -"help.text" -msgid "Choose View - Status Bar." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3152780\n" -"help.text" -msgid "Choose View - Toolbars - Color Bar." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3157909\n" -"help.text" -msgid "Click Hyperlink icon on Standard bar, click Internet." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3146806\n" -"help.text" -msgid "Choose Insert - Hyperlink." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3153717\n" -"help.text" -msgid "Click Hyperlink icon on Standard bar, click Mail." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3149415\n" -"help.text" -msgid "Click Hyperlink icon on Standard bar, click Document." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3150129\n" -"help.text" -msgid "Click Hyperlink icon on Standard bar, click New Document." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3159269\n" -"help.text" -msgid "Choose View - Full Screen." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3149578\n" -"help.text" -msgid "Shift+CommandCtrl+J" -msgstr "Shift+CommandCtrl+J" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3153257\n" -"help.text" -msgid "Icon" -msgstr "Ikona" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3153627\n" -"help.text" -msgid "Full Screen (in Print Preview)" -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3147559\n" -"help.text" -msgid "If a text document or spreadsheet is open:" -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3145069\n" -"help.text" -msgid "Menu View - Data Sources." -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3149046\n" -"help.text" -msgid "CommandCtrl+Shift+F4 keys" -msgstr "" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3153778\n" -"help.text" -msgid "Icon" -msgstr "Ikona" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3146908\n" -"help.text" -msgid "Data Sources" -msgstr "Datu avoti" - -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3154140\n" -"help.text" -msgid "Choose View - HTML Source." -msgstr "" +msgid "Fontwork Gallery" +msgstr "Teksta efektu galerija" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3154947\n" +"00000404.xhp\n" +"par_idN10EA9\n" "help.text" -msgid "Open context menu in an HTML document." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3152935\n" +"00000404.xhp\n" +"par_idN10ED8\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Basic Shapes" +msgstr "Pamatfigūras" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3144448\n" +"00000404.xhp\n" +"par_idN10EEE\n" "help.text" -msgid "HTML Source" -msgstr "HTML avots" +msgid "Icon" +msgstr "Ikona" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_idN1091B\n" +"00000404.xhp\n" +"par_idN10F1D\n" "help.text" -msgid "Choose View - Grid and Helplines (Impress or Draw)." -msgstr "" +msgid "Symbol Shapes" +msgstr "Simbolu formas" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_idN1092E\n" +"00000404.xhp\n" +"par_idN10F33\n" "help.text" -msgid "Choose View - Snap Guides (Impress or Draw)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00000404.xhp msgctxt "" "00000404.xhp\n" -"tit\n" +"par_idN10F62\n" "help.text" -msgid "Insert Menu" -msgstr "Ievietot izvēlne" +msgid "Block Arrows" +msgstr "Blokbultas" #: 00000404.xhp msgctxt "" "00000404.xhp\n" -"hd_id3156324\n" +"par_idN10F78\n" "help.text" -msgid "Insert Menu" -msgstr "Ievietot izvēlne" +msgid "Icon" +msgstr "Ikona" #: 00000404.xhp msgctxt "" "00000404.xhp\n" -"par_id3153808\n" +"par_idN10FA7\n" "help.text" -msgid "Choose Insert - Comment." -msgstr "" +msgid "Flowcharts" +msgstr "Blokshēmas" #: 00000404.xhp msgctxt "" "00000404.xhp\n" -"par_id3155619\n" +"par_idN10FBD\n" "help.text" -msgid "Choose Insert - Media - Scan." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00000404.xhp msgctxt "" "00000404.xhp\n" -"par_id3150502\n" +"par_idN10FEC\n" "help.text" -msgid "Choose Insert - Media - Scan - Select Source." -msgstr "" +msgid "Callouts" +msgstr "Norādes" #: 00000404.xhp msgctxt "" "00000404.xhp\n" -"par_id3155934\n" +"par_idN11002\n" "help.text" -msgid "Choose Insert - Media - Scan - Request." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00000404.xhp msgctxt "" "00000404.xhp\n" -"par_id3143281\n" +"par_idN11031\n" "help.text" -msgid "Choose Insert - Special Character." -msgstr "" +msgid "Stars" +msgstr "Zvaigznes" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149525\n" +"00000406.xhp\n" +"tit\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Customize - Character button." -msgstr "" +msgid "Tools Menu" +msgstr "Rīki izvēlne" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3152372\n" +"00000406.xhp\n" +"hd_id3160447\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Customize - Character button." -msgstr "" +msgid "Tools Menu" +msgstr "Rīki izvēlne" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3156560\n" +"00000406.xhp\n" +"par_id3146765\n" "help.text" -msgid "On the Standard or the Insert bar, click" +msgid "Choose Insert - Media - Clip Art Gallery or open Standard bar, click" msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153527\n" +"00000406.xhp\n" +"par_id3153323\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149751\n" +"00000406.xhp\n" +"par_id3153551\n" "help.text" -msgid "Special Character" -msgstr "Īpaša rakstzīme" +msgid "Gallery" +msgstr "Galerija" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN107CD\n" +"00000406.xhp\n" +"par_id3146957\n" "help.text" -msgid "Choose Insert - Media - Audio or Video." +msgid "Choose Tools - Gallery or click the Gallery icon on the Standard bar -
New Theme button - Files tab.
" msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN107CE\n" +"00000406.xhp\n" +"par_id3166411\n" "help.text" -msgid "Choose Insert - Audio or Video." +msgid "Choose Tools - Spelling." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN1085D\n" +"00000406.xhp\n" +"par_id3148538\n" "help.text" -msgid "Audio or Video" -msgstr "Audio vai video" +msgid "F7 key" +msgstr "F7 taustiņš" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3147242\n" +"00000406.xhp\n" +"par_id3155628\n" "help.text" -msgid "Choose Insert - Object." +msgid "On the Standard bar, click" msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3152996\n" +"00000406.xhp\n" +"par_id3153824\n" "help.text" -msgid "Choose Insert - Object - OLE Object." +msgid "Icon" +msgstr "Ikona" + +#: 00000406.xhp +msgctxt "" +"00000406.xhp\n" +"par_id3157809\n" +"help.text" +msgid "Spelling" msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3146806\n" +"00000406.xhp\n" +"par_id3156326\n" "help.text" -msgid "On the Insert bar, click" +msgid "Choose Tools - Language - Hangul/Hanja Conversion. Asian language support must be enabled." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150254\n" +"00000406.xhp\n" +"par_idN10705\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Tools - Language - Chinese Conversion. Asian language support must be enabled." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3145417\n" +"00000406.xhp\n" +"par_idN1071E\n" "help.text" -msgid "OLE Object" -msgstr "OLE objekts" +msgid "Choose Tools - Language - Chinese Conversion - Edit terms button. Asian language support must be enabled." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150393\n" +"00000406.xhp\n" +"par_id3155419\n" "help.text" -msgid "Choose Insert - Object - Formula." +msgid "Choose Tools - Spelling." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153056\n" +"00000406.xhp\n" +"par_id3150771\n" "help.text" -msgid "On the Insert bar, click" +msgid "Choose Tools - Spelling, then click Options." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3148559\n" +"00000406.xhp\n" +"par_id3151338\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Tools - Language - Thesaurus." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155858\n" +"00000406.xhp\n" +"par_id3149884\n" "help.text" -msgid "Formula" -msgstr "Formula" +msgid "CommandCtrl+F7" +msgstr "CommandCtrl+F7" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153144\n" +"00000406.xhp\n" +"par_id3153320\n" "help.text" -msgid "Choose Format - Chart Type." +msgid "Choose Tools - Color Replacer ($[officename] Draw and $[officename] Impress)." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3147578\n" +"00000406.xhp\n" +"par_idN107E9\n" "help.text" -msgid "Choose Insert - Object - Chart ." +msgid "Choose Tools - Media Player." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3154011\n" +"00000406.xhp\n" +"par_id3151385\n" "help.text" -msgid "Choose Format - Chart Type." +msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic, or press OptionAlt+F11 (if not assigned by your system)." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153573\n" +"00000406.xhp\n" +"par_id511543350796749\n" "help.text" -msgid "Choose Insert - Object - Chart." +msgid "Choose Tools - Macros - Organize Macros - BeanShell." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3159179\n" +"00000406.xhp\n" +"par_id661543350803067\n" "help.text" -msgid "Choose Format - Chart Type." +msgid "Choose Tools - Macros - Organize Macros - JavaScript." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3159196\n" +"00000406.xhp\n" +"par_id441543350811395\n" "help.text" -msgid "Choose Insert - Object - Chart." +msgid "Choose Tools - Macros - Organize Macros - Python." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149664\n" +"00000406.xhp\n" +"par_id3149456\n" "help.text" -msgid "Choose Insert - Object - Chart." +msgid "Choose Tools - Macros - Record Macro." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3154921\n" +"00000406.xhp\n" +"par_id3150398\n" "help.text" -msgid "On the Insert bar, click" +msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic,
click the Organizer button,
click the Libraries tab,
and then click the Password button.
" msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3156005\n" +"00000406.xhp\n" +"par_idN10843\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Tools - Extension Manager." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3145749\n" +"00000406.xhp\n" +"par_id9988402\n" "help.text" -msgid "Chart" -msgstr "Diagramma" +msgid "Choose Tools - Extension Manager, click Check for Updates button." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155513\n" +"00000406.xhp\n" +"par_id3151106\n" "help.text" -msgid "Choose Insert - Image." +msgid "Choose Tools - XML Filter Settings." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155308\n" +"00000406.xhp\n" +"par_id3153778\n" "help.text" -msgid "On the Standard bar, click" +msgid "Choose Tools - XML Filter Settings, then click New or Edit." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3145594\n" +"00000406.xhp\n" +"par_id3148979\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Tools - XML Filter Settings, then click Test XSLTs." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149960\n" +"00000406.xhp\n" +"par_id3148672\n" "help.text" -msgid "Image" +msgid "Choose Tools - Customize." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150037\n" +"00000406.xhp\n" +"par_id3147230\n" "help.text" -msgid "Choose Insert - Floating Frame." +msgid "Choose Tools - Customize - Menus tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3083281\n" +"00000406.xhp\n" +"par_idN108E9\n" "help.text" -msgid "On the Insert bar, click" +msgid "Choose Tools - Customize - Menus tab, click New." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3168607\n" +"00000406.xhp\n" +"par_idN10919\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Tools - Customize - Menus tab, click Menu - Move." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3148588\n" +"00000406.xhp\n" +"par_id3145171\n" "help.text" -msgid "Floating Frame" -msgstr "Peldošais ietvars" +msgid "Choose Tools - Customize - Keyboard tab. A document must be opened." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150396\n" +"00000406.xhp\n" +"par_id3153968\n" "help.text" -msgid "Open a file of a type that is unknown to %PRODUCTNAME and that is no text file." +msgid "Choose Tools - Customize - Toolbars tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10DDC\n" +"00000406.xhp\n" +"par_id3144432\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Tools - Customize - Events tab." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10DD1\n" +"00000406.xhp\n" +"par_id3157895\n" "help.text" -msgid "Fontwork Gallery" -msgstr "Teksta efektu galerija" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10EA9\n" +"00000406.xhp\n" +"par_id3153768\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Options tab." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10ED8\n" +"00000406.xhp\n" +"par_id1978514\n" "help.text" -msgid "Basic Shapes" -msgstr "Pamatfigūras" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Smart Tags tab." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10EEE\n" +"00000406.xhp\n" +"par_id3155368\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Replace tab." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F1D\n" +"00000406.xhp\n" +"par_id3155860\n" "help.text" -msgid "Symbol Shapes" -msgstr "Simbolu formas" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Exceptions tab." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F33\n" +"00000406.xhp\n" +"par_id3153094\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Localized Options tab." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F62\n" +"00000406.xhp\n" +"par_id3153945\n" "help.text" -msgid "Block Arrows" -msgstr "Blokbultas" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Word Completion tab." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F78\n" +"00000406.xhp\n" +"par_id3151352\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10FA7\n" +"00000406.xhp\n" +"par_id3154127\n" "help.text" -msgid "Flowcharts" -msgstr "Blokshēmas" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10FBD\n" +"00000406.xhp\n" +"par_id3149664\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw - General." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10FEC\n" +"00000406.xhp\n" +"par_id3145112\n" "help.text" -msgid "Callouts" -msgstr "Norādes" +msgid "Path selection button in various wizards." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN11002\n" +"00000406.xhp\n" +"par_id3153953\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Click Edit button for a few entries under %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN11031\n" +"00000406.xhp\n" +"par_id3147295\n" "help.text" -msgid "Stars" -msgstr "Zvaigznes" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"tit\n" +"par_id3156006\n" "help.text" -msgid "Tools Menu" -msgstr "Rīki izvēlne" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename]." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"hd_id3160447\n" +"par_id3155308\n" "help.text" -msgid "Tools Menu" -msgstr "Rīki izvēlne" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3146765\n" +"par_id3155312\n" "help.text" -msgid "Choose Insert - Media - Clip Art Gallery or open Standard bar, click" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - General." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153323\n" +"par_id3159153\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - View." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153551\n" +"par_id3166413\n" "help.text" -msgid "Gallery" -msgstr "Galerija" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Print." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3146957\n" +"par_id3147330\n" "help.text" -msgid "Choose Tools - Gallery or click the Gallery icon on the Standard bar -
New Theme button - Files tab.
" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3166411\n" +"par_id3150036\n" "help.text" -msgid "Choose Tools - Spelling." +msgid "Choose Tools - AutoText - Path." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3148538\n" +"par_id3149581\n" "help.text" -msgid "F7 key" -msgstr "F7 taustiņš" +msgid "Choose Format - Area - Colors tab." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155628\n" +"par_id3145729\n" "help.text" -msgid "On the Standard bar, click" +msgid "Choose Format - Area - Area, press the Color button and click the Pick button." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153824\n" +"par_id3153876\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3157809\n" +"par_id3151037\n" "help.text" -msgid "Spelling" +msgid "Press the Color Dialog button in the Illumination tab of the 3D Effects dialog." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3156326\n" +"par_id3149403\n" "help.text" -msgid "Choose Tools - Language - Hangul/Hanja Conversion. Asian language support must be enabled." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Fonts." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN10705\n" +"par_id3150717\n" "help.text" -msgid "Choose Tools - Language - Chinese Conversion. Asian language support must be enabled." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Security." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN1071E\n" +"par_idN11C3D\n" "help.text" -msgid "Choose Tools - Language - Chinese Conversion - Edit terms button. Asian language support must be enabled." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Advanced." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155419\n" +"par_idN11C3E\n" "help.text" -msgid "Choose Tools - Spelling." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Personalization." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3150771\n" +"par_idN11C3F\n" "help.text" -msgid "Choose Tools - Spelling, then click Options." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - OpenCL." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151338\n" +"par_idN11C3G\n" "help.text" -msgid "Choose Tools - Language - Thesaurus." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Basic IDE." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149884\n" +"par_id5485702\n" "help.text" -msgid "CommandCtrl+F7" -msgstr "CommandCtrl+F7" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Online Update." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153320\n" +"par_id3146989\n" "help.text" -msgid "Choose Tools - Color Replacer ($[officename] Draw and $[officename] Impress)." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Accessibility." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN107E9\n" +"par_id3144746\n" "help.text" -msgid "Choose Tools - Media Player." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Application Colors." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151385\n" +"par_id3156355\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic, or press OptionAlt+F11 (if not assigned by your system)." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id511543350796749\n" +"par_id3147223\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - BeanShell." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id661543350803067\n" +"par_id3153958\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - JavaScript." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id441543350811395\n" +"par_id3153707\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - Python." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - Microsoft Office." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149456\n" +"par_id3145667\n" "help.text" -msgid "Choose Tools - Macros - Record Macro." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3150398\n" +"par_id3146792\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic,
click the Organizer button,
click the Libraries tab,
and then click the Password button.
" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN10843\n" +"par_id3157965\n" "help.text" -msgid "Choose Tools - Extension Manager." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id9988402\n" +"par_id3155446\n" "help.text" -msgid "Choose Tools - Extension Manager, click Check for Updates button." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages - Complex Text Layout." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151106\n" +"par_id3150745\n" "help.text" -msgid "Choose Tools - XML Filter Settings." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153778\n" +"par_id3148407\n" "help.text" -msgid "Choose Tools - XML Filter Settings, then click New or Edit." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids,
in the Available language modules list, select one of the language modules and then click Edit." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3148979\n" +"par_id3150324\n" "help.text" -msgid "Choose Tools - XML Filter Settings, then click Test XSLTs." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3148672\n" +"par_id3145620\n" "help.text" -msgid "Choose Tools - Customize." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Searching in Japanese." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3147230\n" +"par_id3147341\n" "help.text" -msgid "Choose Tools - Customize - Menus tab." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Asian Layout." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN108E9\n" +"par_id3147359\n" "help.text" -msgid "Choose Tools - Customize - Menus tab, click New." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN10919\n" +"par_id3156374\n" "help.text" -msgid "Choose Tools - Customize - Menus tab, click Menu - Move." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3145171\n" +"par_id3149280\n" "help.text" -msgid "Choose Tools - Customize - Keyboard tab. A document must be opened." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153968\n" +"par_idN10E4F\n" "help.text" -msgid "Choose Tools - Customize - Toolbars tab." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Compatibility." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3144432\n" +"par_id3148929\n" "help.text" -msgid "Choose Tools - Customize - Events tab." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3157895\n" +"par_idN10F2F\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge E-mail." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153768\n" +"par_id3149825\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Options tab." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - AutoCaption." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id1978514\n" +"par_id3155333\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Smart Tags tab." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - View." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155368\n" +"par_id3146316\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Replace tab." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Formatting Aids." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155860\n" +"par_id3153534\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Exceptions tab." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153094\n" +"par_id3155961\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Localized Options tab." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Western)." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153945\n" +"par_id3159313\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Word Completion tab." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Asian). Asian language support must be enabled." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151352\n" +"par_id3155607\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Print." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3154127\n" +"par_id3988769\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Print." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149664\n" +"par_id3145769\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw - General." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3145112\n" +"par_id3147005\n" "help.text" -msgid "Path selection button in various wizards." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Changes." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153953\n" +"par_id3159333\n" "help.text" -msgid "Click Edit button for a few entries under %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." +msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3147295\n" +"par_id3149448\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options." +msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web - Background." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3156006\n" +"par_id3149336\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename]." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155308\n" +"par_id3152966\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155312\n" +"par_id3149814\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - General." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3159153\n" +"par_id3154656\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - View." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3166413\n" +"par_id3154657\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Print." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Compatibility." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3147330\n" +"par_id3152494\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3150036\n" +"par_id3152495\n" "help.text" -msgid "Choose Tools - AutoText - Path." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Formula." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149581\n" +"par_id3152496\n" "help.text" -msgid "Choose Format - Area - Colors tab." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3145729\n" +"par_id3149527\n" "help.text" -msgid "Choose Format - Area - Area, press the Color button and click the Pick button." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists - Copy button." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153876\n" +"par_id3154903\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Changes." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151037\n" +"par_id3152582\n" "help.text" -msgid "Press the Color Dialog button in the Illumination tab of the 3D Effects dialog." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149403\n" +"par_id3148418\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Fonts." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3150717\n" +"par_id3150380\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Security." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN11C3D\n" +"par_id3166423\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Advanced." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN11C3E\n" +"par_id3148873\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Personalization." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN11C3F\n" +"par_id3145220\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - OpenCL." +msgid "Open a drawing document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN11C3G\n" +"par_id3149573\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Basic IDE." +msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id5485702\n" +"par_id3145613\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Online Update." +msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math - Settings." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3146989\n" +"par_id3155137\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Accessibility." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3144746\n" +"par_id3149211\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Application Colors." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts - Default Colors." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3156355\n" +"par_id3150862\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3147223\n" +"par_id3147368\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Connections." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153958\n" +"par_idN1120D\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." msgstr "" -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153707\n" +"00000407.xhp\n" +"tit\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - Microsoft Office." +msgid "Window Menu" +msgstr "Logs izvēlne" + +#: 00000407.xhp +msgctxt "" +"00000407.xhp\n" +"hd_id3154349\n" +"help.text" +msgid "Window Menu" +msgstr "Logs izvēlne" + +#: 00000407.xhp +msgctxt "" +"00000407.xhp\n" +"par_id3083278\n" +"help.text" +msgid "Choose Window - New Window." msgstr "" -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145667\n" +"00000407.xhp\n" +"par_id3154545\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility." +msgid "Choose Window - List of open documents." msgstr "" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_id3146792\n" +"00000408.xhp\n" +"tit\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings." +msgid "Help Menu" +msgstr "Palīdzība izvēlne" + +#: 00000408.xhp +msgctxt "" +"00000408.xhp\n" +"hd_id3154689\n" +"help.text" +msgid "Help Menu" +msgstr "Palīdzība izvēlne" + +#: 00000408.xhp +msgctxt "" +"00000408.xhp\n" +"par_id3150960\n" +"help.text" +msgid "Choose Help - %PRODUCTNAME Help." msgstr "" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_id3157965\n" +"00000408.xhp\n" +"par_id3147240\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." +msgid "Choose Help - About %PRODUCTNAME." msgstr "" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155446\n" +"00000408.xhp\n" +"par_id3151387\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages - Complex Text Layout." +msgid "Automatically after %PRODUCTNAME is first started." msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150745\n" +"00000409.xhp\n" +"tit\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." +msgid "Toolbars" +msgstr "Rīkjoslas" + +#: 00000409.xhp +msgctxt "" +"00000409.xhp\n" +"hd_id3149517\n" +"help.text" +msgid "Toolbars" +msgstr "Rīkjoslas" + +#: 00000409.xhp +msgctxt "" +"00000409.xhp\n" +"par_id3156053\n" +"help.text" +msgid "Choose Data - More Filters - Standard Filter." msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148407\n" +"00000409.xhp\n" +"par_id3154350\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids,
in the Available language modules list, select one of the language modules and then click Edit." +msgid "Database table view: Standard Filter icon in the Database toolbar." msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150324\n" +"00000409.xhp\n" +"par_id3154183\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids." +msgid "Form view: Standard Filter icon in the Form bar." msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145620\n" +"00000409.xhp\n" +"par_id3155619\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Searching in Japanese." +msgid "Icon" +msgstr "Ikona" + +#: 00000409.xhp +msgctxt "" +"00000409.xhp\n" +"par_id3148731\n" +"help.text" +msgid "Standard Filter" +msgstr "Standarta filtrs" + +#: 00000450.xhp +msgctxt "" +"00000450.xhp\n" +"tit\n" +"help.text" +msgid "Database" +msgstr "Datubāze" + +#: 00000450.xhp +msgctxt "" +"00000450.xhp\n" +"hd_id3154689\n" +"help.text" +msgid "Database" +msgstr "Datubāze" + +#: 00000450.xhp +msgctxt "" +"00000450.xhp\n" +"par_id3152876\n" +"help.text" +msgid "In a database file window, choose Tools - Table Filter." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147341\n" +"00000450.xhp\n" +"par_id3153244\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Asian Layout." +msgid "View - Database Objects - Queries" msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147359\n" +"00000450.xhp\n" +"par_id3147294\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet." +msgid "In a database file window, choose Edit - Database - Properties - Advanced Settings tab." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3156374\n" +"00000450.xhp\n" +"par_id3159411\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy." +msgid "In a database file window of type ODBC or Address book,
choose Edit - Database - Connection Type.
" msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149280\n" +"00000450.xhp\n" +"par_id3149119\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer." +msgid "Path selection button in various wizards / Edit buttons for some entries in %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_idN10E4F\n" +"00000450.xhp\n" +"par_id3154497\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Compatibility." +msgid "In a database file window of type ODBC, choose Edit - Database - Connection Type." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148929\n" +"00000450.xhp\n" +"par_id3149355\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General." +msgid "In a database file window of type Address book - LDAP, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_idN10F2F\n" +"00000450.xhp\n" +"par_id3157896\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge E-mail." +msgid "In a database file window of type JDBC, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149825\n" +"00000450.xhp\n" +"par_id3148548\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - AutoCaption." +msgid "In a database file window of type MySQL, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155333\n" +"00000450.xhp\n" +"par_id3149346\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - View." +msgid "In a database file window of type dBASE, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3146316\n" +"00000450.xhp\n" +"par_id3147043\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Formatting Aids." +msgid "In a database file window of type dBASE, choose Edit - Database - Properties, click Indexes." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153534\n" +"00000450.xhp\n" +"par_id3154317\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid." +msgid "In a database file window of type Text, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155961\n" +"00000450.xhp\n" +"par_id3150774\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Western)." +msgid "In a database file window of type MS ADO, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3159313\n" +"00000450.xhp\n" +"par_id3151110\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Asian). Asian language support must be enabled." +msgid "In a database file window, choose Tools - SQL." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155607\n" +"00000450.xhp\n" +"par_id3147209\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Print." +msgid "In a database file window, click the Queries icon." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3988769\n" +"00000450.xhp\n" +"par_id3153880\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Print." +msgid "In a database file window, click the Tables icon." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145769\n" +"00000450.xhp\n" +"par_id3153760\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table." +msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147005\n" +"00000450.xhp\n" +"par_id3156329\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Changes." +msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3159333\n" +"00000450.xhp\n" +"par_id3154047\n" "help.text" -msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web." +msgid "In a database file window, choose Insert - Query (Design view)." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149448\n" +"00000450.xhp\n" +"par_id3149579\n" "help.text" -msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web - Background." +msgid "In a database file window, click the Queries icon, then choose Edit - Edit." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149336\n" +"00000450.xhp\n" +"par_id3149902\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc." +msgid "In a database file window, click the Queries icon, then choose Edit - Edit.
If the referenced fields no longer exist, you see this dialog.
" msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152966\n" +"00000450.xhp\n" +"par_id3159166\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General." +msgid "Open query design and choose Insert - New Relation, or double-click on a connection line between two tables." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149814\n" +"00000450.xhp\n" +"par_id3151245\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3154656\n" +"00000450.xhp\n" +"par_id3153896\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." -msgstr "" +msgid "Insert Tables" +msgstr "Ievietot tabulas" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3154657\n" +"00000450.xhp\n" +"par_id3149457\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Compatibility." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152494\n" +"00000450.xhp\n" +"par_id3159085\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgid "New Relation" +msgstr "Jauna relācija" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152495\n" +"00000450.xhp\n" +"par_id3150414\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Formula." +msgid "Find Record icon on the Table Data bar and Form Design bar." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152496\n" +"00000450.xhp\n" +"par_id3157962\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149527\n" +"00000450.xhp\n" +"par_id3157322\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists - Copy button." -msgstr "" +msgid "Find Record" +msgstr "Meklēt ierakstu" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3154903\n" +"00000450.xhp\n" +"par_id3150870\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Changes." +msgid "Sort Order icon on the Table Data bar and Form Design bar." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152582\n" +"00000450.xhp\n" +"par_id3150393\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148418\n" +"00000450.xhp\n" +"par_id3145745\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General." -msgstr "" +msgid "Sort Order" +msgstr "Kārtošanas secība" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150380\n" +"00000450.xhp\n" +"par_id3145171\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." +msgid "In a database file window, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3166423\n" +"00000450.xhp\n" +"par_id3159252\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid." +msgid "Drag and drop a table or a query into the table part of another database file window." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148873\n" +"00000450.xhp\n" +"par_id3148560\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print." +msgid "In a database file window, choose Insert - Form." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145220\n" +"00000450.xhp\n" +"par_id3155430\n" "help.text" -msgid "Open a drawing document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw." +msgid "In a database file window, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149573\n" +"00000450.xhp\n" +"par_id3147441\n" "help.text" -msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math." +msgid "In a database file window, choose Tools - Relationships." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145613\n" +"00040500.xhp\n" +"tit\n" "help.text" -msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math - Settings." -msgstr "" +msgid "Format Menu" +msgstr "Formatēt izvēlne" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155137\n" +"00040500.xhp\n" +"hd_id3150347\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts." -msgstr "" +msgid "Format Menu" +msgstr "Formatēt izvēlne" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149211\n" +"00040500.xhp\n" +"par_id3145356\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts - Default Colors." +msgid "Choose Format - Clear Direct Formatting." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150862\n" +"00040500.xhp\n" +"par_id3153244\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base." +msgid "Choose Format - Character." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147368\n" +"00040500.xhp\n" +"par_id3152352\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Connections." +msgid "On Text Formatting bar (with cursor in object), click" msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_idN1120D\n" +"00040500.xhp\n" +"par_id3148998\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"tit\n" +"00040500.xhp\n" +"par_id3149999\n" "help.text" -msgid "Window Menu" -msgstr "Logs izvēlne" +msgid "Character" +msgstr "Rakstzīme" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"hd_id3154349\n" +"00040500.xhp\n" +"par_id3153935\n" "help.text" -msgid "Window Menu" -msgstr "Logs izvēlne" +msgid "Choose Format - Character - Font tab." +msgstr "" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"par_id3083278\n" +"00040500.xhp\n" +"par_id3157958\n" "help.text" -msgid "Choose Window - New Window." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font tab." msgstr "" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"par_id3154545\n" +"00040500.xhp\n" +"par_id3155338\n" "help.text" -msgid "Choose Window - List of open documents." +msgid "Open context menu of a row header in a database table - choose Table Format - Font tab." msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"tit\n" +"00040500.xhp\n" +"par_id3150355\n" "help.text" -msgid "Help Menu" -msgstr "Palīdzība izvēlne" +msgid "Choose Format - Title - Character tab (Chart documents)." +msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"hd_id3154689\n" +"00040500.xhp\n" +"par_id3149812\n" "help.text" -msgid "Help Menu" -msgstr "Palīdzība izvēlne" +msgid "Choose Format - Legend - Character tab (Chart documents)." +msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"par_id3150960\n" +"00040500.xhp\n" +"par_id3153717\n" "help.text" -msgid "Choose Help - %PRODUCTNAME Help." +msgid "Choose Format - Axis - Character tab (Chart documents)." msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"par_id3147240\n" +"00040500.xhp\n" +"par_id3154749\n" "help.text" -msgid "Choose Help - About %PRODUCTNAME." +msgid "Choose Format - Cells - Font tab (spreadsheets)." msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"par_id3151387\n" +"00040500.xhp\n" +"par_id3156306\n" "help.text" -msgid "Automatically after %PRODUCTNAME is first started." +msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"tit\n" +"00040500.xhp\n" +"par_id3155829\n" "help.text" -msgid "Toolbars" -msgstr "Rīkjoslas" +msgid "Choose Format - Character - Font Effects tab." +msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"hd_id3149517\n" +"00040500.xhp\n" +"par_id3149819\n" "help.text" -msgid "Toolbars" -msgstr "Rīkjoslas" +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font Effects tab." +msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3156053\n" +"00040500.xhp\n" +"par_id3159176\n" "help.text" -msgid "Choose Data - More Filters - Standard Filter." +msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3154350\n" +"00040500.xhp\n" +"par_id3153541\n" "help.text" -msgid "Database table view: Standard Filter icon in the Database toolbar." +msgid "Choose Format - Character - Position tab." msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3154183\n" +"00040500.xhp\n" +"par_id3159256\n" "help.text" -msgid "Form view: Standard Filter icon in the Form bar." +msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Alignment tab." msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3155619\n" +"00040500.xhp\n" +"par_id3151385\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3148731\n" +"00040500.xhp\n" +"par_id3148550\n" "help.text" -msgid "Standard Filter" -msgstr "Standarta filtrs" +msgid "Choose Format - Character - Asian Layout tab" +msgstr "Izvēlieties Formatēt - Rakstzīme - Āzijas izkārtojums cilni" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"tit\n" +"00040500.xhp\n" +"par_id3152811\n" "help.text" -msgid "Database" -msgstr "Datubāze" +msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Layout tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"hd_id3154689\n" +"00040500.xhp\n" +"par_id3153524\n" "help.text" -msgid "Database" -msgstr "Datubāze" +msgid "Choose Format - Paragraph - Asian Typography tab (not in HTML)." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3152876\n" +"00040500.xhp\n" +"par_id3154366\n" "help.text" -msgid "In a database file window, choose Tools - Table Filter." +msgid "Choose Format - Cells - Asian Typography tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153244\n" +"00040500.xhp\n" +"par_id3148742\n" "help.text" -msgid "View - Database Objects - Queries" +msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Typography tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3147294\n" +"00040500.xhp\n" +"par_id3148922\n" "help.text" -msgid "In a database file window, choose Edit - Database - Properties - Advanced Settings tab." +msgid "Choose Format - Character - Hyperlink tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159411\n" +"00040500.xhp\n" +"par_id3149169\n" "help.text" -msgid "In a database file window of type ODBC or Address book,
choose Edit - Database - Connection Type.
" +msgid "Choose Format - Paragraph." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149119\n" +"00040500.xhp\n" +"par_id3151381\n" "help.text" -msgid "Path selection button in various wizards / Edit buttons for some entries in %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." +msgid "On Text Formatting bar (with cursor in object), click" msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3154497\n" +"00040500.xhp\n" +"par_id3155995\n" "help.text" -msgid "In a database file window of type ODBC, choose Edit - Database - Connection Type." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149355\n" +"00040500.xhp\n" +"par_id3147299\n" "help.text" -msgid "In a database file window of type Address book - LDAP, choose Edit - Database - Properties." +msgid "Paragraph" +msgstr "Rindkopa" + +#: 00040500.xhp +msgctxt "" +"00040500.xhp\n" +"par_id3147289\n" +"help.text" +msgid "Choose Format - Paragraph - Alignment tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3157896\n" +"00040500.xhp\n" +"par_id3147352\n" "help.text" -msgid "In a database file window of type JDBC, choose Edit - Database - Properties." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Alignment tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3148548\n" +"00040500.xhp\n" +"par_id3154640\n" "help.text" -msgid "In a database file window of type MySQL, choose Edit - Database - Properties." +msgid "Choose Format - Paragraph - Indents & Spacing tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149346\n" +"00040500.xhp\n" +"par_id3152463\n" "help.text" -msgid "In a database file window of type dBASE, choose Edit - Database - Properties." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Indents & Spacing tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3147043\n" +"00040500.xhp\n" +"par_id3154319\n" "help.text" -msgid "In a database file window of type dBASE, choose Edit - Database - Properties, click Indexes." +msgid "Choose Format - Paragraph - Tabs tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3154317\n" +"00040500.xhp\n" +"par_id3154833\n" "help.text" -msgid "In a database file window of type Text, choose Edit - Database - Properties." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Tabs tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150774\n" +"00040500.xhp\n" +"par_id3159155\n" "help.text" -msgid "In a database file window of type MS ADO, choose Edit - Database - Properties." +msgid "Double-click the ruler" msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3151110\n" +"00040500.xhp\n" +"par_idN109E2\n" "help.text" -msgid "In a database file window, choose Tools - SQL." +msgid "(all options only in Writer or Calc)" msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3147209\n" +"00040500.xhp\n" +"par_id3156105\n" "help.text" -msgid "In a database file window, click the Queries icon." +msgid "Choose Format - Paragraph - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153880\n" +"00040500.xhp\n" +"par_id3154149\n" "help.text" -msgid "In a database file window, click the Tables icon." +msgid "Choose Format - Image - Properties - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153760\n" +"00040500.xhp\n" +"par_id3163822\n" "help.text" -msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit." +msgid "Choose Format - Frame and Object - Properties - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3156329\n" +"00040500.xhp\n" +"par_id3150048\n" "help.text" -msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit." +msgid "Choose Format - Page - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3154047\n" +"00040500.xhp\n" +"par_id3151148\n" "help.text" -msgid "In a database file window, choose Insert - Query (Design view)." +msgid "Choose Format - Character - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149579\n" +"00040500.xhp\n" +"par_id3149911\n" "help.text" -msgid "In a database file window, click the Queries icon, then choose Edit - Edit." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149902\n" +"00040500.xhp\n" +"par_id3150094\n" "help.text" -msgid "In a database file window, click the Queries icon, then choose Edit - Edit.
If the referenced fields no longer exist, you see this dialog.
" +msgid "Choose Format - Page - Header - More button." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159166\n" +"00040500.xhp\n" +"par_id3154501\n" "help.text" -msgid "Open query design and choose Insert - New Relation, or double-click on a connection line between two tables." +msgid "Choose Format - Page - Footer - More button." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3151245\n" +"00040500.xhp\n" +"par_id3148455\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Cells - Borders tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153896\n" +"00040500.xhp\n" +"par_id3155915\n" "help.text" -msgid "Insert Tables" -msgstr "Ievietot tabulas" +msgid "Menu Format - Paragraph - Border tab - Padding." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149457\n" +"00040500.xhp\n" +"par_id3159130\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Menu Format - Page - Border - Padding." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159085\n" +"00040500.xhp\n" +"par_id3155853\n" "help.text" -msgid "New Relation" -msgstr "Jauna relācija" +msgid "Choose Format - Paragraph - Background tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150414\n" +"00040500.xhp\n" +"par_id3147330\n" "help.text" -msgid "Find Record icon on the Table Data bar and Form Design bar." +msgid "Choose Format - Character - Background tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3157962\n" +"00040500.xhp\n" +"par_id3149486\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Image - Background tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3157322\n" +"00040500.xhp\n" +"par_id3150592\n" "help.text" -msgid "Find Record" -msgstr "Meklēt ierakstu" +msgid "Choose Format - Frame and Object - Properties - Area tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150870\n" +"00040500.xhp\n" +"par_id3151321\n" "help.text" -msgid "Sort Order icon on the Table Data bar and Form Design bar." +msgid "Choose Format - Page - Background tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150393\n" +"00040500.xhp\n" +"par_id3154510\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Page - Header - More button." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3145745\n" +"00040500.xhp\n" +"par_id3159110\n" "help.text" -msgid "Sort Order" -msgstr "Kārtošanas secība" +msgid "Choose Format - Page - Footer - More button." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3145171\n" +"00040500.xhp\n" +"par_id3153532\n" "help.text" -msgid "In a database file window, choose Edit - Database - Properties." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Background tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159252\n" +"00040500.xhp\n" +"par_id3144747\n" "help.text" -msgid "Drag and drop a table or a query into the table part of another database file window." +msgid "Choose Insert/Edit - Section - Background tab" msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3148560\n" +"00040500.xhp\n" +"par_id3146900\n" "help.text" -msgid "In a database file window, choose Insert - Form." +msgid "Choose Format - Cells - Background tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3155430\n" +"00040500.xhp\n" +"par_id3146791\n" "help.text" -msgid "In a database file window, choose Edit - Database - Properties." +msgid "Choose Format - Page - Organizer tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3147441\n" +"00040500.xhp\n" +"par_id3154482\n" "help.text" -msgid "In a database file window, choose Tools - Relationships." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Organizer tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"tit\n" +"par_id3153357\n" "help.text" -msgid "Format Menu" -msgstr "Formatēt izvēlne" +msgid "Choose Format - Page - Page tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"hd_id3150347\n" +"par_id3149323\n" "help.text" -msgid "Format Menu" -msgstr "Formatēt izvēlne" +msgid "Choose Slide - Properties - Page tab (in $[officename] Impress)." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3145356\n" +"par_id3154972\n" "help.text" -msgid "Choose Format - Clear Direct Formatting." +msgid "Choose Page - Properties - Page tab (in $[officename] Draw)." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153244\n" +"par_id3154362\n" "help.text" -msgid "Choose Format - Character." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Page tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3152352\n" +"par_id3155515\n" "help.text" -msgid "On Text Formatting bar (with cursor in object), click" +msgid "Choose Format - Page - Header tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148998\n" +"par_id3148405\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose View - Styles - open context menu of a page style entry and choose Modify/New - Header tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149999\n" +"par_id3145618\n" "help.text" -msgid "Character" -msgstr "Rakstzīme" +msgid "Choose Format - Page - Footer tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153935\n" +"par_id3155175\n" "help.text" -msgid "Choose Format - Character - Font tab." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Footer tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3157958\n" +"par_id3147404\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font tab." +msgid "Choose View - Styles." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3155338\n" +"par_id3166447\n" "help.text" -msgid "Open context menu of a row header in a database table - choose Table Format - Font tab." -msgstr "" +msgid "Command+TF11" +msgstr "CommandCtrl+P" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3150355\n" +"par_id3147321\n" "help.text" -msgid "Choose Format - Title - Character tab (Chart documents)." +msgid "On Formatting bar, click" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149812\n" +"par_id3148533\n" "help.text" -msgid "Choose Format - Legend - Character tab (Chart documents)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153717\n" +"par_id3153534\n" "help.text" -msgid "Choose Format - Axis - Character tab (Chart documents)." +msgid "Styles" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154749\n" +"par_id3159313\n" "help.text" -msgid "Choose Format - Cells - Font tab (spreadsheets)." +msgid "On the Drawing bar, click" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3156306\n" +"par_id3109845\n" "help.text" -msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3155829\n" +"par_id3152498\n" "help.text" -msgid "Choose Format - Character - Font Effects tab." +msgid "3D Effects" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149819\n" +"par_id3145256\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font Effects tab." +msgid "Open the context menu of the 3D object, choose 3D Effects - Geometry tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3159176\n" +"par_id3154203\n" "help.text" -msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgid "Open the context menu of the 3D object, choose 3D Effects - Shading tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153541\n" +"par_id3151284\n" "help.text" -msgid "Choose Format - Character - Position tab." +msgid "Open the context menu of the 3D object, choose 3D Effects - Illumination tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3159256\n" +"par_id3152475\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Alignment tab." +msgid "Open the context menu of the 3D object, choose 3D Effects - Textures tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3151385\n" +"par_id3154572\n" "help.text" -msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgid "Open the context menu of the 3D object, choose 3D Effects - Material tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148550\n" +"par_id3145220\n" "help.text" -msgid "Choose Format - Character - Asian Layout tab" -msgstr "Izvēlieties Formatēt - Rakstzīme - Āzijas izkārtojums cilni" +msgid "Choose Format - Bullets and Numbering." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3152811\n" +"par_id3148771\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Layout tab." +msgid "On Formatting bar, click" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153524\n" +"par_id3149445\n" "help.text" -msgid "Choose Format - Paragraph - Asian Typography tab (not in HTML)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154366\n" +"par_id3157970\n" "help.text" -msgid "Choose Format - Cells - Asian Typography tab." -msgstr "" +msgid "Bullets On/Off" +msgstr "Aizzīmes ieslēgtas/izslēgtas" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148742\n" +"par_id3149735\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Typography tab." +msgid "Choose Format - Bullets and Numbering. Open Options tab page." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148922\n" +"par_id3150785\n" "help.text" -msgid "Choose Format - Character - Hyperlink tab." +msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149169\n" +"par_id3148420\n" "help.text" -msgid "Choose Format - Paragraph." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3151381\n" +"par_id3148888\n" "help.text" -msgid "On Text Formatting bar (with cursor in object), click" +msgid "Choose Format - Bullets and Numbering - Bullets tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3155995\n" +"par_id3149917\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3147299\n" +"par_id3154930\n" "help.text" -msgid "Paragraph" -msgstr "Rindkopa" +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3147289\n" +"par_id3150862\n" "help.text" -msgid "Choose Format - Paragraph - Alignment tab." +msgid "Choose Format - Bullets and Numbering - Numbering tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3147352\n" +"par_id3155378\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Alignment tab." +msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154640\n" +"par_id3156011\n" "help.text" -msgid "Choose Format - Paragraph - Indents & Spacing tab." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3152463\n" +"par_id0611200904324832\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Indents & Spacing tab." +msgid "Choose Format - Bullets and Numbering - Image tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154319\n" +"par_id3155848\n" "help.text" -msgid "Choose Format - Paragraph - Tabs tab." +msgid "Choose Format - Bullets and Numbering - Outline tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154833\n" +"par_id3148733\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Tabs tab." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3159155\n" +"par_id3156658\n" "help.text" -msgid "Double-click the ruler" +msgid "Choose Format - Bullets and Numbering. Open Position tab page." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_idN109E2\n" +"par_id3156170\n" "help.text" -msgid "(all options only in Writer or Calc)" +msgid "Choose Tools - Chapter Numbering - Position tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3156105\n" +"par_id3153812\n" "help.text" -msgid "Choose Format - Paragraph - Borders tab." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154149\n" +"par_id3151332\n" "help.text" -msgid "Choose Format - Image - Properties - Borders tab." +msgid "Menu Format - Image - Properties - Crop tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3163822\n" +"par_id3153317\n" "help.text" -msgid "Choose Format - Frame and Object - Properties - Borders tab." +msgid "Icon on the Image toolbar:" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3150048\n" +"par_id3149953\n" "help.text" -msgid "Choose Format - Page - Borders tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3151148\n" +"par_id3153695\n" "help.text" -msgid "Choose Format - Character - Borders tab." -msgstr "" +msgid "Crop" +msgstr "Kadrēt" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149911\n" +"par_id3151254\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Borders tab." +msgid "Choose Format - Text or Format - Text - Change Case." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3150094\n" +"par_id3153579\n" "help.text" -msgid "Choose Format - Page - Header - More button." +msgid "Menu Format - Asian phonetic guide." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154501\n" +"00040501.xhp\n" +"tit\n" "help.text" -msgid "Choose Format - Page - Footer - More button." +msgid "Format Menu" +msgstr "Formatēt izvēlne" + +#: 00040501.xhp +msgctxt "" +"00040501.xhp\n" +"hd_id3145759\n" +"help.text" +msgid "Format Menu" +msgstr "Formatēt izvēlne" + +#: 00040501.xhp +msgctxt "" +"00040501.xhp\n" +"par_id3150156\n" +"help.text" +msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148455\n" +"00040501.xhp\n" +"par_id3154408\n" "help.text" -msgid "Choose Format - Cells - Borders tab." +msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. No database connection in current form is allowed." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155915\n" +"00040501.xhp\n" +"par_id3149748\n" +"help.text" +msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. Database connection must exist." +msgstr "" + +#: 00040501.xhp +msgctxt "" +"00040501.xhp\n" +"par_id3156553\n" "help.text" -msgid "Menu Format - Paragraph - Border tab - Padding." +msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3159130\n" +"00040501.xhp\n" +"par_id3148825\n" "help.text" -msgid "Menu Format - Page - Border - Padding." +msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155853\n" +"00040501.xhp\n" +"par_id3155434\n" "help.text" -msgid "Choose Format - Paragraph - Background tab." +msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3147330\n" +"00040501.xhp\n" +"par_id3151378\n" "help.text" -msgid "Choose Format - Character - Background tab." +msgid "Open Form Controls toolbar, click List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149486\n" +"00040501.xhp\n" +"par_id3151246\n" "help.text" -msgid "Choose Format - Image - Background tab." +msgid "Open Form Controls toolbar, click Combo Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3150592\n" +"00040501.xhp\n" +"par_id3154923\n" "help.text" -msgid "Choose Format - Frame and Object - Properties - Area tab." +msgid "Open Toolbox bar in Basic dialog editor, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151321\n" +"00040501.xhp\n" +"par_id3151054\n" "help.text" -msgid "Choose Format - Page - Background tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154510\n" +"00040501.xhp\n" +"par_id3154836\n" "help.text" -msgid "Choose Format - Page - Header - More button." -msgstr "" +msgid "Properties" +msgstr "Īpašības" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3159110\n" +"00040501.xhp\n" +"par_id3149292\n" "help.text" -msgid "Choose Format - Page - Footer - More button." +msgid "Open context menu of a selected form element - choose Form." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153532\n" +"00040501.xhp\n" +"par_id3152933\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Background tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3144747\n" +"00040501.xhp\n" +"par_id3144760\n" "help.text" -msgid "Choose Insert/Edit - Section - Background tab" -msgstr "" +msgid "Form" +msgstr "Forma" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3146900\n" +"00040501.xhp\n" +"par_id3150447\n" "help.text" -msgid "Choose Format - Cells - Background tab." +msgid "Open context menu of a selected form element - choose Form - General tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3146791\n" +"00040501.xhp\n" +"par_id3144448\n" "help.text" -msgid "Choose Format - Page - Organizer tab." +msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - General tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154482\n" +"00040501.xhp\n" +"par_id3145786\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Organizer tab." +msgid "Open context menu of a selected form element - choose Form - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153357\n" +"00040501.xhp\n" +"par_id3158156\n" "help.text" -msgid "Choose Format - Page - Page tab." +msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149323\n" +"00040501.xhp\n" +"par_id1979125\n" "help.text" -msgid "Choose Slide - Properties - Page tab (in $[officename] Impress)." +msgid "Open context menu of a selected control on an XML Form document, choose Control - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154972\n" +"00040501.xhp\n" +"par_id1769463\n" "help.text" -msgid "Choose Page - Properties - Page tab (in $[officename] Draw)." +msgid "Open Form Controls toolbar of an XML Form document, click Control icon - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154362\n" +"00040501.xhp\n" +"par_id3145364\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Page tab." +msgid "Open context menu of a selected form element - choose Form - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155515\n" +"00040501.xhp\n" +"par_id3153575\n" "help.text" -msgid "Choose Format - Page - Header tab." +msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148405\n" +"00040501.xhp\n" +"par_id3147234\n" "help.text" -msgid "Choose View - Styles - open context menu of a page style entry and choose Modify/New - Header tab." +msgid "Open context menu of a selected form element - choose Control." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3145618\n" +"00040501.xhp\n" +"par_id3153953\n" "help.text" -msgid "Choose Format - Page - Footer tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155175\n" +"00040501.xhp\n" +"par_id3156442\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Footer tab." -msgstr "" +msgid "Control" +msgstr "Kontrole" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3147404\n" +"00040501.xhp\n" +"par_id3153943\n" "help.text" -msgid "Choose View - Styles." +msgid "Open context menu of a selected form element - choose Control - General tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3166447\n" +"00040501.xhp\n" +"par_id3159198\n" "help.text" -msgid "Command+TF11" -msgstr "CommandCtrl+P" +msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - General tab." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3147321\n" +"00040501.xhp\n" +"par_id3153203\n" "help.text" -msgid "On Formatting bar, click" +msgid "Open context menu of a selected form element - choose Control - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148533\n" +"00040501.xhp\n" +"par_id3150048\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Data tab." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153534\n" +"00040501.xhp\n" +"par_id3153334\n" "help.text" -msgid "Styles" +msgid "Open context menu of a selected form element - choose Control - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3159313\n" +"00040501.xhp\n" +"par_id3153744\n" "help.text" -msgid "On the Drawing bar, click" +msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3109845\n" +"00040501.xhp\n" +"par_id6058839\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "On Form Design bar, click" +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3152498\n" +"00040501.xhp\n" +"par_id3157874\n" "help.text" -msgid "3D Effects" -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3145256\n" +"00040501.xhp\n" +"par_id3146926\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Geometry tab." -msgstr "" +msgid "Activation Order" +msgstr "Aktivizācijas kārtība" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154203\n" +"00040501.xhp\n" +"par_id2709433\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Shading tab." +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151284\n" +"00040501.xhp\n" +"par_id3156439\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Illumination tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3152475\n" +"00040501.xhp\n" +"par_id3144747\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Textures tab." -msgstr "" +msgid "Add Field" +msgstr "Pievienot lauku" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154572\n" +"00040501.xhp\n" +"par_id9929502\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Material tab." +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3145220\n" +"00040501.xhp\n" +"par_id3150749\n" "help.text" -msgid "Choose Format - Bullets and Numbering." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148771\n" +"00040501.xhp\n" +"par_id3147237\n" "help.text" -msgid "On Formatting bar, click" -msgstr "" +msgid "Form Navigator" +msgstr "Formas navigators" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149445\n" +"00040501.xhp\n" +"par_id4886928\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "On Form Controls toolbar or Form Design bar, click" +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3157970\n" +"00040501.xhp\n" +"par_id3156056\n" "help.text" -msgid "Bullets On/Off" -msgstr "Aizzīmes ieslēgtas/izslēgtas" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149735\n" +"00040501.xhp\n" +"par_id3153767\n" "help.text" -msgid "Choose Format - Bullets and Numbering. Open Options tab page." +msgid "Design Mode On/Off" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3150785\n" +"00040501.xhp\n" +"par_id3148828\n" "help.text" -msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." +msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148420\n" +"00040501.xhp\n" +"par_id8177434\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148888\n" +"00040501.xhp\n" +"par_id3149822\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Bullets tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149917\n" +"00040501.xhp\n" +"par_id3147321\n" "help.text" -msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." -msgstr "" +msgid "Open in Design Mode" +msgstr "Atvērt dizaina režīmā" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154930\n" +"00040501.xhp\n" +"par_id3147533\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "On Form Control toolbar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3150862\n" +"00040501.xhp\n" +"par_id3152948\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Numbering tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155378\n" +"00040501.xhp\n" +"par_id3155939\n" "help.text" -msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." -msgstr "" +msgid "Wizards On/Off" +msgstr "Vednis ieslēgts/izslēgts" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3156011\n" +"00040501.xhp\n" +"par_id3147244\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "Choose Format - Arrange ($[officename] Writer, $[officename] Calc)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id0611200904324832\n" +"00040501.xhp\n" +"par_id3159334\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Image tab." +msgid "Open context menu - choose Arrange ($[officename] Impress, $[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155848\n" +"00040501.xhp\n" +"par_id3154023\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Outline tab." +msgid "Choose Shape - Arrange ($[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148733\n" +"00040501.xhp\n" +"par_id3155578\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3156658\n" +"00040501.xhp\n" +"par_id3152496\n" "help.text" -msgid "Choose Format - Bullets and Numbering. Open Position tab page." -msgstr "" +msgid "Arrange" +msgstr "Sakārtot" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3156170\n" +"00040501.xhp\n" +"par_id3148459\n" "help.text" -msgid "Choose Tools - Chapter Numbering - Position tab." +msgid "Choose Format - Arrange - Bring to Front ($[officename] Writer, $[officename] Calc)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153812\n" +"00040501.xhp\n" +"par_id3148425\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "Choose Shape - Arrange - Bring to Front ($[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151332\n" +"00040501.xhp\n" +"par_id3153268\n" "help.text" -msgid "Menu Format - Image - Properties - Crop tab." +msgid "Shift+CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153317\n" +"00040501.xhp\n" +"par_id3154206\n" "help.text" -msgid "Icon on the Image toolbar:" +msgid "Open context menu - choose Arrange - Bring to Front ($[officename] Impress)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149953\n" +"00040501.xhp\n" +"par_id3151213\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153695\n" +"00040501.xhp\n" +"par_id3149571\n" "help.text" -msgid "Crop" -msgstr "Kadrēt" +msgid "Bring to Front" +msgstr "Novietot virspusē" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151254\n" +"00040501.xhp\n" +"par_id3147092\n" "help.text" -msgid "Choose Format - Text or Format - Text - Change Case." +msgid "Choose Format - Arrange - Bring Forward ($[officename] Writer, $[officename] Calc)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153579\n" +"00040501.xhp\n" +"par_id3148396\n" "help.text" -msgid "Menu Format - Asian phonetic guide." +msgid "Choose Shape - Arrange - Bring Forward ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"tit\n" +"par_id3149528\n" "help.text" -msgid "Format Menu" -msgstr "Formatēt izvēlne" +msgid "CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)" +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"hd_id3145759\n" +"par_id3154658\n" "help.text" -msgid "Format Menu" -msgstr "Formatēt izvēlne" +msgid "Open context menu - choose Arrange - Bring Forward ($[officename] Impress)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150156\n" +"par_id3159121\n" "help.text" -msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154408\n" +"par_id3155848\n" "help.text" -msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. No database connection in current form is allowed." -msgstr "" +msgid "Bring Forward" +msgstr "Pārvietot tuvāk" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149748\n" +"par_id3154815\n" "help.text" -msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. Database connection must exist." +msgid "Choose Format - Arrange - Send Backward ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156553\n" +"par_id3150428\n" "help.text" -msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form." +msgid "Choose Shape - Arrange - Send Backward ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148825\n" +"par_id3156064\n" "help.text" -msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1." +msgid "CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3155434\n" +"par_id3159107\n" "help.text" -msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2." +msgid "Open context menu - choose Arrange - Send Backward ($[officename] Impress)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151378\n" +"par_id3152994\n" "help.text" -msgid "Open Form Controls toolbar, click List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151246\n" +"par_id3152795\n" "help.text" -msgid "Open Form Controls toolbar, click Combo Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "" +msgid "Send Backward" +msgstr "Sūtīt atpakaļ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154923\n" +"par_id3149493\n" "help.text" -msgid "Open Toolbox bar in Basic dialog editor, click" +msgid "Choose Format - Arrange - Send to Back ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151054\n" +"par_id3148595\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Shape - Arrange - Send to Back ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154836\n" +"par_id3150690\n" "help.text" -msgid "Properties" -msgstr "Īpašības" +msgid "Shift+CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149292\n" +"par_id3154486\n" "help.text" -msgid "Open context menu of a selected form element - choose Form." +msgid "Open context menu - choose Arrange - Send to Back ($[officename] Impress)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3152933\n" +"par_id3145384\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3144760\n" +"par_id3155260\n" "help.text" -msgid "Form" -msgstr "Forma" +msgid "Send to Back" +msgstr "Pārvietot tālāk" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150447\n" +"par_id3145410\n" "help.text" -msgid "Open context menu of a selected form element - choose Form - General tab." +msgid "Choose Format - Arrange - To Foreground." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3144448\n" +"par_id3149408\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - General tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3145786\n" +"par_id3153607\n" "help.text" -msgid "Open context menu of a selected form element - choose Form - Data tab." -msgstr "" +msgid "To Foreground" +msgstr "Uz priekšplānu" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3158156\n" +"par_id3159626\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Data tab." +msgid "Choose Format - Arrange - To Background." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id1979125\n" +"par_id3153815\n" "help.text" -msgid "Open context menu of a selected control on an XML Form document, choose Control - Data tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id1769463\n" +"par_id3152900\n" "help.text" -msgid "Open Form Controls toolbar of an XML Form document, click Control icon - Data tab." -msgstr "" +msgid "To Background" +msgstr "Uz fonu" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3145364\n" +"par_id3146854\n" "help.text" -msgid "Open context menu of a selected form element - choose Form - Events tab." +msgid "Choose Format - Align ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153575\n" +"par_id3153914\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Events tab." +msgid "Choose Shape - Align (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147234\n" +"par_id3153185\n" "help.text" -msgid "Open context menu of a selected form element - choose Control." +msgid "Open context menu - choose Align (objects selected) ($[officename] Impress, $[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153953\n" +"par_id3168611\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Align - Left ($[officename] Writer, $[officename] Calc)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156442\n" +"par_id3083450\n" "help.text" -msgid "Control" -msgstr "Kontrole" +msgid "Choose Shape - Align - Left (selected objects) ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153943\n" +"par_id3150257\n" "help.text" -msgid "Open context menu of a selected form element - choose Control - General tab." +msgid "Open context menu - choose Align - Left (objects selected) ($[officename] Impress, $[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3159198\n" +"par_id3146786\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - General tab." +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153203\n" +"par_id3153373\n" "help.text" -msgid "Open context menu of a selected form element - choose Control - Data tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150048\n" +"par_id3151231\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Data tab." -msgstr "" +msgid "Left" +msgstr "Kreisais" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153334\n" +"par_id3150268\n" "help.text" -msgid "Open context menu of a selected form element - choose Control - Events tab." +msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153744\n" +"par_id3157978\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Events tab." +msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id6058839\n" +"par_id3150139\n" "help.text" -msgid "On Form Design bar, click" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3157874\n" +"par_id3149519\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3146926\n" +"par_id3150704\n" "help.text" -msgid "Activation Order" -msgstr "Aktivizācijas kārtība" +msgid "Centered" +msgstr "Vidū" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id2709433\n" +"par_id3156546\n" "help.text" -msgid "On Form Design bar, click" +msgid "Choose Format - Align - Right." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156439\n" +"par_id3145073\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Shape - Align - Right (objects selected) ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3144747\n" +"par_id3146953\n" "help.text" -msgid "Add Field" -msgstr "Pievienot lauku" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id9929502\n" +"par_id3155436\n" "help.text" -msgid "On Form Design bar, click" -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150749\n" +"par_id3150834\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Right" +msgstr "Labais" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147237\n" +"par_id3153109\n" "help.text" -msgid "Form Navigator" -msgstr "Formas navigators" +msgid "Choose Format - Align - Top ($[officename] Writer, $[officename] Calc)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id4886928\n" +"par_id3150213\n" "help.text" -msgid "On Form Controls toolbar or Form Design bar, click" +msgid "Choose Shape - Align - Top (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156056\n" +"par_id3155093\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open context menu - choose Align - Top (objects selected) ($[officename] Impress, $[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153767\n" +"par_id3151303\n" "help.text" -msgid "Design Mode On/Off" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148828\n" +"par_id3155386\n" +"help.text" +msgid "Icon" +msgstr "Ikona" + +#: 00040501.xhp +msgctxt "" +"00040501.xhp\n" +"par_id3157550\n" "help.text" -msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." -msgstr "" +msgid "Top" +msgstr "Augšpusē" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id8177434\n" +"par_id3153976\n" "help.text" -msgid "On Form Design bar, click" +msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149822\n" +"par_id3153246\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147321\n" +"par_id3154614\n" "help.text" -msgid "Open in Design Mode" -msgstr "Atvērt dizaina režīmā" +msgid "Open context menu - choose Align - Centered (objects selected) ($[officename] Impress, $[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147533\n" +"par_id3149196\n" "help.text" -msgid "On Form Control toolbar, click" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3152948\n" +"par_id3145755\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3155939\n" +"par_id3146943\n" "help.text" -msgid "Wizards On/Off" -msgstr "Vednis ieslēgts/izslēgts" +msgid "Centered" +msgstr "Centrēts" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147244\n" +"par_id3149896\n" "help.text" -msgid "Choose Format - Arrange ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Align - Bottom ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3159334\n" +"par_id3156049\n" "help.text" -msgid "Open context menu - choose Arrange ($[officename] Impress, $[officename] Draw)." +msgid "Choose Shape - Align - Bottom (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154023\n" +"par_id3152545\n" "help.text" -msgid "Choose Shape - Arrange ($[officename] Draw)." +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3155578\n" +"par_id3154057\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3152496\n" +"par_id3145601\n" "help.text" -msgid "Arrange" -msgstr "Sakārtot" +msgid "Bottom" +msgstr "Apakša" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148459\n" +"par_id3145197\n" "help.text" -msgid "Choose Format - Arrange - Bring to Front ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Anchor." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148425\n" +"par_id2851649\n" "help.text" -msgid "Choose Shape - Arrange - Bring to Front ($[officename] Draw)." +msgid "On Form Design bar, click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153268\n" +"par_id3151122\n" "help.text" -msgid "Shift+CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154206\n" +"par_id3154763\n" "help.text" -msgid "Open context menu - choose Arrange - Bring to Front ($[officename] Impress)." -msgstr "" +msgid "Change Anchor" +msgstr "Mainīt enkuru" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151213\n" +"par_id3148899\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Anchor - To Page." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149571\n" +"par_id3149342\n" "help.text" -msgid "Bring to Front" -msgstr "Novietot virspusē" +msgid "Choose Format - Anchor - To Paragraph." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147092\n" +"par_id3155147\n" "help.text" -msgid "Choose Format - Arrange - Bring Forward ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Anchor - To Character." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148396\n" +"par_id3153042\n" "help.text" -msgid "Choose Shape - Arrange - Bring Forward ($[officename] Draw)." +msgid "Choose Format - Anchor - As Character." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149528\n" +"par_id3146964\n" "help.text" -msgid "CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)" +msgid "Choose Format - Anchor - To Frame." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154658\n" +"par_id3150781\n" "help.text" -msgid "Open context menu - choose Arrange - Bring Forward ($[officename] Impress)." +msgid "Choose Format - Anchor - To Cell." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3159121\n" +"00040502.xhp\n" +"tit\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Format Menu" +msgstr "Formatēt izvēlne" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155848\n" +"00040502.xhp\n" +"hd_id3149741\n" "help.text" -msgid "Bring Forward" -msgstr "Pārvietot tuvāk" +msgid "Format Menu" +msgstr "Formatēt izvēlne" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154815\n" +"00040502.xhp\n" +"par_id3146857\n" "help.text" -msgid "Choose Format - Arrange - Send Backward ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Line (Impress and Draw)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150428\n" +"00040502.xhp\n" +"par_id366527\n" "help.text" -msgid "Choose Shape - Arrange - Send Backward ($[officename] Draw)." +msgid "Choose Format - Text Box and Shape - Line (Writer)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3156064\n" +"00040502.xhp\n" +"par_id3835261\n" "help.text" -msgid "CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" +msgid "Choose Format - Object - Line (Calc)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3159107\n" +"00040502.xhp\n" +"par_id3148668\n" "help.text" -msgid "Open context menu - choose Arrange - Send Backward ($[officename] Impress)." +msgid "On Line and Filling bar, click" msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152994\n" +"00040502.xhp\n" +"par_id3148889\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152795\n" +"00040502.xhp\n" +"par_id3159147\n" "help.text" -msgid "Send Backward" -msgstr "Sūtīt atpakaļ" +msgid "Line" +msgstr "Līnija" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149493\n" +"00040502.xhp\n" +"par_id3154285\n" "help.text" -msgid "Choose Format - Arrange - Send to Back ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Text Box and Shape - Object - Line - Line tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3148595\n" +"00040502.xhp\n" +"par_id3147335\n" "help.text" -msgid "Choose Shape - Arrange - Send to Back ($[officename] Draw)." +msgid "Choose View - Styles - open context menu and choose Modify/New - Line tab (presentation documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150690\n" +"00040502.xhp\n" +"par_id3156023\n" "help.text" -msgid "Shift+CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" +msgid "Choose Format - Title - Borders tab (charts)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154486\n" +"00040502.xhp\n" +"par_id3153061\n" "help.text" -msgid "Open context menu - choose Arrange - Send to Back ($[officename] Impress)." +msgid "Choose Format - Legend - Borders tab (charts)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145384\n" +"00040502.xhp\n" +"par_id3155922\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Axis - Line tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155260\n" +"00040502.xhp\n" +"par_id3147559\n" "help.text" -msgid "Send to Back" -msgstr "Pārvietot tālāk" +msgid "Choose Format - Grid - Line tab (charts)." +msgstr "" + +#: 00040502.xhp +msgctxt "" +"00040502.xhp\n" +"par_id3154758\n" +"help.text" +msgid "Choose Format - Chart Wall - Borders tab (charts)." +msgstr "" + +#: 00040502.xhp +msgctxt "" +"00040502.xhp\n" +"par_id3153960\n" +"help.text" +msgid "Choose Format - Chart Floor - Borders tab (charts)." +msgstr "" + +#: 00040502.xhp +msgctxt "" +"00040502.xhp\n" +"par_id3154939\n" +"help.text" +msgid "Choose Format - Chart Area - Borders tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145410\n" +"00040502.xhp\n" +"par_id3151293\n" "help.text" -msgid "Choose Format - Arrange - To Foreground." +msgid "Choose Format - Text Box and Shape - Object - Line - Line Styles tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149408\n" +"00040502.xhp\n" +"par_id3149317\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Text Box and Shape - Object - Line - Arrow Styles tab." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153607\n" +"00040502.xhp\n" +"par_id3156082\n" "help.text" -msgid "To Foreground" -msgstr "Uz priekšplānu" +msgid "Choose Format - Text Box and Shape - Object - Area." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3159626\n" +"00040502.xhp\n" +"par_id3148922\n" "help.text" -msgid "Choose Format - Arrange - To Background." +msgid "On Line and Filling bar, click" msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153815\n" +"00040502.xhp\n" +"par_id3156424\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152900\n" +"00040502.xhp\n" +"par_id3150393\n" "help.text" -msgid "To Background" -msgstr "Uz fonu" +msgid "Area" +msgstr "Laukums" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146854\n" +"00040502.xhp\n" +"par_id3154948\n" "help.text" -msgid "Choose Format - Align ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Text Box and Shape - Object - Area - Area tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153914\n" +"00040502.xhp\n" +"par_id3145607\n" "help.text" -msgid "Choose Shape - Align (objects selected) ($[officename] Draw)." +msgid "Choose View - Styles - open context menu and choose Modify/New - Area tab (presentation documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153185\n" +"00040502.xhp\n" +"par_id3152922\n" "help.text" -msgid "Open context menu - choose Align (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Title - Area tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3168611\n" +"00040502.xhp\n" +"par_id3157894\n" "help.text" -msgid "Choose Format - Align - Left ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Legend - Area tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3083450\n" +"00040502.xhp\n" +"par_id3144444\n" "help.text" -msgid "Choose Shape - Align - Left (selected objects) ($[officename] Draw)." +msgid "Choose Format - Chart Wall - Area tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150257\n" +"00040502.xhp\n" +"par_id3156543\n" "help.text" -msgid "Open context menu - choose Align - Left (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Chart Floor - Area tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146786\n" +"00040502.xhp\n" +"par_id3150685\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Chart Area - Area tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153373\n" +"00040502.xhp\n" +"par_id3149664\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Slide - Properties - Background tab (in $[officename] Impress)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3151231\n" +"00040502.xhp\n" +"par_id9149694\n" "help.text" -msgid "Left" -msgstr "Kreisais" +msgid "Choose Page - Properties - Background tab (in $[officename] Draw)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150268\n" +"00040502.xhp\n" +"par_id841527083135387\n" "help.text" -msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." +msgid "Choose Table - Properties - Background tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3157978\n" +"00040502.xhp\n" +"par_id3154985\n" "help.text" -msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." +msgid "Choose Format - Area - Transparency tab (drawing documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150139\n" +"00040502.xhp\n" +"par_id3145365\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Area - Transparency tab (presentation documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149519\n" +"00040502.xhp\n" +"par_id3151117\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Chart Wall - Transparency tab (chart documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150704\n" +"00040502.xhp\n" +"par_id3147326\n" "help.text" -msgid "Centered" -msgstr "Vidū" +msgid "Choose Format - Chart Area - Transparency tab (chart documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3156546\n" +"00040502.xhp\n" +"par_id3154920\n" "help.text" -msgid "Choose Format - Align - Right." +msgid "Choose Format - Chart Floor - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145073\n" +"00040502.xhp\n" +"par_id3145591\n" "help.text" -msgid "Choose Shape - Align - Right (objects selected) ($[officename] Draw)." +msgid "Choose Format - Title - All Titles - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146953\n" +"00040502.xhp\n" +"par_id3145750\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Title - Main Title - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155436\n" +"00040502.xhp\n" +"par_id3148556\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Title - Subtitle - Transparency tab (chart documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150834\n" +"00040502.xhp\n" +"par_id3163710\n" "help.text" -msgid "Right" -msgstr "Labais" +msgid "Choose Format - Title - Title (X Axis) - Transparency tab (chart documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153109\n" +"00040502.xhp\n" +"par_id3150487\n" "help.text" -msgid "Choose Format - Align - Top ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Title - Title (Y Axis) - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150213\n" +"00040502.xhp\n" +"par_id3154320\n" "help.text" -msgid "Choose Shape - Align - Top (objects selected) ($[officename] Draw)." -msgstr "" +msgid "Choose Format - Title - Title (Z Axis) - Transparency tab (chart documents)" +msgstr "Izvēlieties Formatēt - Virsraksts - Virsraksts (Z ass) - Caurspīdīgums cilni (diagrammu dokumenti)" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155093\n" +"00040502.xhp\n" +"par_id3151113\n" "help.text" -msgid "Open context menu - choose Align - Top (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Object Properties - Data Point - Transparency - tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3151303\n" +"00040502.xhp\n" +"par_id3149266\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Object Properties - Data Series - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155386\n" +"00040502.xhp\n" +"par_id3150011\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Text Box and Shape - Object - Area - Shadow tab." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3157550\n" +"00040502.xhp\n" +"par_id3147441\n" "help.text" -msgid "Top" -msgstr "Augšpusē" +msgid "Choose Format - Text Box and Shape - Object - Area - Gradients tab." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153976\n" +"00040502.xhp\n" +"par_id3155308\n" "help.text" -msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Text Box and Shape - Object - Area - Hatching tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153246\n" +"00040502.xhp\n" +"par_id3145800\n" "help.text" -msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." +msgid "Choose Format - Text Box and Shape - Object - Area - Bitmaps tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154614\n" +"00040502.xhp\n" +"par_id3145251\n" "help.text" -msgid "Open context menu - choose Align - Centered (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Text Box and Shape - Text Attributes Object - Text - Text." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149196\n" +"00040502.xhp\n" +"par_id3152810\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145755\n" +"00040502.xhp\n" +"par_id3151060\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text Animation tab." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146943\n" +"00040502.xhp\n" +"par_id3149911\n" "help.text" -msgid "Centered" -msgstr "Centrēts" +msgid "Choose Format - Text Box and Shape - Object - Position and Size." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149896\n" +"00040502.xhp\n" +"par_id3156286\n" "help.text" -msgid "Choose Format - Align - Bottom ($[officename] Writer, $[officename] Calc)." +msgid "F4 keyF4 key" msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3156049\n" +"00040502.xhp\n" +"par_id3153052\n" "help.text" -msgid "Choose Shape - Align - Bottom (objects selected) ($[officename] Draw)." -msgstr "" +msgid "Icon" +msgstr "Ikona" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152545\n" +"00040502.xhp\n" +"par_id3149938\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" -msgstr "" +msgid "Position and Size" +msgstr "Novietojums un izmērs" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154057\n" +"00040502.xhp\n" +"par_id3148833\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open the context menu for the object - choose Name." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145601\n" +"00040502.xhp\n" +"par_id411999\n" "help.text" -msgid "Bottom" -msgstr "Apakša" +msgid "Open the context menu for the object - choose Description." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145197\n" +"00040502.xhp\n" +"par_id3153099\n" "help.text" -msgid "Choose Format - Anchor." +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Position and Size tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id2851649\n" +"00040502.xhp\n" +"par_id3152973\n" "help.text" -msgid "On Form Design bar, click" +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Rotation tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3151122\n" +"00040502.xhp\n" +"par_id3148495\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154763\n" +"00040502.xhp\n" +"par_id3146790\n" "help.text" -msgid "Change Anchor" -msgstr "Mainīt enkuru" +msgid "Rotate" +msgstr "Rotēt" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3148899\n" +"00040502.xhp\n" +"par_id3145666\n" "help.text" -msgid "Choose Format - Anchor - To Page." +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149342\n" +"00040502.xhp\n" +"par_id3146081\n" "help.text" -msgid "Choose Format - Anchor - To Paragraph." +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Callout tab. This is only available for textbox callouts, not for custom shapes callouts." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155147\n" +"00040502.xhp\n" +"par_id3083283\n" "help.text" -msgid "Choose Format - Anchor - To Character." +msgid "Choose Edit - Points." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153042\n" +"00040502.xhp\n" +"par_id3145642\n" "help.text" -msgid "Choose Format - Anchor - As Character." +msgid "Open context menu - choose Edit Points. Open context menu - choose Edit Points." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146964\n" +"00040502.xhp\n" +"par_id3149019\n" "help.text" -msgid "Choose Format - Anchor - To Frame." +msgid "F8 keyF8 key" msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150781\n" +"00040502.xhp\n" +"par_id3150044\n" "help.text" -msgid "Choose Format - Anchor - To Cell." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"tit\n" +"par_id3153966\n" "help.text" -msgid "Format Menu" -msgstr "Formatēt izvēlne" +msgid "Edit Points" +msgstr "Rediģēt punktus" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"hd_id3149741\n" +"par_id3151248\n" "help.text" -msgid "Format Menu" -msgstr "Formatēt izvēlne" +msgid "Choose Format - Character (drawing functions)." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3146857\n" +"par_id3145229\n" "help.text" -msgid "Choose Format - Line (Impress and Draw)." +msgid "Open context menu - choose Character." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id366527\n" +"par_id3151342\n" "help.text" -msgid "Choose Format - Text Box and Shape - Line (Writer)." +msgid "Open context menu - choose Size." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3835261\n" +"par_id3149255\n" "help.text" -msgid "Choose Format - Object - Line (Calc)." +msgid "Open context menu - choose Style." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148668\n" +"par_id3155177\n" "help.text" -msgid "On Line and Filling bar, click" +msgid "Open context menu - choose Style - Bold." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148889\n" +"par_id3145766\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3159147\n" +"par_id3147001\n" "help.text" -msgid "Line" -msgstr "Līnija" +msgid "Bold" +msgstr "Treknraksts" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154285\n" +"par_id3151276\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Line - Line tab." +msgid "Open context menu - choose Style - Italic." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147335\n" +"par_id3159091\n" +"help.text" +msgid "Icon" +msgstr "Ikona" + +#: 00040502.xhp +msgctxt "" +"00040502.xhp\n" +"par_id3150234\n" "help.text" -msgid "Choose View - Styles - open context menu and choose Modify/New - Line tab (presentation documents)." -msgstr "" +msgid "Italic" +msgstr "Kursīvs" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156023\n" +"par_id3154589\n" "help.text" -msgid "Choose Format - Title - Borders tab (charts)." +msgid "Open context menu - choose Style - Underline." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153061\n" +"par_id3145223\n" "help.text" -msgid "Choose Format - Legend - Borders tab (charts)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3155922\n" +"par_id3154715\n" "help.text" -msgid "Choose Format - Axis - Line tab (charts)." -msgstr "" +msgid "Underline" +msgstr "Pasvītrojums" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147559\n" +"par_id3145131\n" "help.text" -msgid "Choose Format - Grid - Line tab (charts)." +msgid "Open context menu - choose Style - Strikethrough." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154758\n" +"par_id3158214\n" "help.text" -msgid "Choose Format - Chart Wall - Borders tab (charts)." +msgid "Open context menu - choose Style - Shadow." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153960\n" +"par_id3150207\n" "help.text" -msgid "Choose Format - Chart Floor - Borders tab (charts)." +msgid "Open context menu - choose Style - Contour." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154939\n" +"par_id3154383\n" "help.text" -msgid "Choose Format - Chart Area - Borders tab (charts)." +msgid "Open context menu - choose Style - Superscript." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151293\n" +"par_id3152767\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Line - Line Styles tab." +msgid "Open context menu - choose Style - Subscript." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149317\n" +"par_id3155377\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Line - Arrow Styles tab." +msgid "Open context menu - choose Line Spacing." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156082\n" +"par_id3154475\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area." +msgid "Open context menu - choose Line Spacing - Single." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148922\n" +"par_id3150478\n" "help.text" -msgid "On Line and Filling bar, click" +msgid "Open context menu - choose Line Spacing - 1.5 Lines." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156424\n" +"par_id3147167\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open context menu - choose Line Spacing - Double." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150393\n" +"par_id3146978\n" "help.text" -msgid "Area" -msgstr "Laukums" +msgid "Choose Format - Align - Left (drawing functions)." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154948\n" +"par_id3153009\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Area tab." +msgid "Open context menu - choose Align - Left." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145607\n" +"par_id3147310\n" "help.text" -msgid "Choose View - Styles - open context menu and choose Modify/New - Area tab (presentation documents)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3152922\n" +"par_id3151336\n" "help.text" -msgid "Choose Format - Title - Area tab (chart documents)." -msgstr "" +msgid "Align Left" +msgstr "Līdzināt pie kreisās malas" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3157894\n" +"par_id3155823\n" "help.text" -msgid "Choose Format - Legend - Area tab (chart documents)." +msgid "Choose Format - Align - Right (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3144444\n" +"par_id3155762\n" "help.text" -msgid "Choose Format - Chart Wall - Area tab (chart documents)." +msgid "Open context menu - choose Align - Right." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156543\n" +"par_id3149408\n" "help.text" -msgid "Choose Format - Chart Floor - Area tab (chart documents)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150685\n" +"par_id3153607\n" "help.text" -msgid "Choose Format - Chart Area - Area tab (chart documents)." -msgstr "" +msgid "Align Right" +msgstr "Līdzināt pie labās malas" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149664\n" +"par_id3149189\n" "help.text" -msgid "Choose Slide - Properties - Background tab (in $[officename] Impress)." +msgid "Choose Format - Align - Centered (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id9149694\n" +"par_id3154624\n" "help.text" -msgid "Choose Page - Properties - Background tab (in $[officename] Draw)." +msgid "Open context menu - choose Align - Center." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id841527083135387\n" +"par_id3153815\n" "help.text" -msgid "Choose Table - Properties - Background tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154985\n" +"par_id3153076\n" "help.text" -msgid "Choose Format - Area - Transparency tab (drawing documents)." +msgid "Align Center HorizontallyCentered" msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145365\n" +"par_id3146151\n" "help.text" -msgid "Choose Format - Area - Transparency tab (presentation documents)." +msgid "Choose Format - Align - Justified (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151117\n" +"par_id3168612\n" "help.text" -msgid "Choose Format - Chart Wall - Transparency tab (chart documents)." +msgid "Open context menu - choose Align - Justified." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147326\n" +"par_id3156189\n" "help.text" -msgid "Choose Format - Chart Area - Transparency tab (chart documents)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154920\n" +"par_id3153131\n" "help.text" -msgid "Choose Format - Chart Floor - Transparency tab (chart documents)." -msgstr "" +msgid "Justified" +msgstr "Abpuslīdzināts" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145591\n" +"par_id3150527\n" "help.text" -msgid "Choose Format - Title - All Titles - Transparency tab (chart documents)." +msgid "Click Fontwork icon on Drawing bar." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145750\n" +"par_id3144503\n" "help.text" -msgid "Choose Format - Title - Main Title - Transparency tab (chart documents)." +msgid "Choose Format - Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148556\n" +"par_id3154854\n" "help.text" -msgid "Choose Format - Title - Subtitle - Transparency tab (chart documents)." +msgid "Open context menu - choose Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3163710\n" +"par_id3157985\n" "help.text" -msgid "Choose Format - Title - Title (X Axis) - Transparency tab (chart documents)." +msgid "Choose Format - Group - Group (text documents, spreadsheets)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150487\n" +"par_id3157980\n" "help.text" -msgid "Choose Format - Title - Title (Y Axis) - Transparency tab (chart documents)." +msgid "Choose Shape - Group - Group (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154320\n" +"par_id3149508\n" "help.text" -msgid "Choose Format - Title - Title (Z Axis) - Transparency tab (chart documents)" -msgstr "Izvēlieties Formatēt - Virsraksts - Virsraksts (Z ass) - Caurspīdīgums cilni (diagrammu dokumenti)" +msgid "Open context menu - choose Group - Group (form objects)." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151113\n" +"par_id3146858\n" "help.text" -msgid "Choose Format - Object Properties - Data Point - Transparency - tab (chart documents)." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149266\n" +"par_id3149593\n" "help.text" -msgid "Choose Format - Object Properties - Data Series - Transparency tab (chart documents)." -msgstr "" +msgid "Group" +msgstr "Grupa" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150011\n" +"par_id3153023\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Shadow tab." +msgid "Choose Format - Group - Ungroup (text documents, spreadsheets)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147441\n" +"par_id3163378\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Gradients tab." +msgid "Choose Shape - Group - Ungroup (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3155308\n" +"par_id3156038\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Hatching tab." +msgid "Open context menu - choose Ungroup." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145800\n" +"par_id3151300\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Bitmaps tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145251\n" +"par_id3146894\n" "help.text" -msgid "Choose Format - Text Box and Shape - Text Attributes Object - Text - Text." -msgstr "" +msgid "Ungroup" +msgstr "Atgrupēt" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3152810\n" +"par_id3153109\n" "help.text" -msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text tab." +msgid "Choose Format - Group - Exit Group (text documents, spreadsheets)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151060\n" +"par_id3145678\n" "help.text" -msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text Animation tab." +msgid "Choose Shape - Group - Exit Group (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149911\n" +"par_id3152367\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size." +msgid "Open context menu - choose Exit Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156286\n" +"par_id3158402\n" "help.text" -msgid "F4 keyF4 key" -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153052\n" +"par_id3155347\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Exit Group" +msgstr "Iziet no grupas" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149938\n" +"par_id3149129\n" "help.text" -msgid "Position and Size" -msgstr "Novietojums un izmērs" +msgid "Choose Format - Group - Enter Group (text documents, spreadsheets)." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148833\n" +"par_id3145354\n" "help.text" -msgid "Open the context menu for the object - choose Name." +msgid "Choose Shape - Group - Enter Group (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id411999\n" +"par_id3149946\n" "help.text" -msgid "Open the context menu for the object - choose Description." +msgid "Open context menu - choose Enter Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153099\n" +"par_id3152388\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Position and Size tab." -msgstr "" +msgid "Icon" +msgstr "Ikona" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3152973\n" +"par_id3152547\n" +"help.text" +msgid "Enter Group" +msgstr "Ieiet grupā" + +#: 00040503.xhp +msgctxt "" +"00040503.xhp\n" +"tit\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Rotation tab." -msgstr "" +msgid "Format Menu" +msgstr "Formatēt izvēlne" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3148495\n" +"00040503.xhp\n" +"hd_id3155757\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Format Menu" +msgstr "Formatēt izvēlne" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146790\n" +"00040503.xhp\n" +"par_id3147294\n" "help.text" -msgid "Rotate" -msgstr "Rotēt" +msgid "Choose Format - Rows - Height." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145666\n" +"00040503.xhp\n" +"par_id3149551\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." +msgid "Open context menu of a row header in an open database table - choose Row Height." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146081\n" +"00040503.xhp\n" +"par_id3153136\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Callout tab. This is only available for textbox callouts, not for custom shapes callouts." +msgid "Choose Format - Columns - Width." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3083283\n" +"00040503.xhp\n" +"par_id3150756\n" "help.text" -msgid "Choose Edit - Points." +msgid "Open context menu of a column header in a database table - choose Column Width." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145642\n" +"00040503.xhp\n" +"par_id3148668\n" "help.text" -msgid "Open context menu - choose Edit Points. Open context menu - choose Edit Points." +msgid "Choose Format - Cells - Numbers tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149019\n" +"00040503.xhp\n" +"par_id3152349\n" "help.text" -msgid "F8 keyF8 key" +msgid "Choose View - Styles - open context menu and choose Modify/New - Numbers tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150044\n" +"00040503.xhp\n" +"par_id3161459\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open context menu for a column header in an open database table - choose Column Format - Format tab." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153966\n" +"00040503.xhp\n" +"par_id3147531\n" "help.text" -msgid "Edit Points" -msgstr "Rediģēt punktus" +msgid "Choose Format - Axis - Y Axis - Numbers tab (Chart Documents)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151248\n" +"00040503.xhp\n" +"par_id3150823\n" "help.text" -msgid "Choose Format - Character (drawing functions)." +msgid "Also as Number Format dialog for tables and fields in text documents: Choose Format - Number Format, or choose Insert - Field - More Fields - Variables tab and select Additional formats in the Format list." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145229\n" +"00040503.xhp\n" +"par_id3154923\n" "help.text" -msgid "Open context menu - choose Character." +msgid "Choose Format - Title - Main Title - Alignment tab.Choose Format - Cells - Alignment tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151342\n" +"00040503.xhp\n" +"par_id3149457\n" "help.text" -msgid "Open context menu - choose Size." +msgid "Open context menu of a column header in a database table - choose Column Format - Alignment tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149255\n" +"00040503.xhp\n" +"par_id3150400\n" "help.text" -msgid "Open context menu - choose Style." +msgid "Open context menu of a row header in a database table - choose Table Format." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155177\n" +"00040503.xhp\n" +"par_id3149650\n" "help.text" -msgid "Open context menu - choose Style - Bold." +msgid "Open context menu of a column header in a database table - choose Column Format." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145766\n" +"00040503.xhp\n" +"par_id3153799\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Context menu for a row header in an open database table - Delete Rows." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3147001\n" +"00040503.xhp\n" +"par_id3150495\n" "help.text" -msgid "Bold" -msgstr "Treknraksts" +msgid "Choose Shape - Flip ($[officename] Draw)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151276\n" +"00040503.xhp\n" +"par_id3155742\n" "help.text" -msgid "Open context menu - choose Style - Italic." +msgid "Choose Format - Image - Properties - Image tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3159091\n" +"00040503.xhp\n" +"par_id3158407\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open context menu - choose Flip (presentation documents)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150234\n" +"00040503.xhp\n" +"par_id3150290\n" "help.text" -msgid "Italic" -msgstr "Kursīvs" +msgid "Choose Shape - Flip - Vertically ($[officename] Draw)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154589\n" +"00040503.xhp\n" +"par_id3153179\n" "help.text" -msgid "Open context menu - choose Style - Underline." +msgid "Choose Format - Image - Properties - Image tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145223\n" +"00040503.xhp\n" +"par_id3157960\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Open context menu - choose Flip - Vertically (presentation documents)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154715\n" +"00040503.xhp\n" +"par_id3153369\n" "help.text" -msgid "Underline" -msgstr "Pasvītrojums" +msgid "Choose Shape - Flip - Horizontally ($[officename] Draw)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145131\n" +"00040503.xhp\n" +"par_id3147348\n" "help.text" -msgid "Open context menu - choose Style - Strikethrough." +msgid "Choose Format - Image - Properties, and then click the Image tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3158214\n" +"00040503.xhp\n" +"par_id3156106\n" "help.text" -msgid "Open context menu - choose Style - Shadow." +msgid "Choose Format - Flip - Horizontally." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150207\n" +"00040503.xhp\n" +"par_id3152578\n" "help.text" -msgid "Open context menu - choose Style - Contour." +msgid "Right-click a selected object - choose Flip - Horizontally ($[officename] Impress)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154383\n" +"00040503.xhp\n" +"par_id3147318\n" "help.text" -msgid "Open context menu - choose Style - Superscript." +msgid "Choose Shape - Distribution ($[officename] Draw)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3152767\n" +"00040503.xhp\n" +"par_id3149064\n" "help.text" -msgid "Open context menu - choose Style - Subscript." +msgid "Open context menu - choose Distribution ($[officename] Impress)." msgstr "" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155377\n" +"01000000.xhp\n" +"tit\n" "help.text" -msgid "Open context menu - choose Line Spacing." -msgstr "" +msgid "Showing and Hiding Docked Windows" +msgstr "Pietauvoto logu parādīšana un paslēpšana" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154475\n" +"01000000.xhp\n" +"hd_id3085157\n" "help.text" -msgid "Open context menu - choose Line Spacing - Single." -msgstr "" +msgid "Showing and Hiding Docked Windows" +msgstr "Pietauvoto logu parādīšana un paslēpšana" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150478\n" +"01000000.xhp\n" +"par_id3149948\n" "help.text" -msgid "Open context menu - choose Line Spacing - 1.5 Lines." +msgid "Every docked window has an icon to control the display properties of the window." msgstr "" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3147167\n" +"01000000.xhp\n" +"par_id3150502\n" "help.text" -msgid "Open context menu - choose Line Spacing - Double." +msgid "To show or hide a docked window, click the icon." msgstr "" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146978\n" +"01000000.xhp\n" +"hd_id3150465\n" "help.text" -msgid "Choose Format - Align - Left (drawing functions)." -msgstr "" +msgid "AutoShow and AutoHide Docked Windows" +msgstr "Pietauvoto logu automātiskā parādīšana un automātiskā paslēpšana" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153009\n" +"01000000.xhp\n" +"par_id3155504\n" "help.text" -msgid "Open context menu - choose Align - Left." +msgid "You can click the edge of a hidden docked window to open the window." msgstr "" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3147310\n" +"01000000.xhp\n" +"par_id3153257\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "The docked window closes automatically when you move the mouse pointer outside of the window." +msgstr "" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151336\n" +"01000000.xhp\n" +"par_id3154046\n" "help.text" -msgid "Align Left" -msgstr "Līdzināt pie kreisās malas" +msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode." +msgstr "" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155823\n" +"01000000.xhp\n" +"hd_id3145416\n" "help.text" -msgid "Choose Format - Align - Right (drawing functions)." -msgstr "" +msgid "Drag and Drop" +msgstr "Vilkt un nomest" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155762\n" +"01000000.xhp\n" +"par_id3149578\n" "help.text" -msgid "Open context menu - choose Align - Right." +msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode." msgstr "" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149408\n" +"01010000.xhp\n" +"tit\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Gallery context menu" +msgstr "Galerijas konteksta izvēlne" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153607\n" +"01010000.xhp\n" +"hd_id3150672\n" "help.text" -msgid "Align Right" -msgstr "Līdzināt pie labās malas" +msgid "Gallery context menu" +msgstr "Galerijas konteksta izvēlne" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149189\n" +"01010000.xhp\n" +"par_id3083278\n" "help.text" -msgid "Choose Format - Align - Centered (drawing functions)." +msgid "Defines how a selected graphic object is inserted into a document." msgstr "" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154624\n" +"01010000.xhp\n" +"par_id3156053\n" "help.text" -msgid "Open context menu - choose Align - Center." +msgid "Inserts a copy of the selected graphic object directly into the document." msgstr "" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153815\n" +"01010000.xhp\n" +"par_id3149038\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Inserts the selected graphic as a link." +msgstr "" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153076\n" +"01010000.xhp\n" +"par_id3158428\n" "help.text" -msgid "Align Center HorizontallyCentered" +msgid "The Preview command displays the selected graphic." msgstr "" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146151\n" +"01010000.xhp\n" +"par_id3154522\n" "help.text" -msgid "Choose Format - Align - Justified (drawing functions)." +msgid "Assigns a title to a selected Gallery object." msgstr "" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3168612\n" +"01010000.xhp\n" +"par_id3149750\n" "help.text" -msgid "Open context menu - choose Align - Justified." +msgid "Deletes the selected graphic after confirmation." msgstr "" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3156189\n" +"01020000.xhp\n" +"tit\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Context Menu of Web Pages in Read-Only Mode" +msgstr "Tīmekļa lappušu konteksta izvēlne tikai-lasīšanas režīmā" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153131\n" +"01020000.xhp\n" +"hd_id3158397\n" "help.text" -msgid "Justified" -msgstr "Abpuslīdzināts" +msgid "Context Menu of Web Pages in Read-Only Mode" +msgstr "Tīmekļa lappušu konteksta izvēlne tikai-lasīšanas režīmā" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150527\n" +"01020000.xhp\n" +"par_id3145348\n" "help.text" -msgid "Click Fontwork icon on Drawing bar." +msgid "Opens a dialog where you can save the selected graphics." msgstr "" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3144503\n" +"01020000.xhp\n" +"par_id3151262\n" "help.text" -msgid "Choose Format - Group." +msgid "Copies the link at the mouse pointer to the clipboard." msgstr "" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154854\n" +"01020000.xhp\n" +"par_id3155934\n" "help.text" -msgid "Open context menu - choose Group." +msgid "Copies a selected graphic to the clipboard." msgstr "" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3157985\n" +"01020000.xhp\n" +"par_id3145629\n" "help.text" -msgid "Choose Format - Group - Group (text documents, spreadsheets)." +msgid "If you have deactivated the graphics display, choose the Load Graphics command to make them visible." msgstr "" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3157980\n" +"01020000.xhp\n" +"par_id3150902\n" "help.text" -msgid "Choose Shape - Group - Group (drawing documents)." +msgid "Sets all graphics in the document to be invisible." msgstr "" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149508\n" +"01020000.xhp\n" +"par_id3148548\n" "help.text" -msgid "Open context menu - choose Group - Group (form objects)." +msgid "Allows you to save the background of a Web page." msgstr "" -#: 00040502.xhp -msgctxt "" -"00040502.xhp\n" -"par_id3146858\n" -"help.text" -msgid "Icon" -msgstr "Ikona" - -#: 00040502.xhp -msgctxt "" -"00040502.xhp\n" -"par_id3149593\n" -"help.text" -msgid "Group" -msgstr "Grupa" - -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153023\n" +"01050000.xhp\n" +"tit\n" "help.text" -msgid "Choose Format - Group - Ungroup (text documents, spreadsheets)." -msgstr "" +msgid "General" +msgstr "Vispārīgi" -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3163378\n" +"01050000.xhp\n" +"hd_id3158397\n" "help.text" -msgid "Choose Shape - Group - Ungroup (drawing documents)." -msgstr "" +msgid "General" +msgstr "Vispārējs" -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3156038\n" +"01050000.xhp\n" +"par_id3159242\n" "help.text" -msgid "Open context menu - choose Ungroup." +msgid "The General tab page lists the general properties of the current theme." msgstr "" -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151300\n" +"01050000.xhp\n" +"hd_id3150264\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Name" +msgstr "Nosaukums" -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146894\n" +"01050000.xhp\n" +"par_id3154094\n" "help.text" -msgid "Ungroup" -msgstr "Atgrupēt" +msgid "Displays the name of the theme. If no name has been assigned, you can type a new name in the text box." +msgstr "" -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153109\n" +"01050000.xhp\n" +"hd_id3147089\n" "help.text" -msgid "Choose Format - Group - Exit Group (text documents, spreadsheets)." -msgstr "" +msgid "Type" +msgstr "Tips" -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145678\n" +"01050000.xhp\n" +"par_id3145071\n" "help.text" -msgid "Choose Shape - Group - Exit Group (drawing documents)." -msgstr "" +msgid "Specifies the object type." +msgstr "Norāda objekta tipu." -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3152367\n" +"01050000.xhp\n" +"hd_id3147576\n" "help.text" -msgid "Open context menu - choose Exit Group." -msgstr "" +msgid "Location" +msgstr "Atrašanās vieta" -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3158402\n" +"01050000.xhp\n" +"par_id3146797\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Specifies the complete object path." +msgstr "" -#: 00040502.xhp +#: edit_menu.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155347\n" +"edit_menu.xhp\n" +"tit\n" "help.text" -msgid "Exit Group" -msgstr "Iziet no grupas" +msgid "Edit Menu" +msgstr "" -#: 00040502.xhp +#: edit_menu.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149129\n" +"edit_menu.xhp\n" +"hd_id3147273\n" "help.text" -msgid "Choose Format - Group - Enter Group (text documents, spreadsheets)." +msgid "Edit Menu" msgstr "" -#: 00040502.xhp +#: edit_menu.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145354\n" +"edit_menu.xhp\n" +"par_id3085157\n" "help.text" -msgid "Choose Shape - Group - Enter Group (drawing documents)." +msgid "Choose Edit - Undo." msgstr "" -#: 00040502.xhp +#: edit_menu.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149946\n" +"edit_menu.xhp\n" +"par_id3145160\n" "help.text" -msgid "Open context menu - choose Enter Group." +msgid "CommandCtrl+Z" msgstr "" -#: 00040502.xhp +#: edit_menu.xhp msgctxt "" -"00040502.xhp\n" -"par_id3152388\n" +"edit_menu.xhp\n" +"par_id3154094\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "On the Standard bar or Table Data bar, click" +msgstr "" -#: 00040502.xhp +#: edit_menu.xhp msgctxt "" -"00040502.xhp\n" -"par_id3152547\n" +"edit_menu.xhp\n" +"par_id3155449\n" "help.text" -msgid "Enter Group" -msgstr "Ieiet grupā" +msgid "Icon" +msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"tit\n" +"edit_menu.xhp\n" +"par_id3148563\n" "help.text" -msgid "Format Menu" -msgstr "Formatēt izvēlne" +msgid "Undo" +msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"hd_id3155757\n" +"edit_menu.xhp\n" +"par_id3145068\n" "help.text" -msgid "Format Menu" -msgstr "Formatēt izvēlne" +msgid "Choose Edit - Redo." +msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3147294\n" +"edit_menu.xhp\n" +"par_id3153897\n" "help.text" -msgid "Choose Format - Rows - Height." +msgid "On the Standard bar, click" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3149551\n" +"edit_menu.xhp\n" +"par_id3154938\n" "help.text" -msgid "Open context menu of a row header in an open database table - choose Row Height." +msgid "Icon" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3153136\n" +"edit_menu.xhp\n" +"par_id3151211\n" "help.text" -msgid "Choose Format - Columns - Width." +msgid "Redo" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3150756\n" +"edit_menu.xhp\n" +"par_id3154365\n" "help.text" -msgid "Open context menu of a column header in a database table - choose Column Width." +msgid "Choose Edit - Repeat." msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3148668\n" +"edit_menu.xhp\n" +"par_id3149765\n" "help.text" -msgid "Choose Format - Cells - Numbers tab." +msgid "Choose Edit - Cut." msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3152349\n" +"edit_menu.xhp\n" +"par_id3144762\n" "help.text" -msgid "Choose View - Styles - open context menu and choose Modify/New - Numbers tab." +msgid "CommandCtrl+X" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3161459\n" +"edit_menu.xhp\n" +"par_id3148744\n" "help.text" -msgid "Open context menu for a column header in an open database table - choose Column Format - Format tab." +msgid "On the Standard bar, click" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3147531\n" +"edit_menu.xhp\n" +"par_id3145173\n" "help.text" -msgid "Choose Format - Axis - Y Axis - Numbers tab (Chart Documents)." +msgid "Icon" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3150823\n" +"edit_menu.xhp\n" +"par_id3154153\n" "help.text" -msgid "Also as Number Format dialog for tables and fields in text documents: Choose Format - Number Format, or choose Insert - Field - More Fields - Variables tab and select Additional formats in the Format list." +msgid "Cut" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3154923\n" +"edit_menu.xhp\n" +"par_id3150742\n" "help.text" -msgid "Choose Format - Title - Main Title - Alignment tab.Choose Format - Cells - Alignment tab." +msgid "Choose Edit - Copy." msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3149457\n" +"edit_menu.xhp\n" +"par_id3148923\n" "help.text" -msgid "Open context menu of a column header in a database table - choose Column Format - Alignment tab." +msgid "CommandCtrl+C" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3150400\n" +"edit_menu.xhp\n" +"par_id3159254\n" "help.text" -msgid "Open context menu of a row header in a database table - choose Table Format." +msgid "On the Standard bar, click" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3149650\n" +"edit_menu.xhp\n" +"par_id3154985\n" "help.text" -msgid "Open context menu of a column header in a database table - choose Column Format." +msgid "Icon" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3153799\n" +"edit_menu.xhp\n" +"par_id3150685\n" "help.text" -msgid "Context menu for a row header in an open database table - Delete Rows." +msgid "Copy" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3150495\n" +"edit_menu.xhp\n" +"par_id3159153\n" "help.text" -msgid "Choose Shape - Flip ($[officename] Draw)." +msgid "Choose Edit - Paste." msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3155742\n" +"edit_menu.xhp\n" +"par_id3155860\n" "help.text" -msgid "Choose Format - Image - Properties - Image tab." +msgid "CommandCtrl+V" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3158407\n" +"edit_menu.xhp\n" +"par_id3159083\n" "help.text" -msgid "Open context menu - choose Flip (presentation documents)." +msgid "On the Standard bar, click" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3150290\n" +"edit_menu.xhp\n" +"par_id3156106\n" "help.text" -msgid "Choose Shape - Flip - Vertically ($[officename] Draw)." +msgid "Icon" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3153179\n" +"edit_menu.xhp\n" +"par_id3154471\n" "help.text" -msgid "Choose Format - Image - Properties - Image tab." +msgid "Paste" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3157960\n" +"edit_menu.xhp\n" +"par_id3152791\n" "help.text" -msgid "Open context menu - choose Flip - Vertically (presentation documents)." +msgid "Choose Edit - Paste Special." msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3153369\n" +"edit_menu.xhp\n" +"par_id3148555\n" "help.text" -msgid "Choose Shape - Flip - Horizontally ($[officename] Draw)." +msgid "Choose Edit - Select All." msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3147348\n" +"edit_menu.xhp\n" +"par_id3152417\n" "help.text" -msgid "Choose Format - Image - Properties, and then click the Image tab." +msgid "CommandCtrl+A" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3156106\n" +"edit_menu.xhp\n" +"par_id3145748\n" "help.text" -msgid "Choose Format - Flip - Horizontally." +msgid "Icon" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3152578\n" +"edit_menu.xhp\n" +"par_id3153139\n" "help.text" -msgid "Right-click a selected object - choose Flip - Horizontally ($[officename] Impress)." +msgid "Select All" msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3147318\n" +"edit_menu.xhp\n" +"par_id3145251\n" "help.text" -msgid "Choose Shape - Distribution ($[officename] Draw)." +msgid "Choose Edit - Track Changes." msgstr "" -#: 00040503.xhp +#: edit_menu.xhp msgctxt "" -"00040503.xhp\n" -"par_id3149064\n" +"edit_menu.xhp\n" +"par_id3153336\n" "help.text" -msgid "Open context menu - choose Distribution ($[officename] Impress)." +msgid "Choose Edit - Track Changes - Record." msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"tit\n" +"edit_menu.xhp\n" +"par_id3150594\n" "help.text" -msgid "Showing and Hiding Docked Windows" -msgstr "Pietauvoto logu parādīšana un paslēpšana" +msgid "Choose Edit - Track Changes - Show.Choose Edit - Track Changes - Show." +msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"hd_id3085157\n" +"edit_menu.xhp\n" +"par_id3153845\n" "help.text" -msgid "Showing and Hiding Docked Windows" -msgstr "Pietauvoto logu parādīšana un paslēpšana" +msgid "Choose Edit - Track Changes - Manage." +msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"par_id3149948\n" +"edit_menu.xhp\n" +"par_id3148587\n" "help.text" -msgid "Every docked window has an icon to control the display properties of the window." +msgid "Choose Edit - Track Changes - Manage - List tab." msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"par_id3150502\n" +"edit_menu.xhp\n" +"par_id3150396\n" "help.text" -msgid "To show or hide a docked window, click the icon." +msgid "Choose Tools - AutoCorrect - Apply and Edit Changes. The AutoCorrect dialog appears.
Click the Edit Changes button and navigate to the List tab." msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"hd_id3150465\n" +"edit_menu.xhp\n" +"par_id3153878\n" "help.text" -msgid "AutoShow and AutoHide Docked Windows" -msgstr "Pietauvoto logu automātiskā parādīšana un automātiskā paslēpšana" +msgid "Choose Edit - Track Changes - Manage - Filter tab." +msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"par_id3155504\n" +"edit_menu.xhp\n" +"par_id3151281\n" "help.text" -msgid "You can click the edge of a hidden docked window to open the window." +msgid "Choose Edit - Track Changes - Merge Document." msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"par_id3153257\n" +"edit_menu.xhp\n" +"par_id3153224\n" "help.text" -msgid "The docked window closes automatically when you move the mouse pointer outside of the window." +msgid "Choose Edit - Track Changes - Compare Document." msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"par_id3154046\n" +"edit_menu.xhp\n" +"par_id3148773\n" "help.text" -msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode." +msgid "Choose Edit - Track Changes - Comment." msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"hd_id3145416\n" +"edit_menu.xhp\n" +"par_id3149488\n" "help.text" -msgid "Drag and Drop" -msgstr "Vilkt un nomest" +msgid "Choose Edit - Track Changes - Manage - List tab.
Click an entry in the list and open the context menu.
Choose Edit Comment." +msgstr "" -#: 01000000.xhp +#: edit_menu.xhp msgctxt "" -"01000000.xhp\n" -"par_id3149578\n" +"edit_menu.xhp\n" +"par_id31562971\n" "help.text" -msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode." +msgid "Choose Edit - Find." msgstr "" -#: 01010000.xhp +#: edit_menu.xhp msgctxt "" -"01010000.xhp\n" -"tit\n" +"edit_menu.xhp\n" +"par_id31545031\n" "help.text" -msgid "Gallery context menu" -msgstr "Galerijas konteksta izvēlne" +msgid "CommandCtrl+F" +msgstr "" -#: 01010000.xhp +#: edit_menu.xhp msgctxt "" -"01010000.xhp\n" -"hd_id3150672\n" +"edit_menu.xhp\n" +"par_id3156297\n" "help.text" -msgid "Gallery context menu" -msgstr "Galerijas konteksta izvēlne" +msgid "Choose Edit - Find & Replace." +msgstr "" -#: 01010000.xhp +#: edit_menu.xhp msgctxt "" -"01010000.xhp\n" -"par_id3083278\n" +"edit_menu.xhp\n" +"par_id3154503\n" "help.text" -msgid "Defines how a selected graphic object is inserted into a document." +msgid "CommandCtrl+H" msgstr "" -#: 01010000.xhp +#: edit_menu.xhp msgctxt "" -"01010000.xhp\n" -"par_id3156053\n" +"edit_menu.xhp\n" +"par_id3155083\n" "help.text" -msgid "Inserts a copy of the selected graphic object directly into the document." +msgid "On the Standard bar, click" msgstr "" -#: 01010000.xhp +#: edit_menu.xhp msgctxt "" -"01010000.xhp\n" -"par_id3149038\n" +"edit_menu.xhp\n" +"par_id3150020\n" "help.text" -msgid "Inserts the selected graphic as a link." +msgid "Icon" msgstr "" -#: 01010000.xhp +#: edit_menu.xhp msgctxt "" -"01010000.xhp\n" -"par_id3158428\n" +"edit_menu.xhp\n" +"par_id3144748\n" "help.text" -msgid "The Preview command displays the selected graphic." +msgid "Find & Replace" msgstr "" -#: 01010000.xhp +#: edit_menu.xhp msgctxt "" -"01010000.xhp\n" -"par_id3154522\n" +"edit_menu.xhp\n" +"par_id3156357\n" "help.text" -msgid "Assigns a title to a selected Gallery object." +msgid "Choose Edit - Find & Replace - Attributes." msgstr "" -#: 01010000.xhp +#: edit_menu.xhp msgctxt "" -"01010000.xhp\n" -"par_id3149750\n" +"edit_menu.xhp\n" +"par_id3153840\n" "help.text" -msgid "Deletes the selected graphic after confirmation." +msgid "Choose Edit - Find & Replace - Format button." msgstr "" -#: 01020000.xhp +#: edit_menu.xhp msgctxt "" -"01020000.xhp\n" -"tit\n" +"edit_menu.xhp\n" +"par_id3146971\n" "help.text" -msgid "Context Menu of Web Pages in Read-Only Mode" -msgstr "Tīmekļa lappušu konteksta izvēlne tikai-lasīšanas režīmā" +msgid "Choose Edit - Find & Replace - Similarity search check box, then click the Similarities button." +msgstr "" -#: 01020000.xhp +#: edit_menu.xhp msgctxt "" -"01020000.xhp\n" -"hd_id3158397\n" +"edit_menu.xhp\n" +"par_id3153709\n" "help.text" -msgid "Context Menu of Web Pages in Read-Only Mode" -msgstr "Tīmekļa lappušu konteksta izvēlne tikai-lasīšanas režīmā" +msgid "On the Table Data bar, click Find icon, then Similarity search check box,
then click the Similarities button (database table view)." +msgstr "" -#: 01020000.xhp +#: edit_menu.xhp msgctxt "" -"01020000.xhp\n" -"par_id3145348\n" +"edit_menu.xhp\n" +"par_id3150749\n" "help.text" -msgid "Opens a dialog where you can save the selected graphics." +msgid "On the Form Design bar, click Record Search icon, then Similarity search check box,
then click the Similarities button (form view)." msgstr "" -#: 01020000.xhp +#: edit_menu.xhp msgctxt "" -"01020000.xhp\n" -"par_id3151262\n" +"edit_menu.xhp\n" +"par_id3152960\n" "help.text" -msgid "Copies the link at the mouse pointer to the clipboard." +msgid "Choose View - Navigator." msgstr "" -#: 01020000.xhp +#: edit_menu.xhp msgctxt "" -"01020000.xhp\n" -"par_id3155934\n" +"edit_menu.xhp\n" +"par_id3163824\n" "help.text" -msgid "Copies a selected graphic to the clipboard." +msgid "On the Standard bar, click" msgstr "" -#: 01020000.xhp +#: edit_menu.xhp msgctxt "" -"01020000.xhp\n" -"par_id3145629\n" +"edit_menu.xhp\n" +"par_id3159183\n" "help.text" -msgid "If you have deactivated the graphics display, choose the Load Graphics command to make them visible." +msgid "Icon" msgstr "" -#: 01020000.xhp +#: edit_menu.xhp msgctxt "" -"01020000.xhp\n" -"par_id3150902\n" +"edit_menu.xhp\n" +"par_id3147359\n" "help.text" -msgid "Sets all graphics in the document to be invisible." +msgid "Navigator On/Off" msgstr "" -#: 01020000.xhp +#: edit_menu.xhp msgctxt "" -"01020000.xhp\n" -"par_id3148548\n" +"edit_menu.xhp\n" +"par_id3147338\n" "help.text" -msgid "Allows you to save the background of a Web page." +msgid "Choose Tools - Bibliography Database." msgstr "" -#: 01050000.xhp +#: edit_menu.xhp msgctxt "" -"01050000.xhp\n" -"tit\n" +"edit_menu.xhp\n" +"par_id3149281\n" "help.text" -msgid "General" -msgstr "Vispārīgi" +msgid "Choose Edit - Links." +msgstr "" -#: 01050000.xhp +#: edit_menu.xhp msgctxt "" -"01050000.xhp\n" -"hd_id3158397\n" +"edit_menu.xhp\n" +"par_id3159339\n" "help.text" -msgid "General" -msgstr "Vispārējs" +msgid "Choose Edit - Links to External Files - Modify... (DDE links only)." +msgstr "" -#: 01050000.xhp +#: edit_menu.xhp msgctxt "" -"01050000.xhp\n" -"par_id3159242\n" +"edit_menu.xhp\n" +"par_id3148927\n" "help.text" -msgid "The General tab page lists the general properties of the current theme." +msgid "Select a frame, then choose Edit - Object - Properties." msgstr "" -#: 01050000.xhp +#: edit_menu.xhp msgctxt "" -"01050000.xhp\n" -"hd_id3150264\n" +"edit_menu.xhp\n" +"par_id3156315\n" "help.text" -msgid "Name" -msgstr "Nosaukums" +msgid "Open context menu of selected frame, choose Properties." +msgstr "" -#: 01050000.xhp +#: edit_menu.xhp msgctxt "" -"01050000.xhp\n" -"par_id3154094\n" +"edit_menu.xhp\n" +"par_id3156091\n" "help.text" -msgid "Displays the name of the theme. If no name has been assigned, you can type a new name in the text box." +msgid "Choose Edit - ImageMap in Writer and Calc or Tools - ImageMap in Impress and Draw." msgstr "" -#: 01050000.xhp +#: edit_menu.xhp msgctxt "" -"01050000.xhp\n" -"hd_id3147089\n" +"edit_menu.xhp\n" +"par_id3155936\n" "help.text" -msgid "Type" -msgstr "Tips" +msgid "Choose Edit - ImageMap in Writer and Calc or Tools - ImageMap in Impress and Draw,
then select a section of the ImageMap and click Properties - Description.
" +msgstr "" -#: 01050000.xhp +#: edit_menu.xhp msgctxt "" -"01050000.xhp\n" -"par_id3145071\n" +"edit_menu.xhp\n" +"par_id3149259\n" "help.text" -msgid "Specifies the object type." -msgstr "Norāda objekta tipu." +msgid "Choose Edit - Object." +msgstr "" -#: 01050000.xhp +#: edit_menu.xhp msgctxt "" -"01050000.xhp\n" -"hd_id3147576\n" +"edit_menu.xhp\n" +"par_id3154966\n" "help.text" -msgid "Location" -msgstr "Atrašanās vieta" +msgid "Choose Edit - Object - Edit, also in the context menu of selected object." +msgstr "" -#: 01050000.xhp +#: edit_menu.xhp msgctxt "" -"01050000.xhp\n" -"par_id3146797\n" +"edit_menu.xhp\n" +"par_id3149565\n" "help.text" -msgid "Specifies the complete object path." +msgid "Choose Edit - Object - Open." msgstr "" #: icon_alt.xhp diff --git a/source/lv/helpcontent2/source/text/shared/guide.po b/source/lv/helpcontent2/source/text/shared/guide.po index 17bd269b253..ec574b09ae2 100644 --- a/source/lv/helpcontent2/source/text/shared/guide.po +++ b/source/lv/helpcontent2/source/text/shared/guide.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2018-11-14 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3091,25 +3091,945 @@ msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111writer\n" +"par_writer0\n" "help.text" -msgid "" +msgid "AbiWord Document" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222writer\n" +"par_writer1\n" "help.text" -msgid "" +msgid "application/x-abiword" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333writer\n" +"par_writer3\n" "help.text" -msgid "" +msgid "Apple Pages" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer4\n" +"help.text" +msgid "application/x-iwork-pages-sffpages" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer6\n" +"help.text" +msgid "BroadBand eBook" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer7\n" +"help.text" +msgid "application/x-sony-bbeb" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer9\n" +"help.text" +msgid "ClarisWorks/AppleWorks Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer10\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer12\n" +"help.text" +msgid "EPUB Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer13\n" +"help.text" +msgid "application/epub+zip" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer15\n" +"help.text" +msgid "FictionBook 2.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer16\n" +"help.text" +msgid "application/x-fictionbook+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer18\n" +"help.text" +msgid "HTML Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer19\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer21\n" +"help.text" +msgid "HTML Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer22\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer24\n" +"help.text" +msgid "Hangul WP 97" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer25\n" +"help.text" +msgid "application/x-hwp" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer27\n" +"help.text" +msgid "Help content" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer28\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer30\n" +"help.text" +msgid "Legacy Mac Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer31\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer33\n" +"help.text" +msgid "Legacy StarOffice Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer34\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer36\n" +"help.text" +msgid "LotusWordPro Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer37\n" +"help.text" +msgid "application/vnd.lotus-wordpro" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer39\n" +"help.text" +msgid "MS Word 95 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer40\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer42\n" +"help.text" +msgid "MacWrite Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer43\n" +"help.text" +msgid "application/macwriteii" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer45\n" +"help.text" +msgid "Mariner Write Mac Classic v1.6 - v3.5" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer48\n" +"help.text" +msgid "Microsoft Excel 4.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer49\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer51\n" +"help.text" +msgid "Microsoft Excel 5.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer52\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer54\n" +"help.text" +msgid "Microsoft Excel 95" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer55\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer57\n" +"help.text" +msgid "Microsoft WinWord 1/2/5" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer58\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer60\n" +"help.text" +msgid "Microsoft Word 6.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer61\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer63\n" +"help.text" +msgid "Microsoft Word 95" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer64\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer66\n" +"help.text" +msgid "Microsoft Word for DOS" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer67\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer69\n" +"help.text" +msgid "Microsoft Word for Mac (v1 - v5)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer70\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer72\n" +"help.text" +msgid "Microsoft Works Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer73\n" +"help.text" +msgid "application/vnd.ms-works" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer75\n" +"help.text" +msgid "Microsoft Works for Mac Document (v1 - v4)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer76\n" +"help.text" +msgid "application/vnd.ms-works" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer78\n" +"help.text" +msgid "Microsoft Write" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer79\n" +"help.text" +msgid "application/x-mswrite" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer81\n" +"help.text" +msgid "Office Open XML Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer82\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer84\n" +"help.text" +msgid "Office Open XML Text Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer85\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer87\n" +"help.text" +msgid "OpenDocument Text (Flat XML)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer88\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-flat-xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer90\n" +"help.text" +msgid "OpenOffice.org 1.0 Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer91\n" +"help.text" +msgid "application/vnd.sun.xml.writer" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer93\n" +"help.text" +msgid "OpenOffice.org 1.0 Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer94\n" +"help.text" +msgid "application/vnd.sun.xml.writer" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer96\n" +"help.text" +msgid "OpenOffice.org 1.0 Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer97\n" +"help.text" +msgid "application/vnd.sun.xml.writer" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer99\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer100\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer102\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer103\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer105\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer106\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer108\n" +"help.text" +msgid "Palm Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer109\n" +"help.text" +msgid "application/vnd.palm" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer111\n" +"help.text" +msgid "PalmDoc eBook" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer112\n" +"help.text" +msgid "application/x-aportisdoc" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer114\n" +"help.text" +msgid "Plucker eBook" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer115\n" +"help.text" +msgid "application/prs.plucker" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer117\n" +"help.text" +msgid "Rich Text Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer118\n" +"help.text" +msgid "application/rtf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer120\n" +"help.text" +msgid "T602 Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer121\n" +"help.text" +msgid "application/x-t602" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer123\n" +"help.text" +msgid "Text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer124\n" +"help.text" +msgid "text/plain" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer126\n" +"help.text" +msgid "Text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer127\n" +"help.text" +msgid "text/plain" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer129\n" +"help.text" +msgid "Text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer130\n" +"help.text" +msgid "text/plain" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer132\n" +"help.text" +msgid "Word 2007–2019" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer133\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer135\n" +"help.text" +msgid "Word 2007–2019 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer136\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer138\n" +"help.text" +msgid "Word 2007–2019 VBA" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer139\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer141\n" +"help.text" +msgid "Word 97–2000 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer142\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer144\n" +"help.text" +msgid "Word 97–2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer145\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer147\n" +"help.text" +msgid "WordPerfect Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer148\n" +"help.text" +msgid "application/vnd.wordperfect" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer150\n" +"help.text" +msgid "WriteNow Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer153\n" +"help.text" +msgid "Writer 6.0 Master Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer154\n" +"help.text" +msgid "application/vnd.sun.xml.writer.global" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer156\n" +"help.text" +msgid "Writer 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer157\n" +"help.text" +msgid "application/vnd.sun.xml.writer.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer159\n" +"help.text" +msgid "Writer 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer160\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer162\n" +"help.text" +msgid "Writer 8 Master Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer163\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-master" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer165\n" +"help.text" +msgid "Writer 8 Master Document Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer166\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-master-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer168\n" +"help.text" +msgid "Writer 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer169\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer171\n" +"help.text" +msgid "Writer Layout Dump" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer172\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer174\n" +"help.text" +msgid "Writer/Web 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer175\n" +"help.text" +msgid "application/vnd.sun.xml.writer.web" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer177\n" +"help.text" +msgid "Writer/Web 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer178\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-web" msgstr "" #: convertfilters.xhp @@ -3117,239 +4037,2399 @@ msgctxt "" "convertfilters.xhp\n" "bm_000calc\n" "help.text" -msgid "command line document conversion; filters for CALC" +msgid "command line document conversion; filters for CALC" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000calc\n" +"help.text" +msgid "Filters for CALC" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc0\n" +"help.text" +msgid "Apple Numbers" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc1\n" +"help.text" +msgid "application/x-iwork-numbers-sffnumbers" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc3\n" +"help.text" +msgid "Calc 6.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc4\n" +"help.text" +msgid "application/vnd.sun.xml.calc" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc6\n" +"help.text" +msgid "Calc 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc7\n" +"help.text" +msgid "application/vnd.sun.xml.calc.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc9\n" +"help.text" +msgid "Calc 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc10\n" +"help.text" +msgid "application/vnd.oasis.opendocument.spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc12\n" +"help.text" +msgid "Calc 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc13\n" +"help.text" +msgid "application/vnd.oasis.opendocument.spreadsheet-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc15\n" +"help.text" +msgid "ClarisResolve Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc16\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc18\n" +"help.text" +msgid "ClarisWorks/AppleWorks Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc19\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc21\n" +"help.text" +msgid "Data Interchange Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc22\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc24\n" +"help.text" +msgid "Excel 2007–2019" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc25\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc27\n" +"help.text" +msgid "Excel 2007–2019 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc28\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc30\n" +"help.text" +msgid "Excel 97–2000 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc31\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc33\n" +"help.text" +msgid "Excel 97–2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc34\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc36\n" +"help.text" +msgid "Gnumeric Spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc37\n" +"help.text" +msgid "application/x-gnumeric" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc39\n" +"help.text" +msgid "HTML Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc40\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc42\n" +"help.text" +msgid "HTML Table" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc43\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc45\n" +"help.text" +msgid "Legacy Mac Database" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc46\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc48\n" +"help.text" +msgid "Legacy Mac Spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc49\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc51\n" +"help.text" +msgid "Legacy StarOffice Spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc52\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc54\n" +"help.text" +msgid "Lotus" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc55\n" +"help.text" +msgid "application/vnd.lotus-1-2-3" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc57\n" +"help.text" +msgid "Lotus Wk1-Wk3" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc58\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc60\n" +"help.text" +msgid "MS Excel 4.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc61\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc63\n" +"help.text" +msgid "MS Excel 5.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc64\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc66\n" +"help.text" +msgid "MS Excel 95 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc67\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc69\n" +"help.text" +msgid "Microsoft Excel 2007 Binary" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc70\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc72\n" +"help.text" +msgid "Microsoft Excel 2007-2016 VBA XML" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc73\n" +"help.text" +msgid "application/vnd.ms-excel.sheet.macroEnabled.12" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc75\n" +"help.text" +msgid "Microsoft Excel 4.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc76\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc78\n" +"help.text" +msgid "Microsoft Excel 5.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc79\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc81\n" +"help.text" +msgid "Microsoft Excel 95" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc82\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc84\n" +"help.text" +msgid "Microsoft Multiplan" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc85\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc87\n" +"help.text" +msgid "Microsoft Works Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc88\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc90\n" +"help.text" +msgid "Microsoft Works for Mac Document (v1 - v4)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc91\n" +"help.text" +msgid "application/vnd.ms-works" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc93\n" +"help.text" +msgid "Office Open XML Spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc94\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc96\n" +"help.text" +msgid "Office Open XML Spreadsheet Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc97\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc99\n" +"help.text" +msgid "OpenDocument Spreadsheet (Flat XML)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc100\n" +"help.text" +msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc102\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc103\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc105\n" +"help.text" +msgid "Quattro Pro 6.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc106\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc108\n" +"help.text" +msgid "QuattroPro Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc109\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc111\n" +"help.text" +msgid "Rich Text Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc112\n" +"help.text" +msgid "application/rtf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc114\n" +"help.text" +msgid "SYLK" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc115\n" +"help.text" +msgid "text/spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc117\n" +"help.text" +msgid "Text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc118\n" +"help.text" +msgid "text/plain" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc120\n" +"help.text" +msgid "dBASE" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc121\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000impress\n" +"help.text" +msgid "command line document conversion; filters for IMPRESS" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000impress\n" +"help.text" +msgid "Filters for IMPRESS" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress0\n" +"help.text" +msgid "Apple Keynote" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress1\n" +"help.text" +msgid "application/x-iwork-keynote-sffkey" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress3\n" +"help.text" +msgid "ClarisWorks/AppleWorks Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress4\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress6\n" +"help.text" +msgid "Draw 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress7\n" +"help.text" +msgid "application/vnd.oasis.opendocument.graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress9\n" +"help.text" +msgid "Impress 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress10\n" +"help.text" +msgid "application/vnd.sun.xml.impress.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress12\n" +"help.text" +msgid "Impress 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress13\n" +"help.text" +msgid "application/vnd.oasis.opendocument.presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress15\n" +"help.text" +msgid "Impress 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress16\n" +"help.text" +msgid "application/vnd.oasis.opendocument.presentation-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress18\n" +"help.text" +msgid "Legacy Mac Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress19\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress21\n" +"help.text" +msgid "Legacy StarOffice Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress22\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress24\n" +"help.text" +msgid "Microsoft PowerPoint 1-4" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress25\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress27\n" +"help.text" +msgid "Office Open XML Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress28\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress30\n" +"help.text" +msgid "Office Open XML Presentation AutoPlay" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress31\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress33\n" +"help.text" +msgid "Office Open XML Presentation Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress34\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress36\n" +"help.text" +msgid "OpenDocument Presentation (Flat XML)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress37\n" +"help.text" +msgid "application/vnd.oasis.opendocument.presentation-flat-xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress39\n" +"help.text" +msgid "OpenOffice.org 1.0 Drawing" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress40\n" +"help.text" +msgid "application/vnd.sun.xml.draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress42\n" +"help.text" +msgid "OpenOffice.org 1.0 Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress43\n" +"help.text" +msgid "application/vnd.sun.xml.impress" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress45\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress46\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress48\n" +"help.text" +msgid "PowerPoint 2007–2019" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress49\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress51\n" +"help.text" +msgid "PowerPoint 2007–2019" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress52\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress54\n" +"help.text" +msgid "PowerPoint 2007–2019 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress55\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress57\n" +"help.text" +msgid "PowerPoint 2007–2019 VBA" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress58\n" +"help.text" +msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress60\n" +"help.text" +msgid "PowerPoint 97–2000 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress61\n" +"help.text" +msgid "application/vnd.ms-powerpoint" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress63\n" +"help.text" +msgid "PowerPoint 97–2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress64\n" +"help.text" +msgid "application/vnd.ms-powerpoint" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress66\n" +"help.text" +msgid "PowerPoint 97–2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress67\n" +"help.text" +msgid "application/vnd.ms-powerpoint" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000draw\n" +"help.text" +msgid "command line document conversion; filters for DRAW" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000draw\n" +"help.text" +msgid "Filters for DRAW" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw0\n" +"help.text" +msgid "Adobe PageMaker" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw1\n" +"help.text" +msgid "application/x-pagemaker" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw3\n" +"help.text" +msgid "Adobe/Macromedia Freehand" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw4\n" +"help.text" +msgid "image/x-freehand" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw6\n" +"help.text" +msgid "ClarisWorks/AppleWorks Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw7\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw9\n" +"help.text" +msgid "Corel Draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw10\n" +"help.text" +msgid "application/vnd.corel-draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw12\n" +"help.text" +msgid "Corel Presentation Exchange" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw13\n" +"help.text" +msgid "image/x-cmx" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw15\n" +"help.text" +msgid "Draw 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw16\n" +"help.text" +msgid "application/vnd.sun.xml.draw.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw18\n" +"help.text" +msgid "Draw 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw19\n" +"help.text" +msgid "application/vnd.oasis.opendocument.graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw21\n" +"help.text" +msgid "Draw 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw22\n" +"help.text" +msgid "application/vnd.oasis.opendocument.graphics-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw24\n" +"help.text" +msgid "Legacy Mac Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw25\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw27\n" +"help.text" +msgid "Legacy Mac Drawing" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw28\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw30\n" +"help.text" +msgid "Legacy StarOffice Drawing" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw31\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw33\n" +"help.text" +msgid "Microsoft Publisher 2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw34\n" +"help.text" +msgid "application/x-mspublisher" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw36\n" +"help.text" +msgid "Microsoft Visio" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw37\n" +"help.text" +msgid "application/vnd.visio" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw39\n" +"help.text" +msgid "OpenDocument Drawing (Flat XML)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw40\n" +"help.text" +msgid "application/vnd.oasis.opendocument.graphics-flat-xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw42\n" +"help.text" +msgid "OpenOffice.org 1.0 Drawing" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw43\n" +"help.text" +msgid "application/vnd.sun.xml.draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw45\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw46\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw48\n" +"help.text" +msgid "QuarkXPress" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw49\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw51\n" +"help.text" +msgid "WordPerfect Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw52\n" +"help.text" +msgid "image/x-wpg" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw54\n" +"help.text" +msgid "Zoner Callisto/Draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw55\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000math\n" +"help.text" +msgid "command line document conversion; filters for MATH" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000math\n" +"help.text" +msgid "Filters for MATH" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math0\n" +"help.text" +msgid "Math 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math1\n" +"help.text" +msgid "application/vnd.oasis.opendocument.formula" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math3\n" +"help.text" +msgid "MathML 2.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math4\n" +"help.text" +msgid "application/mathml+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math6\n" +"help.text" +msgid "MathType3.x" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math7\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math9\n" +"help.text" +msgid "OpenOffice.org 1.0 Formula" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math10\n" +"help.text" +msgid "application/vnd.sun.xml.math" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math12\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math13\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000base\n" +"help.text" +msgid "command line document conversion; filters for BASE" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000base\n" +"help.text" +msgid "Filters for BASE" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_base0\n" +"help.text" +msgid "OpenDocument Database" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_base1\n" +"help.text" +msgid "application/vnd.sun.xml.base" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000graphicfilter\n" +"help.text" +msgid "command line document conversion; filters for GRAPHICFILTER" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000graphicfilter\n" +"help.text" +msgid "Filters for GRAPHICFILTER" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter0\n" +"help.text" +msgid "BMP - Windows Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter1\n" +"help.text" +msgid "image/x-MS-bmp" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter3\n" +"help.text" +msgid "BMP - Windows Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter4\n" +"help.text" +msgid "image/x-MS-bmp" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter6\n" +"help.text" +msgid "CGM - Computer Graphics Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter7\n" +"help.text" +msgid "image/cgm" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter9\n" +"help.text" +msgid "DXF - AutoCAD Interchange Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter10\n" +"help.text" +msgid "image/vnd.dxf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter12\n" +"help.text" +msgid "EMF - Enhanced Meta File" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter13\n" +"help.text" +msgid "image/x-emf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter15\n" +"help.text" +msgid "EMF - Enhanced Meta File" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter16\n" +"help.text" +msgid "image/x-emf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter18\n" +"help.text" +msgid "EPS - Encapsulated PostScript" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter19\n" +"help.text" +msgid "image/x-eps" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter21\n" +"help.text" +msgid "EPS - Encapsulated PostScript" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter22\n" +"help.text" +msgid "image/x-eps" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter24\n" +"help.text" +msgid "GIF - Graphics Interchange" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter25\n" +"help.text" +msgid "image/gif" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter27\n" +"help.text" +msgid "GIF - Graphics Interchange" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter28\n" +"help.text" +msgid "image/gif" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter30\n" +"help.text" +msgid "HTML" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter31\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter33\n" +"help.text" +msgid "HTML" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter34\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter36\n" +"help.text" +msgid "JPEG - Joint Photographic Experts Group" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter37\n" +"help.text" +msgid "image/jpeg" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter39\n" +"help.text" +msgid "JPEG - Joint Photographic Experts Group" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter40\n" +"help.text" +msgid "image/jpeg" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter42\n" +"help.text" +msgid "JPEG - Joint Photographic Experts Group" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter43\n" +"help.text" +msgid "image/jpeg" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter45\n" +"help.text" +msgid "MET - OS/2 Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter46\n" +"help.text" +msgid "image/x-met" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter48\n" +"help.text" +msgid "MET - OS/2 Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter49\n" +"help.text" +msgid "image/x-met" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter51\n" +"help.text" +msgid "MOV - QuickTime File Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter52\n" +"help.text" +msgid "application/movie" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter54\n" +"help.text" +msgid "Macromedia Flash (SWF)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter55\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter57\n" +"help.text" +msgid "Macromedia Flash (SWF)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter58\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter60\n" +"help.text" +msgid "PBM - Portable Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter61\n" +"help.text" +msgid "image/x-portable-bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter63\n" +"help.text" +msgid "PBM - Portable Bitmap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000calc\n" +"par_graphicfilter64\n" "help.text" -msgid "Filters for CALC" +msgid "image/x-portable-bitmap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111calc\n" +"par_graphicfilter66\n" "help.text" -msgid "" +msgid "PCD - Photo CD Base" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222calc\n" +"par_graphicfilter67\n" "help.text" -msgid "" +msgid "image/x-photo-cd" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333calc\n" +"par_graphicfilter69\n" "help.text" -msgid "" +msgid "PCD - Photo CD Base16" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000impress\n" +"par_graphicfilter70\n" "help.text" -msgid "command line document conversion; filters for IMPRESS" +msgid "image/x-photo-cd" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000impress\n" +"par_graphicfilter72\n" "help.text" -msgid "Filters for IMPRESS" +msgid "PCD - Photo CD Base4" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111impress\n" +"par_graphicfilter73\n" "help.text" -msgid "" +msgid "image/x-photo-cd" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222impress\n" +"par_graphicfilter75\n" "help.text" -msgid "" +msgid "PCT - Mac Pict" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333impress\n" +"par_graphicfilter76\n" "help.text" -msgid "" +msgid "image/x-pict" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000draw\n" +"par_graphicfilter78\n" "help.text" -msgid "command line document conversion; filters for DRAW" +msgid "PCT - Mac Pict" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000draw\n" +"par_graphicfilter79\n" "help.text" -msgid "Filters for DRAW" +msgid "image/x-pict" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111draw\n" +"par_graphicfilter81\n" "help.text" -msgid "" +msgid "PCX - Zsoft Paintbrush" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222draw\n" +"par_graphicfilter82\n" "help.text" -msgid "" +msgid "image/x-pcx" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333draw\n" +"par_graphicfilter84\n" "help.text" -msgid "" +msgid "PGM - Portable Graymap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000math\n" +"par_graphicfilter85\n" "help.text" -msgid "command line document conversion; filters for MATH" +msgid "image/x-portable-graymap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000math\n" +"par_graphicfilter87\n" "help.text" -msgid "Filters for MATH" +msgid "PGM - Portable Graymap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111math\n" +"par_graphicfilter88\n" "help.text" -msgid "" +msgid "image/x-portable-graymap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222math\n" +"par_graphicfilter90\n" "help.text" -msgid "" +msgid "PNG - Portable Network Graphic" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333math\n" +"par_graphicfilter91\n" "help.text" -msgid "" +msgid "image/png" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000base\n" +"par_graphicfilter93\n" "help.text" -msgid "command line document conversion; filters for BASE" +msgid "PNG - Portable Network Graphic" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000base\n" +"par_graphicfilter94\n" "help.text" -msgid "Filters for BASE" +msgid "image/png" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111base\n" +"par_graphicfilter96\n" "help.text" -msgid "" +msgid "PNG - Portable Network Graphic" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222base\n" +"par_graphicfilter97\n" "help.text" -msgid "" +msgid "image/png" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333base\n" +"par_graphicfilter99\n" "help.text" -msgid "" +msgid "PNG - Portable Network Graphic" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000graphicfilter\n" +"par_graphicfilter100\n" "help.text" -msgid "command line document conversion; filters for GRAPHICFILTER" +msgid "image/png" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000graphicfilter\n" +"par_graphicfilter102\n" "help.text" -msgid "Filters for GRAPHICFILTER" +msgid "PPM - Portable Pixelmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter103\n" +"help.text" +msgid "image/x-portable-pixmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter105\n" +"help.text" +msgid "PPM - Portable Pixelmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter106\n" +"help.text" +msgid "image/x-portable-pixmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter108\n" +"help.text" +msgid "PSD - Adobe Photoshop" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter109\n" +"help.text" +msgid "image/vnd.adobe.photoshop" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter111\n" +"help.text" +msgid "RAS - Sun Raster Image" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter112\n" +"help.text" +msgid "image/x-cmu-raster" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter114\n" +"help.text" +msgid "RAS - Sun Raster Image" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter115\n" +"help.text" +msgid "image/x-cmu-raster" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter117\n" +"help.text" +msgid "SVG - Scalable Vector Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter118\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter120\n" +"help.text" +msgid "SVG - Scalable Vector Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter121\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter123\n" +"help.text" +msgid "SVG - Scalable Vector Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter124\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter126\n" +"help.text" +msgid "SVG - Scalable Vector Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter127\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter129\n" +"help.text" +msgid "SVG - Scalable Vector Graphics Draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter130\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter132\n" +"help.text" +msgid "SVG - Scalable Vector Graphics Draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter133\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter135\n" +"help.text" +msgid "SVM - StarView Meta File" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter136\n" +"help.text" +msgid "image/x-svm" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter138\n" +"help.text" +msgid "SVM - StarView Meta File" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter139\n" +"help.text" +msgid "image/x-svm" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter141\n" +"help.text" +msgid "TGA - Truevision Targa" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter142\n" +"help.text" +msgid "image/x-targa" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter144\n" +"help.text" +msgid "TIFF - Tagged Image File Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter145\n" +"help.text" +msgid "image/tiff" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter147\n" +"help.text" +msgid "TIFF - Tagged Image File Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter148\n" +"help.text" +msgid "image/tiff" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter150\n" +"help.text" +msgid "WMF - Windows Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter151\n" +"help.text" +msgid "image/x-wmf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter153\n" +"help.text" +msgid "WMF - Windows Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter154\n" +"help.text" +msgid "image/x-wmf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter156\n" +"help.text" +msgid "XBM - X Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter157\n" +"help.text" +msgid "image/x-xbitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter159\n" +"help.text" +msgid "XPM - X PixMap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111graphicfilter\n" +"par_graphicfilter160\n" "help.text" -msgid "" +msgid "image/x-xpixmap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222graphicfilter\n" +"par_graphicfilter162\n" "help.text" -msgid "" +msgid "XPM - X PixMap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333graphicfilter\n" +"par_graphicfilter163\n" "help.text" -msgid "" +msgid "image/x-xpixmap" msgstr "" #: copy_drawfunctions.xhp @@ -9789,7 +12869,7 @@ msgctxt "" "imagemap.xhp\n" "par_idN1068A\n" "help.text" -msgid "With the image selected, choose Edit - ImageMap. You see the ImageMap Editor, which displays the image at the background." +msgid "With the image selected, choose Edit - ImageMap in Writer and Calc or Tools - ImageMap in Impress and Draw. You see the ImageMap Editor, which displays the image at the background." msgstr "" #: imagemap.xhp diff --git a/source/lv/helpcontent2/source/text/simpress.po b/source/lv/helpcontent2/source/text/simpress.po index dc00f59633c..ab968a5b86b 100644 --- a/source/lv/helpcontent2/source/text/simpress.po +++ b/source/lv/helpcontent2/source/text/simpress.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2017-10-04 11:30+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -96,94 +96,6 @@ msgctxt "" msgid "These commands apply to the current document, open a new document, or close the application." msgstr "Šīs komandas pielieto pašreizējam dokumentam, atver jaunu dokumentu vai aizver lietotni." -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"tit\n" -"help.text" -msgid "Edit" -msgstr "Rediģēt" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3153726\n" -"help.text" -msgid "Edit" -msgstr "Rediģēt" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"par_id3151075\n" -"help.text" -msgid "This menu contains commands for editing the contents of the current document." -msgstr "Šī izvēlne satur komandas pašreizējā dokumenta satura rediģēšanai." - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3154649\n" -"help.text" -msgid "Points" -msgstr "Punkti" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"par_id3154766\n" -"help.text" -msgid "Switches the Edit Points mode on and off." -msgstr "Ieslēdz/izslēdz režīmu Rediģēt punktus." - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3145116\n" -"help.text" -msgid "Glue Points" -msgstr "Savienojuma punkti" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"par_id3147403\n" -"help.text" -msgid "Switches the Edit Glue Points mode on and off." -msgstr "Ieslēdz/izslēdz režīmu Rediģēt savienojuma punktus." - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3150396\n" -"help.text" -msgid "Fields" -msgstr "Lauki" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3149355\n" -"help.text" -msgid "Links" -msgstr "Saites" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3145590\n" -"help.text" -msgid "ImageMap" -msgstr "Attēla karte" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id0914201502131542\n" -"help.text" -msgid "Object" -msgstr "Objekts" - #: main0103.xhp msgctxt "" "main0103.xhp\n" @@ -416,142 +328,6 @@ msgctxt "" msgid "File" msgstr "Datne" -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"tit\n" -"help.text" -msgid "Format" -msgstr "Formāts" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3152596\n" -"help.text" -msgid "Format" -msgstr "Formatēt" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"par_id3145801\n" -"help.text" -msgid "Contains commands for formatting the layout and the contents of your document." -msgstr "Satur komandas jūsu dokumenta izkārtojuma un satura formatēšanai." - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3147401\n" -"help.text" -msgid "Character" -msgstr "Rakstzīme" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3149941\n" -"help.text" -msgid "Paragraph" -msgstr "Rindkopa" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3147299\n" -"help.text" -msgid "Bullets and Numbering" -msgstr "Aizzīmes un numurēšana" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3149499\n" -"help.text" -msgid "Position and Size" -msgstr "Novietojums un izmērs" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3154510\n" -"help.text" -msgid "Line" -msgstr "Līnija" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3149021\n" -"help.text" -msgid "Area" -msgstr "Laukums" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3155961\n" -"help.text" -msgid "Text" -msgstr "Teksts" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3156286\n" -"help.text" -msgid "Slide Design" -msgstr "Slaidu dizains" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3163827\n" -"help.text" -msgid "Slide Layout" -msgstr "Slaidu izkārtojums" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"tit\n" -"help.text" -msgid "Tools" -msgstr "Rīki" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"hd_id3154017\n" -"help.text" -msgid "Tools" -msgstr "Rīki" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"par_id3155064\n" -"help.text" -msgid "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." -msgstr "" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"hd_id3153248\n" -"help.text" -msgid "AutoCorrect Options" -msgstr "Automātiskās korekcijas opcijas" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"hd_id3149130\n" -"help.text" -msgid "Customize" -msgstr "Pielāgot" - #: main0107.xhp msgctxt "" "main0107.xhp\n" @@ -720,38 +496,6 @@ msgctxt "" msgid "Custom Slide Show" msgstr "Pielāgota slīdrāde" -#: main0117.xhp -msgctxt "" -"main0117.xhp\n" -"tit\n" -"help.text" -msgid "Slide" -msgstr "Slaids" - -#: main0117.xhp -msgctxt "" -"main0117.xhp\n" -"hd_id0908201507475698\n" -"help.text" -msgid "Slide" -msgstr "Slaids" - -#: main0117.xhp -msgctxt "" -"main0117.xhp\n" -"par_id0908201507482661\n" -"help.text" -msgid "This menu provides slide management and navigation commands." -msgstr "Šī izvēlne sniedz slaidu pārvaldīšanas un navigācijas komandas." - -#: main0117.xhp -msgctxt "" -"main0117.xhp\n" -"hd_id3145801\n" -"help.text" -msgid "New Page/Slide" -msgstr "Jauna lappuse/slīde" - #: main0200.xhp msgctxt "" "main0200.xhp\n" @@ -1599,3 +1343,267 @@ msgctxt "" "help.text" msgid "$[officename] Impress gives you the choice of running a slide show automatically or manually." msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"tit\n" +"help.text" +msgid "Edit" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3153726\n" +"help.text" +msgid "Edit" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"par_id3151075\n" +"help.text" +msgid "This menu contains commands for editing the contents of the current document." +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3154649\n" +"help.text" +msgid "Points" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"par_id3154766\n" +"help.text" +msgid "Switches the Edit Points mode on and off." +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3145116\n" +"help.text" +msgid "Glue Points" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"par_id3147403\n" +"help.text" +msgid "Switches the Edit Glue Points mode on and off." +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3150396\n" +"help.text" +msgid "Fields" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id3149355\n" +"help.text" +msgid "Links" +msgstr "" + +#: main_edit.xhp +msgctxt "" +"main_edit.xhp\n" +"hd_id0914201502131542\n" +"help.text" +msgid "Object" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"tit\n" +"help.text" +msgid "Format" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3152596\n" +"help.text" +msgid "Format" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"par_id3145801\n" +"help.text" +msgid "Contains commands for formatting the layout and the contents of your document." +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3147401\n" +"help.text" +msgid "Character" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3149941\n" +"help.text" +msgid "Paragraph" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3147299\n" +"help.text" +msgid "Bullets and Numbering" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3149499\n" +"help.text" +msgid "Position and Size" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3154510\n" +"help.text" +msgid "Line" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3149021\n" +"help.text" +msgid "Area" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3155961\n" +"help.text" +msgid "Text" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3156286\n" +"help.text" +msgid "Slide Design" +msgstr "" + +#: main_format.xhp +msgctxt "" +"main_format.xhp\n" +"hd_id3163827\n" +"help.text" +msgid "Slide Layout" +msgstr "" + +#: main_slide.xhp +msgctxt "" +"main_slide.xhp\n" +"tit\n" +"help.text" +msgid "Slide" +msgstr "" + +#: main_slide.xhp +msgctxt "" +"main_slide.xhp\n" +"hd_id0908201507475698\n" +"help.text" +msgid "Slide" +msgstr "" + +#: main_slide.xhp +msgctxt "" +"main_slide.xhp\n" +"par_id0908201507482661\n" +"help.text" +msgid "This menu provides slide management and navigation commands." +msgstr "" + +#: main_slide.xhp +msgctxt "" +"main_slide.xhp\n" +"hd_id3145801\n" +"help.text" +msgid "New Slide" +msgstr "" + +#: main_slide.xhp +msgctxt "" +"main_slide.xhp\n" +"hd_id551556824896520\n" +"help.text" +msgid "Properties" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"tit\n" +"help.text" +msgid "Tools" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"hd_id3154017\n" +"help.text" +msgid "Tools" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"par_id3155064\n" +"help.text" +msgid "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." +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"hd_id3145590\n" +"help.text" +msgid "ImageMap" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"hd_id3153248\n" +"help.text" +msgid "AutoCorrect Options" +msgstr "" + +#: main_tools.xhp +msgctxt "" +"main_tools.xhp\n" +"hd_id3149130\n" +"help.text" +msgid "Customize" +msgstr "" diff --git a/source/lv/helpcontent2/source/text/simpress/00.po b/source/lv/helpcontent2/source/text/simpress/00.po index 53e5953757c..78410dbb151 100644 --- a/source/lv/helpcontent2/source/text/simpress/00.po +++ b/source/lv/helpcontent2/source/text/simpress/00.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2018-04-17 15:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -456,14 +456,6 @@ msgctxt "" msgid "Insert Menu" msgstr "Ievietot izvēlne" -#: 00000404.xhp -msgctxt "" -"00000404.xhp\n" -"par_id3147264\n" -"help.text" -msgid "Choose Insert - New Page/Slide" -msgstr "Izvēlieties Ievietot - Jauna lappuse/slaids" - #: 00000404.xhp msgctxt "" "00000404.xhp\n" @@ -1293,8 +1285,8 @@ msgctxt "" "slide_menu.xhp\n" "par_id3134264\n" "help.text" -msgid "Choose Slide - New Page/Slide" -msgstr "Izvēlieties Slaids - Jauna Lappuse/Slaids" +msgid "Choose Slide - New Slide" +msgstr "" #: slide_menu.xhp msgctxt "" @@ -1309,13 +1301,13 @@ msgctxt "" "slide_menu.xhp\n" "par_id3685251\n" "help.text" -msgid "Icon" -msgstr "Ikona" +msgid "Icon" +msgstr "" #: slide_menu.xhp msgctxt "" "slide_menu.xhp\n" "par_id7354512\n" "help.text" -msgid "New Page/Slide" -msgstr "Jauna Lappuse/Slaids" +msgid "New Slide" +msgstr "" diff --git a/source/lv/helpcontent2/source/text/simpress/01.po b/source/lv/helpcontent2/source/text/simpress/01.po index 43829cc50d0..e91836333b0 100644 --- a/source/lv/helpcontent2/source/text/simpress/01.po +++ b/source/lv/helpcontent2/source/text/simpress/01.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2018-09-03 13:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -96,38 +96,6 @@ msgctxt "" msgid "Information on Import and Export Filters" msgstr "Informācija par importa un eksporta filtriem" -#: 01180000.xhp -msgctxt "" -"01180000.xhp\n" -"tit\n" -"help.text" -msgid "Page" -msgstr "Lappuse " - -#: 01180000.xhp -msgctxt "" -"01180000.xhp\n" -"hd_id3149379\n" -"help.text" -msgid "Page" -msgstr "Lappuse " - -#: 01180000.xhp -msgctxt "" -"01180000.xhp\n" -"par_id3150717\n" -"help.text" -msgid "Sets page orientation, page margins, background and other layout options." -msgstr "" - -#: 01180000.xhp -msgctxt "" -"01180000.xhp\n" -"par_id3145587\n" -"help.text" -msgid "To change the background of all of the pages in the active file, select a background, click OK and click Yes in the Page Setup dialog." -msgstr "" - #: 01180001.xhp msgctxt "" "01180001.xhp\n" @@ -1381,8 +1349,8 @@ msgctxt "" "03070000.xhp\n" "hd_id3154018\n" "help.text" -msgid "Slide" -msgstr "Slīde" +msgid "Slide" +msgstr "" #: 03070000.xhp msgctxt "" @@ -2312,38 +2280,6 @@ msgctxt "" msgid "Shows slides in pure black or white without shading." msgstr "" -#: 04010000.xhp -msgctxt "" -"04010000.xhp\n" -"tit\n" -"help.text" -msgid "New Page/Slide" -msgstr "" - -#: 04010000.xhp -msgctxt "" -"04010000.xhp\n" -"bm_id3159155\n" -"help.text" -msgid "inserting; slidesslides; inserting" -msgstr "ievietošana; slaidislaidi; ievietošana" - -#: 04010000.xhp -msgctxt "" -"04010000.xhp\n" -"hd_id3159155\n" -"help.text" -msgid "New Page/Slide" -msgstr "Jauna lappuse/slīde" - -#: 04010000.xhp -msgctxt "" -"04010000.xhp\n" -"par_id3146119\n" -"help.text" -msgid "Inserts a slide after the currently selected slide.Inserts a page after the currently selected page." -msgstr "" - #: 04020000.xhp msgctxt "" "04020000.xhp\n" @@ -8216,6 +8152,38 @@ msgctxt "" msgid "Select the shape by its name from the list box." msgstr "" +#: new_slide.xhp +msgctxt "" +"new_slide.xhp\n" +"tit\n" +"help.text" +msgid "New Slide" +msgstr "" + +#: new_slide.xhp +msgctxt "" +"new_slide.xhp\n" +"bm_id3159155\n" +"help.text" +msgid "inserting; slidesslides; inserting" +msgstr "" + +#: new_slide.xhp +msgctxt "" +"new_slide.xhp\n" +"hd_id3159155\n" +"help.text" +msgid "New Slide" +msgstr "" + +#: new_slide.xhp +msgctxt "" +"new_slide.xhp\n" +"par_id3146119\n" +"help.text" +msgid "Inserts a slide after the currently selected slide.Inserts a slide after the currently selected slide." +msgstr "" + #: remoteconnections.xhp msgctxt "" "remoteconnections.xhp\n" @@ -8352,6 +8320,38 @@ msgctxt "" msgid "Press Remove client authorization button." msgstr "" +#: slide_properties.xhp +msgctxt "" +"slide_properties.xhp\n" +"tit\n" +"help.text" +msgid "Slide" +msgstr "" + +#: slide_properties.xhp +msgctxt "" +"slide_properties.xhp\n" +"hd_id3149379\n" +"help.text" +msgid "Slide" +msgstr "" + +#: slide_properties.xhp +msgctxt "" +"slide_properties.xhp\n" +"par_id3150717\n" +"help.text" +msgid "Sets slide orientation, slide margins, background and other layout options." +msgstr "" + +#: slide_properties.xhp +msgctxt "" +"slide_properties.xhp\n" +"par_id3145587\n" +"help.text" +msgid "To change the background of all of the slides in the active file, select a background, click OK and click Yes in the Page Setup dialog." +msgstr "" + #: slidesorter.xhp msgctxt "" "slidesorter.xhp\n" diff --git a/source/lv/helpcontent2/source/text/simpress/02.po b/source/lv/helpcontent2/source/text/simpress/02.po index 96eafbc00de..b779660c450 100644 --- a/source/lv/helpcontent2/source/text/simpress/02.po +++ b/source/lv/helpcontent2/source/text/simpress/02.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2017-10-04 11:48+0200\n" -"PO-Revision-Date: 2016-09-28 05:13+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" +"PO-Revision-Date: 2017-10-04 11:30+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1475039613.000000\n" +"X-POOTLE-MTIME: 1507116603.000000\n" #: 04010000.xhp msgctxt "" @@ -3981,8 +3981,8 @@ msgctxt "" "10110000.xhp\n" "hd_id3149028\n" "help.text" -msgid "Slide" -msgstr "Slīde" +msgid "Slide" +msgstr "" #: 10110000.xhp msgctxt "" diff --git a/source/lv/helpcontent2/source/text/swriter/01.po b/source/lv/helpcontent2/source/text/swriter/01.po index 3c061d60161..8fa19696d3e 100644 --- a/source/lv/helpcontent2/source/text/swriter/01.po +++ b/source/lv/helpcontent2/source/text/swriter/01.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2018-10-21 20:26+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15533,8 +15533,8 @@ msgctxt "" "05060100.xhp\n" "par_idN10A8E\n" "help.text" -msgid "Follow text flow" -msgstr "Sekot teksta plūsmai" +msgid "Keep inside text boundaries" +msgstr "" #: 05060100.xhp msgctxt "" @@ -15549,7 +15549,7 @@ msgctxt "" "05060100.xhp\n" "par_idN10AA6\n" "help.text" -msgid "By default, the Follow text flow option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)." +msgid "By default, the Keep inside text boundaries option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)." msgstr "" #: 05060100.xhp -- cgit