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 --- .../am/helpcontent2/source/text/sbasic/python.po | 530 +- .../am/helpcontent2/source/text/sbasic/shared.po | 8 +- source/am/helpcontent2/source/text/scalc/01.po | 442 +- source/am/helpcontent2/source/text/sdraw.po | 766 +-- source/am/helpcontent2/source/text/sdraw/00.po | 76 +- source/am/helpcontent2/source/text/sdraw/01.po | 62 +- source/am/helpcontent2/source/text/shared/00.po | 6258 ++++++++++---------- source/am/helpcontent2/source/text/shared/guide.po | 3216 +++++++++- source/am/helpcontent2/source/text/simpress.po | 522 +- source/am/helpcontent2/source/text/simpress/00.po | 22 +- source/am/helpcontent2/source/text/simpress/01.po | 134 +- source/am/helpcontent2/source/text/simpress/02.po | 8 +- source/am/helpcontent2/source/text/swriter/01.po | 10 +- 13 files changed, 8103 insertions(+), 3951 deletions(-) (limited to 'source/am/helpcontent2') diff --git a/source/am/helpcontent2/source/text/sbasic/python.po b/source/am/helpcontent2/source/text/sbasic/python.po index 3741c6d2966..d8e63d5b679 100644 --- a/source/am/helpcontent2/source/text/sbasic/python.po +++ b/source/am/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: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -149,6 +149,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" @@ -538,7 +1050,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 @@ -714,7 +1226,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 @@ -1474,7 +1986,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 @@ -1597,14 +2109,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" @@ -1618,7 +2122,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/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po index 28647c8f9b8..15ec8285325 100644 --- a/source/am/helpcontent2/source/text/sbasic/shared.po +++ b/source/am/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: 2018-10-21 20:00+0000\n" "Last-Translator: Anonymous Pootle User\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/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po index af326c07ef6..8ac5f73414b 100644 --- a/source/am/helpcontent2/source/text/scalc/01.po +++ b/source/am/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: 2018-12-20 01:13+0000\n" "Last-Translator: Samson B \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 "ቀለም(0;0;400;0) ይመልሳል ስህተት:502 (ዋጋ የሌለው ክርክር) ምክንያቱም ሰማያዊ ይበልጣል ከ 255." +#: 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 "ከሆነ E2 = ብዕር: ተግባር ይመልሳል 65: ምክንያቱም የ ክፍሉ አገናኝ በ ይዞታ ተቀይሯል" +#: 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/am/helpcontent2/source/text/sdraw.po b/source/am/helpcontent2/source/text/sdraw.po index 8d5aeedef16..f455cdb7a41 100644 --- a/source/am/helpcontent2/source/text/sdraw.po +++ b/source/am/helpcontent2/source/text/sdraw.po @@ -3,8 +3,8 @@ 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: 2017-12-18 16:08+0000\n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" +"PO-Revision-Date: 2017-10-09 14:54+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1513613336.000000\n" +"X-POOTLE-MTIME: 1507560880.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 "ይህ ዝርዝር የያዛቸው ጠቅላላ ትእዛዞች በ መሳያ ሰነድ እንዴት እንደሚሰሩ ነው: እንደ መክፈቻ መዝጊያ እና ማተሚያ ለ መዝጋት $[officename] መሳያን ይጫኑ መውጫ :" -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"tit\n" -"help.text" -msgid "Edit" -msgstr "ማረሚያ" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3150868\n" -"help.text" -msgid "Edit" -msgstr "ማረሚያ" - -#: 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 "የተለየ መለጠፊያ" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3149400\n" -"help.text" -msgid "Find & Replace" -msgstr "መፈለጊያ & መተኪያ" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3153713\n" -"help.text" -msgid "Points" -msgstr "ነጥቦች" - -#: 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 "ማያያዣ ነጥቦች" - -#: 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 "ማባዣ" - -#: 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 "ሜዳዎች" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3156446\n" -"help.text" -msgid "Links" -msgstr "አገናኞች" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3148699\n" -"help.text" -msgid "ImageMap" -msgstr "የ ምስል ካርታ" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3157867\n" -"help.text" -msgid "Hyperlink" -msgstr "Hyperlink" - #: main0103.xhp msgctxt "" "main0103.xhp\n" @@ -280,254 +160,6 @@ msgctxt "" msgid "Zoom" msgstr "ማሳያ" -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"tit\n" -"help.text" -msgid "Insert" -msgstr "ማስገቢያ" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3148797\n" -"help.text" -msgid "Insert" -msgstr "ማስገቢያ" - -#: 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 "ተንሸራታች" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3146974\n" -"help.text" -msgid "Layer" -msgstr "ደረጃ" - -#: 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 "አስተያየት" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3154018\n" -"help.text" -msgid "Special Character" -msgstr "የተለዩ ባህሪዎች" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3150749\n" -"help.text" -msgid "Hyperlink" -msgstr "Hyperlink" - -#: main0104.xhp -msgctxt "" -"main0104.xhp\n" -"hd_id3156385\n" -"help.text" -msgid "Table" -msgstr "ሰንጠረዥ" - -#: 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 "ቻርትስ ማስገቢያ" - -#: 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 "ፋይል" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"tit\n" -"help.text" -msgid "Format" -msgstr "አቀራረብ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3153770\n" -"help.text" -msgid "Format" -msgstr "አቀራረብ" - -#: 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 "ባህሪ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3146979\n" -"help.text" -msgid "Paragraph" -msgstr "አንቀጽ" - -#: 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 "ገጽ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3146971\n" -"help.text" -msgid "Position and Size" -msgstr "ቦታ እና መጠን" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3148576\n" -"help.text" -msgid "Line" -msgstr "መስመር" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3151076\n" -"help.text" -msgid "Area" -msgstr "ቦታ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3153878\n" -"help.text" -msgid "Text" -msgstr "ጽሑፍ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3153913\n" -"help.text" -msgid "Layer" -msgstr "ደረጃ" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"tit\n" -"help.text" -msgid "Tools" -msgstr "መሳሪያዎች" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"hd_id3159155\n" -"help.text" -msgid "Tools" -msgstr "መሳሪያዎች" - -#: 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 "ይህ ዝርዝር የ ያዛቸው መሳሪያዎች ለ $[officename] መሳያ እንዲሁም ቋንቋ ጋር ለመድረስ እና ስርአቱን ለማሰናዳት ነው" - -#: 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 "ማስተካከያ" - #: 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 "$[officename] መሳያ በርካታ የንድፍ ፋይሎች መላክ ያስችላል ለምሳሌ እንደ BMP, GIF, JPG, እና PNG." + +#: 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/am/helpcontent2/source/text/sdraw/00.po b/source/am/helpcontent2/source/text/sdraw/00.po index 71ec3ed37a2..43ea196e10e 100644 --- a/source/am/helpcontent2/source/text/sdraw/00.po +++ b/source/am/helpcontent2/source/text/sdraw/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: 2017-05-09 16:45+0200\n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" "PO-Revision-Date: 2017-05-29 14:19+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1496067568.000000\n" #: 00000004.xhp @@ -31,3 +31,75 @@ msgctxt "" "help.text" msgid "To access this command..." msgstr "ይህን ትእዛዝ ለ መፈጸም..." + +#: 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/am/helpcontent2/source/text/sdraw/01.po b/source/am/helpcontent2/source/text/sdraw/01.po index 7da59960251..a38db03be81 100644 --- a/source/am/helpcontent2/source/text/sdraw/01.po +++ b/source/am/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-05-02 05:53+0000\n" -"Last-Translator: Samson B \n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" +"PO-Revision-Date: 2017-05-09 15:28+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,28 +14,60 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462168431.000000\n" +"X-POOTLE-MTIME: 1494343722.000000\n" -#: 04010000.xhp +#: new_page.xhp msgctxt "" -"04010000.xhp\n" +"new_page.xhp\n" "tit\n" "help.text" -msgid "Insert Page" -msgstr "ገጽ ማስገቢያ" +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 "ገጽ ማስገቢያ" +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 "ከተመረጠው ገጽ በኋላ ባዶ ገጽ ያስገባል" +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/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po index 06f10eff2cc..09bb862b9c5 100644 --- a/source/am/helpcontent2/source/text/shared/00.po +++ b/source/am/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-17 21:27+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" @@ -6344,6173 +6344,6173 @@ 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 "ዝርዝር ማረሚያ" +msgid "View Menu" +msgstr "ዝርዝር መመልከቻ" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"hd_id3147273\n" +"00000403.xhp\n" +"hd_id3156304\n" "help.text" -msgid "Edit Menu" -msgstr "ዝርዝር ማረሚያ" +msgid "View Menu" +msgstr "ዝርዝር መመልከቻ" -#: 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 "ትእዛዝCtrl+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 "ምልክት" +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 "መተው" +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 "ምልክት" +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 "እንደገና መስሪያ" +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 "ትእዛዝCtrl+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 "ምልክት" +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 "መቁረጫ" +msgid "Shift+CommandCtrl+J" +msgstr "Shift+ትእዛዝCtrl+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 "ምልክት" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3148923\n" +"00000403.xhp\n" +"par_id3153627\n" "help.text" -msgid "CommandCtrl+C" -msgstr "ትእዛዝCtrl+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" -msgstr "" +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 "ምልክት" +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 "ኮፒ" +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 "ምልክት" -#: 00000402.xhp +#: 00000403.xhp msgctxt "" -"00000402.xhp\n" -"par_id3155860\n" +"00000403.xhp\n" +"par_id3146908\n" "help.text" -msgid "CommandCtrl+V" -msgstr "ትእዛዝCtrl+V" +msgid "Data Sources" +msgstr "የ ዳታ ምንጮች" -#: 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 "ምልክት" +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 "መለጠፊያ" +msgid "Icon" +msgstr "ምልክት" -#: 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 ምንጭ" -#: 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 "ትእዛዝCtrl+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 "ምልክት" +msgid "Insert Menu" +msgstr "ዝርዝር ማስገቢያ" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3153139\n" +"00000404.xhp\n" +"hd_id3156324\n" "help.text" -msgid "Select All" -msgstr "ሁሉንም መምረጫ" +msgid "Insert Menu" +msgstr "ዝርዝር ማስገቢያ" -#: 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 "ምልክት" -#: 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 "የተለዩ ባህሪዎች" -#: 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." -msgstr "" +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 "ትእዛዝCtrl+F" +msgid "Audio or Video" +msgstr "ድምፅ ወይንም ቪዲዮ" -#: 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 "ትእዛዝCtrl+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 "ምልክት" +msgid "Icon" +msgstr "ምልክት" -#: 00000402.xhp +#: 00000404.xhp msgctxt "" -"00000402.xhp\n" -"par_id3144748\n" +"00000404.xhp\n" +"par_id3145417\n" "help.text" -msgid "Find & Replace" -msgstr "መፈለጊያ & መቀየሪያ" +msgid "OLE Object" +msgstr "የ OLE እቃ" -#: 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 "ምልክት" -#: 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 "መቀመሪያ" -#: 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 "ምልክት" +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 "መቃኛ ማብሪያ/ማጥፊያ" +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 "ምልክት" -#: 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 "ቻርትስ" -#: 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 "ምልክት" -#: 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." -msgstr "" +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 "ዝርዝር መመልከቻ" +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 "ዝርዝር መመልከቻ" +msgid "Icon" +msgstr "ምልክት" -#: 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 "ተንሳፋፊ ክፈፍ" -#: 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 "ምልክት" -#: 00000403.xhp -msgctxt "" -"00000403.xhp\n" -"par_id3156183\n" -"help.text" -msgid "Choose View - Toolbars." -msgstr "" - -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3166445\n" +"00000404.xhp\n" +"par_idN10DD1\n" "help.text" -msgid "Choose View - Toolbars - Standard." -msgstr "" +msgid "Fontwork Gallery" +msgstr "የ ፊደል ስራ አዳራሽ" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153748\n" +"00000404.xhp\n" +"par_idN10EA9\n" "help.text" -msgid "Choose View - Toolbars - Tools." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3154317\n" +"00000404.xhp\n" +"par_idN10ED8\n" "help.text" -msgid "Choose View - Status Bar." -msgstr "" +msgid "Basic Shapes" +msgstr "መሰረታዊ ቅርጾች" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3152780\n" +"00000404.xhp\n" +"par_idN10EEE\n" "help.text" -msgid "Choose View - Toolbars - Color Bar." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3157909\n" +"00000404.xhp\n" +"par_idN10F1D\n" "help.text" -msgid "Click Hyperlink icon on Standard bar, click Internet." -msgstr "" +msgid "Symbol Shapes" +msgstr "የ ምልክት ቅርጾች" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3146806\n" +"00000404.xhp\n" +"par_idN10F33\n" "help.text" -msgid "Choose Insert - Hyperlink." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153717\n" +"00000404.xhp\n" +"par_idN10F62\n" "help.text" -msgid "Click Hyperlink icon on Standard bar, click Mail." -msgstr "" +msgid "Block Arrows" +msgstr "መከልከያ ቀስቶች" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3149415\n" +"00000404.xhp\n" +"par_idN10F78\n" "help.text" -msgid "Click Hyperlink icon on Standard bar, click Document." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3150129\n" +"00000404.xhp\n" +"par_idN10FA7\n" "help.text" -msgid "Click Hyperlink icon on Standard bar, click New Document." -msgstr "" +msgid "Flowcharts" +msgstr "የ ሂደት መቆጣጠሪያ" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3159269\n" +"00000404.xhp\n" +"par_idN10FBD\n" "help.text" -msgid "Choose View - Full Screen." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3149578\n" +"00000404.xhp\n" +"par_idN10FEC\n" "help.text" -msgid "Shift+CommandCtrl+J" -msgstr "Shift+ትእዛዝCtrl+J" +msgid "Callouts" +msgstr "መጥሪያዎች" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153257\n" +"00000404.xhp\n" +"par_idN11002\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Icon" +msgstr "ምልክት" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153627\n" +"00000404.xhp\n" +"par_idN11031\n" "help.text" -msgid "Full Screen (in Print Preview)" -msgstr "በ ሙሉ መመልከቻ ዘዴ (በ ማተሚያ ቅድመ እይታ)" +msgid "Stars" +msgstr "ኮከቦች" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3147559\n" +"00000406.xhp\n" +"tit\n" "help.text" -msgid "If a text document or spreadsheet is open:" -msgstr "የ ጽሁፍ ሰነድ ወይንም ሰንጠረዥ ከተከፈተ:" +msgid "Tools Menu" +msgstr "የ መሳሪያዎች ዝርዝር" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3145069\n" +"00000406.xhp\n" +"hd_id3160447\n" "help.text" -msgid "Menu View - Data Sources." -msgstr "" +msgid "Tools Menu" +msgstr "የ መሳሪያዎች ዝርዝር" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3149046\n" +"00000406.xhp\n" +"par_id3146765\n" "help.text" -msgid "CommandCtrl+Shift+F4 keys" +msgid "Choose Insert - Media - Clip Art Gallery or open Standard bar, click" msgstr "" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153778\n" +"00000406.xhp\n" +"par_id3153323\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Icon" +msgstr "ምልክት" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3146908\n" +"00000406.xhp\n" +"par_id3153551\n" "help.text" -msgid "Data Sources" -msgstr "የ ዳታ ምንጮች" +msgid "Gallery" +msgstr "አዳራሽ" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3154140\n" +"00000406.xhp\n" +"par_id3146957\n" "help.text" -msgid "Choose View - HTML Source." +msgid "Choose Tools - Gallery or click the Gallery icon on the Standard bar -
New Theme button - Files tab.
" msgstr "" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3154947\n" +"00000406.xhp\n" +"par_id3166411\n" "help.text" -msgid "Open context menu in an HTML document." -msgstr "" +msgid "Choose Tools - Spelling." +msgstr "ይምረጡ መሳሪያዎች - ፊደል ማረሚያ " -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3152935\n" +"00000406.xhp\n" +"par_id3148538\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "F7 key" +msgstr "F7 ቁልፍ" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3144448\n" +"00000406.xhp\n" +"par_id3155628\n" "help.text" -msgid "HTML Source" -msgstr "የ HTML ምንጭ" +msgid "On the Standard bar, click" +msgstr "" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_idN1091B\n" +"00000406.xhp\n" +"par_id3153824\n" "help.text" -msgid "Choose View - Grid and Helplines (Impress or Draw)." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_idN1092E\n" +"00000406.xhp\n" +"par_id3157809\n" "help.text" -msgid "Choose View - Snap Guides (Impress or Draw)." -msgstr "" +msgid "Spelling" +msgstr "ፊደል ማረሚያ" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"tit\n" +"00000406.xhp\n" +"par_id3156326\n" "help.text" -msgid "Insert Menu" -msgstr "ዝርዝር ማስገቢያ" +msgid "Choose Tools - Language - Hangul/Hanja Conversion. Asian language support must be enabled." +msgstr "ይምረጡ መሳሪያዎች - ቋንቋ - ሀንጉል/ሀንጃ መቀየሪያ የ እስያ ቋንቋ ድጋፍ ማስቻል አለብዎት" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"hd_id3156324\n" -"help.text" -msgid "Insert Menu" -msgstr "ዝርዝር ማስገቢያ" - -#: 00000404.xhp -msgctxt "" -"00000404.xhp\n" -"par_id3153808\n" +"00000406.xhp\n" +"par_idN10705\n" "help.text" -msgid "Choose Insert - Comment." -msgstr "" +msgid "Choose Tools - Language - Chinese Conversion. Asian language support must be enabled." +msgstr "ይምረጡ መሳሪያዎች - ቋንቋ - ቻይንኛ መቀየሪያ የ እስያ ቋንቋ ድጋፍ ማስቻል አለብዎት" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155619\n" +"00000406.xhp\n" +"par_idN1071E\n" "help.text" -msgid "Choose Insert - Media - Scan." -msgstr "" +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_id3150502\n" +"00000406.xhp\n" +"par_id3155419\n" "help.text" -msgid "Choose Insert - Media - Scan - Select Source." -msgstr "" +msgid "Choose Tools - Spelling." +msgstr "ይምረጡ መሳሪያዎች - ፊደል ማረሚያ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155934\n" +"00000406.xhp\n" +"par_id3150771\n" "help.text" -msgid "Choose Insert - Media - Scan - Request." -msgstr "" +msgid "Choose Tools - Spelling, then click Options." +msgstr "ይምረጡ መሳሪያዎች - ፊደል ማረሚያ እና ከዛ ይጫኑ ምርጫዎች " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3143281\n" +"00000406.xhp\n" +"par_id3151338\n" "help.text" -msgid "Choose Insert - Special Character." +msgid "Choose Tools - Language - Thesaurus." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149525\n" +"00000406.xhp\n" +"par_id3149884\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Customize - Character button." -msgstr "" +msgid "CommandCtrl+F7" +msgstr "ትእዛዝCtrl+F7" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3152372\n" +"00000406.xhp\n" +"par_id3153320\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Customize - Character button." -msgstr "" +msgid "Choose Tools - Color Replacer ($[officename] Draw and $[officename] Impress)." +msgstr "ይምረጡ መሳሪያዎች - ቀለም መቀየሪያ ($[officename] መሳያ እና $[officename] ማስደነቂያ)" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3156560\n" +"00000406.xhp\n" +"par_idN107E9\n" "help.text" -msgid "On the Standard or the Insert bar, click" -msgstr "" +msgid "Choose Tools - Media Player." +msgstr "ይምረጡ መሳሪያዎች - መገናኛ ማጫወቻ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153527\n" +"00000406.xhp\n" +"par_id3151385\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic, or press OptionAlt+F11 (if not assigned by your system)." +msgstr "ይምረጡ መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME Basic ወይንም ይጫኑ ምርጫ Alt+F11 (በ እርስዎ ስርአት ውስጥ ካልተመደበ) " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149751\n" +"00000406.xhp\n" +"par_id511543350796749\n" "help.text" -msgid "Special Character" -msgstr "የተለዩ ባህሪዎች" +msgid "Choose Tools - Macros - Organize Macros - BeanShell." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN107CD\n" +"00000406.xhp\n" +"par_id661543350803067\n" "help.text" -msgid "Choose Insert - Media - Audio or Video." -msgstr "ይምረጡ ማስገቢያ - መገናኛ - ድምፅ ወይንም ቪዲዮ" +msgid "Choose Tools - Macros - Organize Macros - JavaScript." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN107CE\n" +"00000406.xhp\n" +"par_id441543350811395\n" "help.text" -msgid "Choose Insert - Audio or Video." +msgid "Choose Tools - Macros - Organize Macros - Python." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN1085D\n" +"00000406.xhp\n" +"par_id3149456\n" "help.text" -msgid "Audio or Video" -msgstr "ድምፅ ወይንም ቪዲዮ" +msgid "Choose Tools - Macros - Record Macro." +msgstr "ይምረጡ መሳሪያዎች - ማክሮስ - ማክሮስ መቅረጫ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3147242\n" +"00000406.xhp\n" +"par_id3150398\n" "help.text" -msgid "Choose Insert - Object." +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_id3152996\n" +"00000406.xhp\n" +"par_idN10843\n" "help.text" -msgid "Choose Insert - Object - OLE Object." -msgstr "" +msgid "Choose Tools - Extension Manager." +msgstr "ይምረጡ መሳሪያዎች - የ ተጨማሪ አስተዳዳሪ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3146806\n" +"00000406.xhp\n" +"par_id9988402\n" "help.text" -msgid "On the Insert bar, click" +msgid "Choose Tools - Extension Manager, click Check for Updates button." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150254\n" +"00000406.xhp\n" +"par_id3151106\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Tools - XML Filter Settings." +msgstr "ይምረጡ መሳሪያዎች - የ XML ማጣሪያ ማሰናጃዎች " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3145417\n" +"00000406.xhp\n" +"par_id3153778\n" "help.text" -msgid "OLE Object" -msgstr "የ OLE እቃ" +msgid "Choose Tools - XML Filter Settings, then click New or Edit." +msgstr "ይምረጡ መሳሪያዎች - የ XML ማጣሪያ ማሰናጃዎች እና ከዛ ይጫኑ አዲስ ወይንም ማረሚያ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150393\n" +"00000406.xhp\n" +"par_id3148979\n" "help.text" -msgid "Choose Insert - Object - Formula." -msgstr "" +msgid "Choose Tools - XML Filter Settings, then click Test XSLTs." +msgstr "ይምረጡ መሳሪያዎች - የ XML ማጣሪያ ማሰናጃዎች እና ይጫኑ XSLTs መሞከሪያ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153056\n" +"00000406.xhp\n" +"par_id3148672\n" "help.text" -msgid "On the Insert bar, click" -msgstr "" +msgid "Choose Tools - Customize." +msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3148559\n" +"00000406.xhp\n" +"par_id3147230\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Tools - Customize - Menus tab." +msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - ዝርዝር tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155858\n" +"00000406.xhp\n" +"par_idN108E9\n" "help.text" -msgid "Formula" -msgstr "መቀመሪያ" +msgid "Choose Tools - Customize - Menus tab, click New." +msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - ዝርዝር tab, ይጫኑ አዲስ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153144\n" +"00000406.xhp\n" +"par_idN10919\n" "help.text" -msgid "Choose Format - Chart Type." -msgstr "" +msgid "Choose Tools - Customize - Menus tab, click Menu - Move." +msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - ዝርዝር tab, ይጫኑ ዝርዝር - ማንቀሳቀሻ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3147578\n" +"00000406.xhp\n" +"par_id3145171\n" "help.text" -msgid "Choose Insert - Object - Chart ." -msgstr "" +msgid "Choose Tools - Customize - Keyboard tab. A document must be opened." +msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - የ ፊደል ገበታ tab ሰነድ መከፈተ አለበት" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3154011\n" +"00000406.xhp\n" +"par_id3153968\n" "help.text" -msgid "Choose Format - Chart Type." -msgstr "" +msgid "Choose Tools - Customize - Toolbars tab." +msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - እቃ መደርደሪያ tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153573\n" +"00000406.xhp\n" +"par_id3144432\n" "help.text" -msgid "Choose Insert - Object - Chart." -msgstr "" +msgid "Choose Tools - Customize - Events tab." +msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - ሁኔታዎች tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3159179\n" +"00000406.xhp\n" +"par_id3157895\n" "help.text" -msgid "Choose Format - Chart Type." -msgstr "" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options." +msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3159196\n" +"00000406.xhp\n" +"par_id3153768\n" "help.text" -msgid "Choose Insert - Object - Chart." -msgstr "" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Options tab." +msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - ምርጫዎች tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149664\n" +"00000406.xhp\n" +"par_id1978514\n" "help.text" -msgid "Choose Insert - Object - Chart." -msgstr "" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Smart Tags tab." +msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - Smart Tags tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3154921\n" +"00000406.xhp\n" +"par_id3155368\n" "help.text" -msgid "On the Insert bar, click" -msgstr "" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Replace tab." +msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - መቀየሪያ tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3156005\n" +"00000406.xhp\n" +"par_id3155860\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Exceptions tab." +msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - የተለዩ tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3145749\n" +"00000406.xhp\n" +"par_id3153094\n" "help.text" -msgid "Chart" -msgstr "ቻርትስ" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Localized Options tab." +msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - የ ቋንቋ ምርጫ tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155513\n" +"00000406.xhp\n" +"par_id3153945\n" "help.text" -msgid "Choose Insert - Image." -msgstr "" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Word Completion tab." +msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - ቃላት መጨረሻ tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155308\n" +"00000406.xhp\n" +"par_id3151352\n" "help.text" -msgid "On the Standard bar, click" -msgstr "" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - %PRODUCTNAME ሰንጠረዥ - መመልከቻ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3145594\n" +"00000406.xhp\n" +"par_id3154127\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." +msgstr " ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - %PRODUCTNAME ማስደነቂያ/%PRODUCTNAME መሳያ – መመልከቻ:" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149960\n" +"00000406.xhp\n" +"par_id3149664\n" "help.text" -msgid "Image" -msgstr "ምስል" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw - General." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - %PRODUCTNAME መሳያ - ባጠቃላይ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150037\n" +"00000406.xhp\n" +"par_id3145112\n" "help.text" -msgid "Choose Insert - Floating Frame." +msgid "Path selection button in various wizards." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3083281\n" +"00000406.xhp\n" +"par_id3153953\n" "help.text" -msgid "On the Insert bar, click" +msgid "Click Edit button for a few entries under %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3168607\n" +"00000406.xhp\n" +"par_id3147295\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ :" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3148588\n" +"00000406.xhp\n" +"par_id3156006\n" "help.text" -msgid "Floating Frame" -msgstr "ተንሳፋፊ ክፈፍ" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename]." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - $[officename]" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150396\n" +"00000406.xhp\n" +"par_id3155308\n" "help.text" -msgid "Open a file of a type that is unknown to %PRODUCTNAME and that is no text file." -msgstr "" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - የ ተጠቃሚ ዳታ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10DDC\n" +"00000406.xhp\n" +"par_id3155312\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - General." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - ባጠቃላይ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10DD1\n" +"00000406.xhp\n" +"par_id3159153\n" "help.text" -msgid "Fontwork Gallery" -msgstr "የ ፊደል ስራ አዳራሽ" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - View." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - መመልከቻ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10EA9\n" +"00000406.xhp\n" +"par_id3166413\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Print." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - ማተሚያ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10ED8\n" +"00000406.xhp\n" +"par_id3147330\n" "help.text" -msgid "Basic Shapes" -msgstr "መሰረታዊ ቅርጾች" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - መንገድ :" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10EEE\n" +"00000406.xhp\n" +"par_id3150036\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Tools - AutoText - Path." +msgstr "ይምረጡ መሳሪያዎች - በራሱ ጽሁፍ - መንገድ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F1D\n" +"00000406.xhp\n" +"par_id3149581\n" "help.text" -msgid "Symbol Shapes" -msgstr "የ ምልክት ቅርጾች" +msgid "Choose Format - Area - Colors tab." +msgstr "ይምረጡ አቀራረብ - ቦታ - ቀለሞች tab" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F33\n" +"00000406.xhp\n" +"par_id3145729\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Area - Area, press the Color button and click the Pick button." +msgstr "ይምረጡ አቀራረብ - ቦታ - ቦታ ይጫኑ የ ቀለም ቁልፍ እና ከዛ ይጫኑ የ መምረጫ ቁልፍ" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F62\n" +"00000406.xhp\n" +"par_id3153876\n" "help.text" -msgid "Block Arrows" -msgstr "መከልከያ ቀስቶች" +msgid "Icon" +msgstr "ምልክት" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F78\n" +"00000406.xhp\n" +"par_id3151037\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Press the Color Dialog button in the Illumination tab of the 3D Effects dialog." +msgstr "ይጫኑ የ ቀለም ንግግር ቁልፍ በ ብርሃን tab በ 3ዲ ውጤት ንግግር ውስጥ:" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10FA7\n" +"00000406.xhp\n" +"par_id3149403\n" "help.text" -msgid "Flowcharts" -msgstr "የ ሂደት መቆጣጠሪያ" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Fonts." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - ፊደሎች " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10FBD\n" +"00000406.xhp\n" +"par_id3150717\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Security." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - ደህንነት " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10FEC\n" +"00000406.xhp\n" +"par_idN11C3D\n" "help.text" -msgid "Callouts" -msgstr "መጥሪያዎች" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Advanced." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - የረቀቀ " -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN11002\n" +"00000406.xhp\n" +"par_idN11C3E\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Personalization." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - የ ግል ማድረጊያ :" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN11031\n" +"00000406.xhp\n" +"par_idN11C3F\n" "help.text" -msgid "Stars" -msgstr "ኮከቦች" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - OpenCL." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"tit\n" +"par_idN11C3G\n" "help.text" -msgid "Tools Menu" -msgstr "የ መሳሪያዎች ዝርዝር" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Basic IDE." +msgstr " ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - Basic IDE" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"hd_id3160447\n" +"par_id5485702\n" "help.text" -msgid "Tools Menu" -msgstr "የ መሳሪያዎች ዝርዝር" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Online Update." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - በ መስመር ላይ ማሻሻያ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3146765\n" +"par_id3146989\n" "help.text" -msgid "Choose Insert - Media - Clip Art Gallery or open Standard bar, click" -msgstr "" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Accessibility." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - መድረሻ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153323\n" +"par_id3144746\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Application Colors." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - የ መተግበሪያ ቀለም " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153551\n" +"par_id3156355\n" "help.text" -msgid "Gallery" -msgstr "አዳራሽ" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - መጫኛ/ማስቀመጫ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3146957\n" +"par_id3147223\n" "help.text" -msgid "Choose Tools - Gallery or click the Gallery icon on the Standard bar -
New Theme button - Files tab.
" -msgstr "" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - መጫኛ/ማስቀመጫ - ባጠቃላይ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3166411\n" +"par_id3153958\n" "help.text" -msgid "Choose Tools - Spelling." -msgstr "ይምረጡ መሳሪያዎች - ፊደል ማረሚያ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3148538\n" +"par_id3153707\n" "help.text" -msgid "F7 key" -msgstr "F7 ቁልፍ" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - Microsoft Office." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155628\n" +"par_id3145667\n" "help.text" -msgid "On the Standard bar, click" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153824\n" +"par_id3146792\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃዎች " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3157809\n" +"par_id3157965\n" "help.text" -msgid "Spelling" -msgstr "ፊደል ማረሚያ" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቋንቋ ማሰናጃ - ቋንቋዎች " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3156326\n" +"par_id3155446\n" "help.text" -msgid "Choose Tools - Language - Hangul/Hanja Conversion. Asian language support must be enabled." -msgstr "ይምረጡ መሳሪያዎች - ቋንቋ - ሀንጉል/ሀንጃ መቀየሪያ የ እስያ ቋንቋ ድጋፍ ማስቻል አለብዎት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages - Complex Text Layout." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - ቋንቋ ማሰናጃዎች - ቋንቋዎች - ውስብስብ የ ጽሁፍ እቅድ" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN10705\n" +"par_id3150745\n" "help.text" -msgid "Choose Tools - Language - Chinese Conversion. Asian language support must be enabled." -msgstr "ይምረጡ መሳሪያዎች - ቋንቋ - ቻይንኛ መቀየሪያ የ እስያ ቋንቋ ድጋፍ ማስቻል አለብዎት" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃዎች - ቋንቋዎች " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN1071E\n" +"par_id3148407\n" "help.text" -msgid "Choose Tools - Language - Chinese Conversion - Edit terms button. Asian language support must be enabled." -msgstr "ይምረጡ መሳሪያዎች - ቋንቋ - ቻይንኛ መቀየሪያ - ደንቦች ማረሚያ ቁልፍ: የ እስያ ቋንቋ ድጋፍ ማስቻል አለብዎት" +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_id3155419\n" +"par_id3150324\n" "help.text" -msgid "Choose Tools - Spelling." -msgstr "ይምረጡ መሳሪያዎች - ፊደል ማረሚያ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃዎች - የ መጻፊያ እርዳታ :" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3150771\n" +"par_id3145620\n" "help.text" -msgid "Choose Tools - Spelling, then click Options." -msgstr "ይምረጡ መሳሪያዎች - ፊደል ማረሚያ እና ከዛ ይጫኑ ምርጫዎች " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Searching in Japanese." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቋንቋ ማሰናጃ - በ ጃፓንኛ መፈለጊያ :" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151338\n" +"par_id3147341\n" "help.text" -msgid "Choose Tools - Language - Thesaurus." -msgstr "" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Asian Layout." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቋንቋ ማሰናጃ - የ እስያን እቅድ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149884\n" +"par_id3147359\n" "help.text" -msgid "CommandCtrl+F7" -msgstr "ትእዛዝCtrl+F7" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ኢንተርኔት :" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153320\n" +"par_id3156374\n" "help.text" -msgid "Choose Tools - Color Replacer ($[officename] Draw and $[officename] Impress)." -msgstr "ይምረጡ መሳሪያዎች - ቀለም መቀየሪያ ($[officename] መሳያ እና $[officename] ማስደነቂያ)" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - የ ኢንተርኔት - ወኪል :" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN107E9\n" +"par_id3149280\n" "help.text" -msgid "Choose Tools - Media Player." -msgstr "ይምረጡ መሳሪያዎች - መገናኛ ማጫወቻ " +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer." +msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ :" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151385\n" +"par_idN10E4F\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic, or press OptionAlt+F11 (if not assigned by your system)." -msgstr "ይምረጡ መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME Basic ወይንም ይጫኑ ምርጫ Alt+F11 (በ እርስዎ ስርአት ውስጥ ካልተመደበ) " +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Compatibility." +msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ተስማሚነቱን:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id511543350796749\n" +"par_id3148929\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - BeanShell." -msgstr "" +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General." +msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ባጠቃላይ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id661543350803067\n" +"par_idN10F2F\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - JavaScript." -msgstr "" +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge E-mail." +msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ደብዳቤ ማዋሀጃ ኢ-ሜይል " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id441543350811395\n" +"par_id3149825\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - Python." -msgstr "" +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - AutoCaption." +msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - በራሱ መግለጫ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149456\n" +"par_id3155333\n" "help.text" -msgid "Choose Tools - Macros - Record Macro." -msgstr "ይምረጡ መሳሪያዎች - ማክሮስ - ማክሮስ መቅረጫ " +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - View." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3150398\n" +"par_id3146316\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 "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Formatting Aids." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN10843\n" +"par_id3153534\n" "help.text" -msgid "Choose Tools - Extension Manager." -msgstr "ይምረጡ መሳሪያዎች - የ ተጨማሪ አስተዳዳሪ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME መጻፊያ/ዌብ - መጋጠሚያ :" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id9988402\n" +"par_id3155961\n" "help.text" -msgid "Choose Tools - Extension Manager, click Check for Updates button." -msgstr "" +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Western)." +msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - መሰረታዊ ፊደሎች (Western):" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151106\n" +"par_id3159313\n" "help.text" -msgid "Choose Tools - XML Filter Settings." -msgstr "ይምረጡ መሳሪያዎች - የ XML ማጣሪያ ማሰናጃዎች " +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Asian). Asian language support must be enabled." +msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - መሰረታዊ ፊደሎች (እስያ) ዝግጁ የሚሆነው የ እስያ ቋንቋ ድጋፍ ካስቻሉ ነው:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153778\n" +"par_id3155607\n" "help.text" -msgid "Choose Tools - XML Filter Settings, then click New or Edit." -msgstr "ይምረጡ መሳሪያዎች - የ XML ማጣሪያ ማሰናጃዎች እና ከዛ ይጫኑ አዲስ ወይንም ማረሚያ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Print." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3148979\n" +"par_id3988769\n" "help.text" -msgid "Choose Tools - XML Filter Settings, then click Test XSLTs." -msgstr "ይምረጡ መሳሪያዎች - የ XML ማጣሪያ ማሰናጃዎች እና ይጫኑ XSLTs መሞከሪያ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Print." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ማተሚያ :" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3148672\n" +"par_id3145769\n" "help.text" -msgid "Choose Tools - Customize." -msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME Writer/%PRODUCTNAME መጻፊያ/ዌብ - ሰንጠረዥ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3147230\n" +"par_id3147005\n" "help.text" -msgid "Choose Tools - Customize - Menus tab." -msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - ዝርዝር tab" +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Changes." +msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ለውጦቹ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN108E9\n" +"par_id3159333\n" "help.text" -msgid "Choose Tools - Customize - Menus tab, click New." -msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - ዝርዝር tab, ይጫኑ አዲስ " +msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web." +msgstr "የ HTML ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ/ዌብ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN10919\n" +"par_id3149448\n" "help.text" -msgid "Choose Tools - Customize - Menus tab, click Menu - Move." -msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - ዝርዝር tab, ይጫኑ ዝርዝር - ማንቀሳቀሻ " +msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web - Background." +msgstr "የ HTML ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ/ዌብ - መደብ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3145171\n" +"par_id3149336\n" "help.text" -msgid "Choose Tools - Customize - Keyboard tab. A document must be opened." -msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - የ ፊደል ገበታ tab ሰነድ መከፈተ አለበት" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153968\n" +"par_id3152966\n" "help.text" -msgid "Choose Tools - Customize - Toolbars tab." -msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - እቃ መደርደሪያ tab" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ባጠቃላይ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3144432\n" +"par_id3149814\n" "help.text" -msgid "Choose Tools - Customize - Events tab." -msgstr "ይምረጡ መሳሪያዎች - ማስተካከያ - ሁኔታዎች tab" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - መመልከቻ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3157895\n" +"par_id3154656\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options." -msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች " +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ማስሊያ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153768\n" +"par_id3154657\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Options tab." -msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - ምርጫዎች tab" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Compatibility." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ተስማሚነቱ" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id1978514\n" +"par_id3152494\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Smart Tags tab." -msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - Smart Tags tab" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ዝርዝሮች መለያ" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155368\n" +"par_id3152495\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Replace tab." -msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - መቀየሪያ tab" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Formula." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - መቀመሪያ" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155860\n" +"par_id3152496\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Exceptions tab." -msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - የተለዩ tab" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ነባር" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153094\n" +"par_id3149527\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Localized Options tab." -msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - የ ቋንቋ ምርጫ tab" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists - Copy button." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ዝርዝር መለያ - ኮፒ ቁልፍ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153945\n" +"par_id3154903\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Word Completion tab." -msgstr "ይምረጡ መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - ቃላት መጨረሻ tab" +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Changes." +msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - መቀየሪያ" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151352\n" +"par_id3152582\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - %PRODUCTNAME ሰንጠረዥ - መመልከቻ " +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress." +msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫዎች - %PRODUCTNAME ማስደነቂያ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3154127\n" +"par_id3148418\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." -msgstr " ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - %PRODUCTNAME ማስደነቂያ/%PRODUCTNAME መሳያ – መመልከቻ:" +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General." +msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - ባጠቃላይ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149664\n" +"par_id3150380\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw - General." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - %PRODUCTNAME መሳያ - ባጠቃላይ " +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." +msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫዎች - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - መመልከቻ" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3145112\n" +"par_id3166423\n" "help.text" -msgid "Path selection button in various wizards." -msgstr "" +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid." +msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - መጋጠሚያ" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153953\n" +"par_id3148873\n" "help.text" -msgid "Click Edit button for a few entries under %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." -msgstr "" +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print." +msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - ማተሚያ" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3147295\n" +"par_id3145220\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ :" +msgid "Open a drawing document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw." +msgstr "የ መሳያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መሳያ:" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3156006\n" +"par_id3149573\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename]." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - $[officename]" +msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math." +msgstr "የ ሂሳብ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሂሳብ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155308\n" +"par_id3145613\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - የ ተጠቃሚ ዳታ " +msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math - Settings." +msgstr "የ ሂሳብ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ሂሳብ - ማሰናጃዎች :" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155312\n" +"par_id3155137\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - General." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - ባጠቃላይ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቻርትስ :" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3159153\n" +"par_id3149211\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - View." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - መመልከቻ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts - Default Colors." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቻርትስ - ነባር ቀለሞች " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3166413\n" +"par_id3150862\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Print." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - ማተሚያ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ቤዝ " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3147330\n" +"par_id3147368\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - መንገድ :" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Connections." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ቤዝ - ግንኙነቶች " #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3150036\n" +"par_idN1120D\n" "help.text" -msgid "Choose Tools - AutoText - Path." -msgstr "ይምረጡ መሳሪያዎች - በራሱ ጽሁፍ - መንገድ " +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." +msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ቤዝ - ዳታቤዝ " -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149581\n" +"00000407.xhp\n" +"tit\n" "help.text" -msgid "Choose Format - Area - Colors tab." -msgstr "ይምረጡ አቀራረብ - ቦታ - ቀለሞች tab" +msgid "Window Menu" +msgstr "የመስኮት ዝርዝር" -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145729\n" +"00000407.xhp\n" +"hd_id3154349\n" "help.text" -msgid "Choose Format - Area - Area, press the Color button and click the Pick button." -msgstr "ይምረጡ አቀራረብ - ቦታ - ቦታ ይጫኑ የ ቀለም ቁልፍ እና ከዛ ይጫኑ የ መምረጫ ቁልፍ" +msgid "Window Menu" +msgstr "የመስኮት ዝርዝር" -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153876\n" +"00000407.xhp\n" +"par_id3083278\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Window - New Window." +msgstr "" -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3151037\n" +"00000407.xhp\n" +"par_id3154545\n" "help.text" -msgid "Press the Color Dialog button in the Illumination tab of the 3D Effects dialog." -msgstr "ይጫኑ የ ቀለም ንግግር ቁልፍ በ ብርሃን tab በ 3ዲ ውጤት ንግግር ውስጥ:" +msgid "Choose Window - List of open documents." +msgstr "" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149403\n" +"00000408.xhp\n" +"tit\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Fonts." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - ፊደሎች " +msgid "Help Menu" +msgstr "የ እርዳታ ዝርዝር" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150717\n" +"00000408.xhp\n" +"hd_id3154689\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Security." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - ደህንነት " +msgid "Help Menu" +msgstr "የ እርዳታ ዝርዝር" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_idN11C3D\n" +"00000408.xhp\n" +"par_id3150960\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Advanced." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - የረቀቀ " +msgid "Choose Help - %PRODUCTNAME Help." +msgstr "" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_idN11C3E\n" +"00000408.xhp\n" +"par_id3147240\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Personalization." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - የ ግል ማድረጊያ :" +msgid "Choose Help - About %PRODUCTNAME." +msgstr "" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_idN11C3F\n" +"00000408.xhp\n" +"par_id3151387\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - OpenCL." -msgstr "" +msgid "Automatically after %PRODUCTNAME is first started." +msgstr "ራሱ በራሱ %PRODUCTNAME መጀመሪያ ከጀመረ በኋላ" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_idN11C3G\n" +"00000409.xhp\n" +"tit\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Basic IDE." -msgstr " ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - Basic IDE" +msgid "Toolbars" +msgstr "እቃ መደርደሪያ" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id5485702\n" +"00000409.xhp\n" +"hd_id3149517\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Online Update." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - በ መስመር ላይ ማሻሻያ " +msgid "Toolbars" +msgstr "እቃ መደርደሪያ" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3146989\n" +"00000409.xhp\n" +"par_id3156053\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Accessibility." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - መድረሻ " +msgid "Choose Data - More Filters - Standard Filter." +msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3144746\n" +"00000409.xhp\n" +"par_id3154350\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Application Colors." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - $[officename] - የ መተግበሪያ ቀለም " +msgid "Database table view: Standard Filter icon in the Database toolbar." +msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3156355\n" +"00000409.xhp\n" +"par_id3154183\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - መጫኛ/ማስቀመጫ " +msgid "Form view: Standard Filter icon in the Form bar." +msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147223\n" +"00000409.xhp\n" +"par_id3155619\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - መጫኛ/ማስቀመጫ - ባጠቃላይ " +msgid "Icon" +msgstr "ምልክት" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153958\n" +"00000409.xhp\n" +"par_id3148731\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties." -msgstr "" +msgid "Standard Filter" +msgstr "መደበኛ ማጣሪያ" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153707\n" +"00000450.xhp\n" +"tit\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - Microsoft Office." -msgstr "" +msgid "Database" +msgstr "ዳታቤዝ" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145667\n" +"00000450.xhp\n" +"hd_id3154689\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility." -msgstr "" +msgid "Database" +msgstr "ዳታቤዝ" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3146792\n" +"00000450.xhp\n" +"par_id3152876\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃዎች " +msgid "In a database file window, choose Tools - Table Filter." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3157965\n" +"00000450.xhp\n" +"par_id3153244\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቋንቋ ማሰናጃ - ቋንቋዎች " +msgid "View - Database Objects - Queries" +msgstr "መመልከቻ - የ ዳታቤዝ እቃዎች - ጥያቄዎች" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155446\n" +"00000450.xhp\n" +"par_id3147294\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages - Complex Text Layout." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - ቋንቋ ማሰናጃዎች - ቋንቋዎች - ውስብስብ የ ጽሁፍ እቅድ" +msgid "In a database file window, choose Edit - Database - Properties - Advanced Settings tab." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150745\n" +"00000450.xhp\n" +"par_id3159411\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃዎች - ቋንቋዎች " +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_id3148407\n" +"00000450.xhp\n" +"par_id3149119\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 "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_id3150324\n" +"00000450.xhp\n" +"par_id3154497\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃዎች - የ መጻፊያ እርዳታ :" +msgid "In a database file window of type ODBC, choose Edit - Database - Connection Type." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145620\n" +"00000450.xhp\n" +"par_id3149355\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Searching in Japanese." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቋንቋ ማሰናጃ - በ ጃፓንኛ መፈለጊያ :" +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_id3147341\n" +"00000450.xhp\n" +"par_id3157896\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Asian Layout." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቋንቋ ማሰናጃ - የ እስያን እቅድ " +msgid "In a database file window of type JDBC, choose Edit - Database - Properties." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147359\n" +"00000450.xhp\n" +"par_id3148548\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ኢንተርኔት :" +msgid "In a database file window of type MySQL, choose Edit - Database - Properties." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3156374\n" +"00000450.xhp\n" +"par_id3149346\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫዎች - የ ኢንተርኔት - ወኪል :" +msgid "In a database file window of type dBASE, choose Edit - Database - Properties." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149280\n" +"00000450.xhp\n" +"par_id3147043\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer." -msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ :" +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_idN10E4F\n" +"00000450.xhp\n" +"par_id3154317\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Compatibility." -msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ተስማሚነቱን:" +msgid "In a database file window of type Text, choose Edit - Database - Properties." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148929\n" +"00000450.xhp\n" +"par_id3150774\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General." -msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ባጠቃላይ " +msgid "In a database file window of type MS ADO, choose Edit - Database - Properties." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_idN10F2F\n" +"00000450.xhp\n" +"par_id3151110\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge E-mail." -msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ደብዳቤ ማዋሀጃ ኢ-ሜይል " +msgid "In a database file window, choose Tools - SQL." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149825\n" +"00000450.xhp\n" +"par_id3147209\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - AutoCaption." -msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - በራሱ መግለጫ:" +msgid "In a database file window, click the Queries icon." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155333\n" +"00000450.xhp\n" +"par_id3153880\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - View." +msgid "In a database file window, click the Tables icon." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3146316\n" +"00000450.xhp\n" +"par_id3153760\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, click the Tables icon. Choose Insert - Table Design or Edit - Edit." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153534\n" +"00000450.xhp\n" +"par_id3156329\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME መጻፊያ/ዌብ - መጋጠሚያ :" +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_id3155961\n" +"00000450.xhp\n" +"par_id3154047\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Western)." -msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - መሰረታዊ ፊደሎች (Western):" +msgid "In a database file window, choose Insert - Query (Design view)." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3159313\n" +"00000450.xhp\n" +"par_id3149579\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Asian). Asian language support must be enabled." -msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - መሰረታዊ ፊደሎች (እስያ) ዝግጁ የሚሆነው የ እስያ ቋንቋ ድጋፍ ካስቻሉ ነው:" +msgid "In a database file window, click the Queries icon, then choose Edit - Edit." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155607\n" +"00000450.xhp\n" +"par_id3149902\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Print." +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_id3988769\n" +"00000450.xhp\n" +"par_id3159166\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Print." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ማተሚያ :" +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_id3145769\n" +"00000450.xhp\n" +"par_id3151245\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME Writer/%PRODUCTNAME መጻፊያ/ዌብ - ሰንጠረዥ:" +msgid "Icon" +msgstr "ምልክት" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147005\n" +"00000450.xhp\n" +"par_id3153896\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Changes." -msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ - ለውጦቹ:" +msgid "Insert Tables" +msgstr "ሰንጠረዥ ማስገቢያ" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3159333\n" +"00000450.xhp\n" +"par_id3149457\n" "help.text" -msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web." -msgstr "የ HTML ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ/ዌብ:" +msgid "Icon" +msgstr "ምልክት" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149448\n" +"00000450.xhp\n" +"par_id3159085\n" "help.text" -msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web - Background." -msgstr "የ HTML ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መጻፊያ/ዌብ - መደብ:" +msgid "New Relation" +msgstr "አዲስ ግንኙነት" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149336\n" +"00000450.xhp\n" +"par_id3150414\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ:" +msgid "Find Record icon on the Table Data bar and Form Design bar." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152966\n" +"00000450.xhp\n" +"par_id3157962\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ባጠቃላይ:" +msgid "Icon" +msgstr "ምልክት" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149814\n" +"00000450.xhp\n" +"par_id3157322\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - መመልከቻ:" +msgid "Find Record" +msgstr "መዝገብ መፈለጊያ" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3154656\n" +"00000450.xhp\n" +"par_id3150870\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ማስሊያ:" +msgid "Sort Order icon on the Table Data bar and Form Design bar." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3154657\n" +"00000450.xhp\n" +"par_id3150393\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Compatibility." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ተስማሚነቱ" +msgid "Icon" +msgstr "ምልክት" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152494\n" +"00000450.xhp\n" +"par_id3145745\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ዝርዝሮች መለያ" +msgid "Sort Order" +msgstr "የ መለያ ደንብ" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152495\n" +"00000450.xhp\n" +"par_id3145171\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Formula." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - መቀመሪያ" +msgid "In a database file window, choose Edit - Database - Properties." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152496\n" +"00000450.xhp\n" +"par_id3159252\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ነባር" +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_id3149527\n" +"00000450.xhp\n" +"par_id3148560\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists - Copy button." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - ዝርዝር መለያ - ኮፒ ቁልፍ " +msgid "In a database file window, choose Insert - Form." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3154903\n" +"00000450.xhp\n" +"par_id3155430\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Changes." -msgstr "የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሰንጠረዥ - መቀየሪያ" +msgid "In a database file window, choose Edit - Database - Properties." +msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152582\n" +"00000450.xhp\n" +"par_id3147441\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress." -msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫዎች - %PRODUCTNAME ማስደነቂያ:" +msgid "In a database file window, choose Tools - Relationships." +msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148418\n" +"00040500.xhp\n" +"tit\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General." -msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - ባጠቃላይ " +msgid "Format Menu" +msgstr "ዝርዝር አቀራረብ" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150380\n" +"00040500.xhp\n" +"hd_id3150347\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." -msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫዎች - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - መመልከቻ" +msgid "Format Menu" +msgstr "የ አቀራረብ ዝርዝር" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3166423\n" +"00040500.xhp\n" +"par_id3145356\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid." -msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - መጋጠሚያ" +msgid "Choose Format - Clear Direct Formatting." +msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148873\n" +"00040500.xhp\n" +"par_id3153244\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print." -msgstr "የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - ማተሚያ" +msgid "Choose Format - Character." +msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145220\n" +"00040500.xhp\n" +"par_id3152352\n" "help.text" -msgid "Open a drawing document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw." -msgstr "የ መሳያ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME መሳያ:" +msgid "On Text Formatting bar (with cursor in object), click" +msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149573\n" +"00040500.xhp\n" +"par_id3148998\n" "help.text" -msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math." -msgstr "የ ሂሳብ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎችመሳሪያዎች - ምርጫ - %PRODUCTNAME ሂሳብ " +msgid "Icon" +msgstr "ምልክት" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145613\n" +"00040500.xhp\n" +"par_id3149999\n" "help.text" -msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math - Settings." -msgstr "የ ሂሳብ ሰነድ መክፈቻ ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ሂሳብ - ማሰናጃዎች :" +msgid "Character" +msgstr "ባህሪ" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155137\n" +"00040500.xhp\n" +"par_id3153935\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቻርትስ :" +msgid "Choose Format - Character - Font tab." +msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149211\n" +"00040500.xhp\n" +"par_id3157958\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts - Default Colors." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - ቻርትስ - ነባር ቀለሞች " +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font tab." +msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150862\n" +"00040500.xhp\n" +"par_id3155338\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ቤዝ " +msgid "Open context menu of a row header in a database table - choose Table Format - Font tab." +msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147368\n" +"00040500.xhp\n" +"par_id3150355\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Connections." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ቤዝ - ግንኙነቶች " +msgid "Choose Format - Title - Character tab (Chart documents)." +msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_idN1120D\n" +"00040500.xhp\n" +"par_id3149812\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." -msgstr "ይምረጡ %PRODUCTNAME - ምርጫዎች መሳሪያዎች - ምርጫ - %PRODUCTNAME ቤዝ - ዳታቤዝ " +msgid "Choose Format - Legend - Character tab (Chart documents)." +msgstr "" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"tit\n" +"00040500.xhp\n" +"par_id3153717\n" "help.text" -msgid "Window Menu" -msgstr "የመስኮት ዝርዝር" +msgid "Choose Format - Axis - Character tab (Chart documents)." +msgstr "" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"hd_id3154349\n" +"00040500.xhp\n" +"par_id3154749\n" "help.text" -msgid "Window Menu" -msgstr "የመስኮት ዝርዝር" +msgid "Choose Format - Cells - Font tab (spreadsheets)." +msgstr "" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"par_id3083278\n" +"00040500.xhp\n" +"par_id3156306\n" "help.text" -msgid "Choose Window - New Window." +msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." msgstr "" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"par_id3154545\n" +"00040500.xhp\n" +"par_id3155829\n" "help.text" -msgid "Choose Window - List of open documents." +msgid "Choose Format - Character - Font Effects tab." msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"tit\n" +"00040500.xhp\n" +"par_id3149819\n" "help.text" -msgid "Help Menu" -msgstr "የ እርዳታ ዝርዝር" +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font Effects tab." +msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"hd_id3154689\n" +"00040500.xhp\n" +"par_id3159176\n" "help.text" -msgid "Help Menu" -msgstr "የ እርዳታ ዝርዝር" +msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"par_id3150960\n" +"00040500.xhp\n" +"par_id3153541\n" "help.text" -msgid "Choose Help - %PRODUCTNAME Help." +msgid "Choose Format - Character - Position tab." msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"par_id3147240\n" +"00040500.xhp\n" +"par_id3159256\n" "help.text" -msgid "Choose Help - About %PRODUCTNAME." +msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Alignment tab." msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"par_id3151387\n" +"00040500.xhp\n" +"par_id3151385\n" "help.text" -msgid "Automatically after %PRODUCTNAME is first started." -msgstr "ራሱ በራሱ %PRODUCTNAME መጀመሪያ ከጀመረ በኋላ" +msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"tit\n" +"00040500.xhp\n" +"par_id3148550\n" "help.text" -msgid "Toolbars" -msgstr "እቃ መደርደሪያ" +msgid "Choose Format - Character - Asian Layout tab" +msgstr "ይምረጡ አቀራረብ - ባህሪ - የ እስያን እቅድ tab" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"hd_id3149517\n" +"00040500.xhp\n" +"par_id3152811\n" "help.text" -msgid "Toolbars" -msgstr "እቃ መደርደሪያ" +msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Layout tab." +msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3156053\n" +"00040500.xhp\n" +"par_id3153524\n" "help.text" -msgid "Choose Data - More Filters - Standard Filter." +msgid "Choose Format - Paragraph - Asian Typography tab (not in HTML)." msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3154350\n" +"00040500.xhp\n" +"par_id3154366\n" "help.text" -msgid "Database table view: Standard Filter icon in the Database toolbar." +msgid "Choose Format - Cells - Asian Typography tab." msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3154183\n" +"00040500.xhp\n" +"par_id3148742\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 - Asian Typography tab." msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3155619\n" +"00040500.xhp\n" +"par_id3148922\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Character - Hyperlink tab." +msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3148731\n" +"00040500.xhp\n" +"par_id3149169\n" "help.text" -msgid "Standard Filter" -msgstr "መደበኛ ማጣሪያ" +msgid "Choose Format - Paragraph." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"tit\n" +"00040500.xhp\n" +"par_id3151381\n" "help.text" -msgid "Database" -msgstr "ዳታቤዝ" +msgid "On Text Formatting bar (with cursor in object), click" +msgstr "በ ጽሁፍ አቀራረብ መደርደሪያ ላይ (በ መጠቆሚያው እቃውን), ይጫኑ" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"hd_id3154689\n" +"00040500.xhp\n" +"par_id3155995\n" "help.text" -msgid "Database" -msgstr "ዳታቤዝ" +msgid "Icon" +msgstr "ምልክት" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3152876\n" +"00040500.xhp\n" +"par_id3147299\n" "help.text" -msgid "In a database file window, choose Tools - Table Filter." -msgstr "" +msgid "Paragraph" +msgstr "አንቀጽ" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153244\n" +"00040500.xhp\n" +"par_id3147289\n" "help.text" -msgid "View - Database Objects - Queries" -msgstr "መመልከቻ - የ ዳታቤዝ እቃዎች - ጥያቄዎች" +msgid "Choose Format - Paragraph - Alignment tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3147294\n" +"00040500.xhp\n" +"par_id3147352\n" "help.text" -msgid "In a database file window, choose Edit - Database - Properties - Advanced Settings tab." +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_id3159411\n" +"00040500.xhp\n" +"par_id3154640\n" "help.text" -msgid "In a database file window of type ODBC or Address book,
choose Edit - Database - Connection Type.
" +msgid "Choose Format - Paragraph - Indents & Spacing tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149119\n" +"00040500.xhp\n" +"par_id3152463\n" "help.text" -msgid "Path selection button in various wizards / Edit buttons for some entries in %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." +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_id3154497\n" +"00040500.xhp\n" +"par_id3154319\n" "help.text" -msgid "In a database file window of type ODBC, choose Edit - Database - Connection Type." +msgid "Choose Format - Paragraph - Tabs tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149355\n" +"00040500.xhp\n" +"par_id3154833\n" "help.text" -msgid "In a database file window of type Address book - LDAP, 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_id3157896\n" +"00040500.xhp\n" +"par_id3159155\n" "help.text" -msgid "In a database file window of type JDBC, choose Edit - Database - Properties." -msgstr "" +msgid "Double-click the ruler" +msgstr "ሁለት-ጊዜ ይጫኑ ማስመሪያውን" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3148548\n" +"00040500.xhp\n" +"par_idN109E2\n" "help.text" -msgid "In a database file window of type MySQL, choose Edit - Database - Properties." -msgstr "" +msgid "(all options only in Writer or Calc)" +msgstr "(ሁሉንም ምርጫዎች በ መጻፊያ ወይንም በ ሰንጠረዥ)" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149346\n" +"00040500.xhp\n" +"par_id3156105\n" "help.text" -msgid "In a database file window of type dBASE, choose Edit - Database - Properties." +msgid "Choose Format - Paragraph - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3147043\n" +"00040500.xhp\n" +"par_id3154149\n" "help.text" -msgid "In a database file window of type dBASE, choose Edit - Database - Properties, click Indexes." +msgid "Choose Format - Image - Properties - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3154317\n" +"00040500.xhp\n" +"par_id3163822\n" "help.text" -msgid "In a database file window of type Text, choose Edit - Database - Properties." +msgid "Choose Format - Frame and Object - Properties - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150774\n" +"00040500.xhp\n" +"par_id3150048\n" "help.text" -msgid "In a database file window of type MS ADO, choose Edit - Database - Properties." +msgid "Choose Format - Page - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3151110\n" +"00040500.xhp\n" +"par_id3151148\n" "help.text" -msgid "In a database file window, choose Tools - SQL." +msgid "Choose Format - Character - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3147209\n" +"00040500.xhp\n" +"par_id3149911\n" "help.text" -msgid "In a database file window, click the Queries icon." +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_id3153880\n" +"00040500.xhp\n" +"par_id3150094\n" "help.text" -msgid "In a database file window, click the Tables icon." +msgid "Choose Format - Page - Header - More button." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153760\n" +"00040500.xhp\n" +"par_id3154501\n" "help.text" -msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit." +msgid "Choose Format - Page - Footer - More button." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3156329\n" +"00040500.xhp\n" +"par_id3148455\n" "help.text" -msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit." +msgid "Choose Format - Cells - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3154047\n" +"00040500.xhp\n" +"par_id3155915\n" "help.text" -msgid "In a database file window, choose Insert - Query (Design view)." +msgid "Menu Format - Paragraph - Border tab - Padding." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149579\n" +"00040500.xhp\n" +"par_id3159130\n" "help.text" -msgid "In a database file window, click the Queries icon, then choose Edit - Edit." +msgid "Menu Format - Page - Border - Padding." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149902\n" +"00040500.xhp\n" +"par_id3155853\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 - Paragraph - Background tab." msgstr "" -#: 00000450.xhp -msgctxt "" -"00000450.xhp\n" -"par_id3159166\n" -"help.text" -msgid "Open query design and choose Insert - New Relation, or double-click on a connection line between two tables." -msgstr "የ ጥያቄ ንድፍ መክፈቻ እና ይምረጡ ማስገቢያ - አዲስ ግንኙነት ወይንም ሁለት ጊዜ-ይጫኑ በ ሁለት ሰንጠረዦች መገናኛ መስመር ላይ " - -#: 00000450.xhp -msgctxt "" -"00000450.xhp\n" -"par_id3151245\n" -"help.text" -msgid "Icon" -msgstr "ምልክት" - -#: 00000450.xhp -msgctxt "" -"00000450.xhp\n" -"par_id3153896\n" -"help.text" -msgid "Insert Tables" -msgstr "ሰንጠረዥ ማስገቢያ" - -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149457\n" +"00040500.xhp\n" +"par_id3147330\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Character - Background tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159085\n" +"00040500.xhp\n" +"par_id3149486\n" "help.text" -msgid "New Relation" -msgstr "አዲስ ግንኙነት" +msgid "Choose Format - Image - Background tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150414\n" +"00040500.xhp\n" +"par_id3150592\n" "help.text" -msgid "Find Record icon on the Table Data bar and Form Design bar." +msgid "Choose Format - Frame and Object - Properties - Area tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3157962\n" +"00040500.xhp\n" +"par_id3151321\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Page - Background tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3157322\n" +"00040500.xhp\n" +"par_id3154510\n" "help.text" -msgid "Find Record" -msgstr "መዝገብ መፈለጊያ" +msgid "Choose Format - Page - Header - More button." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150870\n" +"00040500.xhp\n" +"par_id3159110\n" "help.text" -msgid "Sort Order icon on the Table Data bar and Form Design bar." +msgid "Choose Format - Page - Footer - More button." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150393\n" +"00040500.xhp\n" +"par_id3153532\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +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_id3145745\n" +"00040500.xhp\n" +"par_id3144747\n" "help.text" -msgid "Sort Order" -msgstr "የ መለያ ደንብ" +msgid "Choose Insert/Edit - Section - Background tab" +msgstr "ይምረጡ ማስገቢያ/ማረሚያ - ክፍል - መደብ tab" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3145171\n" +"00040500.xhp\n" +"par_id3146900\n" "help.text" -msgid "In a database file window, choose Edit - Database - Properties." +msgid "Choose Format - Cells - Background tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159252\n" +"00040500.xhp\n" +"par_id3146791\n" "help.text" -msgid "Drag and drop a table or a query into the table part of another database file window." +msgid "Choose Format - Page - Organizer tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3148560\n" +"00040500.xhp\n" +"par_id3154482\n" "help.text" -msgid "In a database file window, choose Insert - Form." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Organizer tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3155430\n" +"00040500.xhp\n" +"par_id3153357\n" "help.text" -msgid "In a database file window, choose Edit - Database - Properties." +msgid "Choose Format - Page - Page tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3147441\n" +"00040500.xhp\n" +"par_id3149323\n" "help.text" -msgid "In a database file window, choose Tools - Relationships." +msgid "Choose Slide - Properties - Page tab (in $[officename] Impress)." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"tit\n" +"par_id3154972\n" "help.text" -msgid "Format Menu" -msgstr "ዝርዝር አቀራረብ" +msgid "Choose Page - Properties - Page tab (in $[officename] Draw)." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"hd_id3150347\n" +"par_id3154362\n" "help.text" -msgid "Format Menu" -msgstr "የ አቀራረብ ዝርዝር" +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Page tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3145356\n" +"par_id3155515\n" "help.text" -msgid "Choose Format - Clear Direct Formatting." +msgid "Choose Format - Page - Header tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153244\n" +"par_id3148405\n" "help.text" -msgid "Choose Format - Character." +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_id3152352\n" +"par_id3145618\n" "help.text" -msgid "On Text Formatting bar (with cursor in object), click" +msgid "Choose Format - Page - Footer tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148998\n" +"par_id3155175\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Footer tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149999\n" +"par_id3147404\n" "help.text" -msgid "Character" -msgstr "ባህሪ" +msgid "Choose View - Styles." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153935\n" +"par_id3166447\n" "help.text" -msgid "Choose Format - Character - Font tab." -msgstr "" +msgid "Command+TF11" +msgstr "ትእዛዝ+TF11" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3157958\n" +"par_id3147321\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font tab." +msgid "On Formatting bar, click" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3155338\n" +"par_id3148533\n" "help.text" -msgid "Open context menu of a row header in a database table - choose Table Format - Font tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3150355\n" +"par_id3153534\n" "help.text" -msgid "Choose Format - Title - Character tab (Chart documents)." -msgstr "" +msgid "Styles" +msgstr "ዘዴዎች" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149812\n" +"par_id3159313\n" "help.text" -msgid "Choose Format - Legend - Character tab (Chart documents)." -msgstr "" +msgid "On the Drawing bar, click" +msgstr " መሳያ መደርደሪያ ላይ ይጫኑ " #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153717\n" +"par_id3109845\n" "help.text" -msgid "Choose Format - Axis - Character tab (Chart documents)." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154749\n" +"par_id3152498\n" "help.text" -msgid "Choose Format - Cells - Font tab (spreadsheets)." +msgid "3D Effects" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3156306\n" +"par_id3145256\n" "help.text" -msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgid "Open the context menu of the 3D object, choose 3D Effects - Geometry tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3155829\n" +"par_id3154203\n" "help.text" -msgid "Choose Format - Character - Font Effects tab." +msgid "Open the context menu of the 3D object, choose 3D Effects - Shading tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149819\n" +"par_id3151284\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 - Illumination tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3159176\n" +"par_id3152475\n" "help.text" -msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgid "Open the context menu of the 3D object, choose 3D Effects - Textures tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153541\n" +"par_id3154572\n" "help.text" -msgid "Choose Format - Character - Position tab." +msgid "Open the context menu of the 3D object, choose 3D Effects - Material tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3159256\n" +"par_id3145220\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Alignment tab." +msgid "Choose Format - Bullets and Numbering." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3151385\n" +"par_id3148771\n" "help.text" -msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgid "On Formatting bar, click" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148550\n" +"par_id3149445\n" "help.text" -msgid "Choose Format - Character - Asian Layout tab" -msgstr "ይምረጡ አቀራረብ - ባህሪ - የ እስያን እቅድ tab" +msgid "Icon" +msgstr "ምልክት" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3152811\n" +"par_id3157970\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Layout tab." -msgstr "" +msgid "Bullets On/Off" +msgstr "ነጥቦች ማብሪያ/ማጥፊያ" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153524\n" +"par_id3149735\n" "help.text" -msgid "Choose Format - Paragraph - Asian Typography tab (not in HTML)." +msgid "Choose Format - Bullets and Numbering. Open Options tab page." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154366\n" +"par_id3150785\n" "help.text" -msgid "Choose Format - Cells - Asian Typography tab." +msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148742\n" +"par_id3148420\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Typography tab." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148922\n" +"par_id3148888\n" "help.text" -msgid "Choose Format - Character - Hyperlink tab." +msgid "Choose Format - Bullets and Numbering - Bullets tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149169\n" +"par_id3149917\n" "help.text" -msgid "Choose Format - Paragraph." +msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3151381\n" +"par_id3154930\n" "help.text" -msgid "On Text Formatting bar (with cursor in object), click" -msgstr "በ ጽሁፍ አቀራረብ መደርደሪያ ላይ (በ መጠቆሚያው እቃውን), ይጫኑ" +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3155995\n" +"par_id3150862\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Bullets and Numbering - Numbering tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3147299\n" +"par_id3155378\n" "help.text" -msgid "Paragraph" -msgstr "አንቀጽ" +msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3147289\n" +"par_id3156011\n" "help.text" -msgid "Choose Format - Paragraph - Alignment tab." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3147352\n" +"par_id0611200904324832\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Alignment tab." +msgid "Choose Format - Bullets and Numbering - Image tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154640\n" +"par_id3155848\n" "help.text" -msgid "Choose Format - Paragraph - Indents & Spacing tab." +msgid "Choose Format - Bullets and Numbering - Outline tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3152463\n" +"par_id3148733\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Indents & Spacing tab." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154319\n" +"par_id3156658\n" "help.text" -msgid "Choose Format - Paragraph - Tabs tab." +msgid "Choose Format - Bullets and Numbering. Open Position tab page." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154833\n" +"par_id3156170\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Tabs tab." +msgid "Choose Tools - Chapter Numbering - Position tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3159155\n" +"par_id3153812\n" "help.text" -msgid "Double-click the ruler" -msgstr "ሁለት-ጊዜ ይጫኑ ማስመሪያውን" +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_idN109E2\n" +"par_id3151332\n" "help.text" -msgid "(all options only in Writer or Calc)" -msgstr "(ሁሉንም ምርጫዎች በ መጻፊያ ወይንም በ ሰንጠረዥ)" +msgid "Menu Format - Image - Properties - Crop tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3156105\n" +"par_id3153317\n" "help.text" -msgid "Choose Format - Paragraph - Borders tab." -msgstr "" +msgid "Icon on the Image toolbar:" +msgstr "ምልክት በ ምስል እቃ መደርደሪያ ላይ:" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154149\n" +"par_id3149953\n" "help.text" -msgid "Choose Format - Image - Properties - Borders tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3163822\n" +"par_id3153695\n" "help.text" -msgid "Choose Format - Frame and Object - Properties - Borders tab." -msgstr "" +msgid "Crop" +msgstr "መከርከሚያ" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3150048\n" +"par_id3151254\n" "help.text" -msgid "Choose Format - Page - Borders tab." +msgid "Choose Format - Text or Format - Text - Change Case." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3151148\n" +"par_id3153579\n" "help.text" -msgid "Choose Format - Character - Borders tab." +msgid "Menu Format - Asian phonetic guide." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149911\n" +"00040501.xhp\n" +"tit\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Borders tab." -msgstr "" +msgid "Format Menu" +msgstr "ዝርዝር አቀራረብ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3150094\n" +"00040501.xhp\n" +"hd_id3145759\n" "help.text" -msgid "Choose Format - Page - Header - More button." -msgstr "" +msgid "Format Menu" +msgstr "ዝርዝር አቀራረብ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154501\n" +"00040501.xhp\n" +"par_id3150156\n" "help.text" -msgid "Choose Format - Page - Footer - More button." -msgstr "" +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." -msgstr "" +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 "Menu Format - Paragraph - Border tab - Padding." -msgstr "" +msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. Database connection must exist." +msgstr "መክፈቻ ፎርም መቆጣጠሪያዎች እቃ መደርደሪያ: ይጫኑ ተጨማሪ መቆጣጠሪያዎች ምልክት: ይጫኑ ሰንጠረዥ መቆጣጠሪያዎች ምልክት እና በ አይጥ በ መጎተት ሜዳ ያመንጩ: የ ዳታቤዝ ግንኙነት መውጣት አለበት " -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3159130\n" +"00040501.xhp\n" +"par_id3156553\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." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155853\n" +"00040501.xhp\n" +"par_id3148825\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 1." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3147330\n" +"00040501.xhp\n" +"par_id3155434\n" "help.text" -msgid "Choose Format - Character - 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_id3149486\n" +"00040501.xhp\n" +"par_id3151378\n" "help.text" -msgid "Choose Format - Image - 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_id3150592\n" +"00040501.xhp\n" +"par_id3151246\n" "help.text" -msgid "Choose Format - Frame and Object - Properties - Area 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_id3151321\n" +"00040501.xhp\n" +"par_id3154923\n" "help.text" -msgid "Choose Format - Page - Background tab." -msgstr "" +msgid "Open Toolbox bar in Basic dialog editor, click" +msgstr "መክፈቻ የ መሳሪያ ሳጥን መደርደሪያ በ Basic ንግግር ማረሚያ: ይጫኑ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154510\n" +"00040501.xhp\n" +"par_id3151054\n" "help.text" -msgid "Choose Format - Page - Header - More button." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3159110\n" +"00040501.xhp\n" +"par_id3154836\n" "help.text" -msgid "Choose Format - Page - Footer - More button." -msgstr "" +msgid "Properties" +msgstr "ባህሪዎች" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153532\n" +"00040501.xhp\n" +"par_id3149292\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Background tab." +msgid "Open context menu of a selected form element - choose Form." msgstr "" -#: 00040500.xhp -msgctxt "" -"00040500.xhp\n" -"par_id3144747\n" -"help.text" -msgid "Choose Insert/Edit - Section - Background tab" -msgstr "ይምረጡ ማስገቢያ/ማረሚያ - ክፍል - መደብ tab" - -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3146900\n" +"00040501.xhp\n" +"par_id3152933\n" "help.text" -msgid "Choose Format - Cells - Background tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3146791\n" +"00040501.xhp\n" +"par_id3144760\n" "help.text" -msgid "Choose Format - Page - Organizer tab." -msgstr "" +msgid "Form" +msgstr "ፎርም" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154482\n" +"00040501.xhp\n" +"par_id3150447\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 - General tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153357\n" +"00040501.xhp\n" +"par_id3144448\n" "help.text" -msgid "Choose Format - Page - Page 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_id3149323\n" +"00040501.xhp\n" +"par_id3145786\n" "help.text" -msgid "Choose Slide - Properties - Page tab (in $[officename] Impress)." +msgid "Open context menu of a selected form element - choose Form - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154972\n" +"00040501.xhp\n" +"par_id3158156\n" "help.text" -msgid "Choose Page - Properties - Page tab (in $[officename] Draw)." +msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154362\n" +"00040501.xhp\n" +"par_id1979125\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 control on an XML Form document, choose Control - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155515\n" +"00040501.xhp\n" +"par_id1769463\n" "help.text" -msgid "Choose Format - Page - Header tab." +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_id3148405\n" +"00040501.xhp\n" +"par_id3145364\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 Form - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3145618\n" +"00040501.xhp\n" +"par_id3153575\n" "help.text" -msgid "Choose Format - Page - Footer 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_id3155175\n" +"00040501.xhp\n" +"par_id3147234\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Footer tab." +msgid "Open context menu of a selected form element - choose Control." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3147404\n" +"00040501.xhp\n" +"par_id3153953\n" "help.text" -msgid "Choose View - Styles." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3166447\n" +"00040501.xhp\n" +"par_id3156442\n" "help.text" -msgid "Command+TF11" -msgstr "ትእዛዝ+TF11" +msgid "Control" +msgstr "መቆጣጠሪያ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3147321\n" +"00040501.xhp\n" +"par_id3153943\n" "help.text" -msgid "On Formatting bar, click" +msgid "Open context menu of a selected form element - choose Control - General tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148533\n" +"00040501.xhp\n" +"par_id3159198\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - General tab." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153534\n" +"00040501.xhp\n" +"par_id3153203\n" "help.text" -msgid "Styles" -msgstr "ዘዴዎች" +msgid "Open context menu of a selected form element - choose Control - Data tab." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3159313\n" +"00040501.xhp\n" +"par_id3150048\n" "help.text" -msgid "On the Drawing bar, click" -msgstr " መሳያ መደርደሪያ ላይ ይጫኑ " +msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Data tab." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3109845\n" +"00040501.xhp\n" +"par_id3153334\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Open context menu of a selected form element - choose Control - Events tab." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3152498\n" +"00040501.xhp\n" +"par_id3153744\n" "help.text" -msgid "3D Effects" +msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3145256\n" +"00040501.xhp\n" +"par_id6058839\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Geometry tab." +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154203\n" +"00040501.xhp\n" +"par_id3157874\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Shading tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151284\n" +"00040501.xhp\n" +"par_id3146926\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Illumination tab." -msgstr "" +msgid "Activation Order" +msgstr "የ ማስነሻ ትእዛዝ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3152475\n" +"00040501.xhp\n" +"par_id2709433\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Textures tab." +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154572\n" +"00040501.xhp\n" +"par_id3156439\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Material tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3145220\n" +"00040501.xhp\n" +"par_id3144747\n" "help.text" -msgid "Choose Format - Bullets and Numbering." -msgstr "" +msgid "Add Field" +msgstr "ሜዳ መጨመሪያ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148771\n" +"00040501.xhp\n" +"par_id9929502\n" "help.text" -msgid "On Formatting bar, click" +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149445\n" +"00040501.xhp\n" +"par_id3150749\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3157970\n" +"00040501.xhp\n" +"par_id3147237\n" "help.text" -msgid "Bullets On/Off" -msgstr "ነጥቦች ማብሪያ/ማጥፊያ" +msgid "Form Navigator" +msgstr "ፎርም መቃኛ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149735\n" +"00040501.xhp\n" +"par_id4886928\n" "help.text" -msgid "Choose Format - Bullets and Numbering. Open Options tab page." +msgid "On Form Controls toolbar or Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3150785\n" +"00040501.xhp\n" +"par_id3156056\n" "help.text" -msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148420\n" +"00040501.xhp\n" +"par_id3153767\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "Design Mode On/Off" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148888\n" +"00040501.xhp\n" +"par_id3148828\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Bullets tab." +msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149917\n" +"00040501.xhp\n" +"par_id8177434\n" "help.text" -msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154930\n" +"00040501.xhp\n" +"par_id3149822\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3150862\n" +"00040501.xhp\n" +"par_id3147321\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Numbering tab." -msgstr "" +msgid "Open in Design Mode" +msgstr "በ ንድፍ ዘዴ መክፈቻ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155378\n" +"00040501.xhp\n" +"par_id3147533\n" "help.text" -msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." +msgid "On Form Control toolbar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3156011\n" +"00040501.xhp\n" +"par_id3152948\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id0611200904324832\n" +"00040501.xhp\n" +"par_id3155939\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Image tab." -msgstr "" +msgid "Wizards On/Off" +msgstr "አዋቂዎች ማብሪያ/ማጥፊያ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155848\n" +"00040501.xhp\n" +"par_id3147244\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Outline tab." +msgid "Choose Format - Arrange ($[officename] Writer, $[officename] Calc)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148733\n" +"00040501.xhp\n" +"par_id3159334\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "Open context menu - choose Arrange ($[officename] Impress, $[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3156658\n" +"00040501.xhp\n" +"par_id3154023\n" "help.text" -msgid "Choose Format - Bullets and Numbering. Open Position tab page." +msgid "Choose Shape - Arrange ($[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3156170\n" +"00040501.xhp\n" +"par_id3155578\n" "help.text" -msgid "Choose Tools - Chapter Numbering - Position tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153812\n" +"00040501.xhp\n" +"par_id3152496\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." -msgstr "" +msgid "Arrange" +msgstr "ማዘጋጃ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151332\n" +"00040501.xhp\n" +"par_id3148459\n" "help.text" -msgid "Menu Format - Image - Properties - Crop tab." +msgid "Choose Format - Arrange - Bring to Front ($[officename] Writer, $[officename] Calc)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153317\n" +"00040501.xhp\n" +"par_id3148425\n" "help.text" -msgid "Icon on the Image toolbar:" -msgstr "ምልክት በ ምስል እቃ መደርደሪያ ላይ:" +msgid "Choose Shape - Arrange - Bring to Front ($[officename] Draw)." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149953\n" +"00040501.xhp\n" +"par_id3153268\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Shift+CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153695\n" +"00040501.xhp\n" +"par_id3154206\n" "help.text" -msgid "Crop" -msgstr "መከርከሚያ" +msgid "Open context menu - choose Arrange - Bring to Front ($[officename] Impress)." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151254\n" +"00040501.xhp\n" +"par_id3151213\n" "help.text" -msgid "Choose Format - Text or Format - Text - Change Case." -msgstr "" +msgid "Icon" +msgstr "ምልክት" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153579\n" +"00040501.xhp\n" +"par_id3149571\n" "help.text" -msgid "Menu Format - Asian phonetic guide." -msgstr "" +msgid "Bring to Front" +msgstr "ወደ ፊት ማምጫ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"tit\n" +"par_id3147092\n" "help.text" -msgid "Format Menu" -msgstr "ዝርዝር አቀራረብ" +msgid "Choose Format - Arrange - Bring Forward ($[officename] Writer, $[officename] Calc)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"hd_id3145759\n" +"par_id3148396\n" "help.text" -msgid "Format Menu" -msgstr "ዝርዝር አቀራረብ" +msgid "Choose Shape - Arrange - Bring Forward ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150156\n" +"par_id3149528\n" "help.text" -msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field." -msgstr "መክፈቻ ፎርም መቆጣጠሪያዎች እቃ መደርደሪያ ይጫኑ ተጨማሪ መቆጣጠሪያዎች ምልክት ይጫኑ ሰንጠረዥ መቆጣጠሪያ ምልክት እና በ አይጥ በ መጎተት ሜዳ ያመንጩ " +msgid "CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)" +msgstr "ትእዛዝCtrl+መቀነሻ ምልክት ($[officename] ማስደነቂያ, $[officename] መሳያ)" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154408\n" +"par_id3154658\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 "Open context menu - choose Arrange - Bring Forward ($[officename] Impress)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149748\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. Database connection must exist." -msgstr "መክፈቻ ፎርም መቆጣጠሪያዎች እቃ መደርደሪያ: ይጫኑ ተጨማሪ መቆጣጠሪያዎች ምልክት: ይጫኑ ሰንጠረዥ መቆጣጠሪያዎች ምልክት እና በ አይጥ በ መጎተት ሜዳ ያመንጩ: የ ዳታቤዝ ግንኙነት መውጣት አለበት " +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156553\n" +"par_id3155848\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." -msgstr "" +msgid "Bring Forward" +msgstr "ወደ ፊት ለ ፊት ማምጫ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148825\n" +"par_id3154815\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 "Choose Format - Arrange - Send Backward ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3155434\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: Wizard - Page 2." +msgid "Choose Shape - Arrange - Send Backward ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151378\n" +"par_id3156064\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 "CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" +msgstr "ትእዛዝCtrl+መቀነሻ ምልክት ($[officename] ማስደነቂያ, $[officename] መሳያ)" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151246\n" +"par_id3159107\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." +msgid "Open context menu - choose Arrange - Send Backward ($[officename] Impress)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154923\n" +"par_id3152994\n" "help.text" -msgid "Open Toolbox bar in Basic dialog editor, click" -msgstr "መክፈቻ የ መሳሪያ ሳጥን መደርደሪያ በ Basic ንግግር ማረሚያ: ይጫኑ" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151054\n" +"par_id3152795\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Send Backward" +msgstr "ወደ ኋላ መላኪያ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154836\n" +"par_id3149493\n" "help.text" -msgid "Properties" -msgstr "ባህሪዎች" +msgid "Choose Format - Arrange - Send to Back ($[officename] Writer, $[officename] Calc)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149292\n" +"par_id3148595\n" "help.text" -msgid "Open context menu of a selected form element - choose Form." +msgid "Choose Shape - Arrange - Send to Back ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3152933\n" +"par_id3150690\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Shift+CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" +msgstr "Shift+ትእዛዝCtrl+መቀነስ ምልክት ($[officename] ማስደነቂያ, $[officename] መሳያ)" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3144760\n" +"par_id3154486\n" "help.text" -msgid "Form" -msgstr "ፎርም" +msgid "Open context menu - choose Arrange - Send to Back ($[officename] Impress)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150447\n" +"par_id3145384\n" "help.text" -msgid "Open context menu of a selected form element - choose Form - General tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3144448\n" +"par_id3155260\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - General tab." -msgstr "" +msgid "Send to Back" +msgstr "ወደ ኋላ መላኪያ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3145786\n" +"par_id3145410\n" "help.text" -msgid "Open context menu of a selected form element - choose Form - Data tab." +msgid "Choose Format - Arrange - To Foreground." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3158156\n" +"par_id3149408\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Data tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id1979125\n" +"par_id3153607\n" "help.text" -msgid "Open context menu of a selected control on an XML Form document, choose Control - Data tab." -msgstr "" +msgid "To Foreground" +msgstr "ወደ ፊት ለፊት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id1769463\n" +"par_id3159626\n" "help.text" -msgid "Open Form Controls toolbar of an XML Form document, click Control icon - Data tab." +msgid "Choose Format - Arrange - To Background." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3145364\n" +"par_id3153815\n" "help.text" -msgid "Open context menu of a selected form element - choose Form - Events tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153575\n" +"par_id3152900\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Events tab." -msgstr "" +msgid "To Background" +msgstr "ወደ መደቡ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147234\n" +"par_id3146854\n" "help.text" -msgid "Open context menu of a selected form element - choose Control." +msgid "Choose Format - Align ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153953\n" +"par_id3153914\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Shape - Align (objects selected) ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156442\n" +"par_id3153185\n" "help.text" -msgid "Control" -msgstr "መቆጣጠሪያ" +msgid "Open context menu - choose Align (objects selected) ($[officename] Impress, $[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153943\n" +"par_id3168611\n" "help.text" -msgid "Open context menu of a selected form element - choose Control - General tab." +msgid "Choose Format - Align - Left ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3159198\n" +"par_id3083450\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - General tab." +msgid "Choose Shape - Align - Left (selected objects) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153203\n" +"par_id3150257\n" "help.text" -msgid "Open context menu of a selected form element - choose Control - Data tab." +msgid "Open context menu - choose Align - Left (objects selected) ($[officename] Impress, $[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150048\n" +"par_id3146786\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Data tab." +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153334\n" +"par_id3153373\n" "help.text" -msgid "Open context menu of a selected form element - choose Control - Events tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153744\n" +"par_id3151231\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Events tab." -msgstr "" +msgid "Left" +msgstr "በ ግራ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id6058839\n" +"par_id3150268\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_id3157874\n" +"par_id3157978\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3146926\n" +"par_id3150139\n" "help.text" -msgid "Activation Order" -msgstr "የ ማስነሻ ትእዛዝ" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id2709433\n" +"par_id3149519\n" "help.text" -msgid "On Form Design bar, click" -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156439\n" +"par_id3150704\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Centered" +msgstr "መሀከል" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3144747\n" +"par_id3156546\n" "help.text" -msgid "Add Field" -msgstr "ሜዳ መጨመሪያ" +msgid "Choose Format - Align - Right." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id9929502\n" +"par_id3145073\n" "help.text" -msgid "On Form Design bar, click" +msgid "Choose Shape - Align - Right (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150749\n" +"par_id3146953\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147237\n" +"par_id3155436\n" "help.text" -msgid "Form Navigator" -msgstr "ፎርም መቃኛ" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id4886928\n" +"par_id3150834\n" "help.text" -msgid "On Form Controls toolbar or Form Design bar, click" -msgstr "" +msgid "Right" +msgstr "በ ቀኝ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156056\n" +"par_id3153109\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Align - Top ($[officename] Writer, $[officename] Calc)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153767\n" +"par_id3150213\n" "help.text" -msgid "Design Mode On/Off" +msgid "Choose Shape - Align - Top (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148828\n" +"par_id3155093\n" "help.text" -msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." +msgid "Open context menu - choose Align - Top (objects selected) ($[officename] Impress, $[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id8177434\n" +"par_id3151303\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_id3149822\n" +"par_id3155386\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147321\n" +"par_id3157550\n" "help.text" -msgid "Open in Design Mode" -msgstr "በ ንድፍ ዘዴ መክፈቻ" +msgid "Top" +msgstr "ከ ላይ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147533\n" +"par_id3153976\n" "help.text" -msgid "On Form Control toolbar, click" +msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3152948\n" -"help.text" -msgid "Icon" -msgstr "ምልክት" - -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3155939\n" -"help.text" -msgid "Wizards On/Off" -msgstr "አዋቂዎች ማብሪያ/ማጥፊያ" - -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3147244\n" +"par_id3153246\n" "help.text" -msgid "Choose Format - Arrange ($[officename] Writer, $[officename] Calc)." +msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3159334\n" +"par_id3154614\n" "help.text" -msgid "Open context menu - choose Arrange ($[officename] Impress, $[officename] Draw)." +msgid "Open context menu - choose Align - Centered (objects selected) ($[officename] Impress, $[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154023\n" +"par_id3149196\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" -"help.text" -msgid "Icon" -msgstr "ምልክት" - -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3152496\n" +"par_id3145755\n" "help.text" -msgid "Arrange" -msgstr "ማዘጋጃ" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148459\n" +"par_id3146943\n" "help.text" -msgid "Choose Format - Arrange - Bring to Front ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgid "Centered" +msgstr "መሀከል" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148425\n" +"par_id3149896\n" "help.text" -msgid "Choose Shape - Arrange - Bring to Front ($[officename] Draw)." +msgid "Choose Format - Align - Bottom ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153268\n" +"par_id3156049\n" "help.text" -msgid "Shift+CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)." +msgid "Choose Shape - Align - Bottom (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154206\n" +"par_id3152545\n" "help.text" -msgid "Open context menu - choose Arrange - Bring to Front ($[officename] Impress)." +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151213\n" +"par_id3154057\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149571\n" +"par_id3145601\n" "help.text" -msgid "Bring to Front" -msgstr "ወደ ፊት ማምጫ" +msgid "Bottom" +msgstr "ከ ታች" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147092\n" +"par_id3145197\n" "help.text" -msgid "Choose Format - Arrange - Bring Forward ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Anchor." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148396\n" +"par_id2851649\n" "help.text" -msgid "Choose Shape - Arrange - Bring Forward ($[officename] Draw)." +msgid "On Form Design bar, click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149528\n" +"par_id3151122\n" "help.text" -msgid "CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)" -msgstr "ትእዛዝCtrl+መቀነሻ ምልክት ($[officename] ማስደነቂያ, $[officename] መሳያ)" +msgid "Icon" +msgstr "ምልክት" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154658\n" +"par_id3154763\n" "help.text" -msgid "Open context menu - choose Arrange - Bring Forward ($[officename] Impress)." -msgstr "" +msgid "Change Anchor" +msgstr "ማስቆሚያ መቀየሪያ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3159121\n" +"par_id3148899\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Anchor - To Page." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3155848\n" +"par_id3149342\n" "help.text" -msgid "Bring Forward" -msgstr "ወደ ፊት ለ ፊት ማምጫ" +msgid "Choose Format - Anchor - To Paragraph." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154815\n" +"par_id3155147\n" "help.text" -msgid "Choose Format - Arrange - Send Backward ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Anchor - To Character." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150428\n" +"par_id3153042\n" "help.text" -msgid "Choose Shape - Arrange - Send Backward ($[officename] Draw)." +msgid "Choose Format - Anchor - As Character." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156064\n" +"par_id3146964\n" "help.text" -msgid "CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" -msgstr "ትእዛዝCtrl+መቀነሻ ምልክት ($[officename] ማስደነቂያ, $[officename] መሳያ)" +msgid "Choose Format - Anchor - To Frame." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3159107\n" +"par_id3150781\n" "help.text" -msgid "Open context menu - choose Arrange - Send Backward ($[officename] Impress)." +msgid "Choose Format - Anchor - To Cell." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152994\n" +"00040502.xhp\n" +"tit\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Format Menu" +msgstr "ዝርዝር አቀራረብ" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152795\n" +"00040502.xhp\n" +"hd_id3149741\n" "help.text" -msgid "Send Backward" -msgstr "ወደ ኋላ መላኪያ" +msgid "Format Menu" +msgstr "ዝርዝር አቀራረብ" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149493\n" +"00040502.xhp\n" +"par_id3146857\n" "help.text" -msgid "Choose Format - Arrange - Send to Back ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Line (Impress and Draw)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3148595\n" +"00040502.xhp\n" +"par_id366527\n" "help.text" -msgid "Choose Shape - Arrange - Send to Back ($[officename] Draw)." +msgid "Choose Format - Text Box and Shape - Line (Writer)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150690\n" +"00040502.xhp\n" +"par_id3835261\n" "help.text" -msgid "Shift+CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" -msgstr "Shift+ትእዛዝCtrl+መቀነስ ምልክት ($[officename] ማስደነቂያ, $[officename] መሳያ)" +msgid "Choose Format - Object - Line (Calc)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154486\n" +"00040502.xhp\n" +"par_id3148668\n" "help.text" -msgid "Open context menu - choose Arrange - Send to Back ($[officename] Impress)." +msgid "On Line and Filling bar, click" msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145384\n" +"00040502.xhp\n" +"par_id3148889\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Icon" +msgstr "ምልክት" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155260\n" +"00040502.xhp\n" +"par_id3159147\n" "help.text" -msgid "Send to Back" -msgstr "ወደ ኋላ መላኪያ" +msgid "Line" +msgstr "መስመር" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145410\n" +"00040502.xhp\n" +"par_id3154285\n" "help.text" -msgid "Choose Format - Arrange - To Foreground." +msgid "Choose Format - Text Box and Shape - Object - Line - Line tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149408\n" +"00040502.xhp\n" +"par_id3147335\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +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_id3153607\n" +"00040502.xhp\n" +"par_id3156023\n" "help.text" -msgid "To Foreground" -msgstr "ወደ ፊት ለፊት" +msgid "Choose Format - Title - Borders tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3159626\n" +"00040502.xhp\n" +"par_id3153061\n" "help.text" -msgid "Choose Format - Arrange - To Background." +msgid "Choose Format - Legend - Borders tab (charts)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153815\n" +"00040502.xhp\n" +"par_id3155922\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Axis - Line tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152900\n" +"00040502.xhp\n" +"par_id3147559\n" "help.text" -msgid "To Background" -msgstr "ወደ መደቡ" +msgid "Choose Format - Grid - Line tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146854\n" +"00040502.xhp\n" +"par_id3154758\n" "help.text" -msgid "Choose Format - Align ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Chart Wall - Borders tab (charts)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153914\n" +"00040502.xhp\n" +"par_id3153960\n" "help.text" -msgid "Choose Shape - Align (objects selected) ($[officename] Draw)." +msgid "Choose Format - Chart Floor - Borders tab (charts)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153185\n" +"00040502.xhp\n" +"par_id3154939\n" "help.text" -msgid "Open context menu - choose Align (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Chart Area - Borders tab (charts)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3168611\n" +"00040502.xhp\n" +"par_id3151293\n" "help.text" -msgid "Choose Format - Align - Left ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Text Box and Shape - Object - Line - Line Styles tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3083450\n" +"00040502.xhp\n" +"par_id3149317\n" "help.text" -msgid "Choose Shape - Align - Left (selected objects) ($[officename] Draw)." +msgid "Choose Format - Text Box and Shape - Object - Line - Arrow Styles tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150257\n" +"00040502.xhp\n" +"par_id3156082\n" "help.text" -msgid "Open context menu - choose Align - Left (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Text Box and Shape - Object - Area." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146786\n" +"00040502.xhp\n" +"par_id3148922\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "On Line and Filling bar, click" msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153373\n" +"00040502.xhp\n" +"par_id3156424\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Icon" +msgstr "ምልክት" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3151231\n" +"00040502.xhp\n" +"par_id3150393\n" "help.text" -msgid "Left" -msgstr "በ ግራ" +msgid "Area" +msgstr "ቦታ" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150268\n" +"00040502.xhp\n" +"par_id3154948\n" "help.text" -msgid "Choose Format - Align - Centered ($[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_id3157978\n" +"00040502.xhp\n" +"par_id3145607\n" "help.text" -msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." -msgstr "" +msgid "Choose View - Styles - open context menu and choose Modify/New - Area tab (presentation documents)." +msgstr "ይምረጡ መመልከቻ - ዘዴዎች እና አቀራረብ - መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ ማሻሻያ/አዲስ - ቦታ tab (ለ ማቅረቢያ ሰነዶች)" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150139\n" +"00040502.xhp\n" +"par_id3152922\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" -msgstr "" +msgid "Choose Format - Title - Area tab (chart documents)." +msgstr "ይምረጡ አቀራረብ - አርእስት - ቦታ tab (ለ ቻርት ሰነዶች)" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149519\n" +"00040502.xhp\n" +"par_id3157894\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Legend - Area tab (chart documents)." +msgstr "ይምረጡ አቀራረብ - መግለጫ - ቦታ tab (ለ ቻርት ሰነዶች)" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150704\n" +"00040502.xhp\n" +"par_id3144444\n" "help.text" -msgid "Centered" -msgstr "መሀከል" +msgid "Choose Format - Chart Wall - Area tab (chart documents)." +msgstr "ይምረጡ አቀራረብ - የ ቻርት ግድግዳ - ቦታ tab (ለ ቻርት ሰነዶች)" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3156546\n" +"00040502.xhp\n" +"par_id3156543\n" "help.text" -msgid "Choose Format - Align - Right." -msgstr "" +msgid "Choose Format - Chart Floor - Area tab (chart documents)." +msgstr "ይምረጡ አቀራረብ - የ ቻርትስ ወለል - ቦታ tab (ለ ቻርት ሰነዶች)" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145073\n" +"00040502.xhp\n" +"par_id3150685\n" "help.text" -msgid "Choose Shape - Align - Right (objects selected) ($[officename] Draw)." -msgstr "" +msgid "Choose Format - Chart Area - Area tab (chart documents)." +msgstr "ይምረጡ አቀራረብ - የ ቻርት ቦታ - ቦታ tab (ለ ቻርት ሰነዶች)" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146953\n" +"00040502.xhp\n" +"par_id3149664\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" -msgstr "" +msgid "Choose Slide - Properties - Background tab (in $[officename] Impress)." +msgstr "ይምረጡ ተንሸራታች - ባህሪዎች - መደብ tab (በ $[officename] ማስደነቂያ):" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155436\n" +"00040502.xhp\n" +"par_id9149694\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Page - Properties - Background tab (in $[officename] Draw)." +msgstr "ይምረጡ ገጽ - ባህሪዎች - መደብ tab (በ $[officename] መሳያ):" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150834\n" +"00040502.xhp\n" +"par_id841527083135387\n" "help.text" -msgid "Right" -msgstr "በ ቀኝ" +msgid "Choose Table - Properties - Background tab." +msgstr "ይምረጡ ሰንጠረዥ - ባህሪ - መደብ tab" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153109\n" +"00040502.xhp\n" +"par_id3154985\n" "help.text" -msgid "Choose Format - Align - Top ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Area - Transparency tab (drawing documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150213\n" +"00040502.xhp\n" +"par_id3145365\n" "help.text" -msgid "Choose Shape - Align - Top (objects selected) ($[officename] Draw)." +msgid "Choose Format - Area - Transparency tab (presentation documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155093\n" +"00040502.xhp\n" +"par_id3151117\n" "help.text" -msgid "Open context menu - choose Align - Top (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Chart Wall - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3151303\n" +"00040502.xhp\n" +"par_id3147326\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Chart Area - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155386\n" +"00040502.xhp\n" +"par_id3154920\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Chart Floor - Transparency tab (chart documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3157550\n" +"00040502.xhp\n" +"par_id3145591\n" "help.text" -msgid "Top" -msgstr "ከ ላይ" +msgid "Choose Format - Title - All Titles - Transparency tab (chart documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153976\n" +"00040502.xhp\n" +"par_id3145750\n" "help.text" -msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Title - Main Title - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153246\n" +"00040502.xhp\n" +"par_id3148556\n" "help.text" -msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." +msgid "Choose Format - Title - Subtitle - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154614\n" +"00040502.xhp\n" +"par_id3163710\n" "help.text" -msgid "Open context menu - choose Align - Centered (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Title - Title (X Axis) - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149196\n" +"00040502.xhp\n" +"par_id3150487\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Title - Title (Y Axis) - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3145755\n" -"help.text" -msgid "Icon" -msgstr "ምልክት" - -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146943\n" +"00040502.xhp\n" +"par_id3154320\n" "help.text" -msgid "Centered" -msgstr "መሀከል" +msgid "Choose Format - Title - Title (Z Axis) - Transparency tab (chart documents)" +msgstr "ይምረጡ አቀራረብ - አርእስት - አርእስት (Z አክሲስ) - ግልጽነት tab (የ ቻርት ሰነዶች)" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149896\n" +"00040502.xhp\n" +"par_id3151113\n" "help.text" -msgid "Choose Format - Align - Bottom ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Object Properties - Data Point - Transparency - tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3156049\n" +"00040502.xhp\n" +"par_id3149266\n" "help.text" -msgid "Choose Shape - Align - Bottom (objects selected) ($[officename] Draw)." +msgid "Choose Format - Object Properties - Data Series - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152545\n" +"00040502.xhp\n" +"par_id3150011\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Text Box and Shape - Object - Area - Shadow tab." msgstr "" -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3154057\n" -"help.text" -msgid "Icon" -msgstr "ምልክት" - -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3145601\n" -"help.text" -msgid "Bottom" -msgstr "ከ ታች" - -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145197\n" +"00040502.xhp\n" +"par_id3147441\n" "help.text" -msgid "Choose Format - Anchor." +msgid "Choose Format - Text Box and Shape - Object - Area - Gradients tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id2851649\n" +"00040502.xhp\n" +"par_id3155308\n" "help.text" -msgid "On Form Design bar, click" +msgid "Choose Format - Text Box and Shape - Object - Area - Hatching tab." msgstr "" -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3151122\n" -"help.text" -msgid "Icon" -msgstr "ምልክት" - -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3154763\n" -"help.text" -msgid "Change Anchor" -msgstr "ማስቆሚያ መቀየሪያ" - -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3148899\n" +"00040502.xhp\n" +"par_id3145800\n" "help.text" -msgid "Choose Format - Anchor - To Page." +msgid "Choose Format - Text Box and Shape - Object - Area - Bitmaps tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149342\n" +"00040502.xhp\n" +"par_id3145251\n" "help.text" -msgid "Choose Format - Anchor - To Paragraph." +msgid "Choose Format - Text Box and Shape - Text Attributes Object - Text - Text." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155147\n" +"00040502.xhp\n" +"par_id3152810\n" "help.text" -msgid "Choose Format - Anchor - To Character." +msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153042\n" +"00040502.xhp\n" +"par_id3151060\n" "help.text" -msgid "Choose Format - Anchor - As Character." +msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text Animation tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146964\n" +"00040502.xhp\n" +"par_id3149911\n" "help.text" -msgid "Choose Format - Anchor - To Frame." +msgid "Choose Format - Text Box and Shape - Object - Position and Size." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150781\n" +"00040502.xhp\n" +"par_id3156286\n" "help.text" -msgid "Choose Format - Anchor - To Cell." +msgid "F4 keyF4 key" msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"tit\n" +"par_id3153052\n" "help.text" -msgid "Format Menu" -msgstr "ዝርዝር አቀራረብ" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"hd_id3149741\n" +"par_id3149938\n" "help.text" -msgid "Format Menu" -msgstr "ዝርዝር አቀራረብ" +msgid "Position and Size" +msgstr "ቦታ እና መጠን" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3146857\n" +"par_id3148833\n" "help.text" -msgid "Choose Format - Line (Impress and Draw)." +msgid "Open the context menu for the object - choose Name." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id366527\n" +"par_id411999\n" "help.text" -msgid "Choose Format - Text Box and Shape - Line (Writer)." +msgid "Open the context menu for the object - choose Description." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3835261\n" +"par_id3153099\n" "help.text" -msgid "Choose Format - Object - Line (Calc)." +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Position and Size tab." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148668\n" +"par_id3152973\n" "help.text" -msgid "On Line and Filling bar, click" +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Rotation tab." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148889\n" +"par_id3148495\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3159147\n" +"par_id3146790\n" "help.text" -msgid "Line" -msgstr "መስመር" +msgid "Rotate" +msgstr "ማዞሪያ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154285\n" +"par_id3145666\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Line - Line tab." +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147335\n" +"par_id3146081\n" "help.text" -msgid "Choose View - Styles - open context menu and choose Modify/New - Line tab (presentation documents)." +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 "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156023\n" +"par_id3083283\n" "help.text" -msgid "Choose Format - Title - Borders tab (charts)." +msgid "Choose Edit - Points." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153061\n" +"par_id3145642\n" "help.text" -msgid "Choose Format - Legend - Borders tab (charts)." +msgid "Open context menu - choose Edit Points. Open context menu - choose Edit Points." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3155922\n" +"par_id3149019\n" "help.text" -msgid "Choose Format - Axis - Line tab (charts)." +msgid "F8 keyF8 key" msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147559\n" +"par_id3150044\n" "help.text" -msgid "Choose Format - Grid - Line tab (charts)." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154758\n" +"par_id3153966\n" "help.text" -msgid "Choose Format - Chart Wall - Borders tab (charts)." -msgstr "" +msgid "Edit Points" +msgstr "ነጥቦች ማረሚያ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153960\n" +"par_id3151248\n" "help.text" -msgid "Choose Format - Chart Floor - Borders tab (charts)." +msgid "Choose Format - Character (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154939\n" +"par_id3145229\n" "help.text" -msgid "Choose Format - Chart Area - Borders tab (charts)." +msgid "Open context menu - choose Character." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151293\n" +"par_id3151342\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Line - Line Styles tab." +msgid "Open context menu - choose Size." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149317\n" +"par_id3149255\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Line - Arrow Styles tab." +msgid "Open context menu - choose Style." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156082\n" +"par_id3155177\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area." +msgid "Open context menu - choose Style - Bold." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148922\n" +"par_id3145766\n" "help.text" -msgid "On Line and Filling bar, click" -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156424\n" +"par_id3147001\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Bold" +msgstr "ማድመቂያ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150393\n" +"par_id3151276\n" "help.text" -msgid "Area" -msgstr "ቦታ" +msgid "Open context menu - choose Style - Italic." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154948\n" +"par_id3159091\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Area tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145607\n" +"par_id3150234\n" "help.text" -msgid "Choose View - Styles - open context menu and choose Modify/New - Area tab (presentation documents)." -msgstr "ይምረጡ መመልከቻ - ዘዴዎች እና አቀራረብ - መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ ማሻሻያ/አዲስ - ቦታ tab (ለ ማቅረቢያ ሰነዶች)" +msgid "Italic" +msgstr "ማዝመሚያ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3152922\n" +"par_id3154589\n" "help.text" -msgid "Choose Format - Title - Area tab (chart documents)." -msgstr "ይምረጡ አቀራረብ - አርእስት - ቦታ tab (ለ ቻርት ሰነዶች)" +msgid "Open context menu - choose Style - Underline." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3157894\n" +"par_id3145223\n" "help.text" -msgid "Choose Format - Legend - Area tab (chart documents)." -msgstr "ይምረጡ አቀራረብ - መግለጫ - ቦታ tab (ለ ቻርት ሰነዶች)" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3144444\n" +"par_id3154715\n" "help.text" -msgid "Choose Format - Chart Wall - Area tab (chart documents)." -msgstr "ይምረጡ አቀራረብ - የ ቻርት ግድግዳ - ቦታ tab (ለ ቻርት ሰነዶች)" +msgid "Underline" +msgstr "ከ ስሩ ማስመሪያ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156543\n" +"par_id3145131\n" "help.text" -msgid "Choose Format - Chart Floor - Area tab (chart documents)." -msgstr "ይምረጡ አቀራረብ - የ ቻርትስ ወለል - ቦታ tab (ለ ቻርት ሰነዶች)" +msgid "Open context menu - choose Style - Strikethrough." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150685\n" +"par_id3158214\n" "help.text" -msgid "Choose Format - Chart Area - Area tab (chart documents)." -msgstr "ይምረጡ አቀራረብ - የ ቻርት ቦታ - ቦታ tab (ለ ቻርት ሰነዶች)" +msgid "Open context menu - choose Style - Shadow." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149664\n" +"par_id3150207\n" "help.text" -msgid "Choose Slide - Properties - Background tab (in $[officename] Impress)." -msgstr "ይምረጡ ተንሸራታች - ባህሪዎች - መደብ tab (በ $[officename] ማስደነቂያ):" +msgid "Open context menu - choose Style - Contour." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id9149694\n" +"par_id3154383\n" "help.text" -msgid "Choose Page - Properties - Background tab (in $[officename] Draw)." -msgstr "ይምረጡ ገጽ - ባህሪዎች - መደብ tab (በ $[officename] መሳያ):" +msgid "Open context menu - choose Style - Superscript." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id841527083135387\n" +"par_id3152767\n" "help.text" -msgid "Choose Table - Properties - Background tab." -msgstr "ይምረጡ ሰንጠረዥ - ባህሪ - መደብ tab" +msgid "Open context menu - choose Style - Subscript." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154985\n" +"par_id3155377\n" "help.text" -msgid "Choose Format - Area - Transparency tab (drawing documents)." +msgid "Open context menu - choose Line Spacing." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145365\n" +"par_id3154475\n" "help.text" -msgid "Choose Format - Area - Transparency tab (presentation documents)." +msgid "Open context menu - choose Line Spacing - Single." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151117\n" +"par_id3150478\n" "help.text" -msgid "Choose Format - Chart Wall - Transparency tab (chart documents)." +msgid "Open context menu - choose Line Spacing - 1.5 Lines." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147326\n" +"par_id3147167\n" "help.text" -msgid "Choose Format - Chart Area - Transparency tab (chart documents)." +msgid "Open context menu - choose Line Spacing - Double." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154920\n" +"par_id3146978\n" "help.text" -msgid "Choose Format - Chart Floor - Transparency tab (chart documents)." +msgid "Choose Format - Align - Left (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145591\n" +"par_id3153009\n" "help.text" -msgid "Choose Format - Title - All Titles - Transparency tab (chart documents)." +msgid "Open context menu - choose Align - Left." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145750\n" +"par_id3147310\n" "help.text" -msgid "Choose Format - Title - Main Title - Transparency tab (chart documents)." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148556\n" +"par_id3151336\n" "help.text" -msgid "Choose Format - Title - Subtitle - Transparency tab (chart documents)." -msgstr "" +msgid "Align Left" +msgstr "በ ግራ ማሰለፊያ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3163710\n" +"par_id3155823\n" "help.text" -msgid "Choose Format - Title - Title (X Axis) - Transparency tab (chart documents)." +msgid "Choose Format - Align - Right (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150487\n" +"par_id3155762\n" "help.text" -msgid "Choose Format - Title - Title (Y Axis) - Transparency tab (chart documents)." +msgid "Open context menu - choose Align - Right." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154320\n" +"par_id3149408\n" "help.text" -msgid "Choose Format - Title - Title (Z Axis) - Transparency tab (chart documents)" -msgstr "ይምረጡ አቀራረብ - አርእስት - አርእስት (Z አክሲስ) - ግልጽነት tab (የ ቻርት ሰነዶች)" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151113\n" +"par_id3153607\n" "help.text" -msgid "Choose Format - Object Properties - Data Point - Transparency - tab (chart documents)." -msgstr "" +msgid "Align Right" +msgstr "በ ቀኝ ማሰለፊያ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149266\n" +"par_id3149189\n" "help.text" -msgid "Choose Format - Object Properties - Data Series - Transparency tab (chart documents)." +msgid "Choose Format - Align - Centered (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150011\n" +"par_id3154624\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Shadow tab." +msgid "Open context menu - choose Align - Center." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147441\n" +"par_id3153815\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Gradients tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3155308\n" +"par_id3153076\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Hatching tab." -msgstr "" +msgid "Align Center HorizontallyCentered" +msgstr "በ አግድም መሀከል ማሰለፊያ መሀከል" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145800\n" +"par_id3146151\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Bitmaps tab." +msgid "Choose Format - Align - Justified (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145251\n" +"par_id3168612\n" "help.text" -msgid "Choose Format - Text Box and Shape - Text Attributes Object - Text - Text." +msgid "Open context menu - choose Align - Justified." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3152810\n" +"par_id3156189\n" "help.text" -msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151060\n" +"par_id3153131\n" "help.text" -msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text Animation tab." -msgstr "" +msgid "Justified" +msgstr "እኩል ማካፈያ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149911\n" +"par_id3150527\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size." +msgid "Click Fontwork icon on Drawing bar." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156286\n" +"par_id3144503\n" "help.text" -msgid "F4 keyF4 key" +msgid "Choose Format - Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153052\n" +"par_id3154854\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Open context menu - choose Group." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149938\n" +"par_id3157985\n" "help.text" -msgid "Position and Size" -msgstr "ቦታ እና መጠን" +msgid "Choose Format - Group - Group (text documents, spreadsheets)." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148833\n" +"par_id3157980\n" "help.text" -msgid "Open the context menu for the object - choose Name." +msgid "Choose Shape - Group - Group (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id411999\n" +"par_id3149508\n" "help.text" -msgid "Open the context menu for the object - choose Description." +msgid "Open context menu - choose Group - Group (form objects)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153099\n" +"par_id3146858\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Position and Size tab." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3152973\n" +"par_id3149593\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Rotation tab." -msgstr "" +msgid "Group" +msgstr "ቡድን" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148495\n" +"par_id3153023\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Group - Ungroup (text documents, spreadsheets)." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3146790\n" +"par_id3163378\n" "help.text" -msgid "Rotate" -msgstr "ማዞሪያ" +msgid "Choose Shape - Group - Ungroup (drawing documents)." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145666\n" +"par_id3156038\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." +msgid "Open context menu - choose Ungroup." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3146081\n" +"par_id3151300\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." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3083283\n" +"par_id3146894\n" "help.text" -msgid "Choose Edit - Points." -msgstr "" +msgid "Ungroup" +msgstr "መለያያ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145642\n" +"par_id3153109\n" "help.text" -msgid "Open context menu - choose Edit Points. Open context menu - choose Edit Points." +msgid "Choose Format - Group - Exit Group (text documents, spreadsheets)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149019\n" +"par_id3145678\n" "help.text" -msgid "F8 keyF8 key" +msgid "Choose Shape - Group - Exit Group (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150044\n" +"par_id3152367\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Open context menu - choose Exit Group." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153966\n" +"par_id3158402\n" "help.text" -msgid "Edit Points" -msgstr "ነጥቦች ማረሚያ" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151248\n" +"par_id3155347\n" "help.text" -msgid "Choose Format - Character (drawing functions)." -msgstr "" +msgid "Exit Group" +msgstr "ከ ቡድን መውጫ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145229\n" +"par_id3149129\n" "help.text" -msgid "Open context menu - choose Character." +msgid "Choose Format - Group - Enter Group (text documents, spreadsheets)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151342\n" +"par_id3145354\n" "help.text" -msgid "Open context menu - choose Size." +msgid "Choose Shape - Group - Enter Group (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149255\n" +"par_id3149946\n" "help.text" -msgid "Open context menu - choose Style." +msgid "Open context menu - choose Enter Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3155177\n" +"par_id3152388\n" "help.text" -msgid "Open context menu - choose Style - Bold." -msgstr "" +msgid "Icon" +msgstr "ምልክት" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145766\n" +"par_id3152547\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Enter Group" +msgstr "ቡድን ማስገቢያ" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3147001\n" +"00040503.xhp\n" +"tit\n" "help.text" -msgid "Bold" -msgstr "ማድመቂያ" +msgid "Format Menu" +msgstr "ዝርዝር አቀራረብ" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151276\n" +"00040503.xhp\n" +"hd_id3155757\n" "help.text" -msgid "Open context menu - choose Style - Italic." -msgstr "" +msgid "Format Menu" +msgstr "ዝርዝር አቀራረብ" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3159091\n" +"00040503.xhp\n" +"par_id3147294\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Format - Rows - Height." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150234\n" +"00040503.xhp\n" +"par_id3149551\n" "help.text" -msgid "Italic" -msgstr "ማዝመሚያ" +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_id3154589\n" +"00040503.xhp\n" +"par_id3153136\n" "help.text" -msgid "Open context menu - choose Style - Underline." +msgid "Choose Format - Columns - Width." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145223\n" +"00040503.xhp\n" +"par_id3150756\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +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_id3154715\n" +"00040503.xhp\n" +"par_id3148668\n" "help.text" -msgid "Underline" -msgstr "ከ ስሩ ማስመሪያ" +msgid "Choose Format - Cells - Numbers tab." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145131\n" +"00040503.xhp\n" +"par_id3152349\n" "help.text" -msgid "Open context menu - choose Style - Strikethrough." +msgid "Choose View - Styles - open context menu and choose Modify/New - Numbers tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3158214\n" +"00040503.xhp\n" +"par_id3161459\n" "help.text" -msgid "Open context menu - choose Style - Shadow." +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_id3150207\n" +"00040503.xhp\n" +"par_id3147531\n" "help.text" -msgid "Open context menu - choose Style - Contour." +msgid "Choose Format - Axis - Y Axis - Numbers tab (Chart Documents)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154383\n" +"00040503.xhp\n" +"par_id3150823\n" "help.text" -msgid "Open context menu - choose Style - Superscript." +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_id3152767\n" +"00040503.xhp\n" +"par_id3154923\n" "help.text" -msgid "Open context menu - choose Style - Subscript." +msgid "Choose Format - Title - Main Title - Alignment tab.Choose Format - Cells - Alignment tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155377\n" +"00040503.xhp\n" +"par_id3149457\n" "help.text" -msgid "Open context menu - choose Line Spacing." +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_id3154475\n" +"00040503.xhp\n" +"par_id3150400\n" "help.text" -msgid "Open context menu - choose Line Spacing - Single." +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_id3150478\n" +"00040503.xhp\n" +"par_id3149650\n" "help.text" -msgid "Open context menu - choose Line Spacing - 1.5 Lines." +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_id3147167\n" +"00040503.xhp\n" +"par_id3153799\n" "help.text" -msgid "Open context menu - choose Line Spacing - Double." +msgid "Context menu for a row header in an open database table - Delete Rows." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146978\n" +"00040503.xhp\n" +"par_id3150495\n" "help.text" -msgid "Choose Format - Align - Left (drawing functions)." +msgid "Choose Shape - Flip ($[officename] Draw)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153009\n" +"00040503.xhp\n" +"par_id3155742\n" "help.text" -msgid "Open context menu - choose Align - Left." +msgid "Choose Format - Image - Properties - Image tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3147310\n" +"00040503.xhp\n" +"par_id3158407\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Open context menu - choose Flip (presentation documents)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151336\n" +"00040503.xhp\n" +"par_id3150290\n" "help.text" -msgid "Align Left" -msgstr "በ ግራ ማሰለፊያ" +msgid "Choose Shape - Flip - Vertically ($[officename] Draw)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155823\n" +"00040503.xhp\n" +"par_id3153179\n" "help.text" -msgid "Choose Format - Align - Right (drawing functions)." +msgid "Choose Format - Image - Properties - Image tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155762\n" +"00040503.xhp\n" +"par_id3157960\n" "help.text" -msgid "Open context menu - choose Align - Right." +msgid "Open context menu - choose Flip - Vertically (presentation documents)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149408\n" +"00040503.xhp\n" +"par_id3153369\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Shape - Flip - Horizontally ($[officename] Draw)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153607\n" +"00040503.xhp\n" +"par_id3147348\n" "help.text" -msgid "Align Right" -msgstr "በ ቀኝ ማሰለፊያ" +msgid "Choose Format - Image - Properties, and then click the Image tab." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149189\n" +"00040503.xhp\n" +"par_id3156106\n" "help.text" -msgid "Choose Format - Align - Centered (drawing functions)." +msgid "Choose Format - Flip - Horizontally." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154624\n" +"00040503.xhp\n" +"par_id3152578\n" "help.text" -msgid "Open context menu - choose Align - Center." +msgid "Right-click a selected object - choose Flip - Horizontally ($[officename] Impress)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153815\n" +"00040503.xhp\n" +"par_id3147318\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Choose Shape - Distribution ($[officename] Draw)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153076\n" +"00040503.xhp\n" +"par_id3149064\n" "help.text" -msgid "Align Center HorizontallyCentered" -msgstr "በ አግድም መሀከል ማሰለፊያ መሀከል" +msgid "Open context menu - choose Distribution ($[officename] Impress)." +msgstr "" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146151\n" +"01000000.xhp\n" +"tit\n" "help.text" -msgid "Choose Format - Align - Justified (drawing functions)." -msgstr "" +msgid "Showing and Hiding Docked Windows" +msgstr "ያረፉ መስኮቶች ማሳያ እና መደበቂያ" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3168612\n" +"01000000.xhp\n" +"hd_id3085157\n" "help.text" -msgid "Open context menu - choose Align - Justified." -msgstr "" +msgid "Showing and Hiding Docked Windows" +msgstr "ያረፉ መስኮቶች ማሳያ እና መደበቂያ" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3156189\n" +"01000000.xhp\n" +"par_id3149948\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +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_id3153131\n" +"01000000.xhp\n" +"par_id3150502\n" "help.text" -msgid "Justified" -msgstr "እኩል ማካፈያ" +msgid "To show or hide a docked window, click the icon." +msgstr "ያረፉ መስኮቶች ለማሳየት ወይንም ለመደበቅ: ይጫኑ ምልክቱን" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150527\n" +"01000000.xhp\n" +"hd_id3150465\n" "help.text" -msgid "Click Fontwork icon on Drawing bar." -msgstr "" +msgid "AutoShow and AutoHide Docked Windows" +msgstr "ያረፉ መስኮቶች በራሱ ለማሳየት ወይንም በራሱ ለመደበቅ" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3144503\n" +"01000000.xhp\n" +"par_id3155504\n" "help.text" -msgid "Choose Format - Group." -msgstr "" +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_id3154854\n" +"01000000.xhp\n" +"par_id3153257\n" "help.text" -msgid "Open context menu - choose Group." -msgstr "" +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_id3157985\n" +"01000000.xhp\n" +"par_id3154046\n" "help.text" -msgid "Choose Format - Group - Group (text documents, spreadsheets)." -msgstr "" +msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode." +msgstr "በርካታ ያረፉ መስኮቶች እንደ አንድ መስኮት ይሆናሉ በራሱ ማሳያ ወይንም በራሱ መደበቂያ ዘዴ ውስጥ" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3157980\n" +"01000000.xhp\n" +"hd_id3145416\n" "help.text" -msgid "Choose Shape - Group - Group (drawing documents)." -msgstr "" +msgid "Drag and Drop" +msgstr "መጎተቻ እና መጣያ" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149508\n" +"01000000.xhp\n" +"par_id3149578\n" "help.text" -msgid "Open context menu - choose Group - Group (form objects)." -msgstr "" +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_id3146858\n" +"01010000.xhp\n" +"tit\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "Gallery context menu" +msgstr "የ አዳራሽ አገባብ ዝርዝር" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149593\n" +"01010000.xhp\n" +"hd_id3150672\n" "help.text" -msgid "Group" -msgstr "ቡድን" +msgid "Gallery context menu" +msgstr "የ አዳራሽ አገባብ ዝርዝር" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153023\n" +"01010000.xhp\n" +"par_id3083278\n" "help.text" -msgid "Choose Format - Group - Ungroup (text documents, spreadsheets)." -msgstr "" +msgid "Defines how a selected graphic object is inserted into a document." +msgstr "የ ተመረጠውን የ ንድፍ እቃ ወደ አሁኑ ሰነድ ውስጥ እንዴት እንደሚገባ መወሰኛ " -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3163378\n" +"01010000.xhp\n" +"par_id3156053\n" "help.text" -msgid "Choose Shape - Group - Ungroup (drawing documents)." -msgstr "" +msgid "Inserts a copy of the selected graphic object directly into the document." +msgstr "የ ተመረጠውን የ ንድፍ እቃ ኮፒ በቀጥታ ወደ አሁኑ ሰነድ ውስጥ እንዴት እንደሚገባ መወሰኛ " -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3156038\n" +"01010000.xhp\n" +"par_id3149038\n" "help.text" -msgid "Open context menu - choose Ungroup." -msgstr "" +msgid "Inserts the selected graphic as a link." +msgstr "የ ተመረጠውን የ ንድፍ እቃ እንደ አገናኝ ማስገቢያ" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151300\n" +"01010000.xhp\n" +"par_id3158428\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +msgid "The Preview command displays the selected graphic." +msgstr " ቅድመ እይታ ትእዛዝ የሚያሳየው የ ተመረጠውን ንድፍ ነው " -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146894\n" +"01010000.xhp\n" +"par_id3154522\n" "help.text" -msgid "Ungroup" -msgstr "መለያያ" +msgid "Assigns a title to a selected Gallery object." +msgstr "ለ ተመረጠው የ አዳራሽ እቃ አርእስት መመደቢያ" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153109\n" +"01010000.xhp\n" +"par_id3149750\n" "help.text" -msgid "Choose Format - Group - Exit Group (text documents, spreadsheets)." -msgstr "" +msgid "Deletes the selected graphic after confirmation." +msgstr "የ ተመረጠውን ንድፍ ማጥፊያ ማረጋገጫ ከ ተጠየቀ በኋላ" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145678\n" +"01020000.xhp\n" +"tit\n" "help.text" -msgid "Choose Shape - Group - Exit Group (drawing documents)." -msgstr "" +msgid "Context Menu of Web Pages in Read-Only Mode" +msgstr "የ አገባብ ዝርዝር ለ ዌብ ገጾች ለ ንባብ-ዘዴ ብቻ" + +#: 01020000.xhp +msgctxt "" +"01020000.xhp\n" +"hd_id3158397\n" +"help.text" +msgid "Context Menu of Web Pages in Read-Only Mode" +msgstr "የ አገባብ ዝርዝር ለ ዌብ ገጾች ለ ንባብ-ዘዴ ብቻ" + +#: 01020000.xhp +msgctxt "" +"01020000.xhp\n" +"par_id3145348\n" +"help.text" +msgid "Opens a dialog where you can save the selected graphics." +msgstr "የ ተመረጠውን ንድፍ ለማስቀመጥ ንግግር መክፈቻ" + +#: 01020000.xhp +msgctxt "" +"01020000.xhp\n" +"par_id3151262\n" +"help.text" +msgid "Copies the link at the mouse pointer to the clipboard." +msgstr "በ አይጥ መጠቆሚያ አገናኝ ኮፒ ማድረጊያ ወደ ቁራጭ ሰሌዳ " + +#: 01020000.xhp +msgctxt "" +"01020000.xhp\n" +"par_id3155934\n" +"help.text" +msgid "Copies a selected graphic to the clipboard." +msgstr "የ ተመረጠውን ንድፍ ኮፒ ማድረጊያ ወደ ቁራጭ ሰሌዳ " + +#: 01020000.xhp +msgctxt "" +"01020000.xhp\n" +"par_id3145629\n" +"help.text" +msgid "If you have deactivated the graphics display, choose the Load Graphics command to make them visible." +msgstr "እርስዎ አብዝነው ከሆነ የ ንድፍ ማሳያ: ይምረጡ የ ንድፍ መጫኛ ትእዛዝ ለ መመልከት እንዲችሉ " + +#: 01020000.xhp +msgctxt "" +"01020000.xhp\n" +"par_id3150902\n" +"help.text" +msgid "Sets all graphics in the document to be invisible." +msgstr "ሁሉም ንድፎች በ ሰነዱ ውስጥ እንዲታዩ ማሰናጃ" + +#: 01020000.xhp +msgctxt "" +"01020000.xhp\n" +"par_id3148548\n" +"help.text" +msgid "Allows you to save the background of a Web page." +msgstr "እርስዎን የ ድህረ ገጽ መደብ ማስቀመጥ ያስችሎታል " + +#: 01050000.xhp +msgctxt "" +"01050000.xhp\n" +"tit\n" +"help.text" +msgid "General" +msgstr "ባጠቃላይ" + +#: 01050000.xhp +msgctxt "" +"01050000.xhp\n" +"hd_id3158397\n" +"help.text" +msgid "General" +msgstr "ባጠቃላይ" + +#: 01050000.xhp +msgctxt "" +"01050000.xhp\n" +"par_id3159242\n" +"help.text" +msgid "The General tab page lists the general properties of the current theme." +msgstr " ባጠቃላይ tab ገጽ ዝርዝር ለ አሁኑ ገጽታ የ ባጠቃላይ ባህሪዎች ነው " + +#: 01050000.xhp +msgctxt "" +"01050000.xhp\n" +"hd_id3150264\n" +"help.text" +msgid "Name" +msgstr "ስም" + +#: 01050000.xhp +msgctxt "" +"01050000.xhp\n" +"par_id3154094\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." +msgstr "የ ገጽታ ስም ማሳያ ምንም ስም ካልተመደበ እርስዎ አዲስ ስም መጻፍ ይችላሉ በ ጽሁፍ ሳጥን ውስጥ" + +#: 01050000.xhp +msgctxt "" +"01050000.xhp\n" +"hd_id3147089\n" +"help.text" +msgid "Type" +msgstr "አይነት" + +#: 01050000.xhp +msgctxt "" +"01050000.xhp\n" +"par_id3145071\n" +"help.text" +msgid "Specifies the object type." +msgstr "የ እቃውን አይነት መወሰኛ" -#: 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 "አካባቢ" -#: 00040502.xhp +#: 01050000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3158402\n" +"01050000.xhp\n" +"par_id3146797\n" "help.text" -msgid "Icon" -msgstr "ምልክት" +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 "ከ ቡድን መውጫ" +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 "ምልክት" +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 "ቡድን ማስገቢያ" +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 "ዝርዝር አቀራረብ" +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 "ዝርዝር አቀራረብ" +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 "ያረፉ መስኮቶች ማሳያ እና መደበቂያ" +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 "ያረፉ መስኮቶች ማሳያ እና መደበቂያ" +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." -msgstr "ሁሉም ያረፉ መስኮቶች ምልክት አላቸው የ ማሳያ ባህሪ መስኮቶችን ለ መቆጣጠር" +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." -msgstr "ያረፉ መስኮቶች ለማሳየት ወይንም ለመደበቅ: ይጫኑ ምልክቱን" +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 "ያረፉ መስኮቶች በራሱ ለማሳየት ወይንም በራሱ ለመደበቅ" +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." -msgstr "እርስዎ መጫን ይችላሉ ያረፉ መስኮቶችን ጠርዝ መስኮቱን ለ መክፈት" +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." -msgstr "ያረፉ መስኮቶች ወዲያውኑ ራሱ በራሱ ይዘጋል የ አይጥ መጠቆሚያውን ከ መስኮቱ ላይ ሲያነሱ" +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." -msgstr "በርካታ ያረፉ መስኮቶች እንደ አንድ መስኮት ይሆናሉ በራሱ ማሳያ ወይንም በራሱ መደበቂያ ዘዴ ውስጥ" +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 "መጎተቻ እና መጣያ" +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." -msgstr "እርስዎ እቃ ከ ጎተቱ ጠርዙን ይዘው የ ተደበቀ ያረፉ መስኮት: መስኮቲ ይከፈታል በራሱ ማሳያ ዘዴ ውስጥ" +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 "የ አዳራሽ አገባብ ዝርዝር" +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 "የ አዳራሽ አገባብ ዝርዝር" +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." -msgstr "የ ተመረጠውን የ ንድፍ እቃ ወደ አሁኑ ሰነድ ውስጥ እንዴት እንደሚገባ መወሰኛ " +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." -msgstr "የ ተመረጠውን የ ንድፍ እቃ ኮፒ በቀጥታ ወደ አሁኑ ሰነድ ውስጥ እንዴት እንደሚገባ መወሰኛ " +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." -msgstr "የ ተመረጠውን የ ንድፍ እቃ እንደ አገናኝ ማስገቢያ" +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." -msgstr " ቅድመ እይታ ትእዛዝ የሚያሳየው የ ተመረጠውን ንድፍ ነው " +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." -msgstr "ለ ተመረጠው የ አዳራሽ እቃ አርእስት መመደቢያ" +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." -msgstr "የ ተመረጠውን ንድፍ ማጥፊያ ማረጋገጫ ከ ተጠየቀ በኋላ" +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 "የ አገባብ ዝርዝር ለ ዌብ ገጾች ለ ንባብ-ዘዴ ብቻ" +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 "የ አገባብ ዝርዝር ለ ዌብ ገጾች ለ ንባብ-ዘዴ ብቻ" +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." -msgstr "የ ተመረጠውን ንድፍ ለማስቀመጥ ንግግር መክፈቻ" +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." -msgstr "በ አይጥ መጠቆሚያ አገናኝ ኮፒ ማድረጊያ ወደ ቁራጭ ሰሌዳ " +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." -msgstr "የ ተመረጠውን ንድፍ ኮፒ ማድረጊያ ወደ ቁራጭ ሰሌዳ " +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." -msgstr "እርስዎ አብዝነው ከሆነ የ ንድፍ ማሳያ: ይምረጡ የ ንድፍ መጫኛ ትእዛዝ ለ መመልከት እንዲችሉ " +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." -msgstr "ሁሉም ንድፎች በ ሰነዱ ውስጥ እንዲታዩ ማሰናጃ" +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." -msgstr "እርስዎን የ ድህረ ገጽ መደብ ማስቀመጥ ያስችሎታል " +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 "ባጠቃላይ" +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 "ባጠቃላይ" +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." -msgstr " ባጠቃላይ tab ገጽ ዝርዝር ለ አሁኑ ገጽታ የ ባጠቃላይ ባህሪዎች ነው " +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 "ስም" +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." -msgstr "የ ገጽታ ስም ማሳያ ምንም ስም ካልተመደበ እርስዎ አዲስ ስም መጻፍ ይችላሉ በ ጽሁፍ ሳጥን ውስጥ" +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 "አይነት" +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 "የ እቃውን አይነት መወሰኛ" +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 "አካባቢ" +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." -msgstr "የ እቃውን ሙሉ መንገድ መወሰኛ" +msgid "Choose Edit - Object - Open." +msgstr "" #: icon_alt.xhp msgctxt "" diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po index 49d8b33a39f..bcac134a920 100644 --- a/source/am/helpcontent2/source/text/shared/guide.po +++ b/source/am/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-12-09 17:46+0000\n" "Last-Translator: Samson B \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,8 +12869,8 @@ 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." -msgstr "ምስሉ ከ ተመረጠ በኋላ: ይምረጡ ማረሚያ - የ ምስል ካርታ ለ እርስዎ ይታያል የ ምስል ካርታ ማረሚያ ምስሉን እንደ መደብ ያሳያል" +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 msgctxt "" diff --git a/source/am/helpcontent2/source/text/simpress.po b/source/am/helpcontent2/source/text/simpress.po index ce9e4a25370..759832ea7ae 100644 --- a/source/am/helpcontent2/source/text/simpress.po +++ b/source/am/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: 2019-01-13 02:16+0000\n" "Last-Translator: Samson B \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 "እነዚህ ትእዛዞች ለ አሁኑ ሰነድ መፈጸሚያ ናቸው አዲስ ሰነድ ለ መክፈት ወይንም መፈጸሚያውን ለ መዝጋት" -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"tit\n" -"help.text" -msgid "Edit" -msgstr "ማረሚያ" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3153726\n" -"help.text" -msgid "Edit" -msgstr "ማረሚያ" - -#: 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 "ይህ ሰነድ የያዛቸው ትእዛዞች የ አሁኑን ሰነድ ይዞታዎች ለማረም ነው" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3154649\n" -"help.text" -msgid "Points" -msgstr "ነጥቦች" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"par_id3154766\n" -"help.text" -msgid "Switches the Edit Points mode on and off." -msgstr "መቀየሪያ የ ነጥቦችን ማረሚያ ዘዴ ማብሪያ እና ማጥፊያ" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3145116\n" -"help.text" -msgid "Glue Points" -msgstr "መጋጠሚያ ነጥቦች" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"par_id3147403\n" -"help.text" -msgid "Switches the Edit Glue Points mode on and off." -msgstr "መቀየሪያ የ መጋጠሚያ ነጥቦችን ማረሚያ ዘዴ ማብሪያ እና ማጥፊያ" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3150396\n" -"help.text" -msgid "Fields" -msgstr "ሜዳዎች" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3149355\n" -"help.text" -msgid "Links" -msgstr "አገናኞች" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3145590\n" -"help.text" -msgid "ImageMap" -msgstr "የ ምስል ካርታ" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id0914201502131542\n" -"help.text" -msgid "Object" -msgstr "እቃ" - #: main0103.xhp msgctxt "" "main0103.xhp\n" @@ -416,142 +328,6 @@ msgctxt "" msgid "File" msgstr "ፋይል" -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"tit\n" -"help.text" -msgid "Format" -msgstr "አቀራረብ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3152596\n" -"help.text" -msgid "Format" -msgstr "አቀራረብ" - -#: 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 "የ ያዛቸው ትእዛዞች በ እርስዎ ሰነድ ውስጥ የ እቅድ እና የ ይዞታዎችን አቀራረብ ነው" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3147401\n" -"help.text" -msgid "Character" -msgstr "ባህሪ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3149941\n" -"help.text" -msgid "Paragraph" -msgstr "አንቀጽ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3147299\n" -"help.text" -msgid "Bullets and Numbering" -msgstr "ነጥቦች እና ቁጥር መስጫ " - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3149499\n" -"help.text" -msgid "Position and Size" -msgstr "ቦታ እና መጠን" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3154510\n" -"help.text" -msgid "Line" -msgstr "መስመር" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3149021\n" -"help.text" -msgid "Area" -msgstr "ቦታ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3155961\n" -"help.text" -msgid "Text" -msgstr "ጽሁፍ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3156286\n" -"help.text" -msgid "Slide Design" -msgstr "የ ተንሸራታች ንድፍ" - -#: main0105.xhp -msgctxt "" -"main0105.xhp\n" -"hd_id3163827\n" -"help.text" -msgid "Slide Layout" -msgstr "የ ተንሸራታች ረቂቅ" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"tit\n" -"help.text" -msgid "Tools" -msgstr "መሳሪያዎች" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"hd_id3154017\n" -"help.text" -msgid "Tools" -msgstr "መሳሪያዎች" - -#: 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 "በራሱ ማረሚያ ምርጫዎች" - -#: main0106.xhp -msgctxt "" -"main0106.xhp\n" -"hd_id3149130\n" -"help.text" -msgid "Customize" -msgstr "ማስተካከያ" - #: main0107.xhp msgctxt "" "main0107.xhp\n" @@ -720,38 +496,6 @@ msgctxt "" msgid "Custom Slide Show" msgstr "ተንሸራታች ማሳያ ማስተካከያ" -#: main0117.xhp -msgctxt "" -"main0117.xhp\n" -"tit\n" -"help.text" -msgid "Slide" -msgstr "ተንሸራታች" - -#: main0117.xhp -msgctxt "" -"main0117.xhp\n" -"hd_id0908201507475698\n" -"help.text" -msgid "Slide" -msgstr "ተንሸራታች" - -#: main0117.xhp -msgctxt "" -"main0117.xhp\n" -"par_id0908201507482661\n" -"help.text" -msgid "This menu provides slide management and navigation commands." -msgstr "ይህ ዝርዝር የ ያዛቸው የ ተንሸራታች ማስተዳደሪያ እና መቃኛ ትእዛዞችን ነው" - -#: main0117.xhp -msgctxt "" -"main0117.xhp\n" -"hd_id3145801\n" -"help.text" -msgid "New Page/Slide" -msgstr "አዲስ ገጽ/ተንሸራታች " - #: 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 "$[officename] ማስደነቂያ ተንሸራታቹ እንዴት እንደሚሄድ ምርጫ ይሰጥዎታል ራሱ በራሱ ወይንም እርስዎ በ እጅ እንዲሰሩ" + +#: 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/am/helpcontent2/source/text/simpress/00.po b/source/am/helpcontent2/source/text/simpress/00.po index ac0f67521ce..df15ddeeec3 100644 --- a/source/am/helpcontent2/source/text/simpress/00.po +++ b/source/am/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-30 14:28+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" @@ -456,14 +456,6 @@ msgctxt "" msgid "Insert Menu" msgstr "ዝርዝር ማስገቢያ" -#: 00000404.xhp -msgctxt "" -"00000404.xhp\n" -"par_id3147264\n" -"help.text" -msgid "Choose Insert - New Page/Slide" -msgstr "ይምረጡ ማስገቢያ - አዲስ ገጽ/ተንሸራታች " - #: 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 "ይምረጡ ተንሸራታች - አዲስ ገጽ/ተንሸራታች" +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 "ምልክት" +msgid "Icon" +msgstr "" #: slide_menu.xhp msgctxt "" "slide_menu.xhp\n" "par_id7354512\n" "help.text" -msgid "New Page/Slide" -msgstr "አዲስ ገጽ/ተንሸራታች" +msgid "New Slide" +msgstr "" diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po index fc2b4f15684..19173866ba6 100644 --- a/source/am/helpcontent2/source/text/simpress/01.po +++ b/source/am/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-12-09 17:44+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" @@ -96,38 +96,6 @@ msgctxt "" msgid "Information on Import and Export Filters" msgstr "ማጣሪያዎች ማምጫ እና መላኪያ መረጃ" -#: 01180000.xhp -msgctxt "" -"01180000.xhp\n" -"tit\n" -"help.text" -msgid "Page" -msgstr "ገጽ" - -#: 01180000.xhp -msgctxt "" -"01180000.xhp\n" -"hd_id3149379\n" -"help.text" -msgid "Page" -msgstr "ገጽ" - -#: 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 "ተንሸራታች" +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 "ማስገቢያ; ተንሸራታቾችተንሸራታቾች; ማስገቢያ" - -#: 04010000.xhp -msgctxt "" -"04010000.xhp\n" -"hd_id3159155\n" -"help.text" -msgid "New Page/Slide" -msgstr "አዲስ ገጽ/ተንሸራታች" - -#: 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/am/helpcontent2/source/text/simpress/02.po b/source/am/helpcontent2/source/text/simpress/02.po index 7fb409bd872..e1f40a98a6d 100644 --- a/source/am/helpcontent2/source/text/simpress/02.po +++ b/source/am/helpcontent2/source/text/simpress/02.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: 2017-10-04 11:48+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2017-10-09 15:05+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1507561513.000000\n" #: 04010000.xhp @@ -3981,8 +3981,8 @@ msgctxt "" "10110000.xhp\n" "hd_id3149028\n" "help.text" -msgid "Slide" -msgstr "ተንሸራታች" +msgid "Slide" +msgstr "" #: 10110000.xhp msgctxt "" diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po index 7fed579af5c..41f91f28c80 100644 --- a/source/am/helpcontent2/source/text/swriter/01.po +++ b/source/am/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-12-09 17:43+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" @@ -15533,8 +15533,8 @@ msgctxt "" "05060100.xhp\n" "par_idN10A8E\n" "help.text" -msgid "Follow text flow" -msgstr "የ ጽሁፉን ፍሰት መከተያ" +msgid "Keep inside text boundaries" +msgstr "" #: 05060100.xhp msgctxt "" @@ -15549,8 +15549,8 @@ 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)." -msgstr "በ ነባር የ ጽሁፍ ፍሰት መከተያ ምርጫ ይመረጣል: እርስዎ ሰነድ በሚከፍቱ ጊዜ በ መጻፊያ አሮጌ እትም ከ OpenOffice.org 2.0. ነገር ግን: ይህ ምርጫ አይመረጥም ወይንም እርስዎ በሚከፍቱ ጊዜ በ 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 msgctxt "" -- cgit