summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorAdolfo Jayme Barrientos <fitojb@ubuntu.com>2019-02-12 02:05:15 -0600
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2019-02-12 02:05:15 -0600
commit1002c14fea296c23e997dfef17c2247eeba19a70 (patch)
treed7896c17fc5a1137ae790c2db81d224fdaa01974 /source
parentdfc93df5d71958d100a3fb332e40863c3d4863c5 (diff)
Remove Britishism
That’s what we have the en-GB localization for. Change-Id: I43cf1231fbc82e7467562f4fe16cfba44db83553
Diffstat (limited to 'source')
-rw-r--r--source/text/sbasic/python/python_screen.xhp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/text/sbasic/python/python_screen.xhp b/source/text/sbasic/python/python_screen.xhp
index a3d8077ee7..33f37f2a08 100644
--- a/source/text/sbasic/python/python_screen.xhp
+++ b/source/text/sbasic/python/python_screen.xhp
@@ -52,19 +52,19 @@
<paragraph role="pycode" localize="false" id="N0455">from __future__ import unicode_literals</paragraph>
<paragraph role="pycode" localize="false" id="N0456"></paragraph>
<paragraph role="pycode" localize="false" id="N0466">def MsgBox(prompt: str, buttons=0, title=&apos;LibreOffice&apos;) -&gt; int:</paragraph>
- <paragraph role="pycode" id="N0467"> &quot;&quot;&quot; Displays a dialogue box containing a message and returns a value.&quot;&quot;&quot;</paragraph>
+ <paragraph role="pycode" id="N0467"> &quot;&quot;&quot; Displays a dialog box containing a message and returns a value.&quot;&quot;&quot;</paragraph>
<paragraph role="pycode" localize="false" id="N0468"> xScript = _getScript(&quot;_MsgBox&quot;)</paragraph>
<paragraph role="pycode" localize="false" id="N0469"> res = xScript.invoke((prompt,buttons,title), (), ())</paragraph>
<paragraph role="pycode" localize="false" id="N0470"> return res[0]</paragraph>
<paragraph role="pycode" localize="false" id="N0471"></paragraph>
<paragraph role="pycode" localize="false" id="N0472">def InputBox(prompt: str, title=&apos;LibreOffice&apos;, defaultValue=&apos;&apos;) -&gt; str:</paragraph>
- <paragraph role="pycode" id="N0473"> &quot;&quot;&quot; Displays a prompt in a dialogue box at which the user can enter text.&quot;&quot;&quot;</paragraph>
+ <paragraph role="pycode" id="N0473"> &quot;&quot;&quot; Displays a prompt in a dialog box at which the user can enter text.&quot;&quot;&quot;</paragraph>
<paragraph role="pycode" localize="false" id="N0474"> xScript = _getScript(&quot;_InputBox&quot;)</paragraph>
<paragraph role="pycode" localize="false" id="N0475"> res = xScript.invoke((prompt,title,defaultValue), (), ())</paragraph>
<paragraph role="pycode" localize="false" id="N0476"> return res[0]</paragraph>
<paragraph role="pycode" localize="false" id="N0477"></paragraph>
<paragraph role="pycode" localize="false" id="N0478">def Print(message: str):</paragraph>
- <paragraph role="pycode" id="N0479"> &quot;&quot;&quot;Outputs the specified strings or numeric expressions in a dialogue box.&quot;&quot;&quot;</paragraph>
+ <paragraph role="pycode" id="N0479"> &quot;&quot;&quot;Outputs the specified strings or numeric expressions in a dialog box.&quot;&quot;&quot;</paragraph>
<paragraph role="pycode" localize="false" id="N0480"> xScript = _getScript(&quot;_Print&quot;)</paragraph>
<paragraph role="pycode" localize="false" id="N0481"> xScript.invoke((message,), (), ())</paragraph>
<paragraph role="pycode" localize="false" id="N0482"></paragraph>