aboutsummaryrefslogtreecommitdiff
path: root/source/nl/helpcontent2/source/text/sbasic/python.po
diff options
context:
space:
mode:
Diffstat (limited to 'source/nl/helpcontent2/source/text/sbasic/python.po')
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/python.po262
1 files changed, 131 insertions, 131 deletions
diff --git a/source/nl/helpcontent2/source/text/sbasic/python.po b/source/nl/helpcontent2/source/text/sbasic/python.po
index 8fcf244a154..f9610f3bc14 100644
--- a/source/nl/helpcontent2/source/text/sbasic/python.po
+++ b/source/nl/helpcontent2/source/text/sbasic/python.po
@@ -4,8 +4,8 @@ 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-09-30 07:04+0000\n"
-"Last-Translator: kees538 <kees538@gmail.com>\n"
+"PO-Revision-Date: 2019-11-30 08:09+0000\n"
+"Last-Translator: Gehenna <stefanrolink@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\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: 1569827088.000000\n"
+"X-POOTLE-MTIME: 1575101362.000000\n"
#: main0000.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"N0365\n"
"help.text"
msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
-msgstr ""
+msgstr "Het onderstaande voorbeeld wordt een nieuw bewerkt dialoogvenster <literal>Dialog1</literal> uit een document geopend met het menu <menuitem>Tools – Macros – Run Macro...</menuitem>."
#: python_dialogs.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"N0381\n"
"help.text"
msgid "Refer to <literal>msgbox.py</literal> in <literal>{installation}/program/</literal> directory for Python dynamic dialog examples."
-msgstr ""
+msgstr "Raadpleeg <literal>msgbox.py</literal> in de directory <literal>{installation}/program/</literal> voor voorbeelden van dynamische dialoogvensters met Python."
#: python_document_events.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Monitoring Document Events"
-msgstr ""
+msgstr "Python : Document Gebeurtenissen Volgen"
#: python_document_events.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"N0529\n"
"help.text"
msgid "Listening to Document Events"
-msgstr ""
+msgstr "Luisteren naar Document Gebeurtenissen"
#: 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. <literal>Access2Base Trace</literal> module usage is illustrating that second context."
-msgstr ""
+msgstr "Het onderscheppen van gebeurtenissen helpt het instellen van pre- en post-condities, zoals het laden en lossen van bibliotheken of het volgen van de voortgang van een script in de achtergrond. Het gebruik van <literal>Access2Base Trace</literal> module is weergegeven in die tweede context."
#: python_document_events.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"N0544\n"
"help.text"
msgid "\"\"\" Monitor document events \"\"\""
-msgstr ""
+msgstr "\"\"\" Volg gebeurtenissen van document \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"N0551\n"
"help.text"
msgid "''' report using Access2Base.Trace console OR"
-msgstr ""
+msgstr "\"\" Rapporteer via Access2Base. Traceer console OR"
#: 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 het volgen van doc. gebeurtenissen"
#: 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 op z'n vroegst"
#: python_document_events.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"N0576\n"
"help.text"
msgid "\"\"\" Start doc. events monitoring \"\"\""
-msgstr ""
+msgstr "\"\"\" Start het volgen van doc. gebeurtenissen \"\"\""
#: 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 gebeurtenissen worden gelogd\", 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 op z'n laatst (optioneel)"
#: python_document_events.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"N0581\n"
"help.text"
msgid "\"\"\" Stop doc. events monitoring \"\"\""
-msgstr ""
+msgstr "\"\"\" Stop het volgen van doc. gebeurtenissen \"\"\""
#: 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 gebeurtenissen zijn gelogd\", Waar)"
#: python_document_events.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"N0473\n"
"help.text"
msgid "user_lib = Session().UserPythonScripts # User scripts location"
-msgstr ""
+msgstr "ser_lib = Session().UserPythonScripts # Locatie gebruiker scripts"
#: python_import.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"N0486\n"
"help.text"
msgid "from IDE_utils import ScriptContext # 'IDE_utils.py' sits with shared Python scripts."
-msgstr ""
+msgstr "from IDE_utils import ScriptContext # 'IDE_utils.py' zit met gedeelde Python scripts."
#: python_import.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"N0491\n"
"help.text"
msgid "With Python shell:"
-msgstr ""
+msgstr "Met Python shell:"
#: python_import.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"N0535\n"
"help.text"
msgid "Importing a Python document embedded module is illustrated below. Error handling is not detailed. Python run time path is updated when document has been opened and before closure. Refer to <link href=\"text/sbasic/shared/01040000.xhp\">Event-Driven Macros</link> to learn how to associate Python macros to document events."
-msgstr ""
+msgstr "Het importeren van een Python document embedded module is hieronder weergegeven. Foutafhandeling is niet gedetailleerd. Het uitvoerpad van Python wordt geüpdatet als een document wordt geopend en voordat deze wordt gesloten. Verwijs naar <link href=\"text/sbasic/shared/01040000.xhp\">Gebeurtenissen Gestuurde Macros</link> om te leren hoe Python macros zijn te associëren met document gebeurtenissen."
#: python_import.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"N0541\n"
"help.text"
msgid "\"\"\" Prepare Python modules import when doc. loaded \"\"\""
-msgstr ""
+msgstr "\"\"\" Bereidt het importeren van Python modules voor als doc. wordt geladen \"\"\""
#: python_import.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"N0542\n"
"help.text"
msgid "PythonLibraries.loadLibrary('lib/subdir') # Add directory to search path"
-msgstr ""
+msgstr "PythonLibraries.loadLibrary('lib/subdir') # Voeg map toe aan zoekpad"
#: python_import.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"N0543\n"
"help.text"
msgid "PythonLibraries.loadLibrary('my_gui', 'screen_io') # Add dir. & import screen_io"
-msgstr ""
+msgstr "PythonLibraries.loadLibrary('my_gui', 'screen_io') # Voeg map & import screen_io toe"
#: python_import.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"N0546\n"
"help.text"
msgid "\"\"\" Cleanup PYTHON_PATH when doc. Gets closed \"\"\""
-msgstr ""
+msgstr "\"\"\" Ruim PYTHON_PATH op, zodra doc. wordt gesloten \"\"\""
#: python_import.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"N0547\n"
"help.text"
msgid "PythonLibraries.unloadLibrary('my_gui') # Python runtime path cleanup"
-msgstr ""
+msgstr "PythonLibraries.unloadLibrary('my_gui') # Python uitvoerpad opruiming"
#: python_import.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"N0548\n"
"help.text"
msgid "# Note: imported modules remain loaded in this example.."
-msgstr ""
+msgstr "# Let op: geïmporteerde modules blijven geladen in dit voorbeeld.."
#: python_import.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"N0553\n"
"help.text"
msgid "\"\"\" Python library loader and module importer"
-msgstr ""
+msgstr "\"\"\" Python bibliotheek lader en module importeur"
#: python_import.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"N0555\n"
"help.text"
msgid "adapted from 'Bibliothèque de fonctions' by Hubert Lambert"
-msgstr ""
+msgstr "aangepast vanuit 'Bibliothèque de fonctions' door Hubert Lambert"
#: python_import.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"N0564\n"
"help.text"
msgid "\"\"\" add directory to PYTHON_PATH, import named module \"\"\""
-msgstr ""
+msgstr "\"\"\" Voeg map toe aan PYTHON_PATH, importeer genoemde module \"\"\""
#: python_import.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"N0573\n"
"help.text"
msgid "\"\"\" remove directory from PYTHON_PATH \"\"\""
-msgstr ""
+msgstr "\"\"\" Verwijder map uit PYTHON_PATH \"\"\""
#: python_import.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"N0580\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/python/python_listener.xhp\">Creating a Python Listener</link> for examples of event-driven macros."
-msgstr ""
+msgstr "Verwijs naar <link href=\"text/sbasic/python/python_listener.xhp\">Maak een Python luisteraar</link> voor voorbeelden van gebeurtenis-gestuurde macro's."
#: python_listener.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python Listeners : Creating Event Listeners"
-msgstr ""
+msgstr "Python luisteraar : Het maken van gebeurtenis-luisteraars"
#: python_listener.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"N0385\n"
"help.text"
msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
#: python_listener.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"N0386\n"
"help.text"
msgid "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\" name=\"python listeners\">Creating Event Listeners</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\" name=\"python listeners\">Maken van gebeurtenis-luisteraars</link></variable>"
#: python_listener.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"N0417\n"
"help.text"
msgid "MsgBox(\"The user acknowledged the dialog.\")"
-msgstr ""
+msgstr "MsgBox(\"De gebruiker heeft het dialoogvenster bevestigd.\")"
#: python_listener.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"N0419\n"
"help.text"
msgid "MsgBox(\"The user canceled the dialog.\")"
-msgstr ""
+msgstr "MsgBox (\"De gebruiker heeft het dialoogvenster geannuleerd.\")"
#: python_listener.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"N0424\n"
"help.text"
msgid "\"\"\" Create a Dialog from its location \"\"\""
-msgstr ""
+msgstr "\"\"\" Maak een dialoogvenster aan vanaf zijn locatie \"\"\""
#: python_listener.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"N0437\n"
"help.text"
msgid "\"\"\" Listen to & count button clicks \"\"\""
-msgstr ""
+msgstr "\"\"\" Luister naar en tel het aantal keer klikken van een knop \"\"\""
#: 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): # verplichte routine"
#: python_listener.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"N0457\n"
"help.text"
msgid "<emph>msgbox.py</emph> in <emph>{installation}/program/</emph> directory has some examples of button listeners."
-msgstr ""
+msgstr "<emph>msgbox.py</emph> in <emph>{installation}/program/</emph> map, heeft enkele voorbeelden van knop-luisteraars."
#: 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 \"De gebruiker bevestigd het dialoogvenster.\",, \"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 \"De gebruiker annuleert het dialoogvenster.\",, \"Basic\""
#: python_listener.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"N0486\n"
"help.text"
msgid "''' Listen to & count button clicks '''"
-msgstr ""
+msgstr "\"\" Luister naar en tel het aantal keer klikken van een knop \"\""
#: python_listener.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"N0496\n"
"help.text"
msgid "' your code goes here"
-msgstr ""
+msgstr "' uw code komt hier"
#: python_listener.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"N0498\n"
"help.text"
msgid "Other Event Listeners"
-msgstr ""
+msgstr "Andere gebeurtenis-luisteraars"
#: python_listener.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"N0506\n"
"help.text"
msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Events mapping to objects</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Gebeurtenissen toewijzen aan objecten</link>"
#: python_listener.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"N0509\n"
"help.text"
msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Form events</link>."
-msgstr ""
+msgstr "Zie ook <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Document-gebeurtenissen</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Formulier-gebeurtenissen</link>."
#: python_locations.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python Scripts Organization"
-msgstr ""
+msgstr "Python Scripts Organisatie"
#: python_locations.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"hd_id391543358231021\n"
"help.text"
msgid "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\" name=\"command_name\">Python Scripts Organization and Location</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\" name=\"command_name\">Python Scripts Organisatie en Locatie</link></variable>"
#: python_locations.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id121551089455774\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/python/python_session.xhp\" name=\"Getting Session Information\">Getting Session Information</link> in order to get programmatic access to Python script locations."
-msgstr ""
+msgstr "Verwijs naar <link href=\"text/sbasic/python/python_session.xhp\" name=\"Getting Session Information\">Verkrijg Sessie Informatie</link> om programmatische toegang te krijgen tot Python-scriptlocaties."
#: python_locations.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Platform class"
-msgstr ""
+msgstr "Python : Platformklasse"
#: python_platform.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"N0508\n"
"help.text"
msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
#: 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 "De eigenschap ComputerName is enkel beschikbaar onder Windows. Standaard aanroepen naar Python-macro's helpen de beperkingen van %PRODUCTNAME Basic te overwinnen."
#: python_platform.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"N0529\n"
"help.text"
msgid "Using a Basic classmodule:"
-msgstr ""
+msgstr "Het gebruiken van een Basic klassemodule:"
#: 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 "MacOS X wordt standaard niet herkent onder %PRODUCTNAME Basic. Platformidentificatie is mogelijk met behulp van de %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 "' Geef platformnaam terug 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 "' Afgeleid van de \"Tools.UCB.ShowHelperDialog\" functie"
#: python_platform.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"N0567\n"
"help.text"
msgid "<literal>>>> print(Platform().isMacOSX) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> print(Platform().isMacOSX) # objecteigenschap</literal>"
#: python_platform.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"N0569\n"
"help.text"
msgid "<literal>>>> input(Platform().OSName) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> input(Platform().OSName) # objecteigenschap</literal>"
#: python_platform.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"N0578\n"
"help.text"
msgid "Dim p As New Platform ' instance of Platform class"
-msgstr ""
+msgstr "Dim p As New Platform ' Instantie van Platformklasse"
#: python_platform.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"N0579\n"
"help.text"
msgid "MsgBox p.isLinux ' object property"
-msgstr ""
+msgstr "MsgBox p.isLinux ' objecteigenschap"
#: python_platform.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"N0580\n"
"help.text"
msgid "Print p.isWindows, p.OSName ' object properties"
-msgstr ""
+msgstr "Print p.isWindows, p.OSName ' objecteigenschappen"
#: python_programming.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"N0218\n"
"help.text"
msgid "<bookmark_value>Python;Programming</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;Python</bookmark_value> <bookmark_value>uno.py</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;Programming</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;Python</bookmark_value> <bookmark_value>uno.py</bookmark_value>"
#: python_programming.xhp
msgctxt ""
@@ -1646,7 +1646,7 @@ msgctxt ""
"N0221\n"
"help.text"
msgid "XSCRIPTCONTEXT Global Variable"
-msgstr ""
+msgstr "XSCRIPTCONTEXT Globale Variabele"
#: python_programming.xhp
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"N0251\n"
"help.text"
msgid "Creates a UNO struct or exception given by typeName."
-msgstr ""
+msgstr "Maakt een UNO-struct of uitzondering, aangegeven door typeName."
#: python_programming.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"N0257\n"
"help.text"
msgid "Returns the class of a concrete UNO exception, struct, or interface."
-msgstr ""
+msgstr "Geeft de klasse van een concrete UNO-uitzondering, structuur of interface terug."
#: python_programming.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"N0260\n"
"help.text"
msgid "Returns the UNO component context used to initialize the Python runtime."
-msgstr ""
+msgstr "Geeft de context van het UNO-component terug dat gebruikt wordt om de Python looptijd te initiëren."
#: python_programming.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"N0264\n"
"help.text"
msgid "Looks up the value of an IDL constant by giving its explicit name."
-msgstr ""
+msgstr "Zoekt de waarde van een IDL-constante op op basis van z'n explicite naam."
#: python_programming.xhp
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"N0265\n"
"help.text"
msgid "See API constant groups"
-msgstr ""
+msgstr "Zie API-constante groepen"
#: python_programming.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"N0267\n"
"help.text"
msgid "Returns True, when obj is a class of a UNO interface."
-msgstr ""
+msgstr "Geeft Waar terug, als obj een klasse is van een UNO-interface."
#: python_programming.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"N0270\n"
"help.text"
msgid "Returns a file URL for the given system path."
-msgstr ""
+msgstr "Geeft een bestand-URL terug op basis van het systeempad."
#: python_programming.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"N0272\n"
"help.text"
msgid "<emph>LibreLogo</emph> and <emph>TableSample</emph> installation shared scripts use <literal>uno.py</literal> module."
-msgstr ""
+msgstr "<emph>LibreLogo</emph> en <emph>TableSample</emph> installatie-gedeelde scripts gebruiken <literal>uno.py</literal> module."
#: python_programming.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"N0275\n"
"help.text"
msgid "Python UNO"
-msgstr ""
+msgstr "Python UNO"
#: python_programming.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"N0276\n"
"help.text"
msgid "Basic UNO features"
-msgstr ""
+msgstr "Basis UNO-kenmerken"
#: python_programming.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"N0284\n"
"help.text"
msgid "See <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Opening a Dialog</link>"
-msgstr ""
+msgstr "Zie <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Openen van een Dialoogvenster</link>"
#: python_programming.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"N0286\n"
"help.text"
msgid "See <link href=\"text/sbasic/python/python_listener.xhp\" name=\"Creating a Listener\">Creating a Listener</link>"
-msgstr ""
+msgstr "Zie <link href=\"text/sbasic/python/python_listener.xhp\" name=\"Creating a Listener\">Het maken van een luisteraar</link>"
#: python_programming.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"N0288\n"
"help.text"
msgid "See UNO data types"
-msgstr ""
+msgstr "Zie UNO-gegevenstypes"
#: python_programming.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"N0298\n"
"help.text"
msgid "Similarly to %PRODUCTNAME Basic that supports browsing and dynamic loading of libraries, Python libraries can be explored and imported on demand. For more information on library containers, visit <link href=\"https://api.libreoffice.org/\" name=\"API Documentation site\">%PRODUCTNAME Application Programming Interface</link> (API) or download <link href=\"https://www.libreoffice.org/download/download/\" name=\"SDK download page\">%PRODUCTNAME Software Development Kit</link> (SDK)."
-msgstr ""
+msgstr "Vergelijkbaar met %PRODUCTNAME Basic (dat het doorbladeren en het dynamisch laden van bibliotheken ondersteunt) kunnen Python-bibliotheken op verzoek worden doorzocht en worden geïmplementeerd. Voor meer informatie over bibliotheekcontainers, zie <link href=\"https://api.libreoffice.org/\" name=\"API Documentation site\">%PRODUCTNAME Application Programming Interface</link> (API) of download <link href=\"https://www.libreoffice.org/download/download/\" name=\"SDK download page\">%PRODUCTNAME Software Development Kit</link>(SKD)."
#: python_programming.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"N0299\n"
"help.text"
msgid "Importing a Python document embedded module is illustrated below, exception handling is not detailed:"
-msgstr ""
+msgstr "Het importeren van een Python-document embedded module is hieronder weergegeven, het afhandelingen van uitzonderingen is niet beschreven:"
#: python_programming.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"N0303\n"
"help.text"
msgid "\"\"\" load library and import module"
-msgstr ""
+msgstr "\"\"\" laad bibliotheek en importeer module"
#: python_programming.xhp
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"N0305\n"
"help.text"
msgid "Adapted from 'Bibliothèque de fonctions' by Hubert Lambert"
-msgstr ""
+msgstr "Afgeleid van 'Bibliothèque de fonctions' door Hubert Lambert"
#: python_programming.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"N0307\n"
"help.text"
msgid "doc = XSCRIPTCONTEXT.getDocument() # current document"
-msgstr ""
+msgstr "doc = XSCRIPTCONTEXT.getDocument() # huidige document"
#: python_programming.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"N0310\n"
"help.text"
msgid "if not url in sys.path: # add path if necessary"
-msgstr ""
+msgstr "if not url in sys.path: # voeg pad toe, wanneer nodig"
#: python_programming.xhp
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"N0311\n"
"help.text"
msgid "sys.path.insert(0, url) # doclib takes precedence"
-msgstr ""
+msgstr "sys.path.insert(0, url) # doclib heeft voorrang"
#: python_programming.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"N0312\n"
"help.text"
msgid "if module_name: # import if requested"
-msgstr ""
+msgstr "if module_name: # importeer, indien gevraagd"
#: python_programming.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"N0316\n"
"help.text"
msgid "ui = load_library(\"my_gui\",'screen_io') # add <lib> path + import <module>"
-msgstr ""
+msgstr "ui = load_library(\"my_gui\",'screen_io') # voeg <lib> pad toe + importeer <module>"
#: python_programming.xhp
msgctxt ""
@@ -1998,7 +1998,7 @@ msgctxt ""
"N0321\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects page\">Basic UNO Objects, Functions and Services</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects page\">Basic UNO Objecten, Functies en Diensten</link>"
#: python_screen.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Screen Input/Output"
-msgstr ""
+msgstr "Python : Scherm Invoer/Uitvoer"
#: python_screen.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"N0433\n"
"help.text"
msgid "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Print</bookmark_value> <bookmark_value>API;MasterScriptProvider</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Print</bookmark_value> <bookmark_value>API;MasterScriptProvider</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
#: python_screen.xhp
msgctxt ""
@@ -2022,7 +2022,7 @@ msgctxt ""
"N0434\n"
"help.text"
msgid "<variable id=\"ioscreen\"><link href=\"text/sbasic/python/python_screen.xhp\" name=\"IO to screen\">Input/Output to Screen</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ioscreen\"><link href=\"text/sbasic/python/python_screen.xhp\" name=\"IO to screen\">Invoer/Uitvoer naar Scherm</link></variable>"
#: python_screen.xhp
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"N0435\n"
"help.text"
msgid "Python standard output file is not available when running Python macros from <menuitem>Tools – Macros - Run Macro</menuitem>... menu. Presenting the output of a module requires the Python interactive console. Features such as <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> and <literal>str()</literal> are available from the Python shell."
-msgstr ""
+msgstr "Python standaard uitvoerbestand is niet beschikbaar wanneer er Python-macro's worden uitgevoerd vanuit <menuitem>Extra – Macro's - Macro uitvoeren</menuitem>... menu. Voor het weergeven van de uitvoer van een module is de Pyton interactieve console vereist. Functies zoals <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> en <literal>str()</literal> zijn beschikbaar vanaf de Python shell."
#: python_screen.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"N0436\n"
"help.text"
msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"apso\">Alternative Python Script Organizer</link> (APSO) extension offers a msgbox() function out of its <literal>apso_utils</literal> module."
-msgstr ""
+msgstr "De <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"apso\">Alternatieve Python Script Organizer</link>(APSO) extensie, verzorgt een msgbox() functie vanuit zijn <literal>apso_utils</literal> module."
#: python_screen.xhp
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"N0467\n"
"help.text"
msgid "\"\"\" Displays a dialog box containing a message and returns a value.\"\"\""
-msgstr ""
+msgstr "\"\"\" Geef een dialoogvenster weer die een bericht bevat en een waarde teruggeeft.\"\"\""
#: python_screen.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"N0492\n"
"help.text"
msgid "<literal>uiScripts</literal> Basic module"
-msgstr ""
+msgstr "<literal>uiScripts</literal> Basic-module"
#: python_session.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python_Session : Session class"
-msgstr ""
+msgstr "Python_Session : Sessieklasse"
#: python_session.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"N0340\n"
"help.text"
msgid "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\" name=\"session01\">Getting Session Information</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\" name=\"session01\">Verkrijgen van Sessie-informatie</link></variable>"
#: python_session.xhp
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"N0344\n"
"help.text"
msgid "With Python shell."
-msgstr ""
+msgstr "Met Python shell."
#: python_session.xhp
msgctxt ""
@@ -2190,7 +2190,7 @@ msgctxt ""
"N0346\n"
"help.text"
msgid "<literal>>>> print(Session.SharedPythonScripts()) # static method</literal>"
-msgstr ""
+msgstr "<literal>>>> print(Session.SharedPythonScripts()) # static methode</literal>"
#: python_session.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"N0347\n"
"help.text"
msgid "<literal>>>> print(Session().UserName) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> print(Session().UserName) # objecteigenschap</literal>"
#: python_session.xhp
msgctxt ""
@@ -2206,7 +2206,7 @@ msgctxt ""
"N0348\n"
"help.text"
msgid "<literal>>>> input(Session().UserProfile) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> input(Session().UserProfile) # objecteigenschap</literal>"
#: python_session.xhp
msgctxt ""
@@ -2222,7 +2222,7 @@ msgctxt ""
"N0354\n"
"help.text"
msgid "ui.MsgBox(Session.Share(),title='Installation Share') # static method"
-msgstr ""
+msgstr "ui.MsgBox(Session.Share(),title='Deel Installatie') # static methode"
#: python_session.xhp
msgctxt ""
@@ -2230,7 +2230,7 @@ msgctxt ""
"N0355\n"
"help.text"
msgid "ui.Print(Session.SharedPythonScripts()) # static method"
-msgstr ""
+msgstr "ui.Print(Session.SharedPythonScripts()) # static methode"
#: python_session.xhp
msgctxt ""
@@ -2238,7 +2238,7 @@ msgctxt ""
"N0356\n"
"help.text"
msgid "s = Session() # instance creation"
-msgstr ""
+msgstr "s = Session() # aanmaken van instantie"
#: python_session.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"N0357\n"
"help.text"
msgid "ui.MsgBox(s.UserName,title='Hello') # object property"
-msgstr ""
+msgstr "ui.MsgBox(s.UserName,title='Hallo') # objecteigenschap"
#: python_session.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"N0358\n"
"help.text"
msgid "ui.Print(s.UserPythonScripts) # object property"
-msgstr ""
+msgstr "ui.Print(s.UserPythonScripts) # objecteigenschap"
#: python_session.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"N0360\n"
"help.text"
msgid "g_exportedScripts = (demo_session,) # public macros"
-msgstr ""
+msgstr "g_exportedScripts = (demo_session,) # publieke macro's"
#: python_session.xhp
msgctxt ""
@@ -2278,7 +2278,7 @@ msgctxt ""
"N0364\n"
"help.text"
msgid "Print \"Shared scripts location:\", s.SharedScripts"
-msgstr ""
+msgstr "Print \"Gedeelde scripts locatie:\", s.SharedScripts"
#: python_session.xhp
msgctxt ""
@@ -2286,7 +2286,7 @@ msgctxt ""
"N0365\n"
"help.text"
msgid "MsgBox s.UserName,,\"Hello\""
-msgstr ""
+msgstr "MsgBox s.UserName,,\"Hallo\""
#: python_session.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"N0368\n"
"help.text"
msgid "Using COM/OLE and Visual Basic Scripting language."
-msgstr ""
+msgstr "Gebruikt COM/OLE en Visual Basic scripttaal."
#: python_session.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"N0369\n"
"help.text"
msgid "' The service manager is always the entry point"
-msgstr ""
+msgstr "' De service manager is altijd het uitgangspunt"
#: python_session.xhp
msgctxt ""
@@ -2310,7 +2310,7 @@ msgctxt ""
"N0370\n"
"help.text"
msgid "' If there is no office running then an office is started up"
-msgstr ""
+msgstr "' Als er geen office wordt uitgevoerd, zal deze worden gestart"
#: python_session.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"N0372\n"
"help.text"
msgid "' PathSubstitution service exhibits information to infer"
-msgstr ""
+msgstr "' PathSubstitution service vertoont informatie om af te leiden"
#: python_session.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"N0373\n"
"help.text"
msgid "' <UserProfile|Share>/Scripts/python locations from"
-msgstr ""
+msgstr "' <UserProfile|Share>/Scripts/python locaties van"
#: python_session.xhp
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"N0381\n"
"help.text"
msgid "Python Session class:"
-msgstr ""
+msgstr "Python Sessieklasse:"
#: python_session.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"N0401\n"
"help.text"
msgid "@property # alternative to '$(username)' variable"
-msgstr ""
+msgstr "@property # alternatief voor de '$(gebruikersnaam)' variabele"
#: python_session.xhp
msgctxt ""
@@ -2350,7 +2350,7 @@ msgctxt ""
"N0342\n"
"help.text"
msgid "Unlike Basic, pathname normalization is performed with Python inside Session class."
-msgstr ""
+msgstr "In tegenstelling tot Basic, wordt normalisatie van het pad in Python uitgevoerd binnen de Sessieklasse."
#: python_session.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"N0412\n"
"help.text"
msgid "%PRODUCTNAME Basic Session class:"
-msgstr ""
+msgstr "%PRODUCTNAME Basic Sessieklasse:"
#: python_session.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"N0417\n"
"help.text"
msgid "Private _ps As Object ' Private member"
-msgstr ""
+msgstr "Private _ps As Object ' Particulier lid"
#: python_session.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"N0422\n"
"help.text"
msgid "End Sub ' Constructor"
-msgstr ""
+msgstr "End Sub ' Constructie"
#: python_session.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"N0426\n"
"help.text"
msgid "End Sub ' Destructor"
-msgstr ""
+msgstr "End Sub ' Destructor"
#: python_session.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"N0439\n"
"help.text"
msgid "Public Property Get UserName() As String ' User account name"
-msgstr ""
+msgstr "Public Property Get UserName() As String ' Gebruikersaccountnaam"
#: python_session.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"N0443\n"
"help.text"
msgid "Public Property Get UserProfile() As String ' User profile system path"
-msgstr ""
+msgstr "Public Property Get UserProfile() As String ' Systeempad gebruikersprofiel "
#: python_session.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"N0447\n"
"help.text"
msgid "Public Property Get UserScripts() As String ' User scripts system path"
-msgstr ""
+msgstr "Public Property Get UserScripts() As String ' Systeempad gebruikerscripts"
#: python_session.xhp
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"N0451\n"
"help.text"
msgid "Public Property Get UserPythonScripts() As String ' User Python scripts system path"
-msgstr ""
+msgstr "Public Property Get UserPythonScripts() As String ' Systeempad gebruiker Pythonscripts"
#: python_shell.xhp
msgctxt ""
@@ -2422,7 +2422,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python Interactive Shell"
-msgstr ""
+msgstr "Python Interactieve Shell"
#: python_shell.xhp
msgctxt ""
@@ -2430,7 +2430,7 @@ msgctxt ""
"N0117\n"
"help.text"
msgid "<bookmark_value>Python console</bookmark_value> <bookmark_value>Python Interactive Shell</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python console</bookmark_value> <bookmark_value>Python Interactieve Shell</bookmark_value>"
#: python_shell.xhp
msgctxt ""
@@ -2438,7 +2438,7 @@ msgctxt ""
"N0118\n"
"help.text"
msgid "<variable id=\"pythonshell1\"><link href=\"text/sbasic/python/python_shell.xhp\" name=\"python shell\">Running Python Interactive Console</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonshell1\"><link href=\"text/sbasic/python/python_shell.xhp\" name=\"python shell\">Python Interactive Console uitvoeren</link></variable>"
#: python_shell.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"N0119\n"
"help.text"
msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal."
-msgstr ""
+msgstr "De Python interactieve console (ook wel: Python interpreter of Python Shell) genoemd, biedt programmeurs een snelle manier om commando's uit te voeren en om code uit te proberen en te testen zonder eerst een bestand te moeten aanmaken. UNO-objecten introspectie, maar ook documentatie over %PRODUCTNAME Pythonmodules kan worden verkregen vanuit de terminal."
#: python_shell.xhp
msgctxt ""
@@ -2478,4 +2478,4 @@ msgctxt ""
"N0142\n"
"help.text"
msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Python Interactive Console</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Python Interactieve Console</alt></image>"