aboutsummaryrefslogtreecommitdiff
path: root/source/de/helpcontent2/source/text/sbasic/shared/03.po
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-02-18 15:51:16 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-02-18 16:00:35 +0100
commitd65e9655a561110d8e2cf702729ae75aa10c55ac (patch)
tree6462ce79558703c28d5bd60cfe1789e5445b306e /source/de/helpcontent2/source/text/sbasic/shared/03.po
parentcc24a4e892c5f8b1f5ee88c927013ffe4ab4c061 (diff)
update translations for master
and force-fix errors using pocheck Change-Id: I6fcbb9b3da0a0608a85d68ef43dd88d92022b083
Diffstat (limited to 'source/de/helpcontent2/source/text/sbasic/shared/03.po')
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po355
1 files changed, 326 insertions, 29 deletions
diff --git a/source/de/helpcontent2/source/text/sbasic/shared/03.po b/source/de/helpcontent2/source/text/sbasic/shared/03.po
index f80806cb88c..defd01942b5 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared/03.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: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-02-18 12:17+0100\n"
"PO-Revision-Date: 2022-01-02 15:38+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/de/>\n"
@@ -12454,67 +12454,112 @@ msgctxt ""
msgid "doc.RemoveMenu(\"My Menu\")"
msgstr ""
-#. Nmwv9
+#. Ab7PE
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id991589202413257\n"
"help.text"
-msgid "Runs a command on a document. The command is executed without arguments."
+msgid "Runs a UNO command on the document window associated with the service instance. A few typical commands are: Save, SaveAs, ExportToPDF, Undo, Copy, Paste, etc."
msgstr ""
-#. MGb6t
+#. qBhYc
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id261589202778896\n"
+"help.text"
+msgid "The document itself does not need to be active to be able to run commands."
+msgstr ""
+
+#. 9FuBU
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id921611152932311\n"
"help.text"
-msgid "A few typical commands are: Save, SaveAs, ExportToPDF, SetDocumentProperties, Undo, Copy, Paste, etc."
+msgid "Commands can be run with or without arguments. Arguments are not validated before running the command. If the command or its arguments are invalid, then nothing will happen."
msgstr ""
-#. qBhYc
+#. w62Bk
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
-"par_id261589202778896\n"
+"par_id31644182402479\n"
"help.text"
-msgid "The document itself does not need to be active to be able to run commands."
+msgid "For a complete list of UNO commands that can be run in %PRODUCTNAME, refer to the Wiki page <link href=\"https://wiki.documentfoundation.org/Development/DispatchCommands\" name=\"Commands_Wiki\">Development/DispatchCommands</link>."
msgstr ""
-#. QSiFB
+#. HBVsV
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id401589202413575\n"
"help.text"
-msgid "<emph>command</emph>: Case-sensitive string containing the command in English. The command itself is not checked for correctness. If nothing happens after the command call, then the command is probably wrong."
+msgid "<emph>command</emph>: Case-sensitive string containing the UNO command name. The inclusion of the prefix \".uno:\" in the command is optional. The command itself is not checked for correctness. If nothing happens after the command call, then the command is probably wrong."
+msgstr ""
+
+#. xi32t
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id521644182774710\n"
+"help.text"
+msgid "<emph>args</emph>: For each argument to be passed to the command, specify a pair containing the argument name and value."
msgstr ""
-#. wQF35
+#. MqEx7
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id721611153068137\n"
"help.text"
-msgid "The following example runs the \"SelectData\" command in a Calc sheet named \"MyFile.ods\", which will result in the selection of the data area based on the currently selected cell."
+msgid "The following example runs the <literal>SelectData</literal> command in a Calc file named \"MyFile.ods\", which will result in the selection of the data area based on the currently selected cell. Note that this command does not require any arguments."
+msgstr ""
+
+#. GGDgF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id371644184276886\n"
+"help.text"
+msgid "Below is an example that runs the UNO command <literal>ReplaceAll</literal> and passes values for its arguments <literal>SearchString</literal> and <literal>ReplaceString</literal>. Running this command will replace all occurrence of the string \"abc\" by \"ABC\" in the current sheet."
msgstr ""
-#. avaEg
+#. Z4Egf
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
-"par_id751611153375195\n"
+"bas_id631644184414955\n"
"help.text"
-msgid "The example above actually runs the UNO command <literal>.uno:SelectData</literal>. Hence, to use the <literal>RunCommand</literal> method it is necessary to remove the \".uno:\" substring."
+msgid "' Arguments passed to the command:"
msgstr ""
-#. JRHRS
+#. H5eQ9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id41644184549167\n"
+"help.text"
+msgid "Note that calling the command <literal>ReplaceAll</literal> without arguments will open the <menuitem>Find and Replace</menuitem> dialog."
+msgstr ""
+
+#. Cp7Wk
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id811644243228448\n"
+"help.text"
+msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
+msgstr ""
+
+#. DEEhz
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id191611153511038\n"
"help.text"
-msgid "Each LibreOffice component has its own set of commands available. One easy way to learn commands is going to <emph>Tools > Customize > Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools > Customize > Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
msgstr ""
#. enSv9
@@ -14326,6 +14371,51 @@ msgctxt ""
msgid "In the examples below only folders and their contents are deleted. Files in the parent folder \"C:\\Temp\" are not deleted."
msgstr ""
+#. gSG9s
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id11584882015025\n"
+"help.text"
+msgid "Returns a string containing the folder where the specified extension package is installed."
+msgstr ""
+
+#. xuDgD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id21612999775311\n"
+"help.text"
+msgid "The current value of the property <literal>SF_FileSystem.FileNaming</literal> is used to determine the notation of the returned string."
+msgstr ""
+
+#. jWSSt
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id891644442917193\n"
+"help.text"
+msgid "Use the property <link href=\"text/sbasic/shared/03/sf_platform.xhp#hd_id711600788076834\" name=\"Extensions_link\"><literal>Extensions</literal></link> from the <literal>Platform</literal> service to get string array with the IDs of all installed extensions."
+msgstr ""
+
+#. w9vDF
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id451584882542121\n"
+"help.text"
+msgid "<emph>extension</emph>: A string value with the ID of the extension. If the extension is not installed, an exception is raised."
+msgstr ""
+
+#. YhQmv
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id651626217313369\n"
+"help.text"
+msgid "The examples below in Basic and Python return the folder where the APSO extension is installed."
+msgstr ""
+
#. ZbyLn
#: sf_filesystem.xhp
msgctxt ""
@@ -19681,13 +19771,13 @@ msgctxt ""
msgid "' Runs the Basic script Standard.Module1.MyListener stored in the document"
msgstr ""
-#. zSD5u
+#. 5fxEG
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"bas_id801643306742620\n"
"help.text"
-msgid "' Runs the Python script MysListener located in file myScripts.py in the user scripts folder"
+msgid "' Runs the Python script MyListener located in file myScripts.py in the user scripts folder"
msgstr ""
#. uAbp9
@@ -20221,6 +20311,33 @@ msgctxt ""
msgid "The name of the currently logged user."
msgstr ""
+#. rCN2h
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021747014\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. T2MVx
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id201633021748566\n"
+"help.text"
+msgid "String array"
+msgstr ""
+
+#. 5Fkqe
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021749125\n"
+"help.text"
+msgid "Returns a zero-based array of strings containing the internal IDs of all installed extensions."
+msgstr ""
+
#. 9aGdF
#: sf_platform.xhp
msgctxt ""
@@ -20248,31 +20365,40 @@ msgctxt ""
msgid "Returns a zero-based array of strings containing the names of all available fonts."
msgstr ""
-#. Av85C
+#. 86VFG
#: sf_platform.xhp
msgctxt ""
"sf_platform.xhp\n"
-"par_id561633021743188\n"
+"par_id561633021748013\n"
"help.text"
msgid "Yes"
msgstr ""
-#. DANn2
+#. 9qBZR
#: sf_platform.xhp
msgctxt ""
"sf_platform.xhp\n"
-"par_id831633021749018\n"
+"par_id831633021749297\n"
"help.text"
-msgid "Returns the operating system locale as a string in the format language-COUNTRY (la-CO)."
+msgid "Returns the locale used for numbers and dates as a string in the format \"la-CO\" (language-COUNTRY)."
msgstr ""
-#. RuAKC
+#. Av85C
#: sf_platform.xhp
msgctxt ""
"sf_platform.xhp\n"
-"par_id831633021745548\n"
+"par_id561633021743188\n"
"help.text"
-msgid "Examples: \"en-US\", \"pt-BR\", \"fr-BE\"."
+msgid "Yes"
+msgstr ""
+
+#. sYrDn
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021749018\n"
+"help.text"
+msgid "Returns the locale of the operating system as a string in the format \"la-CO\" (language-COUNTRY). This is equivalent to the <literal>SystemLocale</literal> property."
msgstr ""
#. Dt7J5
@@ -20293,6 +20419,24 @@ msgctxt ""
msgid "The machine type. Examples are: '<literal>i386</literal>' or '<literal>x86_64</literal>'."
msgstr ""
+#. LbQr2
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021706513\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ZZcSc
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021741117\n"
+"help.text"
+msgid "Returns the locale of the user interface as a string in the format \"la-CO\" (language-COUNTRY)."
+msgstr ""
+
#. tqwyD
#: sf_platform.xhp
msgctxt ""
@@ -20311,13 +20455,13 @@ msgctxt ""
msgid "The actual %PRODUCTNAME version expressed as<br/>' <literal>%PRODUCTNAME w.x.y.z (The Document Foundation)</literal>'."
msgstr ""
-#. 4bpcJ
+#. 2q29b
#: sf_platform.xhp
msgctxt ""
"sf_platform.xhp\n"
"par_id621614902220807\n"
"help.text"
-msgid "Example: '<literal>LibreOffice 7.1.1.2 (The Document Foundation, Debian and Ubuntu)</literal>'"
+msgid "Example: '<literal>LibreOffice 7.4.1.2 (The Document Foundation, Debian and Ubuntu)</literal>'"
msgstr ""
#. 7WDer
@@ -20482,6 +20626,24 @@ msgctxt ""
msgid "Returns the version of the Python interpreter being used as a string in the format \"Python major.minor.patchlevel\" (ex: \"Python 3.9.7\")."
msgstr ""
+#. Ad9Cw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021708547\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. Aue6E
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021741336\n"
+"help.text"
+msgid "Returns the locale of the operating system as a string in the format \"la-CO\" (language-COUNTRY). This is equivalent to the <literal>Locale</literal> property."
+msgstr ""
+
#. FJs9t
#: sf_platform.xhp
msgctxt ""
@@ -24640,6 +24802,24 @@ msgctxt ""
msgid "'Opens the text file with the names to be read"
msgstr ""
+#. rDCSD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id711613595642109\n"
+"help.text"
+msgid "'Reads all the contents in the input file as a single string"
+msgstr ""
+
+#. 6w73J
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id961613595643093\n"
+"help.text"
+msgid "'Splits the string into an array"
+msgstr ""
+
#. 7Fq9E
#: sf_textstream.xhp
msgctxt ""
@@ -24883,6 +25063,15 @@ msgctxt ""
msgid "The example below creates a <literal>Timer</literal> object named <literal>myTimer</literal> and starts it immediately."
msgstr ""
+#. WMZog
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id681582733781715\n"
+"help.text"
+msgid "'The timer starts immediately when the second argument = True, default = False"
+msgstr ""
+
#. CnZqc
#: sf_timer.xhp
msgctxt ""
@@ -25027,6 +25216,15 @@ msgctxt ""
msgid "The actual time elapsed since start or between start and stop (including suspensions and running time)"
msgstr ""
+#. a63gW
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"par_id9158273378151\n"
+"help.text"
+msgid "Note that the <literal>TotalDuration</literal> property is equivalent to summing the <literal>Duration</literal> and <literal>SuspendDuration</literal> properties."
+msgstr ""
+
#. Mav4g
#: sf_timer.xhp
msgctxt ""
@@ -25990,6 +26188,105 @@ msgctxt ""
msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
msgstr ""
+#. mDaA5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id991589202413257\n"
+"help.text"
+msgid "Runs a UNO command on the current window. A few typical commands are: Save, SaveAs, ExportToPDF, Undo, Copy, Paste, etc."
+msgstr ""
+
+#. x52HD
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id921611152932311\n"
+"help.text"
+msgid "Commands can be run with or without arguments. Arguments are not validated before running the command. If the command or its arguments are invalid, then nothing will happen."
+msgstr ""
+
+#. rhYJj
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id31644182402479\n"
+"help.text"
+msgid "For a complete list of UNO commands that can be run in %PRODUCTNAME, refer to the Wiki page <link href=\"https://wiki.documentfoundation.org/Development/DispatchCommands\" name=\"Commands_Wiki\">Development/DispatchCommands</link>."
+msgstr ""
+
+#. Fkf3T
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id401589202413575\n"
+"help.text"
+msgid "<emph>command</emph>: Case-sensitive string containing the UNO command name. The inclusion of the prefix \".uno:\" in the command is optional. The command itself is not checked for correctness. If nothing happens after the command call, then the command is probably wrong."
+msgstr ""
+
+#. cZgrF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521644182774710\n"
+"help.text"
+msgid "<emph>args</emph>: For each argument to be passed to the command, specify a pair containing the argument name and value."
+msgstr ""
+
+#. t3CjC
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id721611153068137\n"
+"help.text"
+msgid "The following example runs the <literal>.uno:About</literal> command in the current window."
+msgstr ""
+
+#. cFYc9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id371644184276886\n"
+"help.text"
+msgid "Below is an example that runs the UNO command <literal>.uno:BasicIDEAppear</literal> and passes the arguments required to open the Basic IDE at a specific line of a module."
+msgstr ""
+
+#. fTXvL
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id631644184414955\n"
+"help.text"
+msgid "' Arguments passed to the command:"
+msgstr ""
+
+#. cyWLC
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id41644184549167\n"
+"help.text"
+msgid "Note that calling the command <literal>BasicIDEAppear</literal> without arguments will simply open the <menuitem>Basic IDE</menuitem>."
+msgstr ""
+
+#. BKNap
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311644243516674\n"
+"help.text"
+msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
+msgstr ""
+
+#. khKSW
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id191611153511038\n"
+"help.text"
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools > Customize > Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgstr ""
+
#. NnBWM
#: sf_ui.xhp
msgctxt ""