From c91905efaa31c466b40fd36cddc06a6af70fb084 Mon Sep 17 00:00:00 2001 From: Christian Lohmaier Date: Fri, 16 Aug 2019 16:05:05 +0200 Subject: update translations for 6.3.1 rc1 and force-fix errors using pocheck Change-Id: I05d66c16174c18360182c88b86ecea4f9c5f8183 (cherry picked from commit c85b9f992801d2d9de8c68c862b4b2d79ff5bc64) --- .../helpcontent2/source/text/sbasic/python.po | 196 ++++++++++----------- 1 file changed, 98 insertions(+), 98 deletions(-) (limited to 'source/en-GB/helpcontent2') diff --git a/source/en-GB/helpcontent2/source/text/sbasic/python.po b/source/en-GB/helpcontent2/source/text/sbasic/python.po index f4f616a41c9..4a9f2f98763 100644 --- a/source/en-GB/helpcontent2/source/text/sbasic/python.po +++ b/source/en-GB/helpcontent2/source/text/sbasic/python.po @@ -4,7 +4,7 @@ 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-07-03 20:22+0200\n" -"PO-Revision-Date: 2019-07-29 11:18+0000\n" +"PO-Revision-Date: 2019-08-12 08:48+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1564399125.000000\n" +"X-POOTLE-MTIME: 1565599713.000000\n" #: main0000.xhp msgctxt "" @@ -198,7 +198,7 @@ msgctxt "" "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 "" +msgstr "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." #: python_document_events.xhp msgctxt "" @@ -206,7 +206,7 @@ msgctxt "" "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 "" +msgstr "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." #: python_document_events.xhp msgctxt "" @@ -214,7 +214,7 @@ msgctxt "" "N0532\n" "help.text" msgid "With Python" -msgstr "" +msgstr "With Python" #: python_document_events.xhp msgctxt "" @@ -222,7 +222,7 @@ msgctxt "" "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 "" +msgstr "Events monitoring starts from object instantiation and ultimately stops when Python releases the object. Raised events are reported using Access2Base console." #: python_document_events.xhp msgctxt "" @@ -230,7 +230,7 @@ msgctxt "" "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 "" +msgstr "OnLoad and OnUnload events can be used to respectively set and unset Python programs path. They are described as Open document and Document closed." #: python_document_events.xhp msgctxt "" @@ -238,7 +238,7 @@ msgctxt "" "N0543\n" "help.text" msgid "class UiDocument(unohelper.Base, AdapterPattern):" -msgstr "" +msgstr "class UiDocument(unohelper.Base, AdapterPattern):" #: python_document_events.xhp msgctxt "" @@ -246,7 +246,7 @@ msgctxt "" "N0544\n" "help.text" msgid "\"\"\" Monitor document events \"\"\"" -msgstr "" +msgstr "\"\"\" Monitor document events \"\"\"" #: python_document_events.xhp msgctxt "" @@ -254,7 +254,7 @@ msgctxt "" "N0546\n" "help.text" msgid "adapted from 'Python script to monitor OnSave event' at" -msgstr "" +msgstr "adapted from 'Python script to monitor OnSave event' at" #: python_document_events.xhp msgctxt "" @@ -262,7 +262,7 @@ msgctxt "" "N0550\n" "help.text" msgid "\"\"\" Document events monitor \"\"\"" -msgstr "" +msgstr "\"\"\" Document events monitor \"\"\"" #: python_document_events.xhp msgctxt "" @@ -270,7 +270,7 @@ msgctxt "" "N0551\n" "help.text" msgid "''' report using Access2Base.Trace console OR" -msgstr "" +msgstr "''' report using Access2Base.Trace console OR" #: python_document_events.xhp msgctxt "" @@ -278,7 +278,7 @@ msgctxt "" "N0552\n" "help.text" msgid "report in 1st sheet, 1st column for Calc docs '''" -msgstr "" +msgstr "report in 1st sheet, 1st column for Calc docs '''" #: python_document_events.xhp msgctxt "" @@ -286,7 +286,7 @@ msgctxt "" "N0558\n" "help.text" msgid "#self.row = 0 # uncomment for Calc documents only" -msgstr "" +msgstr "#self.row = 0 # uncomment for Calc documents only" #: python_document_events.xhp msgctxt "" @@ -294,7 +294,7 @@ msgctxt "" "N0560\n" "help.text" msgid "self.listen() # Start monitoring doc. events" -msgstr "" +msgstr "self.listen() # Start monitoring doc. events" #: python_document_events.xhp msgctxt "" @@ -302,7 +302,7 @@ msgctxt "" "N0569\n" "help.text" msgid "\"\"\" Output doc. events on 1st column of a Calc spreadsheet \"\"\"" -msgstr "" +msgstr "\"\"\" Output doc. events on 1st column of a Calc spreadsheet \"\"\"" #: python_document_events.xhp msgctxt "" @@ -310,7 +310,7 @@ msgctxt "" "N0575\n" "help.text" msgid "def listen(self, *args): # OnLoad/OnNew at the earliest" -msgstr "" +msgstr "def listen(self, *args): # OnLoad/OnNew at the earliest" #: python_document_events.xhp msgctxt "" @@ -318,7 +318,7 @@ msgctxt "" "N0576\n" "help.text" msgid "\"\"\" Start doc. events monitoring \"\"\"" -msgstr "" +msgstr "\"\"\" Start doc. events monitoring \"\"\"" #: python_document_events.xhp msgctxt "" @@ -326,7 +326,7 @@ msgctxt "" "N0578\n" "help.text" msgid "Console.log(\"INFO\", \"Document events are being logged\", True)" -msgstr "" +msgstr "Console.log(\"INFO\", \"Document events are being logged\", True)" #: python_document_events.xhp msgctxt "" @@ -334,7 +334,7 @@ msgctxt "" "N0580\n" "help.text" msgid "def sleep(self, *args): # OnUnload at the latest (optional)" -msgstr "" +msgstr "def sleep(self, *args): # OnUnload at the latest (optional)" #: python_document_events.xhp msgctxt "" @@ -342,7 +342,7 @@ msgctxt "" "N0581\n" "help.text" msgid "\"\"\" Stop doc. events monitoring \"\"\"" -msgstr "" +msgstr "\"\"\" Stop doc. events monitoring \"\"\"" #: python_document_events.xhp msgctxt "" @@ -350,7 +350,7 @@ msgctxt "" "N0583\n" "help.text" msgid "Console.log(\"INFO\", \"Document events have been logged\", True)" -msgstr "" +msgstr "Console.log(\"INFO\", \"Document events have been logged\", True)" #: python_document_events.xhp msgctxt "" @@ -358,7 +358,7 @@ msgctxt "" "N0587\n" "help.text" msgid "\"\"\" Intercepts all doc. events \"\"\"" -msgstr "" +msgstr "\"\"\" Intercepts all doc. events \"\"\"" #: python_document_events.xhp msgctxt "" @@ -366,7 +366,7 @@ msgctxt "" "N0588\n" "help.text" msgid "#self.setCell(event.Source, event.EventName) # only for Calc docs" -msgstr "" +msgstr "#self.setCell(event.Source, event.EventName) # only for Calc docs" #: python_document_events.xhp msgctxt "" @@ -374,7 +374,7 @@ msgctxt "" "N0595\n" "help.text" msgid "\"\"\" Release all activities \"\"\"" -msgstr "" +msgstr "\"\"\" Release all activities \"\"\"" #: python_document_events.xhp msgctxt "" @@ -382,7 +382,7 @@ msgctxt "" "N0601\n" "help.text" msgid "def OnLoad(*args): # 'Open Document' event" -msgstr "" +msgstr "def OnLoad(*args): # 'Open Document' event" #: python_document_events.xhp msgctxt "" @@ -390,7 +390,7 @@ msgctxt "" "N0604\n" "help.text" msgid "def OnUnload(*args): # 'Document has been closed' event" -msgstr "" +msgstr "def OnUnload(*args): # 'Document has been closed' event" #: python_document_events.xhp msgctxt "" @@ -398,7 +398,7 @@ msgctxt "" "N0605\n" "help.text" msgid "pass # (optional) performed when disposed" -msgstr "" +msgstr "pass # (optional) performed when disposed" #: python_document_events.xhp msgctxt "" @@ -406,7 +406,7 @@ msgctxt "" "N0613\n" "help.text" msgid "(Back/Fore)ground console to report/log program execution." -msgstr "" +msgstr "(Back/Fore)ground console to report/log program execution." #: python_document_events.xhp msgctxt "" @@ -414,7 +414,7 @@ msgctxt "" "N0617\n" "help.text" msgid "\"\"\" Print free item list to console \"\"\"" -msgstr "" +msgstr "\"\"\" Print free item list to console \"\"\"" #: python_document_events.xhp msgctxt "" @@ -422,7 +422,7 @@ msgctxt "" "N0622\n" "help.text" msgid "\"\"\" Append log message to console, optional user prompt \"\"\"" -msgstr "" +msgstr "\"\"\" Append log message to console, optional user prompt \"\"\"" #: python_document_events.xhp msgctxt "" @@ -430,7 +430,7 @@ msgctxt "" "N0627\n" "help.text" msgid "\"\"\" Set log messages lower limit \"\"\"" -msgstr "" +msgstr "\"\"\" Set log messages lower limit \"\"\"" #: python_document_events.xhp msgctxt "" @@ -438,7 +438,7 @@ msgctxt "" "N0632\n" "help.text" msgid "\"\"\" Display console content/dialog \"\"\"" -msgstr "" +msgstr "\"\"\" Display console content/dialog \"\"\"" #: python_document_events.xhp msgctxt "" @@ -446,7 +446,7 @@ msgctxt "" "N0647\n" "help.text" msgid "Mind the misspelled documentEventOccured method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)." -msgstr "" +msgstr "Mind the misspelled documentEventOccured method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)." #: python_document_events.xhp msgctxt "" @@ -454,7 +454,7 @@ msgctxt "" "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 "" +msgstr "Start application and Close application events can be used respectively 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." #: python_document_events.xhp msgctxt "" @@ -462,7 +462,7 @@ msgctxt "" "N0649\n" "help.text" msgid "With %PRODUCTNAME Basic" -msgstr "" +msgstr "With %PRODUCTNAME Basic" #: python_document_events.xhp msgctxt "" @@ -470,7 +470,7 @@ msgctxt "" "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 "" +msgstr "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." #: python_document_events.xhp msgctxt "" @@ -478,7 +478,7 @@ msgctxt "" "N0651\n" "help.text" msgid "REM controller.Events module" -msgstr "" +msgstr "REM controller.Events module" #: python_document_events.xhp msgctxt "" @@ -486,7 +486,7 @@ msgctxt "" "N0653\n" "help.text" msgid "Private _obj As Object ' controller.ConsoleLogger instance" -msgstr "" +msgstr "Private _obj As Object ' controller.ConsoleLogger instance" #: python_document_events.xhp msgctxt "" @@ -494,7 +494,7 @@ msgctxt "" "N0655\n" "help.text" msgid "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<" -msgstr "" +msgstr "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<" #: python_document_events.xhp msgctxt "" @@ -502,7 +502,7 @@ msgctxt "" "N0659\n" "help.text" msgid "REM controller.ConsoleLogger class module" -msgstr "" +msgstr "REM controller.ConsoleLogger class module" #: python_document_events.xhp msgctxt "" @@ -510,7 +510,7 @@ msgctxt "" "N0664\n" "help.text" msgid "' ADAPTER design pattern object to be instantiated in « Open Document » event" -msgstr "" +msgstr "' ADAPTER design pattern object to be instantiated in « Open Document » event" #: python_document_events.xhp msgctxt "" @@ -518,7 +518,7 @@ msgctxt "" "N0668\n" "help.text" msgid "' CONSTRUCTOR/DESTRUCTOR" -msgstr "" +msgstr "' CONSTRUCTOR/DESTRUCTOR" #: python_document_events.xhp msgctxt "" @@ -526,7 +526,7 @@ msgctxt "" "N0674\n" "help.text" msgid "' MEMBERS" -msgstr "" +msgstr "' MEMBERS" #: python_document_events.xhp msgctxt "" @@ -534,7 +534,7 @@ msgctxt "" "N0679\n" "help.text" msgid "''' System-dependent filename '''" -msgstr "" +msgstr "''' System-dependent filename '''" #: python_document_events.xhp msgctxt "" @@ -542,7 +542,7 @@ msgctxt "" "N0686\n" "help.text" msgid "' METHODS" -msgstr "" +msgstr "' METHODS" #: python_document_events.xhp msgctxt "" @@ -550,7 +550,7 @@ msgctxt "" "N0688\n" "help.text" msgid "''' Monitor document events '''" -msgstr "" +msgstr "''' Monitor document events '''" #: python_document_events.xhp msgctxt "" @@ -558,7 +558,7 @@ msgctxt "" "N0701\n" "help.text" msgid "''' Initialize document events logging '''" -msgstr "" +msgstr "''' Initialise document events logging '''" #: python_document_events.xhp msgctxt "" @@ -566,7 +566,7 @@ msgctxt "" "N0706\n" "help.text" msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events are being logged\", _" -msgstr "" +msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events are being logged\", _" #: python_document_events.xhp msgctxt "" @@ -574,7 +574,7 @@ msgctxt "" "N0714\n" "help.text" msgid "''' Terminate document events logging '''" -msgstr "" +msgstr "''' Terminate document events logging '''" #: python_document_events.xhp msgctxt "" @@ -582,7 +582,7 @@ msgctxt "" "N0717\n" "help.text" msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events have been logged\", _" -msgstr "" +msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events have been logged\", _" #: python_document_events.xhp msgctxt "" @@ -590,7 +590,7 @@ msgctxt "" "N0723\n" "help.text" msgid "' Your code for handled events goes here" -msgstr "" +msgstr "' Your code for handled events goes here" #: python_document_events.xhp msgctxt "" @@ -598,7 +598,7 @@ msgctxt "" "N0724\n" "help.text" msgid "Mind the misspelled _documentEventOccured method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)." -msgstr "" +msgstr "Mind the misspelled _documentEventOccured method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)." #: python_document_events.xhp msgctxt "" @@ -606,7 +606,7 @@ msgctxt "" "N0725\n" "help.text" msgid "Discovering Documents Events" -msgstr "" +msgstr "Discovering Documents Events" #: python_document_events.xhp msgctxt "" @@ -614,7 +614,7 @@ msgctxt "" "N0726\n" "help.text" msgid "The broadcaster API object provides the list of events it is responsible for:" -msgstr "" +msgstr "The broadcaster API object provides the list of events it is responsible for:" #: python_document_events.xhp msgctxt "" @@ -622,7 +622,7 @@ msgctxt "" "N0727\n" "help.text" msgid "With Python" -msgstr "" +msgstr "With Python" #: python_document_events.xhp msgctxt "" @@ -630,7 +630,7 @@ msgctxt "" "N0734\n" "help.text" msgid "\"\"\" Display document events \"\"\"" -msgstr "" +msgstr "\"\"\" Display document events \"\"\"" #: python_document_events.xhp msgctxt "" @@ -638,7 +638,7 @@ msgctxt "" "N0736\n" "help.text" msgid "adapted from DisplayAvailableEvents() by A. Pitonyak" -msgstr "" +msgstr "adapted from DisplayAvailableEvents() by A. Pitonyak" #: python_document_events.xhp msgctxt "" @@ -646,7 +646,7 @@ msgctxt "" "N0747\n" "help.text" msgid "The Alternative Python Script Organizer (APSO) extension is used to render events information on screen." -msgstr "" +msgstr "The Alternative Python Script Organizer (APSO) extension is used to render events information on screen." #: python_document_events.xhp msgctxt "" @@ -654,7 +654,7 @@ msgctxt "" "N0748\n" "help.text" msgid "With %PRODUCTNAME Basic" -msgstr "" +msgstr "With %PRODUCTNAME Basic" #: python_document_events.xhp msgctxt "" @@ -662,7 +662,7 @@ msgctxt "" "N0750\n" "help.text" msgid "''' Display document events '''" -msgstr "" +msgstr "''' Display document events '''" #: python_examples.xhp msgctxt "" @@ -774,7 +774,7 @@ msgctxt "" "N0463\n" "help.text" msgid "%PRODUCTNAME Python scripts come in three distinct flavors, they can be personal, shared or embedded in documents. They are stored in varying places described in Python Scripts Organization and Location. In order to import Python modules, their locations must be known from Python at run time." -msgstr "" +msgstr "%PRODUCTNAME Python scripts come in three distinct flavours, they can be personal, shared or embedded in documents. They are stored in varying places described in Python Scripts Organisation and Location. In order to import Python modules, their locations must be known from Python at run time." #: python_import.xhp msgctxt "" @@ -1046,7 +1046,7 @@ msgctxt "" "tit\n" "help.text" msgid "Python Listeners : Creating Event Listeners" -msgstr "" +msgstr "Python Listeners : Creating Event Listeners" #: python_listener.xhp msgctxt "" @@ -1054,7 +1054,7 @@ msgctxt "" "N0385\n" "help.text" msgid "Python;Event Listener Python;createUnoListener Basic;Event Listener API;ActionEvent API;DialogProvider API;EventObject API;ExecutableDialogResults API;XActionListener" -msgstr "" +msgstr "Python;Event Listener Python;createUnoListener Basic;Event Listener API;ActionEvent API;DialogProvider API;EventObject API;ExecutableDialogResults API;XActionListener" #: python_listener.xhp msgctxt "" @@ -1062,7 +1062,7 @@ msgctxt "" "N0386\n" "help.text" msgid "Creating Event Listeners" -msgstr "" +msgstr "Creating Event Listeners" #: python_listener.xhp msgctxt "" @@ -1070,7 +1070,7 @@ msgctxt "" "N0387\n" "help.text" msgid "Events raised by dialogs, documents, forms or graphical controls can be linked to macros, which is referred to as event-driven programming. The most common method to relate events to macros are the Events tab in Tools – Customize menu and the Dialog Editor Control properties pane from Tools - Macros – Organise Dialogs... menu." -msgstr "" +msgstr "Events raised by dialogs, documents, forms or graphical controls can be linked to macros, which is referred to as event-driven programming. The most common method to relate events to macros are the Events tab in Tools – Customize menu and the Dialog Editor Control properties pane from Tools - Macros – Organise Dialogs... menu." #: python_listener.xhp msgctxt "" @@ -1078,7 +1078,7 @@ msgctxt "" "N0388\n" "help.text" msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behaviour. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls." -msgstr "" +msgstr "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behaviour. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls." #: python_listener.xhp msgctxt "" @@ -1086,7 +1086,7 @@ msgctxt "" "N0389\n" "help.text" msgid "Creating an event listener" -msgstr "" +msgstr "Creating an event listener" #: python_listener.xhp msgctxt "" @@ -1094,7 +1094,7 @@ msgctxt "" "N0390\n" "help.text" msgid "Listeners get attached to controls held in dialogs, as well as to document or form events. Listeners are also used when creating runtime dialogs or when adding controls to a dialog on the fly." -msgstr "" +msgstr "Listeners get attached to controls held in dialogs, as well as to document or form events. Listeners are also used when creating runtime dialogs or when adding controls to a dialog on the fly." #: python_listener.xhp msgctxt "" @@ -1102,7 +1102,7 @@ msgctxt "" "N0391\n" "help.text" msgid "This example creates a listener for Button1 control of Dialog1 dialog in Standard library." -msgstr "" +msgstr "This example creates a listener for Button1 control of Dialog1 dialog in Standard library." #: python_listener.xhp msgctxt "" @@ -1110,7 +1110,7 @@ msgctxt "" "N0392\n" "help.text" msgid "With Python" -msgstr "" +msgstr "With Python" #: python_listener.xhp msgctxt "" @@ -1118,7 +1118,7 @@ msgctxt "" "N0405\n" "help.text" msgid "_MY_LABEL = 'Python listens..'" -msgstr "" +msgstr "_MY_LABEL = 'Python listens..'" #: python_listener.xhp msgctxt "" @@ -1126,7 +1126,7 @@ msgctxt "" "N0417\n" "help.text" msgid "MsgBox(\"The user acknowledged the dialog.\")" -msgstr "" +msgstr "MsgBox(\"The user acknowledged the dialog.\")" #: python_listener.xhp msgctxt "" @@ -1134,7 +1134,7 @@ msgctxt "" "N0419\n" "help.text" msgid "MsgBox(\"The user canceled the dialog.\")" -msgstr "" +msgstr "MsgBox(\"The user cancelled the dialog.\")" #: python_listener.xhp msgctxt "" @@ -1142,7 +1142,7 @@ msgctxt "" "N0424\n" "help.text" msgid "\"\"\" Create a Dialog from its location \"\"\"" -msgstr "" +msgstr "\"\"\" Create a Dialog from its location \"\"\"" #: python_listener.xhp msgctxt "" @@ -1150,7 +1150,7 @@ msgctxt "" "N0437\n" "help.text" msgid "\"\"\" Listen to & count button clicks \"\"\"" -msgstr "" +msgstr "\"\"\" Listen to & count button clicks \"\"\"" #: python_listener.xhp msgctxt "" @@ -1158,7 +1158,7 @@ msgctxt "" "N0448\n" "help.text" msgid "def disposing(self, evt: EventObject): # mandatory routine" -msgstr "" +msgstr "def disposing(self, evt: EventObject): # mandatory routine" #: python_listener.xhp msgctxt "" @@ -1166,7 +1166,7 @@ msgctxt "" "N0457\n" "help.text" msgid "msgbox.py in {installation}/program/ directory has some examples of button listeners." -msgstr "" +msgstr "msgbox.py in {installation}/program/ directory has some examples of button listeners." #: python_listener.xhp msgctxt "" @@ -1174,7 +1174,7 @@ msgctxt "" "N0458\n" "help.text" msgid "With %PRODUCTNAME Basic" -msgstr "" +msgstr "With %PRODUCTNAME Basic" #: python_listener.xhp msgctxt "" @@ -1182,7 +1182,7 @@ msgctxt "" "N0459d\n" "help.text" msgid "Const MY_LABEL = \"Basic listens..\"" -msgstr "" +msgstr "Const MY_LABEL = \"Basic listens..\"" #: python_listener.xhp msgctxt "" @@ -1190,7 +1190,7 @@ msgctxt "" "N0478\n" "help.text" msgid "Case rc.OK : MsgBox \"The user acknowledged the dialog.\",, \"Basic\"" -msgstr "" +msgstr "Case rc.OK : MsgBox \"The user acknowledged the dialog.\",, \"Basic\"" #: python_listener.xhp msgctxt "" @@ -1198,7 +1198,7 @@ msgctxt "" "N0479\n" "help.text" msgid "Case rc.CANCEL : MsgBox \"The user canceled the dialog.\",, \"Basic\"" -msgstr "" +msgstr "Case rc.CANCEL : MsgBox \"The user canceled the dialog.\",, \"Basic\"" #: python_listener.xhp msgctxt "" @@ -1206,7 +1206,7 @@ msgctxt "" "N0486\n" "help.text" msgid "''' Listen to & count button clicks '''" -msgstr "" +msgstr "''' Listen to & count button clicks '''" #: python_listener.xhp msgctxt "" @@ -1214,7 +1214,7 @@ msgctxt "" "N0496\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' your code goes here" #: python_listener.xhp msgctxt "" @@ -1222,7 +1222,7 @@ msgctxt "" "N0498\n" "help.text" msgid "Other Event Listeners" -msgstr "" +msgstr "Other Event Listeners" #: python_listener.xhp msgctxt "" @@ -1230,7 +1230,7 @@ msgctxt "" "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." -msgstr "" +msgstr "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." #: python_listener.xhp msgctxt "" @@ -1238,7 +1238,7 @@ msgctxt "" "N0505\n" "help.text" msgid "CreateUnoListener Function" -msgstr "" +msgstr "CreateUnoListener Function" #: python_listener.xhp msgctxt "" @@ -1246,7 +1246,7 @@ msgctxt "" "N0506\n" "help.text" msgid "Events mapping to objects" -msgstr "" +msgstr "Events mapping to objects" #: python_listener.xhp msgctxt "" @@ -1254,7 +1254,7 @@ msgctxt "" "N0509\n" "help.text" msgid "See also Document events, Form events." -msgstr "" +msgstr "See also Document events, Form events." #: python_locations.xhp msgctxt "" @@ -1470,7 +1470,7 @@ msgctxt "" "N0508\n" "help.text" msgid "Platform;isLinux Platform;isMacOsX Platform;isWindows Platform;ComputerName Platform;OSName API;ConfigurationAccess Tools;GetRegistryContent" -msgstr "" +msgstr "Platform;isLinux Platform;isMacOsX Platform;isWindows Platform;ComputerName Platform;OSName API;ConfigurationAccess Tools;GetRegistryContent" #: python_platform.xhp msgctxt "" @@ -1494,7 +1494,7 @@ msgctxt "" "N0511\n" "help.text" msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations." -msgstr "" +msgstr "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations." #: python_platform.xhp msgctxt "" @@ -1518,7 +1518,7 @@ msgctxt "" "NO529b\n" "help.text" msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)." -msgstr "" +msgstr "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)." #: python_platform.xhp msgctxt "" @@ -1526,7 +1526,7 @@ msgctxt "" "N0451\n" "help.text" msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\"" -msgstr "" +msgstr "' Return platform name as \"MAC\", \"UNIX\", \"WIN\"" #: python_platform.xhp msgctxt "" @@ -1534,7 +1534,7 @@ msgctxt "" "N0551\n" "help.text" msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function" -msgstr "" +msgstr "' Inferred from \"Tools.UCB.ShowHelperDialog\" function" #: python_platform.xhp msgctxt "" @@ -1742,7 +1742,7 @@ msgctxt "" "N0241\n" "help.text" msgid "%PRODUCTNAME Basic libraries contain classes, routines and variables, Python modules contain classes, functions and variables. Common pieces of reusable Python or UNO features must be stored in My macros within (User Profile)/Scripts/python/pythonpath. Python libraries help organize modules in order to prevent module name collisions. Import uno.py inside shared modules." -msgstr "" +msgstr "%PRODUCTNAME Basic libraries contain classes, routines and variables, Python modules contain classes, functions and variables. Common pieces of reusable Python or UNO features must be stored in My macros within (User Profile)/Scripts/python/pythonpath. Python libraries help organise modules in order to prevent module name collisions. Import uno.py inside shared modules." #: python_programming.xhp msgctxt "" @@ -1886,7 +1886,7 @@ msgctxt "" "N0284\n" "help.text" msgid "See Opening a Dialog" -msgstr "" +msgstr "See Opening a Dialog" #: python_programming.xhp msgctxt "" @@ -2014,7 +2014,7 @@ msgctxt "" "N0433\n" "help.text" msgid "Python;InputBox Python;MsgBox Python;Print API;MasterScriptProvider API;XScript" -msgstr "" +msgstr "Python;InputBox Python;MsgBox Python;Print API;MasterScriptProvider API;XScript" #: python_screen.xhp msgctxt "" @@ -2150,7 +2150,7 @@ msgctxt "" "N0339\n" "help.text" msgid "Session;ComputerName Session;SharedScripts Session;SharedPythonScripts Session;UserProfile Session;UserScripts Session;UserPythonScripts API;PathSubstitution" -msgstr "" +msgstr "Session;ComputerName Session;SharedScripts Session;SharedPythonScripts Session;UserProfile Session;UserScripts Session;UserPythonScripts API;PathSubstitution" #: python_session.xhp msgctxt "" -- cgit