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 --- .../helpcontent2/source/text/sbasic/python.po | 530 +- .../helpcontent2/source/text/sbasic/shared.po | 8 +- source/bn-IN/helpcontent2/source/text/scalc/01.po | 442 +- source/bn-IN/helpcontent2/source/text/sdraw.po | 766 +-- source/bn-IN/helpcontent2/source/text/sdraw/00.po | 78 +- source/bn-IN/helpcontent2/source/text/sdraw/01.po | 60 +- source/bn-IN/helpcontent2/source/text/shared/00.po | 5988 ++++++++++---------- .../bn-IN/helpcontent2/source/text/shared/guide.po | 3216 ++++++++++- source/bn-IN/helpcontent2/source/text/simpress.po | 522 +- .../bn-IN/helpcontent2/source/text/simpress/00.po | 20 +- .../bn-IN/helpcontent2/source/text/simpress/01.po | 134 +- .../bn-IN/helpcontent2/source/text/simpress/02.po | 10 +- .../bn-IN/helpcontent2/source/text/swriter/01.po | 8 +- 13 files changed, 7967 insertions(+), 3815 deletions(-) (limited to 'source/bn-IN/helpcontent2') diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/python.po b/source/bn-IN/helpcontent2/source/text/sbasic/python.po index 3741c6d2966..d8e63d5b679 100644 --- a/source/bn-IN/helpcontent2/source/text/sbasic/python.po +++ b/source/bn-IN/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/bn-IN/helpcontent2/source/text/sbasic/shared.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po index ad31e59b24d..014024278ca 100644 --- a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po +++ b/source/bn-IN/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:03+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/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po index 9a0ae44251a..fde93315304 100644 --- a/source/bn-IN/helpcontent2/source/text/scalc/01.po +++ b/source/bn-IN/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-11-12 13:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -51552,6 +51552,86 @@ msgctxt "" msgid "COLOR(0;0;400;0) returns Err:502 (Invalid argument) because the blue value is greater than 255." msgstr "" +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"tit\n" +"help.text" +msgid "CONCAT function" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"bm_id741556228031712\n" +"help.text" +msgid "CONCAT function" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"hd_id471556226436779\n" +"help.text" +msgid "CONCAT" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id891556226436781\n" +"help.text" +msgid "Concatenates one or more strings" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id701556226865876\n" +"help.text" +msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M." +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id461556226873963\n" +"help.text" +msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate." +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id911556226813411\n" +"help.text" +msgid "CONCAT( string1[, string2][, …] )" +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id581556227044166\n" +"help.text" +msgid "string1[, string2][, …] are strings or references to cells or ranges that contains strings to concatenate." +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id531556227248228\n" +"help.text" +msgid "=CONCAT(\"Hello \", A1:C3) concatenates the string \"Hello\" with all strings in range A1:C3." +msgstr "" + +#: func_concat.xhp +msgctxt "" +"func_concat.xhp\n" +"par_id781556244709752\n" +"help.text" +msgid "CONCATENATE" +msgstr "" + #: func_countifs.xhp msgctxt "" "func_countifs.xhp\n" @@ -53488,6 +53568,150 @@ msgctxt "" msgid "YEAR, NOW, MINUTE, MONTH, DAY, WEEKDAY." msgstr "YEAR, NOW, MINUTE, MONTH, DAY, WEEKDAY." +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"tit\n" +"help.text" +msgid "IFS function" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"bm_id901556242230198\n" +"help.text" +msgid "IFS function" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"hd_id271556234923654\n" +"help.text" +msgid "IFS" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id171556234923655\n" +"help.text" +msgid "IFS is a multiple IF-function." +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id271556235333493\n" +"help.text" +msgid "IFS( expression1, result1[, expression2, result2][, …] )" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id31556235655212\n" +"help.text" +msgid "expression1, expression2, ... are any boolean values or expressions that can be TRUE or FALSE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id441556235649549\n" +"help.text" +msgid "result1, result2, ... are the values that are returned if the logical test is TRUE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id641556235704257\n" +"help.text" +msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id551556235712759\n" +"help.text" +msgid "IF expression1 is TRUE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id1001556235718948\n" +"help.text" +msgid "THEN result1" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id571556235725969\n" +"help.text" +msgid "ELSE IF expression2 is TRUE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id581556235731982\n" +"help.text" +msgid "THEN result2" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id961556235738258\n" +"help.text" +msgid "ELSE IF expression3 is TRUE" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id951556235743954\n" +"help.text" +msgid "THEN result3" +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id671556235758504\n" +"help.text" +msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result." +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id541556235771022\n" +"help.text" +msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned." +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id181556235788473\n" +"help.text" +msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned." +msgstr "" + +#: func_ifs.xhp +msgctxt "" +"func_ifs.xhp\n" +"par_id781556244709752\n" +"help.text" +msgid "IF" +msgstr "" + #: func_imcos.xhp msgctxt "" "func_imcos.xhp\n" @@ -55760,6 +55984,222 @@ msgctxt "" msgid "If E2 = pen, the function returns 65, because the link to the cell is substituted with its content." msgstr "" +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"tit\n" +"help.text" +msgid "SWITCH function" +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"bm_id571556244875552\n" +"help.text" +msgid "SWITCH function" +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"hd_id21556242313791\n" +"help.text" +msgid "SWITCH" +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id361556242313793\n" +"help.text" +msgid "SWITCH compares expression with value1 to valuen and returns the result belonging to the first value that equals expression. If there is no match and default_value is given, that will be returned." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id521556242803283\n" +"help.text" +msgid "SWITCH( expression, value1, result1[, value2, result2][, … ][, default_result] )" +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id341556242996378\n" +"help.text" +msgid "expression is a text, numeric, logical or date input or reference to a cell." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id321556243790332\n" +"help.text" +msgid "value1, value2, ... is any value or reference to a cell. Each value must have a result given." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id171556243796068\n" +"help.text" +msgid "result1, result2, ... is any value or reference to a cell." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id331556245422283\n" +"help.text" +msgid "default_result: any value or reference to a cell that is returned when there is no match." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id871556243022881\n" +"help.text" +msgid "If no value equals expression and no default result is given, a #N/A error is returned." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id851556243961783\n" +"help.text" +msgid "=SWITCH(MONTH(A3),1,\"January\",2,\"February\",3,\"March\",\"No match\") returns \"January\" when A3=1, February when A3=2 , etc..." +msgstr "" + +#: func_switch.xhp +msgctxt "" +"func_switch.xhp\n" +"par_id781556244709752\n" +"help.text" +msgid "IF" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"tit\n" +"help.text" +msgid "TEXTJOIN function" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"bm_id581556228060864\n" +"help.text" +msgid "TEXTJOIN function" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"hd_id551556227727946\n" +"help.text" +msgid "TEXTJOIN" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id121556227727948\n" +"help.text" +msgid "Concatenates one or more strings, and uses delimiters between them." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id541556228253979\n" +"help.text" +msgid "TEXTJOIN( delimiter, skip_empty, string1[, string2][, …] )" +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id741556228390897\n" +"help.text" +msgid "delimiter is a text string and can be a range." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id621556228397269\n" +"help.text" +msgid "skip_empty is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id631556228516997\n" +"help.text" +msgid "string1[, string2][, …] are strings or references to cells or ranges that contains text to join." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id1001556228523394\n" +"help.text" +msgid "Ranges are traversed row by row (from top to bottom)." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id81556228530082\n" +"help.text" +msgid "If delimiter is a range, the range need not be of the same size as the number of strings to be joined." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id831556228543099\n" +"help.text" +msgid "If there are more delimiters than strings to be joined, not all delimiters will be used." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id321556228557611\n" +"help.text" +msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id441556229012536\n" +"help.text" +msgid "=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\") returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id441556239012536\n" +"help.text" +msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, =TEXTJOIN(\"-\",TRUE,A1:B2) returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored." +msgstr "" + +#: func_textjoin.xhp +msgctxt "" +"func_textjoin.xhp\n" +"par_id781556244709752\n" +"help.text" +msgid "CONCATENATE" +msgstr "" + #: func_time.xhp msgctxt "" "func_time.xhp\n" diff --git a/source/bn-IN/helpcontent2/source/text/sdraw.po b/source/bn-IN/helpcontent2/source/text/sdraw.po index 7a859b727f3..c2fbd27bcb6 100644 --- a/source/bn-IN/helpcontent2/source/text/sdraw.po +++ b/source/bn-IN/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: 2016-05-02 07:40+0000\n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" +"PO-Revision-Date: 2017-10-04 10:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bn_IN\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: 1462174854.000000\n" +"X-POOTLE-MTIME: 1507112379.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 "ImageMap" - -#: main0102.xhp -msgctxt "" -"main0102.xhp\n" -"hd_id3157867\n" -"help.text" -msgid "Hyperlink" -msgstr "হাইপারলিংক" - #: 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 "হাইপারলিংক" - -#: 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/bn-IN/helpcontent2/source/text/sdraw/00.po b/source/bn-IN/helpcontent2/source/text/sdraw/00.po index 7fb95812f8b..87c04ed25fd 100644 --- a/source/bn-IN/helpcontent2/source/text/sdraw/00.po +++ b/source/bn-IN/helpcontent2/source/text/sdraw/00.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: 2017-05-09 16:45+0200\n" -"PO-Revision-Date: 2013-05-24 07:53+0000\n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" +"PO-Revision-Date: 2017-05-09 17:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bn_IN\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: 1369381994.000000\n" +"X-POOTLE-MTIME: 1494349408.000000\n" #: 00000004.xhp msgctxt "" @@ -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/bn-IN/helpcontent2/source/text/sdraw/01.po b/source/bn-IN/helpcontent2/source/text/sdraw/01.po index 606e4124a8f..aa31ed5c098 100644 --- a/source/bn-IN/helpcontent2/source/text/sdraw/01.po +++ b/source/bn-IN/helpcontent2/source/text/sdraw/01.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: 2017-05-09 16:45+0200\n" -"PO-Revision-Date: 2013-05-24 07:53+0000\n" +"POT-Creation-Date: 2019-05-12 17:46+0200\n" +"PO-Revision-Date: 2017-05-09 17:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bn_IN\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: 1369381994.000000\n" +"X-POOTLE-MTIME: 1494349408.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/bn-IN/helpcontent2/source/text/shared/00.po b/source/bn-IN/helpcontent2/source/text/shared/00.po index 24441c30cee..9e5b555bc9c 100644 --- a/source/bn-IN/helpcontent2/source/text/shared/00.po +++ b/source/bn-IN/helpcontent2/source/text/shared/00.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-04-30 14:59+0200\n" "PO-Revision-Date: 2018-11-14 11:52+0000\n" "Last-Translator: Anonymous Pootle User\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." +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" +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+Z" +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." +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 +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3156183\n" -"help.text" -msgid "Choose View - Toolbars." -msgstr "" +"00000404.xhp\n" +"par_idN10DD1\n" +"help.text" +msgid "Fontwork Gallery" +msgstr "ফন্টওয়ার্ক গ্যালারি" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3166445\n" +"00000404.xhp\n" +"par_idN10EA9\n" "help.text" -msgid "Choose View - Toolbars - Standard." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153748\n" +"00000404.xhp\n" +"par_idN10ED8\n" "help.text" -msgid "Choose View - Toolbars - Tools." -msgstr "" +msgid "Basic Shapes" +msgstr "মূল আকৃতি" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3154317\n" +"00000404.xhp\n" +"par_idN10EEE\n" "help.text" -msgid "Choose View - Status Bar." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3152780\n" +"00000404.xhp\n" +"par_idN10F1D\n" "help.text" -msgid "Choose View - Toolbars - Color Bar." -msgstr "" +msgid "Symbol Shapes" +msgstr "প্রতীক আকৃতি" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3157909\n" +"00000404.xhp\n" +"par_idN10F33\n" "help.text" -msgid "Click Hyperlink icon on Standard bar, click Internet." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3146806\n" +"00000404.xhp\n" +"par_idN10F62\n" "help.text" -msgid "Choose Insert - Hyperlink." -msgstr "" +msgid "Block Arrows" +msgstr "ব্লক তীরচিহ্ন" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153717\n" +"00000404.xhp\n" +"par_idN10F78\n" "help.text" -msgid "Click Hyperlink icon on Standard bar, click Mail." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3149415\n" +"00000404.xhp\n" +"par_idN10FA7\n" "help.text" -msgid "Click Hyperlink icon on Standard bar, click Document." -msgstr "" +msgid "Flowcharts" +msgstr "ফ্লোচার্ট" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3150129\n" +"00000404.xhp\n" +"par_idN10FBD\n" "help.text" -msgid "Click Hyperlink icon on Standard bar, click New Document." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3159269\n" +"00000404.xhp\n" +"par_idN10FEC\n" "help.text" -msgid "Choose View - Full Screen." -msgstr "" +msgid "Callouts" +msgstr "কলআউট" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3149578\n" +"00000404.xhp\n" +"par_idN11002\n" "help.text" -msgid "Shift+CommandCtrl+J" -msgstr "Shift+কমান্ডCtrl+J" +msgid "Icon" +msgstr "আইকন" -#: 00000403.xhp +#: 00000404.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153257\n" +"00000404.xhp\n" +"par_idN11031\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Stars" +msgstr "তারকাচিহ্ন" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153627\n" +"00000406.xhp\n" +"tit\n" "help.text" -msgid "Full Screen (in Print Preview)" -msgstr "পূর্ণ পর্দা প্রদর্শন চালু/বন্ধ (পৃষ্ঠা প্রাকদর্শনে)" +msgid "Tools Menu" +msgstr "টুল মেনু" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3147559\n" +"00000406.xhp\n" +"hd_id3160447\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" +"par_id3146765\n" "help.text" -msgid "Menu View - Data Sources." +msgid "Choose Insert - Media - Clip Art Gallery or open Standard bar, click" msgstr "" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3149046\n" +"00000406.xhp\n" +"par_id3153323\n" "help.text" -msgid "CommandCtrl+Shift+F4 keys" -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3153778\n" +"00000406.xhp\n" +"par_id3153551\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Gallery" +msgstr "গ্যালারি" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3146908\n" +"00000406.xhp\n" +"par_id3146957\n" "help.text" -msgid "Data Sources" -msgstr "ডাটা উৎস" +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_id3154140\n" +"00000406.xhp\n" +"par_id3166411\n" "help.text" -msgid "Choose View - HTML Source." +msgid "Choose Tools - Spelling." msgstr "" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3154947\n" +"00000406.xhp\n" +"par_id3148538\n" "help.text" -msgid "Open context menu in an HTML document." -msgstr "" +msgid "F7 key" +msgstr "F7 কী" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3152935\n" +"00000406.xhp\n" +"par_id3155628\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "On the Standard bar, click" +msgstr "" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_id3144448\n" +"00000406.xhp\n" +"par_id3153824\n" "help.text" -msgid "HTML Source" -msgstr "HTML উৎস" +msgid "Icon" +msgstr "আইকন" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_idN1091B\n" +"00000406.xhp\n" +"par_id3157809\n" "help.text" -msgid "Choose View - Grid and Helplines (Impress or Draw)." +msgid "Spelling" msgstr "" -#: 00000403.xhp +#: 00000406.xhp msgctxt "" -"00000403.xhp\n" -"par_idN1092E\n" +"00000406.xhp\n" +"par_id3156326\n" "help.text" -msgid "Choose View - Snap Guides (Impress or Draw)." +msgid "Choose Tools - Language - Hangul/Hanja Conversion. Asian language support must be enabled." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"tit\n" +"00000406.xhp\n" +"par_idN10705\n" "help.text" -msgid "Insert Menu" -msgstr "মেনু সন্নিবেশ" +msgid "Choose Tools - Language - Chinese Conversion. Asian language support must be enabled." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"hd_id3156324\n" +"00000406.xhp\n" +"par_idN1071E\n" "help.text" -msgid "Insert Menu" -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_id3153808\n" +"00000406.xhp\n" +"par_id3155419\n" "help.text" -msgid "Choose Insert - Comment." +msgid "Choose Tools - Spelling." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155619\n" +"00000406.xhp\n" +"par_id3150771\n" "help.text" -msgid "Choose Insert - Media - Scan." +msgid "Choose Tools - Spelling, then click Options." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150502\n" +"00000406.xhp\n" +"par_id3151338\n" "help.text" -msgid "Choose Insert - Media - Scan - Select Source." +msgid "Choose Tools - Language - Thesaurus." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155934\n" +"00000406.xhp\n" +"par_id3149884\n" "help.text" -msgid "Choose Insert - Media - Scan - Request." +msgid "CommandCtrl+F7" msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3143281\n" +"00000406.xhp\n" +"par_id3153320\n" "help.text" -msgid "Choose Insert - Special Character." +msgid "Choose Tools - Color Replacer ($[officename] Draw and $[officename] Impress)." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149525\n" +"00000406.xhp\n" +"par_idN107E9\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Customize - Character button." +msgid "Choose Tools - Media Player." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3152372\n" +"00000406.xhp\n" +"par_id3151385\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Customize - Character button." +msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic, or press OptionAlt+F11 (if not assigned by your system)." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3156560\n" +"00000406.xhp\n" +"par_id511543350796749\n" "help.text" -msgid "On the Standard or the Insert bar, click" +msgid "Choose Tools - Macros - Organize Macros - BeanShell." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153527\n" +"00000406.xhp\n" +"par_id661543350803067\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Tools - Macros - Organize Macros - JavaScript." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149751\n" +"00000406.xhp\n" +"par_id441543350811395\n" "help.text" -msgid "Special Character" -msgstr "বিশেষ অক্ষর" +msgid "Choose Tools - Macros - Organize Macros - Python." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN107CD\n" +"00000406.xhp\n" +"par_id3149456\n" "help.text" -msgid "Choose Insert - Media - Audio or Video." +msgid "Choose Tools - Macros - Record Macro." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN107CE\n" +"00000406.xhp\n" +"par_id3150398\n" "help.text" -msgid "Choose Insert - Audio or Video." +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_idN1085D\n" +"00000406.xhp\n" +"par_idN10843\n" "help.text" -msgid "Audio or Video" +msgid "Choose Tools - Extension Manager." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3147242\n" +"00000406.xhp\n" +"par_id9988402\n" "help.text" -msgid "Choose Insert - Object." +msgid "Choose Tools - Extension Manager, click Check for Updates button." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3152996\n" +"00000406.xhp\n" +"par_id3151106\n" "help.text" -msgid "Choose Insert - Object - OLE Object." +msgid "Choose Tools - XML Filter Settings." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3146806\n" +"00000406.xhp\n" +"par_id3153778\n" "help.text" -msgid "On the Insert bar, click" +msgid "Choose Tools - XML Filter Settings, then click New or Edit." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150254\n" +"00000406.xhp\n" +"par_id3148979\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Tools - XML Filter Settings, then click Test XSLTs." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3145417\n" +"00000406.xhp\n" +"par_id3148672\n" "help.text" -msgid "OLE Object" -msgstr "OLE অবজেক্ট" +msgid "Choose Tools - Customize." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150393\n" +"00000406.xhp\n" +"par_id3147230\n" "help.text" -msgid "Choose Insert - Object - Formula." +msgid "Choose Tools - Customize - Menus tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153056\n" +"00000406.xhp\n" +"par_idN108E9\n" "help.text" -msgid "On the Insert bar, click" +msgid "Choose Tools - Customize - Menus tab, click New." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3148559\n" +"00000406.xhp\n" +"par_idN10919\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Tools - Customize - Menus tab, click Menu - Move." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155858\n" +"00000406.xhp\n" +"par_id3145171\n" "help.text" -msgid "Formula" -msgstr "সূত্র" +msgid "Choose Tools - Customize - Keyboard tab. A document must be opened." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153144\n" +"00000406.xhp\n" +"par_id3153968\n" "help.text" -msgid "Choose Format - Chart Type." +msgid "Choose Tools - Customize - Toolbars tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3147578\n" +"00000406.xhp\n" +"par_id3144432\n" "help.text" -msgid "Choose Insert - Object - Chart ." +msgid "Choose Tools - Customize - Events tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3154011\n" +"00000406.xhp\n" +"par_id3157895\n" "help.text" -msgid "Choose Format - Chart Type." +msgid "Choose Tools - AutoCorrect - AutoCorrect Options." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3153573\n" +"00000406.xhp\n" +"par_id3153768\n" "help.text" -msgid "Choose Insert - Object - Chart." +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Options tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3159179\n" +"00000406.xhp\n" +"par_id1978514\n" "help.text" -msgid "Choose Format - Chart Type." +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Smart Tags tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3159196\n" +"00000406.xhp\n" +"par_id3155368\n" "help.text" -msgid "Choose Insert - Object - Chart." +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Replace tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149664\n" +"00000406.xhp\n" +"par_id3155860\n" "help.text" -msgid "Choose Insert - Object - Chart." +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Exceptions tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3154921\n" +"00000406.xhp\n" +"par_id3153094\n" "help.text" -msgid "On the Insert bar, click" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Localized Options tab." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3156005\n" +"00000406.xhp\n" +"par_id3153945\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Word Completion tab." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3145749\n" +"00000406.xhp\n" +"par_id3151352\n" "help.text" -msgid "Chart" -msgstr "লেখচিত্র" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155513\n" +"00000406.xhp\n" +"par_id3154127\n" "help.text" -msgid "Choose Insert - Image." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3155308\n" +"00000406.xhp\n" +"par_id3149664\n" "help.text" -msgid "On the Standard bar, click" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw - General." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3145594\n" +"00000406.xhp\n" +"par_id3145112\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Path selection button in various wizards." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3149960\n" +"00000406.xhp\n" +"par_id3153953\n" "help.text" -msgid "Image" +msgid "Click Edit button for a few entries under %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150037\n" +"00000406.xhp\n" +"par_id3147295\n" "help.text" -msgid "Choose Insert - Floating Frame." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3083281\n" +"00000406.xhp\n" +"par_id3156006\n" "help.text" -msgid "On the Insert bar, click" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename]." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3168607\n" +"00000406.xhp\n" +"par_id3155308\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3148588\n" +"00000406.xhp\n" +"par_id3155312\n" "help.text" -msgid "Floating Frame" -msgstr "ভাসমান ফ্রেম" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - General." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_id3150396\n" +"00000406.xhp\n" +"par_id3159153\n" "help.text" -msgid "Open a file of a type that is unknown to %PRODUCTNAME and that is no text file." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - View." msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10DDC\n" +"00000406.xhp\n" +"par_id3166413\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Print." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10DD1\n" +"00000406.xhp\n" +"par_id3147330\n" "help.text" -msgid "Fontwork Gallery" -msgstr "ফন্টওয়ার্ক গ্যালারি" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10EA9\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_idN10ED8\n" +"00000406.xhp\n" +"par_id3149581\n" "help.text" -msgid "Basic Shapes" -msgstr "মূল আকৃতি" +msgid "Choose Format - Area - Colors tab." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10EEE\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_idN10F1D\n" +"00000406.xhp\n" +"par_id3153876\n" "help.text" -msgid "Symbol Shapes" -msgstr "প্রতীক আকৃতি" +msgid "Icon" +msgstr "আইকন" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F33\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 "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F62\n" +"00000406.xhp\n" +"par_id3149403\n" "help.text" -msgid "Block Arrows" -msgstr "ব্লক তীরচিহ্ন" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Fonts." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10F78\n" +"00000406.xhp\n" +"par_id3150717\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Security." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10FA7\n" +"00000406.xhp\n" +"par_idN11C3D\n" "help.text" -msgid "Flowcharts" -msgstr "ফ্লোচার্ট" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Advanced." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10FBD\n" +"00000406.xhp\n" +"par_idN11C3E\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Personalization." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN10FEC\n" +"00000406.xhp\n" +"par_idN11C3F\n" "help.text" -msgid "Callouts" -msgstr "কলআউট" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - OpenCL." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN11002\n" +"00000406.xhp\n" +"par_idN11C3G\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Basic IDE." +msgstr "" -#: 00000404.xhp +#: 00000406.xhp msgctxt "" -"00000404.xhp\n" -"par_idN11031\n" +"00000406.xhp\n" +"par_id5485702\n" "help.text" -msgid "Stars" -msgstr "তারকাচিহ্ন" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Online Update." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"tit\n" +"par_id3146989\n" "help.text" -msgid "Tools Menu" -msgstr "টুল মেনু" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Accessibility." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"hd_id3160447\n" +"par_id3144746\n" "help.text" -msgid "Tools Menu" -msgstr "টুল মেনু" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Application Colors." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3146765\n" +"par_id3156355\n" "help.text" -msgid "Choose Insert - Media - Clip Art Gallery or open Standard bar, click" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153323\n" +"par_id3147223\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153551\n" +"par_id3153958\n" "help.text" -msgid "Gallery" -msgstr "গ্যালারি" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3146957\n" +"par_id3153707\n" "help.text" -msgid "Choose Tools - Gallery or click the Gallery icon on the Standard bar -
New Theme button - Files tab.
" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - Microsoft Office." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3166411\n" +"par_id3145667\n" "help.text" -msgid "Choose Tools - Spelling." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3148538\n" +"par_id3146792\n" "help.text" -msgid "F7 key" -msgstr "F7 কী" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155628\n" +"par_id3157965\n" "help.text" -msgid "On the Standard bar, click" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153824\n" +"par_id3155446\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages - Complex Text Layout." +msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3157809\n" +"par_id3150745\n" "help.text" -msgid "Spelling" +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3156326\n" +"par_id3148407\n" "help.text" -msgid "Choose Tools - Language - Hangul/Hanja Conversion. Asian language support must be enabled." +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_idN10705\n" +"par_id3150324\n" "help.text" -msgid "Choose Tools - Language - Chinese Conversion. Asian language support must be enabled." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN1071E\n" +"par_id3145620\n" "help.text" -msgid "Choose Tools - Language - Chinese Conversion - Edit terms button. Asian language support must be enabled." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Searching in Japanese." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155419\n" +"par_id3147341\n" "help.text" -msgid "Choose Tools - Spelling." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Asian Layout." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3150771\n" +"par_id3147359\n" "help.text" -msgid "Choose Tools - Spelling, then click Options." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151338\n" +"par_id3156374\n" "help.text" -msgid "Choose Tools - Language - Thesaurus." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149884\n" +"par_id3149280\n" "help.text" -msgid "CommandCtrl+F7" +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153320\n" +"par_idN10E4F\n" "help.text" -msgid "Choose Tools - Color Replacer ($[officename] Draw and $[officename] Impress)." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Compatibility." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN107E9\n" +"par_id3148929\n" "help.text" -msgid "Choose Tools - Media Player." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151385\n" +"par_idN10F2F\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - %PRODUCTNAME Basic, or press OptionAlt+F11 (if not assigned by your system)." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge E-mail." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id511543350796749\n" +"par_id3149825\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - BeanShell." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - AutoCaption." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id661543350803067\n" +"par_id3155333\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - JavaScript." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - View." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id441543350811395\n" +"par_id3146316\n" "help.text" -msgid "Choose Tools - Macros - Organize Macros - Python." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Formatting Aids." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149456\n" +"par_id3153534\n" "help.text" -msgid "Choose Tools - Macros - Record Macro." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3150398\n" +"par_id3155961\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 - Basic Fonts (Western)." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN10843\n" +"par_id3159313\n" "help.text" -msgid "Choose Tools - Extension Manager." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Asian). Asian language support must be enabled." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id9988402\n" +"par_id3155607\n" "help.text" -msgid "Choose Tools - Extension Manager, click Check for Updates button." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Print." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151106\n" +"par_id3988769\n" "help.text" -msgid "Choose Tools - XML Filter Settings." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Print." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153778\n" +"par_id3145769\n" "help.text" -msgid "Choose Tools - XML Filter Settings, then click New or Edit." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3148979\n" +"par_id3147005\n" "help.text" -msgid "Choose Tools - XML Filter Settings, then click Test XSLTs." +msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Changes." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3148672\n" +"par_id3159333\n" "help.text" -msgid "Choose Tools - Customize." +msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3147230\n" +"par_id3149448\n" "help.text" -msgid "Choose Tools - Customize - Menus tab." +msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web - Background." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN108E9\n" +"par_id3149336\n" "help.text" -msgid "Choose Tools - Customize - Menus tab, click New." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_idN10919\n" +"par_id3152966\n" "help.text" -msgid "Choose Tools - Customize - Menus tab, click Menu - Move." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3145171\n" +"par_id3149814\n" "help.text" -msgid "Choose Tools - Customize - Keyboard tab. A document must be opened." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153968\n" +"par_id3154656\n" "help.text" -msgid "Choose Tools - Customize - Toolbars tab." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3144432\n" +"par_id3154657\n" "help.text" -msgid "Choose Tools - Customize - Events tab." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Compatibility." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3157895\n" +"par_id3152494\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153768\n" +"par_id3152495\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Options tab." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Formula." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id1978514\n" +"par_id3152496\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Smart Tags tab." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155368\n" +"par_id3149527\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Replace tab." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists - Copy button." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155860\n" +"par_id3154903\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Exceptions tab." +msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Changes." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153094\n" +"par_id3152582\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Localized Options tab." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153945\n" +"par_id3148418\n" "help.text" -msgid "Choose Tools - AutoCorrect - AutoCorrect Options - Word Completion tab." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3151352\n" +"par_id3150380\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3154127\n" +"par_id3166423\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3149664\n" +"par_id3148873\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw - General." +msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3145112\n" +"par_id3145220\n" "help.text" -msgid "Path selection button in various wizards." +msgid "Open a drawing document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3153953\n" +"par_id3149573\n" "help.text" -msgid "Click Edit button for a few entries under %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." +msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3147295\n" +"par_id3145613\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options." +msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math - Settings." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3156006\n" +"par_id3155137\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename]." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155308\n" +"par_id3149211\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts - Default Colors." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3155312\n" +"par_id3150862\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - General." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3159153\n" +"par_id3147368\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - View." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Connections." msgstr "" #: 00000406.xhp msgctxt "" "00000406.xhp\n" -"par_id3166413\n" +"par_idN1120D\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Print." +msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." msgstr "" -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147330\n" +"00000407.xhp\n" +"tit\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." -msgstr "" +msgid "Window Menu" +msgstr "উইন্ডো মেনু" -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150036\n" +"00000407.xhp\n" +"hd_id3154349\n" "help.text" -msgid "Choose Tools - AutoText - Path." -msgstr "" +msgid "Window Menu" +msgstr "উইন্ডো মেনু" -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149581\n" +"00000407.xhp\n" +"par_id3083278\n" "help.text" -msgid "Choose Format - Area - Colors tab." +msgid "Choose Window - New Window." msgstr "" -#: 00000406.xhp +#: 00000407.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145729\n" +"00000407.xhp\n" +"par_id3154545\n" "help.text" -msgid "Choose Format - Area - Area, press the Color button and click the Pick button." +msgid "Choose Window - List of open documents." msgstr "" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153876\n" +"00000408.xhp\n" +"tit\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Help Menu" +msgstr "সহায়তা মেনু" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_id3151037\n" +"00000408.xhp\n" +"hd_id3154689\n" "help.text" -msgid "Press the Color Dialog button in the Illumination tab of the 3D Effects dialog." -msgstr "" +msgid "Help Menu" +msgstr "সহায়তা মেনু" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149403\n" +"00000408.xhp\n" +"par_id3150960\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Fonts." +msgid "Choose Help - %PRODUCTNAME Help." msgstr "" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150717\n" +"00000408.xhp\n" +"par_id3147240\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Security." +msgid "Choose Help - About %PRODUCTNAME." msgstr "" -#: 00000406.xhp +#: 00000408.xhp msgctxt "" -"00000406.xhp\n" -"par_idN11C3D\n" +"00000408.xhp\n" +"par_id3151387\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Advanced." -msgstr "" +msgid "Automatically after %PRODUCTNAME is first started." +msgstr "%PRODUCTNAME প্রথমবার শুরু হওয়ার পর স্বয়ংক্রিয়ভাবে।" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_idN11C3E\n" +"00000409.xhp\n" +"tit\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Personalization." -msgstr "" +msgid "Toolbars" +msgstr "টুলবার" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_idN11C3F\n" +"00000409.xhp\n" +"hd_id3149517\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - OpenCL." -msgstr "" +msgid "Toolbars" +msgstr "টুলবার" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_idN11C3G\n" +"00000409.xhp\n" +"par_id3156053\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Basic IDE." +msgid "Choose Data - More Filters - Standard Filter." msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id5485702\n" +"00000409.xhp\n" +"par_id3154350\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Online Update." +msgid "Database table view: Standard Filter icon in the Database toolbar." msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3146989\n" +"00000409.xhp\n" +"par_id3154183\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Accessibility." +msgid "Form view: Standard Filter icon in the Form bar." msgstr "" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3144746\n" +"00000409.xhp\n" +"par_id3155619\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Application Colors." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000406.xhp +#: 00000409.xhp msgctxt "" -"00000406.xhp\n" -"par_id3156355\n" +"00000409.xhp\n" +"par_id3148731\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save." -msgstr "" +msgid "Standard Filter" +msgstr "আদর্শ পরিশোধক" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147223\n" +"00000450.xhp\n" +"tit\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General." -msgstr "" +msgid "Database" +msgstr "ডাটাবেস" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153958\n" +"00000450.xhp\n" +"hd_id3154689\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - VBA Properties." -msgstr "" +msgid "Database" +msgstr "ডাটাবেস" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153707\n" +"00000450.xhp\n" +"par_id3152876\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - Microsoft Office." +msgid "In a database file window, choose Tools - Table Filter." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145667\n" +"00000450.xhp\n" +"par_id3153244\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility." -msgstr "" +msgid "View - Database Objects - Queries" +msgstr "প্রদর্শন - ডাটাবেস অবজেক্ট - কোয়েরি" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3146792\n" +"00000450.xhp\n" +"par_id3147294\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings." +msgid "In a database file window, choose Edit - Database - Properties - Advanced Settings tab." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3157965\n" +"00000450.xhp\n" +"par_id3159411\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." +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_id3155446\n" +"00000450.xhp\n" +"par_id3149119\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages - Complex Text Layout." +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_id3150745\n" +"00000450.xhp\n" +"par_id3154497\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." +msgid "In a database file window of type ODBC, choose Edit - Database - Connection Type." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148407\n" +"00000450.xhp\n" +"par_id3149355\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 "In a database file window of type Address book - LDAP, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150324\n" +"00000450.xhp\n" +"par_id3157896\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids." +msgid "In a database file window of type JDBC, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145620\n" +"00000450.xhp\n" +"par_id3148548\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Searching in Japanese." +msgid "In a database file window of type MySQL, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147341\n" +"00000450.xhp\n" +"par_id3149346\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Asian Layout." +msgid "In a database file window of type dBASE, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147359\n" +"00000450.xhp\n" +"par_id3147043\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet." +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_id3156374\n" +"00000450.xhp\n" +"par_id3154317\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy." +msgid "In a database file window of type Text, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149280\n" +"00000450.xhp\n" +"par_id3150774\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer." +msgid "In a database file window of type MS ADO, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_idN10E4F\n" +"00000450.xhp\n" +"par_id3151110\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Compatibility." +msgid "In a database file window, choose Tools - SQL." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148929\n" +"00000450.xhp\n" +"par_id3147209\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General." +msgid "In a database file window, click the Queries icon." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_idN10F2F\n" +"00000450.xhp\n" +"par_id3153880\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge E-mail." +msgid "In a database file window, click the Tables icon." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149825\n" +"00000450.xhp\n" +"par_id3153760\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - AutoCaption." +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_id3155333\n" +"00000450.xhp\n" +"par_id3156329\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. Choose Insert - Table Design or Edit - Edit." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3146316\n" +"00000450.xhp\n" +"par_id3154047\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, choose Insert - Query (Design view)." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3153534\n" +"00000450.xhp\n" +"par_id3149579\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid." +msgid "In a database file window, click the Queries icon, then choose Edit - Edit." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3155961\n" +"00000450.xhp\n" +"par_id3149902\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Western)." +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_id3159313\n" +"00000450.xhp\n" +"par_id3159166\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Asian). Asian language support must be enabled." +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_id3155607\n" +"00000450.xhp\n" +"par_id3151245\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Print." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3988769\n" +"00000450.xhp\n" +"par_id3153896\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Print." -msgstr "" +msgid "Insert Tables" +msgstr "সারণি সন্নিবেশ করানো হবে" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145769\n" +"00000450.xhp\n" +"par_id3149457\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147005\n" +"00000450.xhp\n" +"par_id3159085\n" "help.text" -msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Changes." -msgstr "" +msgid "New Relation" +msgstr "নতুন অন্বয়" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3159333\n" +"00000450.xhp\n" +"par_id3150414\n" "help.text" -msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web." +msgid "Find Record icon on the Table Data bar and Form Design bar." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149448\n" +"00000450.xhp\n" +"par_id3157962\n" "help.text" -msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web - Background." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149336\n" +"00000450.xhp\n" +"par_id3157322\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc." -msgstr "" +msgid "Find Record" +msgstr "রেকর্ড অনুসন্ধান" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152966\n" +"00000450.xhp\n" +"par_id3150870\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General." +msgid "Sort Order icon on the Table Data bar and Form Design bar." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149814\n" +"00000450.xhp\n" +"par_id3150393\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3154656\n" +"00000450.xhp\n" +"par_id3145745\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." -msgstr "" +msgid "Sort Order" +msgstr "সাজানোর বিন্যাস" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3154657\n" +"00000450.xhp\n" +"par_id3145171\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Compatibility." +msgid "In a database file window, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152494\n" +"00000450.xhp\n" +"par_id3159252\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." +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_id3152495\n" +"00000450.xhp\n" +"par_id3148560\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Formula." +msgid "In a database file window, choose Insert - Form." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152496\n" +"00000450.xhp\n" +"par_id3155430\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults." +msgid "In a database file window, choose Edit - Database - Properties." msgstr "" -#: 00000406.xhp +#: 00000450.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149527\n" +"00000450.xhp\n" +"par_id3147441\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists - Copy button." +msgid "In a database file window, choose Tools - Relationships." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3154903\n" +"00040500.xhp\n" +"tit\n" "help.text" -msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Changes." -msgstr "" +msgid "Format Menu" +msgstr "বিন্যাস মেনু" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3152582\n" +"00040500.xhp\n" +"hd_id3150347\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress." -msgstr "" +msgid "Format Menu" +msgstr "বিন্যাস মেনু" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148418\n" +"00040500.xhp\n" +"par_id3145356\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General." +msgid "Choose Format - Clear Direct Formatting." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150380\n" +"00040500.xhp\n" +"par_id3153244\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." +msgid "Choose Format - Character." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3166423\n" +"00040500.xhp\n" +"par_id3152352\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid." +msgid "On Text Formatting bar (with cursor in object), click" msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3148873\n" +"00040500.xhp\n" +"par_id3148998\n" "help.text" -msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print." +msgid "Icon" msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145220\n" +"00040500.xhp\n" +"par_id3149999\n" "help.text" -msgid "Open a drawing document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw." -msgstr "" +msgid "Character" +msgstr "অক্ষর" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3149573\n" +"00040500.xhp\n" +"par_id3153935\n" "help.text" -msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math." +msgid "Choose Format - Character - Font tab." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3145613\n" +"00040500.xhp\n" +"par_id3157958\n" "help.text" -msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math - Settings." +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_id3155137\n" +"00040500.xhp\n" +"par_id3155338\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts." +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_id3149211\n" +"00040500.xhp\n" +"par_id3150355\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts - Default Colors." +msgid "Choose Format - Title - Character tab (Chart documents)." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3150862\n" +"00040500.xhp\n" +"par_id3149812\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base." +msgid "Choose Format - Legend - Character tab (Chart documents)." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_id3147368\n" +"00040500.xhp\n" +"par_id3153717\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Connections." +msgid "Choose Format - Axis - Character tab (Chart documents)." msgstr "" -#: 00000406.xhp +#: 00040500.xhp msgctxt "" -"00000406.xhp\n" -"par_idN1120D\n" +"00040500.xhp\n" +"par_id3154749\n" "help.text" -msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." +msgid "Choose Format - Cells - Font tab (spreadsheets)." msgstr "" -#: 00000407.xhp -msgctxt "" -"00000407.xhp\n" -"tit\n" -"help.text" -msgid "Window Menu" -msgstr "উইন্ডো মেনু" - -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"hd_id3154349\n" +"00040500.xhp\n" +"par_id3156306\n" "help.text" -msgid "Window Menu" -msgstr "উইন্ডো মেনু" +msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgstr "" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"par_id3083278\n" +"00040500.xhp\n" +"par_id3155829\n" "help.text" -msgid "Choose Window - New Window." +msgid "Choose Format - Character - Font Effects tab." msgstr "" -#: 00000407.xhp +#: 00040500.xhp msgctxt "" -"00000407.xhp\n" -"par_id3154545\n" +"00040500.xhp\n" +"par_id3149819\n" "help.text" -msgid "Choose Window - List of open documents." +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" -"tit\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" -"hd_id3154689\n" +"00040500.xhp\n" +"par_id3153541\n" "help.text" -msgid "Help Menu" -msgstr "সহায়তা মেনু" +msgid "Choose Format - Character - Position tab." +msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"par_id3150960\n" +"00040500.xhp\n" +"par_id3159256\n" "help.text" -msgid "Choose Help - %PRODUCTNAME Help." +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_id3147240\n" +"00040500.xhp\n" +"par_id3151385\n" "help.text" -msgid "Choose Help - About %PRODUCTNAME." +msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." msgstr "" -#: 00000408.xhp +#: 00040500.xhp msgctxt "" -"00000408.xhp\n" -"par_id3151387\n" +"00040500.xhp\n" +"par_id3148550\n" "help.text" -msgid "Automatically after %PRODUCTNAME is first started." -msgstr "%PRODUCTNAME প্রথমবার শুরু হওয়ার পর স্বয়ংক্রিয়ভাবে।" +msgid "Choose Format - Character - Asian Layout tab" +msgstr "বিন্যাস - অক্ষর - এশীয় বহির্বিন্যাস ট্যাব নির্বাচন করুন" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"tit\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" -"hd_id3149517\n" +"00040500.xhp\n" +"par_id3153524\n" "help.text" -msgid "Toolbars" -msgstr "টুলবার" +msgid "Choose Format - Paragraph - Asian Typography tab (not in HTML)." +msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3156053\n" +"00040500.xhp\n" +"par_id3154366\n" "help.text" -msgid "Choose Data - More Filters - Standard Filter." +msgid "Choose Format - Cells - Asian Typography tab." msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3154350\n" +"00040500.xhp\n" +"par_id3148742\n" "help.text" -msgid "Database table view: Standard Filter icon in the Database toolbar." +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_id3154183\n" +"00040500.xhp\n" +"par_id3148922\n" "help.text" -msgid "Form view: Standard Filter icon in the Form bar." +msgid "Choose Format - Character - Hyperlink tab." msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3155619\n" +"00040500.xhp\n" +"par_id3149169\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Paragraph." +msgstr "" -#: 00000409.xhp +#: 00040500.xhp msgctxt "" -"00000409.xhp\n" -"par_id3148731\n" +"00040500.xhp\n" +"par_id3151381\n" "help.text" -msgid "Standard Filter" -msgstr "আদর্শ পরিশোধক" +msgid "On Text Formatting bar (with cursor in object), click" +msgstr "টেক্সট বিন্যাস বারে (বস্তুর উপর কার্সার), ক্লিক করুন" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"tit\n" +"00040500.xhp\n" +"par_id3155995\n" "help.text" -msgid "Database" -msgstr "ডাটাবেস" +msgid "Icon" +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"hd_id3154689\n" +"00040500.xhp\n" +"par_id3147299\n" "help.text" -msgid "Database" -msgstr "ডাটাবেস" +msgid "Paragraph" +msgstr "অনুচ্ছেদ" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3152876\n" +"00040500.xhp\n" +"par_id3147289\n" "help.text" -msgid "In a database file window, choose Tools - Table Filter." +msgid "Choose Format - Paragraph - Alignment tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153244\n" +"00040500.xhp\n" +"par_id3147352\n" "help.text" -msgid "View - Database Objects - Queries" -msgstr "প্রদর্শন - ডাটাবেস অবজেক্ট - কোয়েরি" +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_id3147294\n" +"00040500.xhp\n" +"par_id3154640\n" "help.text" -msgid "In a database file window, choose Edit - Database - Properties - Advanced Settings tab." +msgid "Choose Format - Paragraph - Indents & Spacing tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159411\n" +"00040500.xhp\n" +"par_id3152463\n" "help.text" -msgid "In a database file window of type ODBC or Address book,
choose Edit - Database - Connection Type.
" +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_id3149119\n" +"00040500.xhp\n" +"par_id3154319\n" "help.text" -msgid "Path selection button in various wizards / Edit buttons for some entries in %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." +msgid "Choose Format - Paragraph - Tabs tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3154497\n" +"00040500.xhp\n" +"par_id3154833\n" "help.text" -msgid "In a database file window of type ODBC, choose Edit - Database - Connection Type." +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_id3149355\n" +"00040500.xhp\n" +"par_id3159155\n" "help.text" -msgid "In a database file window of type Address book - LDAP, choose Edit - Database - Properties." -msgstr "" +msgid "Double-click the ruler" +msgstr "রুলারে ডাবল ক্লিক করুন" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3157896\n" +"00040500.xhp\n" +"par_idN109E2\n" "help.text" -msgid "In a database file window of type JDBC, choose Edit - Database - Properties." -msgstr "" +msgid "(all options only in Writer or Calc)" +msgstr "(শুধুমাত্র রাইটার অথবা ক্যালকের সকল অপশন)" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3148548\n" +"00040500.xhp\n" +"par_id3156105\n" "help.text" -msgid "In a database file window of type MySQL, choose Edit - Database - Properties." +msgid "Choose Format - Paragraph - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149346\n" +"00040500.xhp\n" +"par_id3154149\n" "help.text" -msgid "In a database file window of type dBASE, choose Edit - Database - Properties." +msgid "Choose Format - Image - Properties - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3147043\n" +"00040500.xhp\n" +"par_id3163822\n" "help.text" -msgid "In a database file window of type dBASE, choose Edit - Database - Properties, click Indexes." +msgid "Choose Format - Frame and Object - Properties - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3154317\n" +"00040500.xhp\n" +"par_id3150048\n" "help.text" -msgid "In a database file window of type Text, choose Edit - Database - Properties." +msgid "Choose Format - Page - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150774\n" +"00040500.xhp\n" +"par_id3151148\n" "help.text" -msgid "In a database file window of type MS ADO, choose Edit - Database - Properties." +msgid "Choose Format - Character - Borders tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3151110\n" +"00040500.xhp\n" +"par_id3149911\n" "help.text" -msgid "In a database file window, choose Tools - SQL." +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_id3147209\n" +"00040500.xhp\n" +"par_id3150094\n" "help.text" -msgid "In a database file window, click the Queries icon." +msgid "Choose Format - Page - Header - More button." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153880\n" +"00040500.xhp\n" +"par_id3154501\n" "help.text" -msgid "In a database file window, click the Tables icon." +msgid "Choose Format - Page - Footer - More button." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153760\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_id3156329\n" +"00040500.xhp\n" +"par_id3155915\n" "help.text" -msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit." +msgid "Menu Format - Paragraph - Border tab - Padding." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3154047\n" +"00040500.xhp\n" +"par_id3159130\n" "help.text" -msgid "In a database file window, choose Insert - Query (Design view)." +msgid "Menu Format - Page - Border - Padding." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149579\n" +"00040500.xhp\n" +"par_id3155853\n" "help.text" -msgid "In a database file window, click the Queries icon, then choose Edit - Edit." +msgid "Choose Format - Paragraph - Background tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149902\n" +"00040500.xhp\n" +"par_id3147330\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 - Character - Background tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159166\n" +"00040500.xhp\n" +"par_id3149486\n" "help.text" -msgid "Open query design and choose Insert - New Relation, or double-click on a connection line between two tables." +msgid "Choose Format - Image - Background tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3151245\n" +"00040500.xhp\n" +"par_id3150592\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Frame and Object - Properties - Area tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3153896\n" +"00040500.xhp\n" +"par_id3151321\n" "help.text" -msgid "Insert Tables" -msgstr "সারণি সন্নিবেশ করানো হবে" +msgid "Choose Format - Page - Background tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3149457\n" +"00040500.xhp\n" +"par_id3154510\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Page - Header - More button." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159085\n" +"00040500.xhp\n" +"par_id3159110\n" "help.text" -msgid "New Relation" -msgstr "নতুন অন্বয়" +msgid "Choose Format - Page - Footer - More button." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150414\n" +"00040500.xhp\n" +"par_id3153532\n" "help.text" -msgid "Find Record icon on the Table Data bar and Form Design bar." +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_id3157962\n" +"00040500.xhp\n" +"par_id3144747\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Insert/Edit - Section - Background tab" +msgstr "সন্নিবেশ/সম্পাদনা - অংশ - পটভুমি ট্যাব নির্বাচন করুন" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3157322\n" +"00040500.xhp\n" +"par_id3146900\n" "help.text" -msgid "Find Record" -msgstr "রেকর্ড অনুসন্ধান" +msgid "Choose Format - Cells - Background tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150870\n" +"00040500.xhp\n" +"par_id3146791\n" "help.text" -msgid "Sort Order icon on the Table Data bar and Form Design bar." +msgid "Choose Format - Page - Organizer tab." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3150393\n" +"00040500.xhp\n" +"par_id3154482\n" "help.text" -msgid "Icon" -msgstr "আইকন" +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_id3145745\n" +"00040500.xhp\n" +"par_id3153357\n" "help.text" -msgid "Sort Order" -msgstr "সাজানোর বিন্যাস" +msgid "Choose Format - Page - Page tab." +msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3145171\n" +"00040500.xhp\n" +"par_id3149323\n" "help.text" -msgid "In a database file window, choose Edit - Database - Properties." +msgid "Choose Slide - Properties - Page tab (in $[officename] Impress)." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3159252\n" +"00040500.xhp\n" +"par_id3154972\n" "help.text" -msgid "Drag and drop a table or a query into the table part of another database file window." +msgid "Choose Page - Properties - Page tab (in $[officename] Draw)." msgstr "" -#: 00000450.xhp +#: 00040500.xhp msgctxt "" -"00000450.xhp\n" -"par_id3148560\n" +"00040500.xhp\n" +"par_id3154362\n" "help.text" -msgid "In a database file window, choose Insert - Form." -msgstr "" - -#: 00000450.xhp -msgctxt "" -"00000450.xhp\n" -"par_id3155430\n" -"help.text" -msgid "In a database file window, choose Edit - Database - Properties." -msgstr "" - -#: 00000450.xhp -msgctxt "" -"00000450.xhp\n" -"par_id3147441\n" -"help.text" -msgid "In a database file window, choose Tools - Relationships." +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Page tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"tit\n" -"help.text" -msgid "Format Menu" -msgstr "বিন্যাস মেনু" - -#: 00040500.xhp -msgctxt "" -"00040500.xhp\n" -"hd_id3150347\n" +"par_id3155515\n" "help.text" -msgid "Format Menu" -msgstr "বিন্যাস মেনু" +msgid "Choose Format - Page - Header tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3145356\n" +"par_id3148405\n" "help.text" -msgid "Choose Format - Clear Direct Formatting." +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_id3153244\n" +"par_id3145618\n" "help.text" -msgid "Choose Format - Character." +msgid "Choose Format - Page - Footer tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3152352\n" +"par_id3155175\n" "help.text" -msgid "On Text Formatting bar (with cursor in object), click" +msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Footer tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148998\n" +"par_id3147404\n" "help.text" -msgid "Icon" +msgid "Choose View - Styles." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149999\n" +"par_id3166447\n" "help.text" -msgid "Character" -msgstr "অক্ষর" +msgid "Command+TF11" +msgstr "কমান্ডCtrl+O" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153935\n" +"par_id3147321\n" "help.text" -msgid "Choose Format - Character - Font tab." +msgid "On Formatting bar, click" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3157958\n" +"par_id3148533\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font tab." +msgid "Icon" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3155338\n" +"par_id3153534\n" "help.text" -msgid "Open context menu of a row header in a database table - choose Table Format - Font tab." +msgid "Styles" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3150355\n" +"par_id3159313\n" "help.text" -msgid "Choose Format - Title - Character tab (Chart documents)." +msgid "On the Drawing bar, click" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149812\n" +"par_id3109845\n" "help.text" -msgid "Choose Format - Legend - Character tab (Chart documents)." +msgid "Icon" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153717\n" +"par_id3152498\n" "help.text" -msgid "Choose Format - Axis - Character tab (Chart documents)." +msgid "3D Effects" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154749\n" +"par_id3145256\n" "help.text" -msgid "Choose Format - Cells - Font tab (spreadsheets)." +msgid "Open the context menu of the 3D object, choose 3D Effects - Geometry tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3156306\n" +"par_id3154203\n" "help.text" -msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgid "Open the context menu of the 3D object, choose 3D Effects - Shading tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3155829\n" +"par_id3151284\n" "help.text" -msgid "Choose Format - Character - 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_id3149819\n" +"par_id3152475\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 - Textures tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3159176\n" +"par_id3154572\n" "help.text" -msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgid "Open the context menu of the 3D object, choose 3D Effects - Material tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153541\n" +"par_id3145220\n" "help.text" -msgid "Choose Format - Character - Position tab." +msgid "Choose Format - Bullets and Numbering." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3159256\n" +"par_id3148771\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Alignment tab." +msgid "On Formatting bar, click" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3151385\n" +"par_id3149445\n" "help.text" -msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." +msgid "Icon" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148550\n" +"par_id3157970\n" "help.text" -msgid "Choose Format - Character - Asian Layout tab" -msgstr "বিন্যাস - অক্ষর - এশীয় বহির্বিন্যাস ট্যাব নির্বাচন করুন" +msgid "Bullets On/Off" +msgstr "বুলেট চালু/বন্ধ" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3152811\n" +"par_id3149735\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Layout tab." +msgid "Choose Format - Bullets and Numbering. Open Options tab page." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3153524\n" +"par_id3150785\n" "help.text" -msgid "Choose Format - Paragraph - Asian Typography tab (not in HTML)." +msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154366\n" +"par_id3148420\n" "help.text" -msgid "Choose Format - Cells - Asian Typography tab." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148742\n" +"par_id3148888\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Typography tab." +msgid "Choose Format - Bullets and Numbering - Bullets tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3148922\n" +"par_id3149917\n" "help.text" -msgid "Choose Format - Character - Hyperlink tab." +msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3149169\n" +"par_id3154930\n" "help.text" -msgid "Choose Format - Paragraph." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3151381\n" +"par_id3150862\n" "help.text" -msgid "On Text Formatting bar (with cursor in object), click" -msgstr "টেক্সট বিন্যাস বারে (বস্তুর উপর কার্সার), ক্লিক করুন" +msgid "Choose Format - Bullets and Numbering - Numbering tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3155995\n" +"par_id3155378\n" "help.text" -msgid "Icon" +msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3147299\n" +"par_id3156011\n" "help.text" -msgid "Paragraph" -msgstr "অনুচ্ছেদ" +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3147289\n" +"par_id0611200904324832\n" "help.text" -msgid "Choose Format - Paragraph - Alignment tab." +msgid "Choose Format - Bullets and Numbering - Image tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3147352\n" +"par_id3155848\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 - Outline tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154640\n" +"par_id3148733\n" "help.text" -msgid "Choose Format - Paragraph - Indents & Spacing tab." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3152463\n" +"par_id3156658\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Indents & Spacing tab." +msgid "Choose Format - Bullets and Numbering. Open Position tab page." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154319\n" +"par_id3156170\n" "help.text" -msgid "Choose Format - Paragraph - Tabs tab." +msgid "Choose Tools - Chapter Numbering - Position tab." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154833\n" +"par_id3153812\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Tabs tab." +msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3159155\n" +"par_id3151332\n" "help.text" -msgid "Double-click the ruler" -msgstr "রুলারে ডাবল ক্লিক করুন" +msgid "Menu Format - Image - Properties - Crop tab." +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_idN109E2\n" +"par_id3153317\n" "help.text" -msgid "(all options only in Writer or Calc)" -msgstr "(শুধুমাত্র রাইটার অথবা ক্যালকের সকল অপশন)" +msgid "Icon on the Image toolbar:" +msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3156105\n" +"par_id3149953\n" "help.text" -msgid "Choose Format - Paragraph - Borders tab." +msgid "Icon" msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3154149\n" +"par_id3153695\n" "help.text" -msgid "Choose Format - Image - Properties - Borders tab." -msgstr "" +msgid "Crop" +msgstr "ছাঁটা" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3163822\n" +"par_id3151254\n" "help.text" -msgid "Choose Format - Frame and Object - Properties - Borders tab." +msgid "Choose Format - Text or Format - Text - Change Case." msgstr "" #: 00040500.xhp msgctxt "" "00040500.xhp\n" -"par_id3150048\n" +"par_id3153579\n" "help.text" -msgid "Choose Format - Page - Borders tab." +msgid "Menu Format - Asian phonetic guide." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151148\n" +"00040501.xhp\n" +"tit\n" "help.text" -msgid "Choose Format - Character - Borders tab." -msgstr "" +msgid "Format Menu" +msgstr "বিন্যাস মেনু" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149911\n" +"00040501.xhp\n" +"hd_id3145759\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" +"par_id3150156\n" "help.text" -msgid "Choose Format - Page - Header - More button." +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_id3154501\n" +"00040501.xhp\n" +"par_id3154408\n" "help.text" -msgid "Choose Format - Page - Footer - More button." +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_id3148455\n" +"00040501.xhp\n" +"par_id3149748\n" "help.text" -msgid "Choose Format - Cells - Borders tab." +msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. Database connection must exist." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155915\n" +"00040501.xhp\n" +"par_id3156553\n" "help.text" -msgid "Menu Format - Paragraph - Border tab - Padding." +msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3159130\n" +"00040501.xhp\n" +"par_id3148825\n" "help.text" -msgid "Menu Format - Page - Border - Padding." +msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155853\n" +"00040501.xhp\n" +"par_id3155434\n" "help.text" -msgid "Choose Format - Paragraph - Background tab." +msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3147330\n" +"00040501.xhp\n" +"par_id3151378\n" "help.text" -msgid "Choose Format - Character - Background tab." +msgid "Open Form Controls toolbar, click List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149486\n" +"00040501.xhp\n" +"par_id3151246\n" "help.text" -msgid "Choose Format - Image - Background tab." +msgid "Open Form Controls toolbar, click Combo Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3150592\n" +"00040501.xhp\n" +"par_id3154923\n" "help.text" -msgid "Choose Format - Frame and Object - Properties - Area tab." -msgstr "" +msgid "Open Toolbox bar in Basic dialog editor, click" +msgstr "প্রাথমিক ডায়ালগ সম্পাদকে টুলবাক্স বার খুলুন, ক্লিক করুন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151321\n" +"00040501.xhp\n" +"par_id3151054\n" "help.text" -msgid "Choose Format - Page - Background tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154510\n" +"00040501.xhp\n" +"par_id3154836\n" "help.text" -msgid "Choose Format - Page - Header - More button." -msgstr "" +msgid "Properties" +msgstr "বৈশিষ্ট্যাবলী" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3159110\n" +"00040501.xhp\n" +"par_id3149292\n" "help.text" -msgid "Choose Format - Page - Footer - More button." +msgid "Open context menu of a selected form element - choose Form." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153532\n" +"00040501.xhp\n" +"par_id3152933\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Background tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3144747\n" +"00040501.xhp\n" +"par_id3144760\n" "help.text" -msgid "Choose Insert/Edit - Section - Background tab" -msgstr "সন্নিবেশ/সম্পাদনা - অংশ - পটভুমি ট্যাব নির্বাচন করুন" +msgid "Form" +msgstr "ফরম" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3146900\n" +"00040501.xhp\n" +"par_id3150447\n" "help.text" -msgid "Choose Format - Cells - Background tab." +msgid "Open context menu of a selected form element - choose Form - General tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3146791\n" +"00040501.xhp\n" +"par_id3144448\n" "help.text" -msgid "Choose Format - Page - Organizer tab." +msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - General tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154482\n" +"00040501.xhp\n" +"par_id3145786\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Organizer tab." +msgid "Open context menu of a selected form element - choose Form - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153357\n" +"00040501.xhp\n" +"par_id3158156\n" "help.text" -msgid "Choose Format - Page - Page tab." +msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149323\n" +"00040501.xhp\n" +"par_id1979125\n" "help.text" -msgid "Choose Slide - Properties - Page tab (in $[officename] Impress)." +msgid "Open context menu of a selected control on an XML Form document, choose Control - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154972\n" +"00040501.xhp\n" +"par_id1769463\n" "help.text" -msgid "Choose Page - Properties - Page tab (in $[officename] Draw)." +msgid "Open Form Controls toolbar of an XML Form document, click Control icon - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154362\n" +"00040501.xhp\n" +"par_id3145364\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Page tab." +msgid "Open context menu of a selected form element - choose Form - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155515\n" +"00040501.xhp\n" +"par_id3153575\n" "help.text" -msgid "Choose Format - Page - Header tab." +msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148405\n" +"00040501.xhp\n" +"par_id3147234\n" "help.text" -msgid "Choose View - Styles - open context menu of a page style entry and choose Modify/New - Header tab." +msgid "Open context menu of a selected form element - choose Control." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3145618\n" +"00040501.xhp\n" +"par_id3153953\n" "help.text" -msgid "Choose Format - Page - Footer tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155175\n" +"00040501.xhp\n" +"par_id3156442\n" "help.text" -msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Footer tab." -msgstr "" +msgid "Control" +msgstr "কন্ট্রোল" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3147404\n" +"00040501.xhp\n" +"par_id3153943\n" "help.text" -msgid "Choose View - Styles." +msgid "Open context menu of a selected form element - choose Control - General tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3166447\n" +"00040501.xhp\n" +"par_id3159198\n" "help.text" -msgid "Command+TF11" -msgstr "কমান্ডCtrl+O" +msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - General tab." +msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3147321\n" +"00040501.xhp\n" +"par_id3153203\n" "help.text" -msgid "On Formatting bar, click" +msgid "Open context menu of a selected form element - choose Control - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148533\n" +"00040501.xhp\n" +"par_id3150048\n" "help.text" -msgid "Icon" +msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Data tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153534\n" +"00040501.xhp\n" +"par_id3153334\n" "help.text" -msgid "Styles" +msgid "Open context menu of a selected form element - choose Control - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3159313\n" +"00040501.xhp\n" +"par_id3153744\n" "help.text" -msgid "On the Drawing bar, click" +msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Events tab." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3109845\n" +"00040501.xhp\n" +"par_id6058839\n" "help.text" -msgid "Icon" +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3152498\n" +"00040501.xhp\n" +"par_id3157874\n" "help.text" -msgid "3D Effects" -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3145256\n" +"00040501.xhp\n" +"par_id3146926\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Geometry tab." -msgstr "" +msgid "Activation Order" +msgstr "সক্রিয়করণ ক্রম" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154203\n" +"00040501.xhp\n" +"par_id2709433\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Shading tab." +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151284\n" +"00040501.xhp\n" +"par_id3156439\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Illumination tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3152475\n" +"00040501.xhp\n" +"par_id3144747\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Textures tab." -msgstr "" +msgid "Add Field" +msgstr "ক্ষেত্র যোগ করুন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154572\n" +"00040501.xhp\n" +"par_id9929502\n" "help.text" -msgid "Open the context menu of the 3D object, choose 3D Effects - Material tab." +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3145220\n" +"00040501.xhp\n" +"par_id3150749\n" "help.text" -msgid "Choose Format - Bullets and Numbering." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148771\n" +"00040501.xhp\n" +"par_id3147237\n" "help.text" -msgid "On Formatting bar, click" -msgstr "" +msgid "Form Navigator" +msgstr "ফরম ন্যাভিগেটর" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149445\n" +"00040501.xhp\n" +"par_id4886928\n" "help.text" -msgid "Icon" +msgid "On Form Controls toolbar or Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3157970\n" +"00040501.xhp\n" +"par_id3156056\n" "help.text" -msgid "Bullets On/Off" -msgstr "বুলেট চালু/বন্ধ" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149735\n" +"00040501.xhp\n" +"par_id3153767\n" "help.text" -msgid "Choose Format - Bullets and Numbering. Open Options tab page." +msgid "Design Mode On/Off" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3150785\n" +"00040501.xhp\n" +"par_id3148828\n" "help.text" -msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." +msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148420\n" +"00040501.xhp\n" +"par_id8177434\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "On Form Design bar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148888\n" +"00040501.xhp\n" +"par_id3149822\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Bullets tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149917\n" +"00040501.xhp\n" +"par_id3147321\n" "help.text" -msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." -msgstr "" +msgid "Open in Design Mode" +msgstr "নকশা মোডে খুলুন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3154930\n" +"00040501.xhp\n" +"par_id3147533\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "On Form Control toolbar, click" msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3150862\n" +"00040501.xhp\n" +"par_id3152948\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Numbering tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155378\n" +"00040501.xhp\n" +"par_id3155939\n" "help.text" -msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." -msgstr "" +msgid "Wizards On/Off" +msgstr "উইজার্ড চালু/বন্ধ" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3156011\n" +"00040501.xhp\n" +"par_id3147244\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "Choose Format - Arrange ($[officename] Writer, $[officename] Calc)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id0611200904324832\n" +"00040501.xhp\n" +"par_id3159334\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Image tab." +msgid "Open context menu - choose Arrange ($[officename] Impress, $[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3155848\n" +"00040501.xhp\n" +"par_id3154023\n" "help.text" -msgid "Choose Format - Bullets and Numbering - Outline tab." +msgid "Choose Shape - Arrange ($[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3148733\n" +"00040501.xhp\n" +"par_id3155578\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3156658\n" +"00040501.xhp\n" +"par_id3152496\n" "help.text" -msgid "Choose Format - Bullets and Numbering. Open Position tab page." -msgstr "" +msgid "Arrange" +msgstr "সাজানো" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3156170\n" +"00040501.xhp\n" +"par_id3148459\n" "help.text" -msgid "Choose Tools - Chapter Numbering - Position tab." +msgid "Choose Format - Arrange - Bring to Front ($[officename] Writer, $[officename] Calc)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153812\n" +"00040501.xhp\n" +"par_id3148425\n" "help.text" -msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." +msgid "Choose Shape - Arrange - Bring to Front ($[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151332\n" +"00040501.xhp\n" +"par_id3153268\n" "help.text" -msgid "Menu Format - Image - Properties - Crop tab." +msgid "Shift+CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153317\n" +"00040501.xhp\n" +"par_id3154206\n" "help.text" -msgid "Icon on the Image toolbar:" +msgid "Open context menu - choose Arrange - Bring to Front ($[officename] Impress)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3149953\n" +"00040501.xhp\n" +"par_id3151213\n" "help.text" -msgid "Icon" -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153695\n" +"00040501.xhp\n" +"par_id3149571\n" "help.text" -msgid "Crop" -msgstr "ছাঁটা" +msgid "Bring to Front" +msgstr "সামনে নিয়ে আসা" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3151254\n" -"help.text" -msgid "Choose Format - Text or Format - Text - Change Case." +"00040501.xhp\n" +"par_id3147092\n" +"help.text" +msgid "Choose Format - Arrange - Bring Forward ($[officename] Writer, $[officename] Calc)." msgstr "" -#: 00040500.xhp +#: 00040501.xhp msgctxt "" -"00040500.xhp\n" -"par_id3153579\n" +"00040501.xhp\n" +"par_id3148396\n" "help.text" -msgid "Menu Format - Asian phonetic guide." +msgid "Choose Shape - Arrange - Bring Forward ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"tit\n" +"par_id3149528\n" "help.text" -msgid "Format Menu" -msgstr "বিন্যাস মেনু" +msgid "CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)" +msgstr "কমান্ডCtrl+যোগ চিহ্ন ($[officename] ইমপ্রেস, $[officename] ড্র)" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"hd_id3145759\n" +"par_id3154658\n" "help.text" -msgid "Format Menu" -msgstr "বিন্যাস মেনু" +msgid "Open context menu - choose Arrange - Bring Forward ($[officename] Impress)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150156\n" +"par_id3159121\n" "help.text" -msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154408\n" +"par_id3155848\n" "help.text" -msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. No database connection in current form is allowed." -msgstr "" +msgid "Bring Forward" +msgstr "একধাপ সামনে আনা" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149748\n" +"par_id3154815\n" "help.text" -msgid "Open Form Controls toolbar, click More Controls icon, click Table Control icon and drag mouse to generate field. Database connection must exist." +msgid "Choose Format - Arrange - Send Backward ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156553\n" +"par_id3150428\n" "help.text" -msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form." +msgid "Choose Shape - Arrange - Send Backward ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148825\n" +"par_id3156064\n" "help.text" -msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1." -msgstr "" +msgid "CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" +msgstr "কমান্ডCtrl+বিয়োগ চিহ্ন ($[officename] ইমপ্রেস, $[officename] ড্র)" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3155434\n" +"par_id3159107\n" "help.text" -msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2." +msgid "Open context menu - choose Arrange - Send Backward ($[officename] Impress)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151378\n" +"par_id3152994\n" "help.text" -msgid "Open Form Controls toolbar, click List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151246\n" +"par_id3152795\n" "help.text" -msgid "Open Form Controls toolbar, click Combo Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "" +msgid "Send Backward" +msgstr "একধাপ পিছনে প্রেরণ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154923\n" +"par_id3149493\n" "help.text" -msgid "Open Toolbox bar in Basic dialog editor, click" -msgstr "প্রাথমিক ডায়ালগ সম্পাদকে টুলবাক্স বার খুলুন, ক্লিক করুন" +msgid "Choose Format - Arrange - Send to Back ($[officename] Writer, $[officename] Calc)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151054\n" +"par_id3148595\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Shape - Arrange - Send to Back ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154836\n" +"par_id3150690\n" "help.text" -msgid "Properties" -msgstr "বৈশিষ্ট্যাবলী" +msgid "Shift+CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" +msgstr "Shift+কমান্ডCtrl+বিয়োগ চিহ্ন ($[officename] ইমপ্রেস, $[officename] ড্র)" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149292\n" +"par_id3154486\n" "help.text" -msgid "Open context menu of a selected form element - choose Form." +msgid "Open context menu - choose Arrange - Send to Back ($[officename] Impress)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3152933\n" +"par_id3145384\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3144760\n" +"par_id3155260\n" "help.text" -msgid "Form" -msgstr "ফরম" +msgid "Send to Back" +msgstr "পিছনে প্রেরণ" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150447\n" +"par_id3145410\n" "help.text" -msgid "Open context menu of a selected form element - choose Form - General tab." +msgid "Choose Format - Arrange - To Foreground." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3144448\n" +"par_id3149408\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - General tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3145786\n" +"par_id3153607\n" "help.text" -msgid "Open context menu of a selected form element - choose Form - Data tab." -msgstr "" +msgid "To Foreground" +msgstr "পুরোভাগে" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3158156\n" +"par_id3159626\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Data tab." +msgid "Choose Format - Arrange - To Background." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id1979125\n" +"par_id3153815\n" "help.text" -msgid "Open context menu of a selected control on an XML Form document, choose Control - Data tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id1769463\n" +"par_id3152900\n" "help.text" -msgid "Open Form Controls toolbar of an XML Form document, click Control icon - Data tab." -msgstr "" +msgid "To Background" +msgstr "পটভূমিতে" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3145364\n" +"par_id3146854\n" "help.text" -msgid "Open context menu of a selected form element - choose Form - Events tab." +msgid "Choose Format - Align ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153575\n" +"par_id3153914\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Events tab." +msgid "Choose Shape - Align (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147234\n" +"par_id3153185\n" "help.text" -msgid "Open context menu of a selected form element - choose Control." +msgid "Open context menu - choose Align (objects selected) ($[officename] Impress, $[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153953\n" +"par_id3168611\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Align - Left ($[officename] Writer, $[officename] Calc)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156442\n" +"par_id3083450\n" "help.text" -msgid "Control" -msgstr "কন্ট্রোল" +msgid "Choose Shape - Align - Left (selected objects) ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153943\n" +"par_id3150257\n" "help.text" -msgid "Open context menu of a selected form element - choose Control - General tab." +msgid "Open context menu - choose Align - Left (objects selected) ($[officename] Impress, $[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3159198\n" +"par_id3146786\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - General tab." +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153203\n" +"par_id3153373\n" "help.text" -msgid "Open context menu of a selected form element - choose Control - Data tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150048\n" +"par_id3151231\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Data tab." -msgstr "" +msgid "Left" +msgstr "বাম" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153334\n" +"par_id3150268\n" "help.text" -msgid "Open context menu of a selected form element - choose Control - Events tab." +msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153744\n" +"par_id3157978\n" "help.text" -msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Events tab." +msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id6058839\n" +"par_id3150139\n" "help.text" -msgid "On Form Design bar, click" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3157874\n" +"par_id3149519\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3146926\n" +"par_id3150704\n" "help.text" -msgid "Activation Order" -msgstr "সক্রিয়করণ ক্রম" +msgid "Centered" +msgstr "কেন্দ্রস্থিত" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id2709433\n" +"par_id3156546\n" "help.text" -msgid "On Form Design bar, click" +msgid "Choose Format - Align - Right." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156439\n" +"par_id3145073\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Shape - Align - Right (objects selected) ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3144747\n" +"par_id3146953\n" "help.text" -msgid "Add Field" -msgstr "ক্ষেত্র যোগ করুন" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id9929502\n" +"par_id3155436\n" "help.text" -msgid "On Form Design bar, click" -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3150749\n" +"par_id3150834\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Right" +msgstr "ডান" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147237\n" +"par_id3153109\n" "help.text" -msgid "Form Navigator" -msgstr "ফরম ন্যাভিগেটর" +msgid "Choose Format - Align - Top ($[officename] Writer, $[officename] Calc)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id4886928\n" +"par_id3150213\n" "help.text" -msgid "On Form Controls toolbar or Form Design bar, click" +msgid "Choose Shape - Align - Top (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3156056\n" +"par_id3155093\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Open context menu - choose Align - Top (objects selected) ($[officename] Impress, $[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153767\n" +"par_id3151303\n" "help.text" -msgid "Design Mode On/Off" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148828\n" +"par_id3155386\n" "help.text" -msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id8177434\n" +"par_id3157550\n" "help.text" -msgid "On Form Design bar, click" -msgstr "" +msgid "Top" +msgstr "শীর্ষে" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149822\n" +"par_id3153976\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147321\n" +"par_id3153246\n" "help.text" -msgid "Open in Design Mode" -msgstr "নকশা মোডে খুলুন" +msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147533\n" +"par_id3154614\n" "help.text" -msgid "On Form Control toolbar, click" +msgid "Open context menu - choose Align - Centered (objects selected) ($[officename] Impress, $[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3152948\n" +"par_id3149196\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3155939\n" +"par_id3145755\n" "help.text" -msgid "Wizards On/Off" -msgstr "উইজার্ড চালু/বন্ধ" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147244\n" +"par_id3146943\n" "help.text" -msgid "Choose Format - Arrange ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgid "Centered" +msgstr "কেন্দ্রস্থিত" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3159334\n" +"par_id3149896\n" "help.text" -msgid "Open context menu - choose Arrange ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Align - Bottom ($[officename] Writer, $[officename] Calc)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154023\n" +"par_id3156049\n" "help.text" -msgid "Choose Shape - Arrange ($[officename] Draw)." +msgid "Choose Shape - Align - Bottom (objects selected) ($[officename] Draw)." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3155578\n" +"par_id3152545\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3152496\n" +"par_id3154057\n" "help.text" -msgid "Arrange" -msgstr "সাজানো" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148459\n" +"par_id3145601\n" "help.text" -msgid "Choose Format - Arrange - Bring to Front ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgid "Bottom" +msgstr "নিম্নে" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148425\n" +"par_id3145197\n" "help.text" -msgid "Choose Shape - Arrange - Bring to Front ($[officename] Draw)." +msgid "Choose Format - Anchor." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3153268\n" +"par_id2851649\n" "help.text" -msgid "Shift+CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)." +msgid "On Form Design bar, click" msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154206\n" +"par_id3151122\n" "help.text" -msgid "Open context menu - choose Arrange - Bring to Front ($[officename] Impress)." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3151213\n" +"par_id3154763\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Change Anchor" +msgstr "নোঙ্গর পরিবর্তন করুন" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149571\n" +"par_id3148899\n" "help.text" -msgid "Bring to Front" -msgstr "সামনে নিয়ে আসা" +msgid "Choose Format - Anchor - To Page." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3147092\n" +"par_id3149342\n" "help.text" -msgid "Choose Format - Arrange - Bring Forward ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Anchor - To Paragraph." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3148396\n" +"par_id3155147\n" "help.text" -msgid "Choose Shape - Arrange - Bring Forward ($[officename] Draw)." +msgid "Choose Format - Anchor - To Character." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3149528\n" +"par_id3153042\n" "help.text" -msgid "CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)" -msgstr "কমান্ডCtrl+যোগ চিহ্ন ($[officename] ইমপ্রেস, $[officename] ড্র)" +msgid "Choose Format - Anchor - As Character." +msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3154658\n" +"par_id3146964\n" "help.text" -msgid "Open context menu - choose Arrange - Bring Forward ($[officename] Impress)." +msgid "Choose Format - Anchor - To Frame." msgstr "" #: 00040501.xhp msgctxt "" "00040501.xhp\n" -"par_id3159121\n" +"par_id3150781\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Anchor - To Cell." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155848\n" +"00040502.xhp\n" +"tit\n" "help.text" -msgid "Bring Forward" -msgstr "একধাপ সামনে আনা" +msgid "Format Menu" +msgstr "বিন্যাস মেনু" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154815\n" +"00040502.xhp\n" +"hd_id3149741\n" "help.text" -msgid "Choose Format - Arrange - Send Backward ($[officename] Writer, $[officename] Calc)." +msgid "Format Menu" +msgstr "বিন্যাস মেনু" + +#: 00040502.xhp +msgctxt "" +"00040502.xhp\n" +"par_id3146857\n" +"help.text" +msgid "Choose Format - Line (Impress and Draw)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150428\n" +"00040502.xhp\n" +"par_id366527\n" "help.text" -msgid "Choose Shape - Arrange - Send Backward ($[officename] Draw)." +msgid "Choose Format - Text Box and Shape - Line (Writer)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3156064\n" +"00040502.xhp\n" +"par_id3835261\n" "help.text" -msgid "CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" -msgstr "কমান্ডCtrl+বিয়োগ চিহ্ন ($[officename] ইমপ্রেস, $[officename] ড্র)" +msgid "Choose Format - Object - Line (Calc)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3159107\n" +"00040502.xhp\n" +"par_id3148668\n" "help.text" -msgid "Open context menu - choose Arrange - Send Backward ($[officename] Impress)." +msgid "On Line and Filling bar, click" msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152994\n" +"00040502.xhp\n" +"par_id3148889\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Icon" +msgstr "আইকন" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152795\n" +"00040502.xhp\n" +"par_id3159147\n" "help.text" -msgid "Send Backward" -msgstr "একধাপ পিছনে প্রেরণ" +msgid "Line" +msgstr "লাইন" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149493\n" +"00040502.xhp\n" +"par_id3154285\n" "help.text" -msgid "Choose Format - Arrange - Send to Back ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Text Box and Shape - Object - Line - Line tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3148595\n" +"00040502.xhp\n" +"par_id3147335\n" "help.text" -msgid "Choose Shape - Arrange - Send to Back ($[officename] Draw)." +msgid "Choose View - Styles - open context menu and choose Modify/New - Line tab (presentation documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150690\n" +"00040502.xhp\n" +"par_id3156023\n" "help.text" -msgid "Shift+CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" -msgstr "Shift+কমান্ডCtrl+বিয়োগ চিহ্ন ($[officename] ইমপ্রেস, $[officename] ড্র)" +msgid "Choose Format - Title - Borders tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154486\n" +"00040502.xhp\n" +"par_id3153061\n" "help.text" -msgid "Open context menu - choose Arrange - Send to Back ($[officename] Impress)." +msgid "Choose Format - Legend - Borders tab (charts)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145384\n" +"00040502.xhp\n" +"par_id3155922\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Axis - Line tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155260\n" +"00040502.xhp\n" +"par_id3147559\n" "help.text" -msgid "Send to Back" -msgstr "পিছনে প্রেরণ" +msgid "Choose Format - Grid - Line tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145410\n" +"00040502.xhp\n" +"par_id3154758\n" "help.text" -msgid "Choose Format - Arrange - To Foreground." +msgid "Choose Format - Chart Wall - Borders tab (charts)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149408\n" +"00040502.xhp\n" +"par_id3153960\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Chart Floor - Borders tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153607\n" +"00040502.xhp\n" +"par_id3154939\n" "help.text" -msgid "To Foreground" -msgstr "পুরোভাগে" +msgid "Choose Format - Chart Area - Borders tab (charts)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3159626\n" +"00040502.xhp\n" +"par_id3151293\n" "help.text" -msgid "Choose Format - Arrange - To Background." +msgid "Choose Format - Text Box and Shape - Object - Line - Line Styles tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153815\n" +"00040502.xhp\n" +"par_id3149317\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Text Box and Shape - Object - Line - Arrow Styles tab." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152900\n" +"00040502.xhp\n" +"par_id3156082\n" "help.text" -msgid "To Background" -msgstr "পটভূমিতে" +msgid "Choose Format - Text Box and Shape - Object - Area." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146854\n" +"00040502.xhp\n" +"par_id3148922\n" "help.text" -msgid "Choose Format - Align ($[officename] Writer, $[officename] Calc)." +msgid "On Line and Filling bar, click" msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153914\n" +"00040502.xhp\n" +"par_id3156424\n" "help.text" -msgid "Choose Shape - Align (objects selected) ($[officename] Draw)." -msgstr "" +msgid "Icon" +msgstr "আইকন" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153185\n" +"00040502.xhp\n" +"par_id3150393\n" "help.text" -msgid "Open context menu - choose Align (objects selected) ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgid "Area" +msgstr "এলাকা" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3168611\n" +"00040502.xhp\n" +"par_id3154948\n" "help.text" -msgid "Choose Format - Align - Left ($[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_id3083450\n" +"00040502.xhp\n" +"par_id3145607\n" "help.text" -msgid "Choose Shape - Align - Left (selected objects) ($[officename] Draw)." +msgid "Choose View - Styles - open context menu and choose Modify/New - Area tab (presentation documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150257\n" +"00040502.xhp\n" +"par_id3152922\n" "help.text" -msgid "Open context menu - choose Align - Left (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Title - Area tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146786\n" +"00040502.xhp\n" +"par_id3157894\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Legend - Area tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153373\n" +"00040502.xhp\n" +"par_id3144444\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Chart Wall - Area tab (chart documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3151231\n" +"00040502.xhp\n" +"par_id3156543\n" "help.text" -msgid "Left" -msgstr "বাম" +msgid "Choose Format - Chart Floor - Area tab (chart documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150268\n" +"00040502.xhp\n" +"par_id3150685\n" "help.text" -msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Chart Area - Area tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3157978\n" +"00040502.xhp\n" +"par_id3149664\n" "help.text" -msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." +msgid "Choose Slide - Properties - Background tab (in $[officename] Impress)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150139\n" +"00040502.xhp\n" +"par_id9149694\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Page - Properties - Background tab (in $[officename] Draw)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149519\n" +"00040502.xhp\n" +"par_id841527083135387\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Table - Properties - Background tab." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150704\n" +"00040502.xhp\n" +"par_id3154985\n" "help.text" -msgid "Centered" -msgstr "কেন্দ্রস্থিত" +msgid "Choose Format - Area - Transparency tab (drawing documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3156546\n" +"00040502.xhp\n" +"par_id3145365\n" "help.text" -msgid "Choose Format - Align - Right." +msgid "Choose Format - Area - Transparency tab (presentation documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145073\n" +"00040502.xhp\n" +"par_id3151117\n" "help.text" -msgid "Choose Shape - Align - Right (objects selected) ($[officename] Draw)." +msgid "Choose Format - Chart Wall - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146953\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_id3155436\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_id3150834\n" +"00040502.xhp\n" +"par_id3145591\n" "help.text" -msgid "Right" -msgstr "ডান" +msgid "Choose Format - Title - All Titles - Transparency tab (chart documents)." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153109\n" +"00040502.xhp\n" +"par_id3145750\n" "help.text" -msgid "Choose Format - Align - Top ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Title - Main Title - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150213\n" +"00040502.xhp\n" +"par_id3148556\n" "help.text" -msgid "Choose Shape - Align - Top (objects selected) ($[officename] Draw)." +msgid "Choose Format - Title - Subtitle - Transparency tab (chart documents)." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155093\n" +"00040502.xhp\n" +"par_id3163710\n" "help.text" -msgid "Open context menu - choose Align - Top (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_id3151303\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 +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155386\n" +"00040502.xhp\n" +"par_id3154320\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Title - Title (Z Axis) - Transparency tab (chart documents)" +msgstr "বিন্যাস - শিরোনাম - শিরোনাম (Z অক্ষরেখা) - স্বচ্ছতা ট্যাব (লেখচিত্রের নথি) নির্বাচন করুন" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3157550\n" -"help.text" -msgid "Top" -msgstr "শীর্ষে" - -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3153976\n" +"00040502.xhp\n" +"par_id3151113\n" "help.text" -msgid "Choose Format - Align - Centered ($[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_id3153246\n" +"00040502.xhp\n" +"par_id3149266\n" "help.text" -msgid "Choose Shape - Align - Centered (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_id3154614\n" +"00040502.xhp\n" +"par_id3150011\n" "help.text" -msgid "Open context menu - choose Align - Centered (objects selected) ($[officename] Impress, $[officename] Draw)." +msgid "Choose Format - Text Box and Shape - Object - Area - Shadow tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149196\n" +"00040502.xhp\n" +"par_id3147441\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Text Box and Shape - Object - Area - Gradients tab." msgstr "" -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3145755\n" -"help.text" -msgid "Icon" -msgstr "আইকন" - -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3146943\n" -"help.text" -msgid "Centered" -msgstr "কেন্দ্রস্থিত" - -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149896\n" +"00040502.xhp\n" +"par_id3155308\n" "help.text" -msgid "Choose Format - Align - Bottom ($[officename] Writer, $[officename] Calc)." +msgid "Choose Format - Text Box and Shape - Object - Area - Hatching tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3156049\n" +"00040502.xhp\n" +"par_id3145800\n" "help.text" -msgid "Choose Shape - Align - Bottom (objects selected) ($[officename] Draw)." +msgid "Choose Format - Text Box and Shape - Object - Area - Bitmaps tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3152545\n" +"00040502.xhp\n" +"par_id3145251\n" "help.text" -msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" +msgid "Choose Format - Text Box and Shape - Text Attributes Object - Text - Text." msgstr "" -#: 00040501.xhp -msgctxt "" -"00040501.xhp\n" -"par_id3154057\n" -"help.text" -msgid "Icon" -msgstr "আইকন" - -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145601\n" +"00040502.xhp\n" +"par_id3152810\n" "help.text" -msgid "Bottom" -msgstr "নিম্নে" +msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text tab." +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3145197\n" +"00040502.xhp\n" +"par_id3151060\n" "help.text" -msgid "Choose Format - Anchor." +msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text Animation tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id2851649\n" +"00040502.xhp\n" +"par_id3149911\n" "help.text" -msgid "On Form Design bar, click" +msgid "Choose Format - Text Box and Shape - Object - Position and Size." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3151122\n" +"00040502.xhp\n" +"par_id3156286\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "F4 keyF4 key" +msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3154763\n" +"00040502.xhp\n" +"par_id3153052\n" "help.text" -msgid "Change Anchor" -msgstr "নোঙ্গর পরিবর্তন করুন" +msgid "Icon" +msgstr "আইকন" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3148899\n" +"00040502.xhp\n" +"par_id3149938\n" "help.text" -msgid "Choose Format - Anchor - To Page." -msgstr "" +msgid "Position and Size" +msgstr "অবস্থান ও আকার" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3149342\n" +"00040502.xhp\n" +"par_id3148833\n" "help.text" -msgid "Choose Format - Anchor - To Paragraph." +msgid "Open the context menu for the object - choose Name." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3155147\n" +"00040502.xhp\n" +"par_id411999\n" "help.text" -msgid "Choose Format - Anchor - To Character." +msgid "Open the context menu for the object - choose Description." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3153042\n" +"00040502.xhp\n" +"par_id3153099\n" "help.text" -msgid "Choose Format - Anchor - As Character." +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Position and Size tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3146964\n" +"00040502.xhp\n" +"par_id3152973\n" "help.text" -msgid "Choose Format - Anchor - To Frame." +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Rotation tab." msgstr "" -#: 00040501.xhp +#: 00040502.xhp msgctxt "" -"00040501.xhp\n" -"par_id3150781\n" +"00040502.xhp\n" +"par_id3148495\n" "help.text" -msgid "Choose Format - Anchor - To Cell." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"tit\n" +"par_id3146790\n" "help.text" -msgid "Format Menu" -msgstr "বিন্যাস মেনু" +msgid "Rotate" +msgstr "আবর্তন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"hd_id3149741\n" +"par_id3145666\n" "help.text" -msgid "Format Menu" -msgstr "বিন্যাস মেনু" +msgid "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3146857\n" +"par_id3146081\n" "help.text" -msgid "Choose Format - Line (Impress and Draw)." +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_id366527\n" +"par_id3083283\n" "help.text" -msgid "Choose Format - Text Box and Shape - Line (Writer)." +msgid "Choose Edit - Points." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3835261\n" +"par_id3145642\n" "help.text" -msgid "Choose Format - Object - Line (Calc)." +msgid "Open context menu - choose Edit Points. Open context menu - choose Edit Points." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148668\n" +"par_id3149019\n" "help.text" -msgid "On Line and Filling bar, click" +msgid "F8 keyF8 key" msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148889\n" +"par_id3150044\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3159147\n" +"par_id3153966\n" "help.text" -msgid "Line" -msgstr "লাইন" +msgid "Edit Points" +msgstr "সম্পাদনা বিন্দু" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154285\n" +"par_id3151248\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Line - Line tab." +msgid "Choose Format - Character (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147335\n" +"par_id3145229\n" "help.text" -msgid "Choose View - Styles - open context menu and choose Modify/New - Line tab (presentation documents)." +msgid "Open context menu - choose Character." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156023\n" +"par_id3151342\n" "help.text" -msgid "Choose Format - Title - Borders tab (charts)." +msgid "Open context menu - choose Size." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153061\n" +"par_id3149255\n" "help.text" -msgid "Choose Format - Legend - Borders tab (charts)." +msgid "Open context menu - choose Style." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3155922\n" +"par_id3155177\n" "help.text" -msgid "Choose Format - Axis - Line tab (charts)." +msgid "Open context menu - choose Style - Bold." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147559\n" +"par_id3145766\n" "help.text" -msgid "Choose Format - Grid - Line tab (charts)." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154758\n" +"par_id3147001\n" "help.text" -msgid "Choose Format - Chart Wall - Borders tab (charts)." -msgstr "" +msgid "Bold" +msgstr "গাঢ়" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153960\n" +"par_id3151276\n" "help.text" -msgid "Choose Format - Chart Floor - Borders tab (charts)." +msgid "Open context menu - choose Style - Italic." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154939\n" +"par_id3159091\n" "help.text" -msgid "Choose Format - Chart Area - Borders tab (charts)." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151293\n" +"par_id3150234\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Line - Line Styles tab." -msgstr "" +msgid "Italic" +msgstr "তির্যক" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149317\n" +"par_id3154589\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Line - Arrow Styles tab." +msgid "Open context menu - choose Style - Underline." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156082\n" +"par_id3145223\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148922\n" +"par_id3154715\n" "help.text" -msgid "On Line and Filling bar, click" -msgstr "" +msgid "Underline" +msgstr "নিম্নরেখাঙ্কন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156424\n" +"par_id3145131\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Open context menu - choose Style - Strikethrough." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150393\n" +"par_id3158214\n" "help.text" -msgid "Area" -msgstr "এলাকা" +msgid "Open context menu - choose Style - Shadow." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154948\n" +"par_id3150207\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Area tab." +msgid "Open context menu - choose Style - Contour." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145607\n" +"par_id3154383\n" "help.text" -msgid "Choose View - Styles - open context menu and choose Modify/New - Area tab (presentation documents)." +msgid "Open context menu - choose Style - Superscript." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3152922\n" +"par_id3152767\n" "help.text" -msgid "Choose Format - Title - Area tab (chart documents)." +msgid "Open context menu - choose Style - Subscript." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3157894\n" +"par_id3155377\n" "help.text" -msgid "Choose Format - Legend - Area tab (chart documents)." +msgid "Open context menu - choose Line Spacing." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3144444\n" +"par_id3154475\n" "help.text" -msgid "Choose Format - Chart Wall - Area tab (chart documents)." +msgid "Open context menu - choose Line Spacing - Single." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156543\n" +"par_id3150478\n" "help.text" -msgid "Choose Format - Chart Floor - Area tab (chart documents)." +msgid "Open context menu - choose Line Spacing - 1.5 Lines." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150685\n" +"par_id3147167\n" "help.text" -msgid "Choose Format - Chart Area - Area tab (chart documents)." +msgid "Open context menu - choose Line Spacing - Double." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149664\n" +"par_id3146978\n" "help.text" -msgid "Choose Slide - Properties - Background tab (in $[officename] Impress)." +msgid "Choose Format - Align - Left (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id9149694\n" +"par_id3153009\n" "help.text" -msgid "Choose Page - Properties - Background tab (in $[officename] Draw)." +msgid "Open context menu - choose Align - Left." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id841527083135387\n" +"par_id3147310\n" "help.text" -msgid "Choose Table - Properties - Background tab." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154985\n" +"par_id3151336\n" "help.text" -msgid "Choose Format - Area - Transparency tab (drawing documents)." -msgstr "" +msgid "Align Left" +msgstr "বাম প্রান্তিককরণ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145365\n" +"par_id3155823\n" "help.text" -msgid "Choose Format - Area - Transparency tab (presentation documents)." +msgid "Choose Format - Align - Right (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151117\n" +"par_id3155762\n" "help.text" -msgid "Choose Format - Chart Wall - Transparency tab (chart documents)." +msgid "Open context menu - choose Align - Right." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147326\n" +"par_id3149408\n" "help.text" -msgid "Choose Format - Chart Area - Transparency tab (chart documents)." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154920\n" +"par_id3153607\n" "help.text" -msgid "Choose Format - Chart Floor - Transparency tab (chart documents)." -msgstr "" +msgid "Align Right" +msgstr "ডান প্রান্তিককরণ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145591\n" +"par_id3149189\n" "help.text" -msgid "Choose Format - Title - All Titles - Transparency tab (chart documents)." +msgid "Choose Format - Align - Centered (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145750\n" +"par_id3154624\n" "help.text" -msgid "Choose Format - Title - Main Title - Transparency tab (chart documents)." +msgid "Open context menu - choose Align - Center." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148556\n" +"par_id3153815\n" "help.text" -msgid "Choose Format - Title - Subtitle - Transparency tab (chart documents)." +msgid "Icon" +msgstr "আইকন" + +#: 00040502.xhp +msgctxt "" +"00040502.xhp\n" +"par_id3153076\n" +"help.text" +msgid "Align Center HorizontallyCentered" msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3163710\n" +"par_id3146151\n" "help.text" -msgid "Choose Format - Title - Title (X Axis) - Transparency tab (chart documents)." +msgid "Choose Format - Align - Justified (drawing functions)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150487\n" +"par_id3168612\n" "help.text" -msgid "Choose Format - Title - Title (Y Axis) - Transparency tab (chart documents)." +msgid "Open context menu - choose Align - Justified." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3154320\n" +"par_id3156189\n" "help.text" -msgid "Choose Format - Title - Title (Z Axis) - Transparency tab (chart documents)" -msgstr "বিন্যাস - শিরোনাম - শিরোনাম (Z অক্ষরেখা) - স্বচ্ছতা ট্যাব (লেখচিত্রের নথি) নির্বাচন করুন" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3151113\n" +"par_id3153131\n" "help.text" -msgid "Choose Format - Object Properties - Data Point - Transparency - tab (chart documents)." -msgstr "" +msgid "Justified" +msgstr "উভয়প্রান্তিককৃত" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149266\n" +"par_id3150527\n" "help.text" -msgid "Choose Format - Object Properties - Data Series - Transparency tab (chart documents)." +msgid "Click Fontwork icon on Drawing bar." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3150011\n" +"par_id3144503\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Shadow tab." +msgid "Choose Format - Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3147441\n" +"par_id3154854\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Gradients tab." +msgid "Open context menu - choose Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3155308\n" +"par_id3157985\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Hatching tab." +msgid "Choose Format - Group - Group (text documents, spreadsheets)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145800\n" +"par_id3157980\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Area - Bitmaps tab." +msgid "Choose Shape - Group - Group (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145251\n" +"par_id3149508\n" "help.text" -msgid "Choose Format - Text Box and Shape - Text Attributes Object - Text - Text." +msgid "Open context menu - choose Group - Group (form objects)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3152810\n" +"par_id3146858\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_id3149593\n" "help.text" -msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text Animation tab." -msgstr "" +msgid "Group" +msgstr "গ্রুপ" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149911\n" +"par_id3153023\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size." +msgid "Choose Format - Group - Ungroup (text documents, spreadsheets)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3156286\n" +"par_id3163378\n" "help.text" -msgid "F4 keyF4 key" +msgid "Choose Shape - Group - Ungroup (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153052\n" +"par_id3156038\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Open context menu - choose Ungroup." +msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149938\n" +"par_id3151300\n" "help.text" -msgid "Position and Size" -msgstr "অবস্থান ও আকার" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148833\n" +"par_id3146894\n" "help.text" -msgid "Open the context menu for the object - choose Name." -msgstr "" +msgid "Ungroup" +msgstr "গ্রুপমুক্ত করুন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id411999\n" +"par_id3153109\n" "help.text" -msgid "Open the context menu for the object - choose Description." +msgid "Choose Format - Group - Exit Group (text documents, spreadsheets)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3153099\n" +"par_id3145678\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Position and Size tab." +msgid "Choose Shape - Group - Exit Group (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3152973\n" +"par_id3152367\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Rotation tab." +msgid "Open context menu - choose Exit Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3148495\n" +"par_id3158402\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3146790\n" +"par_id3155347\n" "help.text" -msgid "Rotate" -msgstr "আবর্তন" +msgid "Exit Group" +msgstr "গ্রুপ থেকে প্রস্থান" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145666\n" +"par_id3149129\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." +msgid "Choose Format - Group - Enter Group (text documents, spreadsheets)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3146081\n" +"par_id3145354\n" "help.text" -msgid "Choose Format - Text Box and Shape - Object - Position and Size - Callout tab. This is only available for textbox callouts, not for custom shapes callouts." +msgid "Choose Shape - Group - Enter Group (drawing documents)." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3083283\n" +"par_id3149946\n" "help.text" -msgid "Choose Edit - Points." +msgid "Open context menu - choose Enter Group." msgstr "" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3145642\n" +"par_id3152388\n" "help.text" -msgid "Open context menu - choose Edit Points. Open context menu - choose Edit Points." -msgstr "" +msgid "Icon" +msgstr "আইকন" #: 00040502.xhp msgctxt "" "00040502.xhp\n" -"par_id3149019\n" +"par_id3152547\n" "help.text" -msgid "F8 keyF8 key" -msgstr "" +msgid "Enter Group" +msgstr "গ্রুপে সন্নিবেশ করুন" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150044\n" +"00040503.xhp\n" +"tit\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Format Menu" +msgstr "বিন্যাস মেনু" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153966\n" +"00040503.xhp\n" +"hd_id3155757\n" "help.text" -msgid "Edit Points" -msgstr "সম্পাদনা বিন্দু" +msgid "Format Menu" +msgstr "বিন্যাস মেনু" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151248\n" +"00040503.xhp\n" +"par_id3147294\n" "help.text" -msgid "Choose Format - Character (drawing functions)." +msgid "Choose Format - Rows - Height." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145229\n" +"00040503.xhp\n" +"par_id3149551\n" "help.text" -msgid "Open context menu - choose Character." +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_id3151342\n" +"00040503.xhp\n" +"par_id3153136\n" "help.text" -msgid "Open context menu - choose Size." +msgid "Choose Format - Columns - Width." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149255\n" +"00040503.xhp\n" +"par_id3150756\n" "help.text" -msgid "Open context menu - choose Style." +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_id3155177\n" +"00040503.xhp\n" +"par_id3148668\n" "help.text" -msgid "Open context menu - choose Style - Bold." +msgid "Choose Format - Cells - Numbers tab." msgstr "" -#: 00040502.xhp -msgctxt "" -"00040502.xhp\n" -"par_id3145766\n" -"help.text" -msgid "Icon" -msgstr "আইকন" - -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3147001\n" +"00040503.xhp\n" +"par_id3152349\n" "help.text" -msgid "Bold" -msgstr "গাঢ়" +msgid "Choose View - Styles - open context menu and choose Modify/New - Numbers tab." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151276\n" +"00040503.xhp\n" +"par_id3161459\n" "help.text" -msgid "Open context menu - choose Style - Italic." +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_id3159091\n" +"00040503.xhp\n" +"par_id3147531\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Choose Format - Axis - Y Axis - Numbers tab (Chart Documents)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150234\n" +"00040503.xhp\n" +"par_id3150823\n" "help.text" -msgid "Italic" -msgstr "তির্যক" +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_id3154589\n" +"00040503.xhp\n" +"par_id3154923\n" "help.text" -msgid "Open context menu - choose Style - Underline." +msgid "Choose Format - Title - Main Title - Alignment tab.Choose Format - Cells - Alignment tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145223\n" +"00040503.xhp\n" +"par_id3149457\n" "help.text" -msgid "Icon" -msgstr "আইকন" +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_id3154715\n" +"00040503.xhp\n" +"par_id3150400\n" "help.text" -msgid "Underline" -msgstr "নিম্নরেখাঙ্কন" +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_id3145131\n" +"00040503.xhp\n" +"par_id3149650\n" "help.text" -msgid "Open context menu - choose Style - Strikethrough." +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_id3158214\n" +"00040503.xhp\n" +"par_id3153799\n" "help.text" -msgid "Open context menu - choose Style - Shadow." +msgid "Context menu for a row header in an open database table - Delete Rows." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150207\n" +"00040503.xhp\n" +"par_id3150495\n" "help.text" -msgid "Open context menu - choose Style - Contour." +msgid "Choose Shape - Flip ($[officename] Draw)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154383\n" +"00040503.xhp\n" +"par_id3155742\n" "help.text" -msgid "Open context menu - choose Style - Superscript." +msgid "Choose Format - Image - Properties - Image tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3152767\n" +"00040503.xhp\n" +"par_id3158407\n" "help.text" -msgid "Open context menu - choose Style - Subscript." +msgid "Open context menu - choose Flip (presentation documents)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155377\n" +"00040503.xhp\n" +"par_id3150290\n" "help.text" -msgid "Open context menu - choose Line Spacing." +msgid "Choose Shape - Flip - Vertically ($[officename] Draw)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154475\n" +"00040503.xhp\n" +"par_id3153179\n" "help.text" -msgid "Open context menu - choose Line Spacing - Single." +msgid "Choose Format - Image - Properties - Image tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150478\n" +"00040503.xhp\n" +"par_id3157960\n" "help.text" -msgid "Open context menu - choose Line Spacing - 1.5 Lines." +msgid "Open context menu - choose Flip - Vertically (presentation documents)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3147167\n" +"00040503.xhp\n" +"par_id3153369\n" "help.text" -msgid "Open context menu - choose Line Spacing - Double." +msgid "Choose Shape - Flip - Horizontally ($[officename] Draw)." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146978\n" +"00040503.xhp\n" +"par_id3147348\n" "help.text" -msgid "Choose Format - Align - Left (drawing functions)." +msgid "Choose Format - Image - Properties, and then click the Image tab." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153009\n" +"00040503.xhp\n" +"par_id3156106\n" "help.text" -msgid "Open context menu - choose Align - Left." +msgid "Choose Format - Flip - Horizontally." msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3147310\n" +"00040503.xhp\n" +"par_id3152578\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Right-click a selected object - choose Flip - Horizontally ($[officename] Impress)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151336\n" +"00040503.xhp\n" +"par_id3147318\n" "help.text" -msgid "Align Left" -msgstr "বাম প্রান্তিককরণ" +msgid "Choose Shape - Distribution ($[officename] Draw)." +msgstr "" -#: 00040502.xhp +#: 00040503.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155823\n" +"00040503.xhp\n" +"par_id3149064\n" "help.text" -msgid "Choose Format - Align - Right (drawing functions)." +msgid "Open context menu - choose Distribution ($[officename] Impress)." msgstr "" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3155762\n" +"01000000.xhp\n" +"tit\n" "help.text" -msgid "Open context menu - choose Align - Right." -msgstr "" +msgid "Showing and Hiding Docked Windows" +msgstr "ডকড উইন্ডোজ প্রদর্শন এবং আড়াল হচ্ছে" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149408\n" +"01000000.xhp\n" +"hd_id3085157\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Showing and Hiding Docked Windows" +msgstr "ডকড উইন্ডোজ প্রদর্শন এবং আড়াল হচ্ছে" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153607\n" +"01000000.xhp\n" +"par_id3149948\n" "help.text" -msgid "Align Right" -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_id3149189\n" +"01000000.xhp\n" +"par_id3150502\n" "help.text" -msgid "Choose Format - Align - Centered (drawing functions)." -msgstr "" +msgid "To show or hide a docked window, click the icon." +msgstr "ডককৃত উইন্ডো গোপন অথবা প্রদর্শন করতে, আইকনে ক্লিক করুন।" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154624\n" +"01000000.xhp\n" +"hd_id3150465\n" "help.text" -msgid "Open context menu - choose Align - Center." -msgstr "" +msgid "AutoShow and AutoHide Docked Windows" +msgstr "স্বয়ংক্রিয় প্রদর্শন এবং স্বয়ংক্রিয়ভাবে গোপন ডককৃত উইন্ডোজ" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153815\n" +"01000000.xhp\n" +"par_id3155504\n" "help.text" -msgid "Icon" -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_id3153076\n" +"01000000.xhp\n" +"par_id3153257\n" "help.text" -msgid "Align Center HorizontallyCentered" -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_id3146151\n" +"01000000.xhp\n" +"par_id3154046\n" "help.text" -msgid "Choose Format - Align - Justified (drawing functions)." -msgstr "" +msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode." +msgstr "একাধিক ডককৃত উইন্ডো স্বয়ংক্রিয় প্রদর্শন/স্বয়ংক্রিয় গোপন মোডে একক উইন্ডো হিসেবে কাজ করে।" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3168612\n" +"01000000.xhp\n" +"hd_id3145416\n" "help.text" -msgid "Open context menu - choose Align - Justified." -msgstr "" +msgid "Drag and Drop" +msgstr "টেনে এনে ছেড়ে দিন" -#: 00040502.xhp +#: 01000000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3156189\n" +"01000000.xhp\n" +"par_id3149578\n" "help.text" -msgid "Icon" -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_id3153131\n" +"01010000.xhp\n" +"tit\n" "help.text" -msgid "Justified" -msgstr "উভয়প্রান্তিককৃত" +msgid "Gallery context menu" +msgstr "গ্যালারির প্রসঙ্গ মেনু" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3150527\n" +"01010000.xhp\n" +"hd_id3150672\n" "help.text" -msgid "Click Fontwork icon on Drawing bar." -msgstr "" +msgid "Gallery context menu" +msgstr "গ্যালারির প্রসঙ্গ মেনু" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3144503\n" +"01010000.xhp\n" +"par_id3083278\n" "help.text" -msgid "Choose Format - Group." -msgstr "" +msgid "Defines how a selected graphic object is inserted into a document." +msgstr "কিভাবে একটি নির্বাচিত গ্রাফিক্স বস্তু নথিতে সন্নিবেশ করানো হযবে তা নির্ধারণ করা হয়।" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3154854\n" +"01010000.xhp\n" +"par_id3156053\n" "help.text" -msgid "Open context menu - choose Group." -msgstr "" +msgid "Inserts a copy of the selected graphic object directly into the document." +msgstr "নথিতে সরাসরি নির্বাচিত গ্রাফিক্সের একটি অনুলিপি সন্নিবেশ করানো হয়।" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3157985\n" +"01010000.xhp\n" +"par_id3149038\n" "help.text" -msgid "Choose Format - Group - Group (text documents, spreadsheets)." -msgstr "" +msgid "Inserts the selected graphic as a link." +msgstr " নির্বাচিত গ্রাফিক্স লিঙ্ক হিসেবে সন্নিবেশ করানো হয়।" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3157980\n" +"01010000.xhp\n" +"par_id3158428\n" "help.text" -msgid "Choose Shape - Group - Group (drawing documents)." -msgstr "" +msgid "The Preview command displays the selected graphic." +msgstr " প্রাকদর্শন কমান্ডটি নির্বাচিত গ্রাফিক্স প্রদর্শন করে থাকে।" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149508\n" +"01010000.xhp\n" +"par_id3154522\n" "help.text" -msgid "Open context menu - choose Group - Group (form objects)." -msgstr "" +msgid "Assigns a title to a selected Gallery object." +msgstr "নির্বাচিত গ্যালারী বস্তুতে একটি শিরোনাম প্রয়োগ করা হয়।" -#: 00040502.xhp +#: 01010000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146858\n" +"01010000.xhp\n" +"par_id3149750\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Deletes the selected graphic after confirmation." +msgstr "নিশ্চিতকরণের পর নির্বাচিত গ্রাফিক্স মুছে ফেলা হয়।" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3149593\n" +"01020000.xhp\n" +"tit\n" "help.text" -msgid "Group" -msgstr "গ্রুপ" +msgid "Context Menu of Web Pages in Read-Only Mode" +msgstr "শুধুমাত্র পাঠযোগ্য মোডে ওয়েবপৃষ্ঠার প্রসঙ্গ মেনু" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153023\n" +"01020000.xhp\n" +"hd_id3158397\n" "help.text" -msgid "Choose Format - Group - Ungroup (text documents, spreadsheets)." -msgstr "" +msgid "Context Menu of Web Pages in Read-Only Mode" +msgstr "শুধুমাত্র পাঠযোগ্য মোডে ওয়েবপৃষ্ঠার প্রসঙ্গ মেনু" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3163378\n" +"01020000.xhp\n" +"par_id3145348\n" "help.text" -msgid "Choose Shape - Group - Ungroup (drawing documents)." -msgstr "" +msgid "Opens a dialog where you can save the selected graphics." +msgstr "একটি ডায়ালগ খোলা হয় যেখানে আপন নির্বাচিত গ্রাফিক্সসমূহ সংরক্ষণ করতে পারবেন।" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3156038\n" +"01020000.xhp\n" +"par_id3151262\n" "help.text" -msgid "Open context menu - choose Ungroup." -msgstr "" +msgid "Copies the link at the mouse pointer to the clipboard." +msgstr "ক্লিপবোর্ডে মাউস পয়েন্টারের লিংক অনুলিপি করা হয়।" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3151300\n" +"01020000.xhp\n" +"par_id3155934\n" "help.text" -msgid "Icon" -msgstr "আইকন" +msgid "Copies a selected graphic to the clipboard." +msgstr "ক্লিপবোর্ডে নির্বাচিত গ্রাফিক্স অনুলিপি করা হয়।" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3146894\n" +"01020000.xhp\n" +"par_id3145629\n" "help.text" -msgid "Ungroup" -msgstr "গ্রুপমুক্ত করুন" +msgid "If you have deactivated the graphics display, choose the Load Graphics command to make them visible." +msgstr " যদি আপনি গ্রাফিক্স প্রদর্শন নিষ্ক্রিয় করেন, তাহলে গ্রাফিক্স লোড করুন কমান্ড নির্বাচন করার মাধ্যমে এদেরকে দৃশ্যমান করতে পারেন।" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3153109\n" +"01020000.xhp\n" +"par_id3150902\n" "help.text" -msgid "Choose Format - Group - Exit Group (text documents, spreadsheets)." -msgstr "" +msgid "Sets all graphics in the document to be invisible." +msgstr "নথির সকল গ্রাফিক্স অদৃশ্য করা হয়।" -#: 00040502.xhp +#: 01020000.xhp msgctxt "" -"00040502.xhp\n" -"par_id3145678\n" +"01020000.xhp\n" +"par_id3148548\n" "help.text" -msgid "Choose Shape - Group - Exit Group (drawing documents)." +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 "" -#: 00040502.xhp +#: 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 "বস্তুর ধরন উল্লেখ করা হয়।" + +#: 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." +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/bn-IN/helpcontent2/source/text/shared/guide.po b/source/bn-IN/helpcontent2/source/text/shared/guide.po index 5eac8e13831..4ae5475ee12 100644 --- a/source/bn-IN/helpcontent2/source/text/shared/guide.po +++ b/source/bn-IN/helpcontent2/source/text/shared/guide.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2018-11-14 11:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3091,25 +3091,945 @@ msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111writer\n" +"par_writer0\n" "help.text" -msgid "" +msgid "AbiWord Document" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222writer\n" +"par_writer1\n" "help.text" -msgid "" +msgid "application/x-abiword" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333writer\n" +"par_writer3\n" "help.text" -msgid "" +msgid "Apple Pages" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer4\n" +"help.text" +msgid "application/x-iwork-pages-sffpages" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer6\n" +"help.text" +msgid "BroadBand eBook" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer7\n" +"help.text" +msgid "application/x-sony-bbeb" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer9\n" +"help.text" +msgid "ClarisWorks/AppleWorks Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer10\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer12\n" +"help.text" +msgid "EPUB Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer13\n" +"help.text" +msgid "application/epub+zip" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer15\n" +"help.text" +msgid "FictionBook 2.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer16\n" +"help.text" +msgid "application/x-fictionbook+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer18\n" +"help.text" +msgid "HTML Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer19\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer21\n" +"help.text" +msgid "HTML Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer22\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer24\n" +"help.text" +msgid "Hangul WP 97" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer25\n" +"help.text" +msgid "application/x-hwp" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer27\n" +"help.text" +msgid "Help content" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer28\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer30\n" +"help.text" +msgid "Legacy Mac Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer31\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer33\n" +"help.text" +msgid "Legacy StarOffice Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer34\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer36\n" +"help.text" +msgid "LotusWordPro Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer37\n" +"help.text" +msgid "application/vnd.lotus-wordpro" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer39\n" +"help.text" +msgid "MS Word 95 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer40\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer42\n" +"help.text" +msgid "MacWrite Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer43\n" +"help.text" +msgid "application/macwriteii" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer45\n" +"help.text" +msgid "Mariner Write Mac Classic v1.6 - v3.5" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer48\n" +"help.text" +msgid "Microsoft Excel 4.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer49\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer51\n" +"help.text" +msgid "Microsoft Excel 5.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer52\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer54\n" +"help.text" +msgid "Microsoft Excel 95" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer55\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer57\n" +"help.text" +msgid "Microsoft WinWord 1/2/5" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer58\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer60\n" +"help.text" +msgid "Microsoft Word 6.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer61\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer63\n" +"help.text" +msgid "Microsoft Word 95" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer64\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer66\n" +"help.text" +msgid "Microsoft Word for DOS" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer67\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer69\n" +"help.text" +msgid "Microsoft Word for Mac (v1 - v5)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer70\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer72\n" +"help.text" +msgid "Microsoft Works Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer73\n" +"help.text" +msgid "application/vnd.ms-works" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer75\n" +"help.text" +msgid "Microsoft Works for Mac Document (v1 - v4)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer76\n" +"help.text" +msgid "application/vnd.ms-works" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer78\n" +"help.text" +msgid "Microsoft Write" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer79\n" +"help.text" +msgid "application/x-mswrite" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer81\n" +"help.text" +msgid "Office Open XML Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer82\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer84\n" +"help.text" +msgid "Office Open XML Text Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer85\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer87\n" +"help.text" +msgid "OpenDocument Text (Flat XML)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer88\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-flat-xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer90\n" +"help.text" +msgid "OpenOffice.org 1.0 Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer91\n" +"help.text" +msgid "application/vnd.sun.xml.writer" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer93\n" +"help.text" +msgid "OpenOffice.org 1.0 Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer94\n" +"help.text" +msgid "application/vnd.sun.xml.writer" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer96\n" +"help.text" +msgid "OpenOffice.org 1.0 Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer97\n" +"help.text" +msgid "application/vnd.sun.xml.writer" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer99\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer100\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer102\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer103\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer105\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer106\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer108\n" +"help.text" +msgid "Palm Text Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer109\n" +"help.text" +msgid "application/vnd.palm" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer111\n" +"help.text" +msgid "PalmDoc eBook" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer112\n" +"help.text" +msgid "application/x-aportisdoc" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer114\n" +"help.text" +msgid "Plucker eBook" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer115\n" +"help.text" +msgid "application/prs.plucker" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer117\n" +"help.text" +msgid "Rich Text Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer118\n" +"help.text" +msgid "application/rtf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer120\n" +"help.text" +msgid "T602 Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer121\n" +"help.text" +msgid "application/x-t602" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer123\n" +"help.text" +msgid "Text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer124\n" +"help.text" +msgid "text/plain" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer126\n" +"help.text" +msgid "Text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer127\n" +"help.text" +msgid "text/plain" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer129\n" +"help.text" +msgid "Text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer130\n" +"help.text" +msgid "text/plain" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer132\n" +"help.text" +msgid "Word 2007–2019" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer133\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer135\n" +"help.text" +msgid "Word 2007–2019 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer136\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer138\n" +"help.text" +msgid "Word 2007–2019 VBA" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer139\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer141\n" +"help.text" +msgid "Word 97–2000 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer142\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer144\n" +"help.text" +msgid "Word 97–2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer145\n" +"help.text" +msgid "application/msword" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer147\n" +"help.text" +msgid "WordPerfect Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer148\n" +"help.text" +msgid "application/vnd.wordperfect" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer150\n" +"help.text" +msgid "WriteNow Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer153\n" +"help.text" +msgid "Writer 6.0 Master Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer154\n" +"help.text" +msgid "application/vnd.sun.xml.writer.global" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer156\n" +"help.text" +msgid "Writer 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer157\n" +"help.text" +msgid "application/vnd.sun.xml.writer.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer159\n" +"help.text" +msgid "Writer 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer160\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer162\n" +"help.text" +msgid "Writer 8 Master Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer163\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-master" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer165\n" +"help.text" +msgid "Writer 8 Master Document Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer166\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-master-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer168\n" +"help.text" +msgid "Writer 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer169\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer171\n" +"help.text" +msgid "Writer Layout Dump" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer172\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer174\n" +"help.text" +msgid "Writer/Web 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer175\n" +"help.text" +msgid "application/vnd.sun.xml.writer.web" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer177\n" +"help.text" +msgid "Writer/Web 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_writer178\n" +"help.text" +msgid "application/vnd.oasis.opendocument.text-web" msgstr "" #: convertfilters.xhp @@ -3117,239 +4037,2399 @@ msgctxt "" "convertfilters.xhp\n" "bm_000calc\n" "help.text" -msgid "command line document conversion; filters for CALC" +msgid "command line document conversion; filters for CALC" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000calc\n" +"help.text" +msgid "Filters for CALC" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc0\n" +"help.text" +msgid "Apple Numbers" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc1\n" +"help.text" +msgid "application/x-iwork-numbers-sffnumbers" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc3\n" +"help.text" +msgid "Calc 6.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc4\n" +"help.text" +msgid "application/vnd.sun.xml.calc" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc6\n" +"help.text" +msgid "Calc 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc7\n" +"help.text" +msgid "application/vnd.sun.xml.calc.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc9\n" +"help.text" +msgid "Calc 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc10\n" +"help.text" +msgid "application/vnd.oasis.opendocument.spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc12\n" +"help.text" +msgid "Calc 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc13\n" +"help.text" +msgid "application/vnd.oasis.opendocument.spreadsheet-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc15\n" +"help.text" +msgid "ClarisResolve Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc16\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc18\n" +"help.text" +msgid "ClarisWorks/AppleWorks Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc19\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc21\n" +"help.text" +msgid "Data Interchange Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc22\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc24\n" +"help.text" +msgid "Excel 2007–2019" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc25\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc27\n" +"help.text" +msgid "Excel 2007–2019 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc28\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc30\n" +"help.text" +msgid "Excel 97–2000 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc31\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc33\n" +"help.text" +msgid "Excel 97–2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc34\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc36\n" +"help.text" +msgid "Gnumeric Spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc37\n" +"help.text" +msgid "application/x-gnumeric" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc39\n" +"help.text" +msgid "HTML Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc40\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc42\n" +"help.text" +msgid "HTML Table" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc43\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc45\n" +"help.text" +msgid "Legacy Mac Database" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc46\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc48\n" +"help.text" +msgid "Legacy Mac Spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc49\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc51\n" +"help.text" +msgid "Legacy StarOffice Spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc52\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc54\n" +"help.text" +msgid "Lotus" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc55\n" +"help.text" +msgid "application/vnd.lotus-1-2-3" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc57\n" +"help.text" +msgid "Lotus Wk1-Wk3" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc58\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc60\n" +"help.text" +msgid "MS Excel 4.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc61\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc63\n" +"help.text" +msgid "MS Excel 5.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc64\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc66\n" +"help.text" +msgid "MS Excel 95 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc67\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc69\n" +"help.text" +msgid "Microsoft Excel 2007 Binary" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc70\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc72\n" +"help.text" +msgid "Microsoft Excel 2007-2016 VBA XML" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc73\n" +"help.text" +msgid "application/vnd.ms-excel.sheet.macroEnabled.12" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc75\n" +"help.text" +msgid "Microsoft Excel 4.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc76\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc78\n" +"help.text" +msgid "Microsoft Excel 5.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc79\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc81\n" +"help.text" +msgid "Microsoft Excel 95" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc82\n" +"help.text" +msgid "application/vnd.ms-excel" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc84\n" +"help.text" +msgid "Microsoft Multiplan" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc85\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc87\n" +"help.text" +msgid "Microsoft Works Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc88\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc90\n" +"help.text" +msgid "Microsoft Works for Mac Document (v1 - v4)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc91\n" +"help.text" +msgid "application/vnd.ms-works" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc93\n" +"help.text" +msgid "Office Open XML Spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc94\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc96\n" +"help.text" +msgid "Office Open XML Spreadsheet Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc97\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc99\n" +"help.text" +msgid "OpenDocument Spreadsheet (Flat XML)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc100\n" +"help.text" +msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc102\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc103\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc105\n" +"help.text" +msgid "Quattro Pro 6.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc106\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc108\n" +"help.text" +msgid "QuattroPro Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc109\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc111\n" +"help.text" +msgid "Rich Text Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc112\n" +"help.text" +msgid "application/rtf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc114\n" +"help.text" +msgid "SYLK" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc115\n" +"help.text" +msgid "text/spreadsheet" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc117\n" +"help.text" +msgid "Text" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc118\n" +"help.text" +msgid "text/plain" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc120\n" +"help.text" +msgid "dBASE" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_calc121\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000impress\n" +"help.text" +msgid "command line document conversion; filters for IMPRESS" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000impress\n" +"help.text" +msgid "Filters for IMPRESS" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress0\n" +"help.text" +msgid "Apple Keynote" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress1\n" +"help.text" +msgid "application/x-iwork-keynote-sffkey" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress3\n" +"help.text" +msgid "ClarisWorks/AppleWorks Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress4\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress6\n" +"help.text" +msgid "Draw 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress7\n" +"help.text" +msgid "application/vnd.oasis.opendocument.graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress9\n" +"help.text" +msgid "Impress 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress10\n" +"help.text" +msgid "application/vnd.sun.xml.impress.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress12\n" +"help.text" +msgid "Impress 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress13\n" +"help.text" +msgid "application/vnd.oasis.opendocument.presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress15\n" +"help.text" +msgid "Impress 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress16\n" +"help.text" +msgid "application/vnd.oasis.opendocument.presentation-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress18\n" +"help.text" +msgid "Legacy Mac Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress19\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress21\n" +"help.text" +msgid "Legacy StarOffice Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress22\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress24\n" +"help.text" +msgid "Microsoft PowerPoint 1-4" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress25\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress27\n" +"help.text" +msgid "Office Open XML Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress28\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress30\n" +"help.text" +msgid "Office Open XML Presentation AutoPlay" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress31\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress33\n" +"help.text" +msgid "Office Open XML Presentation Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress34\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress36\n" +"help.text" +msgid "OpenDocument Presentation (Flat XML)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress37\n" +"help.text" +msgid "application/vnd.oasis.opendocument.presentation-flat-xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress39\n" +"help.text" +msgid "OpenOffice.org 1.0 Drawing" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress40\n" +"help.text" +msgid "application/vnd.sun.xml.draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress42\n" +"help.text" +msgid "OpenOffice.org 1.0 Presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress43\n" +"help.text" +msgid "application/vnd.sun.xml.impress" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress45\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress46\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress48\n" +"help.text" +msgid "PowerPoint 2007–2019" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress49\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress51\n" +"help.text" +msgid "PowerPoint 2007–2019" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress52\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress54\n" +"help.text" +msgid "PowerPoint 2007–2019 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress55\n" +"help.text" +msgid "application/vnd.openxmlformats-officedocument.presentationml.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress57\n" +"help.text" +msgid "PowerPoint 2007–2019 VBA" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress58\n" +"help.text" +msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress60\n" +"help.text" +msgid "PowerPoint 97–2000 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress61\n" +"help.text" +msgid "application/vnd.ms-powerpoint" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress63\n" +"help.text" +msgid "PowerPoint 97–2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress64\n" +"help.text" +msgid "application/vnd.ms-powerpoint" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress66\n" +"help.text" +msgid "PowerPoint 97–2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_impress67\n" +"help.text" +msgid "application/vnd.ms-powerpoint" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000draw\n" +"help.text" +msgid "command line document conversion; filters for DRAW" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000draw\n" +"help.text" +msgid "Filters for DRAW" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw0\n" +"help.text" +msgid "Adobe PageMaker" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw1\n" +"help.text" +msgid "application/x-pagemaker" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw3\n" +"help.text" +msgid "Adobe/Macromedia Freehand" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw4\n" +"help.text" +msgid "image/x-freehand" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw6\n" +"help.text" +msgid "ClarisWorks/AppleWorks Document" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw7\n" +"help.text" +msgid "application/clarisworks" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw9\n" +"help.text" +msgid "Corel Draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw10\n" +"help.text" +msgid "application/vnd.corel-draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw12\n" +"help.text" +msgid "Corel Presentation Exchange" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw13\n" +"help.text" +msgid "image/x-cmx" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw15\n" +"help.text" +msgid "Draw 6.0 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw16\n" +"help.text" +msgid "application/vnd.sun.xml.draw.template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw18\n" +"help.text" +msgid "Draw 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw19\n" +"help.text" +msgid "application/vnd.oasis.opendocument.graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw21\n" +"help.text" +msgid "Draw 8 Template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw22\n" +"help.text" +msgid "application/vnd.oasis.opendocument.graphics-template" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw24\n" +"help.text" +msgid "Legacy Mac Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw25\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw27\n" +"help.text" +msgid "Legacy Mac Drawing" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw28\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw30\n" +"help.text" +msgid "Legacy StarOffice Drawing" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw31\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw33\n" +"help.text" +msgid "Microsoft Publisher 2003" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw34\n" +"help.text" +msgid "application/x-mspublisher" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw36\n" +"help.text" +msgid "Microsoft Visio" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw37\n" +"help.text" +msgid "application/vnd.visio" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw39\n" +"help.text" +msgid "OpenDocument Drawing (Flat XML)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw40\n" +"help.text" +msgid "application/vnd.oasis.opendocument.graphics-flat-xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw42\n" +"help.text" +msgid "OpenOffice.org 1.0 Drawing" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw43\n" +"help.text" +msgid "application/vnd.sun.xml.draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw45\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw46\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw48\n" +"help.text" +msgid "QuarkXPress" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw49\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw51\n" +"help.text" +msgid "WordPerfect Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw52\n" +"help.text" +msgid "image/x-wpg" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw54\n" +"help.text" +msgid "Zoner Callisto/Draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_draw55\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000math\n" +"help.text" +msgid "command line document conversion; filters for MATH" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000math\n" +"help.text" +msgid "Filters for MATH" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math0\n" +"help.text" +msgid "Math 8" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math1\n" +"help.text" +msgid "application/vnd.oasis.opendocument.formula" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math3\n" +"help.text" +msgid "MathML 2.0" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math4\n" +"help.text" +msgid "application/mathml+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math6\n" +"help.text" +msgid "MathType3.x" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math7\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math9\n" +"help.text" +msgid "OpenOffice.org 1.0 Formula" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math10\n" +"help.text" +msgid "application/vnd.sun.xml.math" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math12\n" +"help.text" +msgid "PDF - Portable Document Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_math13\n" +"help.text" +msgid "application/pdf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000base\n" +"help.text" +msgid "command line document conversion; filters for BASE" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000base\n" +"help.text" +msgid "Filters for BASE" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_base0\n" +"help.text" +msgid "OpenDocument Database" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_base1\n" +"help.text" +msgid "application/vnd.sun.xml.base" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"bm_000graphicfilter\n" +"help.text" +msgid "command line document conversion; filters for GRAPHICFILTER" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"hd_000graphicfilter\n" +"help.text" +msgid "Filters for GRAPHICFILTER" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter0\n" +"help.text" +msgid "BMP - Windows Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter1\n" +"help.text" +msgid "image/x-MS-bmp" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter3\n" +"help.text" +msgid "BMP - Windows Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter4\n" +"help.text" +msgid "image/x-MS-bmp" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter6\n" +"help.text" +msgid "CGM - Computer Graphics Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter7\n" +"help.text" +msgid "image/cgm" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter9\n" +"help.text" +msgid "DXF - AutoCAD Interchange Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter10\n" +"help.text" +msgid "image/vnd.dxf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter12\n" +"help.text" +msgid "EMF - Enhanced Meta File" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter13\n" +"help.text" +msgid "image/x-emf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter15\n" +"help.text" +msgid "EMF - Enhanced Meta File" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter16\n" +"help.text" +msgid "image/x-emf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter18\n" +"help.text" +msgid "EPS - Encapsulated PostScript" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter19\n" +"help.text" +msgid "image/x-eps" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter21\n" +"help.text" +msgid "EPS - Encapsulated PostScript" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter22\n" +"help.text" +msgid "image/x-eps" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter24\n" +"help.text" +msgid "GIF - Graphics Interchange" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter25\n" +"help.text" +msgid "image/gif" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter27\n" +"help.text" +msgid "GIF - Graphics Interchange" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter28\n" +"help.text" +msgid "image/gif" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter30\n" +"help.text" +msgid "HTML" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter31\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter33\n" +"help.text" +msgid "HTML" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter34\n" +"help.text" +msgid "text/html" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter36\n" +"help.text" +msgid "JPEG - Joint Photographic Experts Group" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter37\n" +"help.text" +msgid "image/jpeg" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter39\n" +"help.text" +msgid "JPEG - Joint Photographic Experts Group" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter40\n" +"help.text" +msgid "image/jpeg" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter42\n" +"help.text" +msgid "JPEG - Joint Photographic Experts Group" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter43\n" +"help.text" +msgid "image/jpeg" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter45\n" +"help.text" +msgid "MET - OS/2 Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter46\n" +"help.text" +msgid "image/x-met" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter48\n" +"help.text" +msgid "MET - OS/2 Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter49\n" +"help.text" +msgid "image/x-met" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter51\n" +"help.text" +msgid "MOV - QuickTime File Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter52\n" +"help.text" +msgid "application/movie" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter54\n" +"help.text" +msgid "Macromedia Flash (SWF)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter55\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter57\n" +"help.text" +msgid "Macromedia Flash (SWF)" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter58\n" +"help.text" +msgid "None" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter60\n" +"help.text" +msgid "PBM - Portable Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter61\n" +"help.text" +msgid "image/x-portable-bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter63\n" +"help.text" +msgid "PBM - Portable Bitmap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000calc\n" +"par_graphicfilter64\n" "help.text" -msgid "Filters for CALC" +msgid "image/x-portable-bitmap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111calc\n" +"par_graphicfilter66\n" "help.text" -msgid "" +msgid "PCD - Photo CD Base" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222calc\n" +"par_graphicfilter67\n" "help.text" -msgid "" +msgid "image/x-photo-cd" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333calc\n" +"par_graphicfilter69\n" "help.text" -msgid "" +msgid "PCD - Photo CD Base16" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000impress\n" +"par_graphicfilter70\n" "help.text" -msgid "command line document conversion; filters for IMPRESS" +msgid "image/x-photo-cd" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000impress\n" +"par_graphicfilter72\n" "help.text" -msgid "Filters for IMPRESS" +msgid "PCD - Photo CD Base4" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111impress\n" +"par_graphicfilter73\n" "help.text" -msgid "" +msgid "image/x-photo-cd" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222impress\n" +"par_graphicfilter75\n" "help.text" -msgid "" +msgid "PCT - Mac Pict" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333impress\n" +"par_graphicfilter76\n" "help.text" -msgid "" +msgid "image/x-pict" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000draw\n" +"par_graphicfilter78\n" "help.text" -msgid "command line document conversion; filters for DRAW" +msgid "PCT - Mac Pict" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000draw\n" +"par_graphicfilter79\n" "help.text" -msgid "Filters for DRAW" +msgid "image/x-pict" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111draw\n" +"par_graphicfilter81\n" "help.text" -msgid "" +msgid "PCX - Zsoft Paintbrush" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222draw\n" +"par_graphicfilter82\n" "help.text" -msgid "" +msgid "image/x-pcx" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333draw\n" +"par_graphicfilter84\n" "help.text" -msgid "" +msgid "PGM - Portable Graymap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000math\n" +"par_graphicfilter85\n" "help.text" -msgid "command line document conversion; filters for MATH" +msgid "image/x-portable-graymap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000math\n" +"par_graphicfilter87\n" "help.text" -msgid "Filters for MATH" +msgid "PGM - Portable Graymap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111math\n" +"par_graphicfilter88\n" "help.text" -msgid "" +msgid "image/x-portable-graymap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222math\n" +"par_graphicfilter90\n" "help.text" -msgid "" +msgid "PNG - Portable Network Graphic" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333math\n" +"par_graphicfilter91\n" "help.text" -msgid "" +msgid "image/png" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000base\n" +"par_graphicfilter93\n" "help.text" -msgid "command line document conversion; filters for BASE" +msgid "PNG - Portable Network Graphic" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000base\n" +"par_graphicfilter94\n" "help.text" -msgid "Filters for BASE" +msgid "image/png" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111base\n" +"par_graphicfilter96\n" "help.text" -msgid "" +msgid "PNG - Portable Network Graphic" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222base\n" +"par_graphicfilter97\n" "help.text" -msgid "" +msgid "image/png" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333base\n" +"par_graphicfilter99\n" "help.text" -msgid "" +msgid "PNG - Portable Network Graphic" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"bm_000graphicfilter\n" +"par_graphicfilter100\n" "help.text" -msgid "command line document conversion; filters for GRAPHICFILTER" +msgid "image/png" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_000graphicfilter\n" +"par_graphicfilter102\n" "help.text" -msgid "Filters for GRAPHICFILTER" +msgid "PPM - Portable Pixelmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter103\n" +"help.text" +msgid "image/x-portable-pixmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter105\n" +"help.text" +msgid "PPM - Portable Pixelmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter106\n" +"help.text" +msgid "image/x-portable-pixmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter108\n" +"help.text" +msgid "PSD - Adobe Photoshop" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter109\n" +"help.text" +msgid "image/vnd.adobe.photoshop" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter111\n" +"help.text" +msgid "RAS - Sun Raster Image" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter112\n" +"help.text" +msgid "image/x-cmu-raster" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter114\n" +"help.text" +msgid "RAS - Sun Raster Image" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter115\n" +"help.text" +msgid "image/x-cmu-raster" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter117\n" +"help.text" +msgid "SVG - Scalable Vector Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter118\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter120\n" +"help.text" +msgid "SVG - Scalable Vector Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter121\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter123\n" +"help.text" +msgid "SVG - Scalable Vector Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter124\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter126\n" +"help.text" +msgid "SVG - Scalable Vector Graphics" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter127\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter129\n" +"help.text" +msgid "SVG - Scalable Vector Graphics Draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter130\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter132\n" +"help.text" +msgid "SVG - Scalable Vector Graphics Draw" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter133\n" +"help.text" +msgid "image/svg+xml" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter135\n" +"help.text" +msgid "SVM - StarView Meta File" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter136\n" +"help.text" +msgid "image/x-svm" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter138\n" +"help.text" +msgid "SVM - StarView Meta File" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter139\n" +"help.text" +msgid "image/x-svm" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter141\n" +"help.text" +msgid "TGA - Truevision Targa" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter142\n" +"help.text" +msgid "image/x-targa" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter144\n" +"help.text" +msgid "TIFF - Tagged Image File Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter145\n" +"help.text" +msgid "image/tiff" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter147\n" +"help.text" +msgid "TIFF - Tagged Image File Format" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter148\n" +"help.text" +msgid "image/tiff" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter150\n" +"help.text" +msgid "WMF - Windows Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter151\n" +"help.text" +msgid "image/x-wmf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter153\n" +"help.text" +msgid "WMF - Windows Metafile" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter154\n" +"help.text" +msgid "image/x-wmf" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter156\n" +"help.text" +msgid "XBM - X Bitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter157\n" +"help.text" +msgid "image/x-xbitmap" +msgstr "" + +#: convertfilters.xhp +msgctxt "" +"convertfilters.xhp\n" +"par_graphicfilter159\n" +"help.text" +msgid "XPM - X PixMap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_111graphicfilter\n" +"par_graphicfilter160\n" "help.text" -msgid "" +msgid "image/x-xpixmap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_222graphicfilter\n" +"par_graphicfilter162\n" "help.text" -msgid "" +msgid "XPM - X PixMap" msgstr "" #: convertfilters.xhp msgctxt "" "convertfilters.xhp\n" -"hd_333graphicfilter\n" +"par_graphicfilter163\n" "help.text" -msgid "" +msgid "image/x-xpixmap" msgstr "" #: copy_drawfunctions.xhp @@ -9789,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 "নির্বাচিত ছবি সহকারেসম্পাদনা - ImageMap পছন্দ করুন। আপনিImageMap সম্পাদক দেখুন যা পটভূমিতে ছবি প্রদর্শন করে।" +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/bn-IN/helpcontent2/source/text/simpress.po b/source/bn-IN/helpcontent2/source/text/simpress.po index adf354c4266..efcb9cff77a 100644 --- a/source/bn-IN/helpcontent2/source/text/simpress.po +++ b/source/bn-IN/helpcontent2/source/text/simpress.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2017-10-04 10:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -96,94 +96,6 @@ msgctxt "" msgid "These commands apply to the current document, open a new document, or close the application." msgstr "এই কমান্ডগুলো বর্তমান নথিতে প্রয়োগ করা হয়, একটি নতুন নথি খুলতে, বা একটি প্রয়োগ থামাতে ব্যবহার করা হয়।" -#: 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 "ImageMap" - -#: 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/bn-IN/helpcontent2/source/text/simpress/00.po b/source/bn-IN/helpcontent2/source/text/simpress/00.po index d85671a55a6..ed18f38fcce 100644 --- a/source/bn-IN/helpcontent2/source/text/simpress/00.po +++ b/source/bn-IN/helpcontent2/source/text/simpress/00.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2018-04-17 15:04+0000\n" "Last-Translator: Anonymous Pootle User\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" +msgid "New Slide" msgstr "" diff --git a/source/bn-IN/helpcontent2/source/text/simpress/01.po b/source/bn-IN/helpcontent2/source/text/simpress/01.po index 3f04cd0c069..ad106173057 100644 --- a/source/bn-IN/helpcontent2/source/text/simpress/01.po +++ b/source/bn-IN/helpcontent2/source/text/simpress/01.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2018-09-03 12:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -96,38 +96,6 @@ msgctxt "" msgid "Information on Import and Export Filters" msgstr "পরিশোধকসমূহ ইমপোর্ট বা এক্সপোর্ট করার উপর তথ্য" -#: 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 "inserting; slidesslides; inserting" - -#: 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/bn-IN/helpcontent2/source/text/simpress/02.po b/source/bn-IN/helpcontent2/source/text/simpress/02.po index d7b0a14b106..63e77356adf 100644 --- a/source/bn-IN/helpcontent2/source/text/simpress/02.po +++ b/source/bn-IN/helpcontent2/source/text/simpress/02.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: 2017-10-04 11:48+0200\n" -"PO-Revision-Date: 2016-04-16 22:04+0000\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" +"PO-Revision-Date: 2017-10-04 10:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bn_IN\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: 1460844241.000000\n" +"X-POOTLE-MTIME: 1507112410.000000\n" #: 04010000.xhp msgctxt "" @@ -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/bn-IN/helpcontent2/source/text/swriter/01.po b/source/bn-IN/helpcontent2/source/text/swriter/01.po index 9160d84892f..03d88148d90 100644 --- a/source/bn-IN/helpcontent2/source/text/swriter/01.po +++ b/source/bn-IN/helpcontent2/source/text/swriter/01.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-04-08 14:23+0200\n" +"POT-Creation-Date: 2019-05-12 17:47+0200\n" "PO-Revision-Date: 2018-10-21 20:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15533,8 +15533,8 @@ msgctxt "" "05060100.xhp\n" "par_idN10A8E\n" "help.text" -msgid "Follow text flow" -msgstr "পাঠ্য প্রবাহ অনুসরণ করুন" +msgid "Keep inside text boundaries" +msgstr "" #: 05060100.xhp msgctxt "" @@ -15549,7 +15549,7 @@ msgctxt "" "05060100.xhp\n" "par_idN10AA6\n" "help.text" -msgid "By default, the Follow text flow option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)." +msgid "By default, the Keep inside text boundaries option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)." msgstr "" #: 05060100.xhp -- cgit