update translations for master

and force-fix errors using pocheck

Change-Id: I93d4f5b65843f98eda63af0f8e45468a0f9a073f
This commit is contained in:
Christian Lohmaier
2023-10-02 12:36:30 +02:00
parent 98c203d027
commit a005336559
1480 changed files with 84110 additions and 87786 deletions

View File

@@ -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: 2023-09-12 14:57+0200\n"
"POT-Creation-Date: 2023-10-02 11:34+0200\n"
"PO-Revision-Date: 2022-08-10 13:23+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/hsb/>\n"
@@ -10671,13 +10671,13 @@ msgctxt ""
msgid "<variable id=\"dlg_h1\"><link href=\"text/sbasic/shared/03/sf_dialog.xhp\"><literal>SFDialogs</literal>.<literal>Dialog</literal> service</link></variable>"
msgstr ""
#. LSng5
#. tvCua
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id931583589764919\n"
"help.text"
msgid "The <literal>Dialog</literal> service contributes to the management of dialogs created with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\">Dialog Editor</link>. Each instance of the current class represents a single dialog box displayed to the user."
msgid "The <literal>Dialog</literal> service contributes to the management of dialogs created with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\">Dialog Editor</link> or dialogs created on-the-fly. Each instance of the current class represents a single dialog box displayed to the user."
msgstr ""
#. vxEvV
@@ -10869,13 +10869,13 @@ msgctxt ""
msgid "The dialog service offers methods that create new controls dynamically in an existing dialog predefined with the <link href=\"text/sbasic/guide/create_dialog.html\">Dialog Editor</link>. A dialog is initialized with controls in the Dialog Editor and new controls can be added at run-time before or after the dialog <literal>Execute()</literal> statement."
msgstr ""
#. Rdc5q
#. 5PbBk
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id261688459210848\n"
"help.text"
msgid "The <literal>Dialog</literal> service can equally be invoked - through the <literal>CreateScriptService</literal> method - when creating dialogs on-the-fly; It requires two supplemental positional arguments:"
msgid "The <literal>Dialog</literal> service can equally be invoked - through the <literal>CreateScriptService</literal> method - when creating dialogs on-the-fly. It requires two supplemental positional arguments after the name of the ad-hoc service \"NewDialog\":"
msgstr ""
#. B82Et
@@ -10887,13 +10887,40 @@ msgctxt ""
msgid "<emph>DialogName</emph>: A case-sensitive string designating the dialog."
msgstr ""
#. QucaE
#. VEJtV
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id291688460281953\n"
"par_id751688460276640\n"
"help.text"
msgid "<emph>Library</emph>: The case-sensitive name of the library where to store the dialog. Default value is \"Standard\"."
msgid "<emph>Place</emph>: Window location of the dialog being either :"
msgstr ""
#. wXa8D
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id421598178080993\n"
"help.text"
msgid "a Basic <link href=\"sbasic/shared/03104200.xhp\">Array</link> or Python tuple with 4 elements: (X, Y, width, height)"
msgstr ""
#. PnCAR
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id881502858229301\n"
"help.text"
msgid "a com.sun.star.awt.Rectangle [X, Y, Width, Height] object"
msgstr ""
#. HkCDF
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id241688051453685\n"
"help.text"
msgid "All elements are expressed in <link href=\"text/sbasic/shared/00000002.xhp#AppFontUnits\">Map AppFont units</link>."
msgstr ""
#. sKdLk
@@ -10905,13 +10932,13 @@ msgctxt ""
msgid "Or using Python:"
msgstr ""
#. vHBvS
#. 7D42J
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id981688462077340\n"
"help.text"
msgid "dlg = CreateScriptService(\"NewDialog\", \"myDialog1\") # \"Standard\" library is used"
msgid "dlg = CreateScriptService('NewDialog', 'myDialog1', (100,200, 40, 110))"
msgstr ""
#. wF8Se
@@ -11706,13 +11733,13 @@ msgctxt ""
msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
msgstr ""
#. qkyvc
#. YWeDt
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id381591885776500\n"
"help.text"
msgid "Create a new control of type Button in the current dialog."
msgid "Create a new control of type <literal>Button</literal> in the current dialog."
msgstr ""
#. UUuAw
@@ -11787,67 +11814,31 @@ msgctxt ""
msgid "An instance of <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp\"><literal>SFDialogs</literal>.<literal>DialogControl</literal></link> service or <literal>Nothing</literal>."
msgstr ""
#. RB88M
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id241688389976612\n"
"help.text"
msgid "Set myButton = oDlg.CreateButton(\"Button1\", Array(20, 20, 60, 15))"
msgstr ""
#. 4Aydt
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id861688389993653\n"
"help.text"
msgid "myButton = dlg.CreateButton('Button1', (20, 20, 60, 15))"
msgstr ""
#. goc7H
#. ztBSW
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id991591995776500\n"
"help.text"
msgid "Create a new control of type CheckBox in the current dialog."
msgid "Create a new control of type <literal>CheckBox</literal> in the current dialog."
msgstr ""
#. pVaTF
#. NFpS6
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id241688132171052\n"
"help.text"
msgid "<emph>MultiLine</emph>: When True (default = False), the caption may be displayed on more than one line."
msgid "<emph>MultiLine</emph>: When <literal>True</literal> (default = <literal>False</literal>), the caption may be displayed on more than one line."
msgstr ""
#. tAwLB
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id211688391124091\n"
"help.text"
msgid "Set myCheckBox = oDlg.CreateCheckBox(\"CheckBox1\", Array(20, 20, 60, 15), MultiLine := True)"
msgstr ""
#. FSe7M
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id711688391128090\n"
"help.text"
msgid "myCheckBox = dlg.CreateCheckBox('CheckBox1', (20, 20, 60, 15), MultiLine = True)"
msgstr ""
#. GzFFo
#. c7gRE
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id991591885776500\n"
"help.text"
msgid "Create a new control of type ComboBox in the current dialog."
msgid "Create a new control of type <literal>ComboBox</literal> in the current dialog."
msgstr ""
#. EBEZu
@@ -11859,13 +11850,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
msgstr ""
#. GdLkB
#. xAa2y
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id641688132528598\n"
"help.text"
msgid "<emph>DropDown</emph>: When True (default), a drop down button is displayed"
msgid "<emph>DropDown</emph>: When <literal>True</literal> (default), a drop down button is displayed"
msgstr ""
#. tYvPA
@@ -11895,13 +11886,13 @@ msgctxt ""
msgid "myComboBox = dlg.CreateComboBox('ComboBox1', (20, 20, 60, 15), Dropdown = True)"
msgstr ""
#. CW7CF
#. CzvWq
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id991591005776500\n"
"help.text"
msgid "Create a new control of type CurrencyField in the current dialog."
msgid "Create a new control of type <literal>CurrencyField</literal> in the current dialog."
msgstr ""
#. CzJFF
@@ -11913,13 +11904,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
msgstr ""
#. HnJzn
#. 9Y7sF
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id751688132750844\n"
"help.text"
msgid "<emph>SpinButton</emph>: when True (default = False), a spin button is present"
msgid "<emph>SpinButton</emph>: when <literal>True</literal> (default = <literal>False</literal>), a spin button is present"
msgstr ""
#. kCCaS
@@ -11958,31 +11949,13 @@ msgctxt ""
msgid "<emph>Accuracy</emph>: specifies the decimal accuracy. Default = 2 decimal digits"
msgstr ""
#. CdDEE
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id931688391314834\n"
"help.text"
msgid "Set myCurrencyField = oDlg.CreateCurrencyField(\"CurrencyField1\", Array(20, 20, 60, 15), SpinButton := True)"
msgstr ""
#. JYQZW
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id41688391319204\n"
"help.text"
msgid "myCurrencyField = dlg.CreateCurrencyField('CurrencyField1', (20, 20, 60, 15), SpinButton = True)"
msgstr ""
#. TP42B
#. WEbJY
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id199598185776500\n"
"help.text"
msgid "Create a new control of type DateField in the current dialog."
msgid "Create a new control of type <literal>DateField</literal> in the current dialog."
msgstr ""
#. WJDCR
@@ -11994,13 +11967,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
msgstr ""
#. TeyCg
#. LiKFk
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id521688133422980\n"
"help.text"
msgid "<emph>DropDown</emph>: when True (default = False), a dropdown button is shown"
msgid "<emph>DropDown</emph>: when <literal>True</literal> (default = <literal>False</literal>), a dropdown button is shown"
msgstr ""
#. cpD54
@@ -12012,40 +11985,22 @@ msgctxt ""
msgid "<emph>MinDate</emph>: the smallest date that can be entered in the control. Default = 1900-01-01"
msgstr ""
#. E4APT
#. wEzbr
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id221688133424380\n"
"help.text"
msgid "<emph>MaxDate</emph>: the largest Date that can be entered in the control. Default = 2200-12-31"
msgid "<emph>MaxDate</emph>: the largest date that can be entered in the control. Default = 2200-12-31"
msgstr ""
#. Ddvtg
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id431688391456485\n"
"help.text"
msgid "Set myDateField = oDlg.CreateDateField(\"DateField1\", Array(20, 20, 60, 15), Dropdown := True)"
msgstr ""
#. yD5iD
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id491688391462954\n"
"help.text"
msgid "myDateField = dlg.CreateDateField('DateField1', (20, 20, 60, 15), Dropdown = True)"
msgstr ""
#. uJLUS
#. xP5vF
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id199591885776511\n"
"help.text"
msgid "Create a new control of type FileControl in the current dialog."
msgid "Create a new control of type <literal>FileControl</literal> in the current dialog."
msgstr ""
#. Z8TBR
@@ -12057,31 +12012,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
msgstr ""
#. i7pDw
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id741688391752376\n"
"help.text"
msgid "Set myFileControl = oDlg.CreateFileControl(\"FileControl1\", Array(20, 20, 60, 15))"
msgstr ""
#. GFDZP
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id181688391760784\n"
"help.text"
msgid "myFileControl = dlg.CreateFileControl('FileControl1', (20, 20, 60, 15))"
msgstr ""
#. uDBpj
#. GB9hB
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id199195885776500\n"
"help.text"
msgid "Create a new control of type FixedLine in the current dialog."
msgid "Create a new control of type <literal>FixedLine</literal> in the current dialog."
msgstr ""
#. FstFf
@@ -12093,31 +12030,13 @@ msgctxt ""
msgid "<emph>Orientation</emph>: \"H[orizontal]\" or \"V[ertical]\"."
msgstr ""
#. FrBtJ
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id301688392274784\n"
"help.text"
msgid "Set myFixedLine = oDlg.CreateFixedLine(\"FixedLine1\", Array(20, 20, 60, 15), Orientation := \"vertical\")"
msgstr ""
#. 2kKJa
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id491688392278136\n"
"help.text"
msgid "myFixedLine = dlg.CreateFixedLine('FixedLine1', (20, 20, 60, 15), Orientation = 'vertical')"
msgstr ""
#. SdNPZ
#. fQ7cw
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id199721885776533\n"
"help.text"
msgid "Create a new control of type FixedText in the current dialog."
msgid "Create a new control of type <literal>FixedText</literal> in the current dialog."
msgstr ""
#. qWysV
@@ -12129,13 +12048,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"NONE\" (default) or \"FLAT\" or \"3D\""
msgstr ""
#. vzdDb
#. dG4NW
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id311688134819532\n"
"help.text"
msgid "<emph>Multiline</emph>: When True (default = False), the caption may be displayed on more than one line"
msgid "<emph>Multiline</emph>: When <literal>True</literal> (default = <literal>False</literal>), the caption may be displayed on more than one line"
msgstr ""
#. 24XQ9
@@ -12156,31 +12075,13 @@ msgctxt ""
msgid "<emph>VerticalAlign</emph>: vertical alignment, \"TOP\" (default) or \"MIDDLE\" or \"BOTTOM\""
msgstr ""
#. byaD6
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id521688392367919\n"
"help.text"
msgid "Set myFixedText = oDlg.CreateFixedText(\"FixedText1\", Array(20, 20, 60, 15), MultiLine := True)"
msgstr ""
#. CDXiP
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id971688392372871\n"
"help.text"
msgid "myFixedText = dlg.CreateFixedText('FixedText1', (20, 20, 60, 15), MultiLine = True)"
msgstr ""
#. uwXZE
#. BFyLA
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id199591885776500\n"
"help.text"
msgid "Create a new control of type FormattedField in the current dialog."
msgid "Create a new control of type <literal>FormattedField</literal> in the current dialog."
msgstr ""
#. Egi57
@@ -12192,13 +12093,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
msgstr ""
#. fBb4e
#. yEPP4
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id691688135184764\n"
"help.text"
msgid "<emph>SpinButton</emph>: when True (default = False), a spin button is present"
msgid "<emph>SpinButton</emph>: when <literal>True</literal> (default = <literal>False</literal>), a spin button is present"
msgstr ""
#. gGMo2
@@ -12219,58 +12120,22 @@ msgctxt ""
msgid "<emph>MaxValue</emph>: the largest value that can be entered in the control. Default = +1000000"
msgstr ""
#. YpxN5
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id211688392640319\n"
"help.text"
msgid "Set myFormattedField = oDlg.CreateFormattedField(\"FormattedField1\", Array(20, 20, 60, 15), SpinButton := True)"
msgstr ""
#. 5h4ou
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id481688392650918\n"
"help.text"
msgid "myFormattedField = dlg.CreateFormattedField('FormattedField1', (20, 20, 60, 15), SpinButton = True)"
msgstr ""
#. i7sEM
#. fnPFv
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id100691885776500\n"
"help.text"
msgid "Create a new control of type GroupBox in the current dialog."
msgid "Create a new control of type <literal>GroupBox</literal> in the current dialog."
msgstr ""
#. 3LLk5
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id1001688392702670\n"
"help.text"
msgid "Set myGroupBox = oDlg.CreateGroupBox(\"GroupBox1\", Array(20, 20, 60, 15))"
msgstr ""
#. Hjrdi
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id941688392712142\n"
"help.text"
msgid "myGroupBox = dlg.CreateGroupBox('GroupBox1', (20, 20, 60, 15))"
msgstr ""
#. eCPow
#. mSbuC
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id101701885776500\n"
"help.text"
msgid "Create a new control of type Hyperlink in the current dialog."
msgid "Create a new control of type <literal>Hyperlink</literal> in the current dialog."
msgstr ""
#. ZLjCH
@@ -12282,13 +12147,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"NONE\" (default) or \"FLAT\" or \"3D\""
msgstr ""
#. jKDEF
#. kibrW
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id241688542076988\n"
"help.text"
msgid "<emph>MultiLine</emph>: When True (default = False), the caption may be displayed on more than one line"
msgid "<emph>MultiLine</emph>: When <literal>True</literal> (default = <literal>False</literal>), the caption may be displayed on more than one line"
msgstr ""
#. oBCY5
@@ -12309,31 +12174,13 @@ msgctxt ""
msgid "<emph>VerticalAlign</emph>: vertical alignment, \"TOP\" (default) or \"MIDDLE\" or \"BOTTOM\""
msgstr ""
#. jGgKr
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id1012788392702670\n"
"help.text"
msgid "Set myHyperlink = oDlg.CreateHyperlink(\"Hyperlink1\", Array(20, 20, 60, 15), MultiLine := True)"
msgstr ""
#. b29ot
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id941688470312142\n"
"help.text"
msgid "myHyperlink = dlg.CreateHyperlink('Hyperlink1', (20, 20, 60, 15), MultiLine = True)"
msgstr ""
#. GVE4D
#. RSnLh
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id199591885776504\n"
"help.text"
msgid "Create a new control of type ImageControl in the current dialog."
msgid "Create a new control of type <literal>ImageControl</literal> in the current dialog."
msgstr ""
#. oYoCP
@@ -12354,31 +12201,13 @@ msgctxt ""
msgid "<emph>Scale</emph>: One of next values: \"FITTOSIZE\" (default), \"KEEPRATIO\" or \"NO\""
msgstr ""
#. JHzUz
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id911688392874655\n"
"help.text"
msgid "Set myImageControl = oDlg.CreateImageControl(\"ImageControl1\", Array(20, 20, 60, 15))"
msgstr ""
#. Ayx3d
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id271688392883751\n"
"help.text"
msgid "myImageControl = dlg.CreateImageControl('ImageControl1\", (20, 20, 60, 15))"
msgstr ""
#. fXxUk
#. qBHYH
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id199591885776506\n"
"help.text"
msgid "Create a new control of type ListBox in the current dialog."
msgid "Create a new control of type <literal>ListBox</literal> in the current dialog."
msgstr ""
#. EJiPj
@@ -12390,13 +12219,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
msgstr ""
#. PZ4LB
#. FQ6Eh
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id11688135550412\n"
"help.text"
msgid "<emph>DropDown</emph>: When True (default), a drop down button is displayed"
msgid "<emph>DropDown</emph>: When <literal>True</literal> (default), a drop down button is displayed"
msgstr ""
#. GJVah
@@ -12408,40 +12237,22 @@ msgctxt ""
msgid "<emph>LineCount</emph>: Specifies the maximum line count displayed in the drop down (default = 5)"
msgstr ""
#. HPNpE
#. C3VzG
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id661688135552802\n"
"help.text"
msgid "<emph>MultiSelect</emph>: When True, more than 1 entry may be selected. Default = False"
msgid "<emph>MultiSelect</emph>: When <literal>True</literal>, more than 1 entry may be selected. Default = <literal>False</literal>"
msgstr ""
#. 8iFoG
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id771688392940502\n"
"help.text"
msgid "Set myListBox = oDlg.CreateListBox(\"ListBox1\", Array(20, 20, 60, 15), Dropdown := True, MultiSelect := True)"
msgstr ""
#. Me33n
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id921688392950230\n"
"help.text"
msgid "myListBox = dlg.CreateListBox('ListBox1', (20, 20, 60, 15), Dropdown = True, MultiSelect = True)"
msgstr ""
#. Zowb3
#. 2td5s
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id199591885776510\n"
"help.text"
msgid "Create a new control of type NumericField in the current dialog."
msgid "Create a new control of type <literal>NumericField</literal> in the current dialog."
msgstr ""
#. zzVVQ
@@ -12453,13 +12264,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
msgstr ""
#. uZyEN
#. TMyYy
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id781688135886499\n"
"help.text"
msgid "<emph>SpinButton</emph>: when True (default = False), a spin button is present"
msgid "<emph>SpinButton</emph>: when <literal>True</literal> (default = <literal>False</literal>), a spin button is present"
msgstr ""
#. XbJfV
@@ -12498,31 +12309,13 @@ msgctxt ""
msgid "<emph>Accuracy</emph>: specifies the decimal accuracy. Default = 2 decimal digits"
msgstr ""
#. KpDyW
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id1001688393400045\n"
"help.text"
msgid "Set myNumericField = oDlg.CreateNumericField(\"NumericField1\", Array(20, 20, 60, 15), SpinButton := True)"
msgstr ""
#. AATC9
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id951688393408429\n"
"help.text"
msgid "myNumericField = dlg.CreateNumericField('NumericField1', (20, 20, 60, 15), SpinButton = True)"
msgstr ""
#. Movj2
#. XDRog
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id200591996776500\n"
"help.text"
msgid "Create a new control of type PatternField in the current dialog."
msgid "Create a new control of type <literal>PatternField</literal> in the current dialog."
msgstr ""
#. hHGWt
@@ -12552,31 +12345,13 @@ msgctxt ""
msgid "<emph>LiteralMask</emph>: contains the initial values that are displayed in the pattern field"
msgstr ""
#. gFGyA
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id1001688393462780\n"
"help.text"
msgid "Set myPatternField = oDlg.CreatePatternField(\"PatternField1\", Array(20, 20, 60, 15), EditMask := \"NNLNNLLLLL\", LiteralMask := \"__.__.2002\")"
msgstr ""
#. VVGBT
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id231688393481925\n"
"help.text"
msgid "myPatternField = dlg.CreatePatternField('PatternField1', (20, 20, 60, 15), EditMask = 'NNLNNLLLLL', LiteralMask = '__.__.2002')"
msgstr ""
#. APQmw
#. amC4c
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id311591885776500\n"
"help.text"
msgid "Create a new control of type ProgressBar in the current dialog."
msgid "Create a new control of type <literal>ProgressBar</literal> in the current dialog."
msgstr ""
#. 4BBzC
@@ -12606,40 +12381,22 @@ msgctxt ""
msgid "<emph>MaxValue</emph>: the largest value that can be entered in the control. Default = 100"
msgstr ""
#. vUT2B
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id361688393568688\n"
"help.text"
msgid "Set myProgressBar = oDlg.CreateProgressBar(\"ProgressBar1\", Array(20, 20, 60, 15), MaxValue := 1000)"
msgstr ""
#. i82Pi
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id971688393576061\n"
"help.text"
msgid "myProgressBar = dlg.CreateProgressBar('ProgressBar1', (20, 20, 60, 15), MaxValue = 1000)"
msgstr ""
#. X8cwi
#. orPfn
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id200502985776500\n"
"help.text"
msgid "Create a new control of type RadioButton in the current dialog."
msgid "Create a new control of type <literal>RadioButton</literal> in the current dialog."
msgstr ""
#. G7VYd
#. NFUPV
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id211688136829297\n"
"help.text"
msgid "<emph>MultiLine</emph>: When True (default = False), the caption may be displayed on more than one line"
msgid "<emph>MultiLine</emph>: When <literal>True</literal> (default = <literal>False</literal>), the caption may be displayed on more than one line"
msgstr ""
#. uXqbU
@@ -12660,13 +12417,13 @@ msgctxt ""
msgid "myRadioButton = dlg.CreateRadioButton('RadioButton1', (20, 20, 60, 15), MultiLine = True)"
msgstr ""
#. sJGgM
#. FXgot
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id200591886886500\n"
"help.text"
msgid "Create a new control of type ScrollBar in the current dialog."
msgid "Create a new control of type <literal>ScrollBar</literal> in the current dialog."
msgstr ""
#. eqt7D
@@ -12705,31 +12462,13 @@ msgctxt ""
msgid "<emph>MaxValue</emph>: the largest value that can be entered in the control. Default = 100"
msgstr ""
#. qRFL3
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id881688393719078\n"
"help.text"
msgid "Set myScrollBar = oDlg.CreateScrollBar(\"ScrollBar1\", Array(20, 20, 60, 15), MaxValue := 1000)"
msgstr ""
#. oEcHD
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id551688393726542\n"
"help.text"
msgid "myScrollBar = dialog.CreateScrollBar('ScrollBar1', (20, 20, 60, 15), MaxValue = 1000)"
msgstr ""
#. WMACC
#. PfwHb
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id200502985776722\n"
"help.text"
msgid "Create a new control of type TableControl in the current dialog."
msgid "Create a new control of type <literal>TableControl</literal> in the current dialog."
msgstr ""
#. iFFvS
@@ -12741,22 +12480,22 @@ msgctxt ""
msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
msgstr ""
#. aR6Ak
#. gjYXC
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id351688393983486\n"
"help.text"
msgid "<emph>RowHeaders</emph>: when True (default), the row Headers are shown"
msgid "<emph>RowHeaders</emph>: when <literal>True</literal> (default), the row Headers are shown"
msgstr ""
#. 4ti6y
#. mB59k
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id941688393983846\n"
"help.text"
msgid "<emph>ColumnHeaders</emph>: when True (default), the column Headers are shown"
msgid "<emph>ColumnHeaders</emph>: when <literal>True</literal> (default), the column Headers are shown"
msgstr ""
#. 7CcWA
@@ -12768,40 +12507,22 @@ msgctxt ""
msgid "<emph>ScrollBars</emph>: H[orizontal] or V[ertical] or B[oth] or N[one] (default). Scrollbars appear dynamically when they are needed."
msgstr ""
#. WzrfY
#. SjB3M
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id741688393984702\n"
"help.text"
msgid "<emph>GridLines</emph>: when True (default = False) horizontal and vertical lines are painted between the grid cells"
msgid "<emph>GridLines</emph>: when <literal>True</literal> (default = <literal>False</literal>) horizontal and vertical lines are painted between the grid cells"
msgstr ""
#. HFGE2
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id901688393903227\n"
"help.text"
msgid "Set myTableControl = oDlg.CreateTableControl(\"TableControl1\", Array(20, 20, 60, 15), ScrollBars := \"B\")"
msgstr ""
#. uQgSs
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id201688393912277\n"
"help.text"
msgid "myTableControl = dlg.CreateTableControl('TableControl1', (20, 20, 60, 15), ScrollBars = 'B')"
msgstr ""
#. rWc7n
#. Afff6
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id200591895776500\n"
"help.text"
msgid "Create a new control of type TextField in the current dialog."
msgid "Create a new control of type <literal>TextField</literal> in the current dialog."
msgstr ""
#. VeTxt
@@ -12813,13 +12534,13 @@ msgctxt ""
msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
msgstr ""
#. BiVFx
#. g2ZgE
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id341688394635645\n"
"help.text"
msgid "<emph>MultiLine</emph>: When True (default = False), the caption may be displayed on more than one line"
msgid "<emph>MultiLine</emph>: When <literal>True</literal> (default = <literal>False</literal>), the caption may be displayed on more than one line"
msgstr ""
#. BVC62
@@ -12840,31 +12561,13 @@ msgctxt ""
msgid "<emph>PasswordCharacter</emph>: a single character specifying the echo for a password text field (default = \"\")"
msgstr ""
#. o5AYA
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id171688394748227\n"
"help.text"
msgid "Set myTextField = oDlg.CreateTextField(\"TextField1\", Array(20, 20, 120, 50), MultiLine := True)"
msgstr ""
#. bdP85
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id651688394757252\n"
"help.text"
msgid "myTextField = dlg.CreateTextField('TextField1', (20, 20, 120, 50), MultiLine = True)"
msgstr ""
#. QdBXd
#. eFECE
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id200591895776611\n"
"help.text"
msgid "Create a new control of type TimeField in the current dialog."
msgid "Create a new control of type <literal>TimeField</literal> in the current dialog."
msgstr ""
#. ADdEz
@@ -12894,31 +12597,13 @@ msgctxt ""
msgid "<emph>MaxTime</emph>: the largest time that can be entered in the control. Default = 24h"
msgstr ""
#. YYn8U
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bas_id341688394893210\n"
"help.text"
msgid "Set myTimeField = oDlg.CreateTimeField(\"TimeField1\", Array(20, 20, 60, 15))"
msgstr ""
#. esoAA
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"pyc_id31688394900314\n"
"help.text"
msgid "myTimeField = dlog.CreateTimeField('TimeField1', (20, 20, 60, 15))"
msgstr ""
#. Dm3pE
#. CcyYS
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id200692885776500\n"
"help.text"
msgid "Create a new control of type TreeControl in the current dialog."
msgid "Create a new control of type <literal>TreeControl</literal> in the current dialog."
msgstr ""
#. KBrUN