From 1002c14fea296c23e997dfef17c2247eeba19a70 Mon Sep 17 00:00:00 2001 From: Adolfo Jayme Barrientos Date: Tue, 12 Feb 2019 02:05:15 -0600 Subject: [PATCH] Remove Britishism MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit That’s what we have the en-GB localization for. Change-Id: I43cf1231fbc82e7467562f4fe16cfba44db83553 --- source/text/sbasic/python/python_screen.xhp | 6 +++--- 1 file 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 @@ from __future__ import unicode_literals def MsgBox(prompt: str, buttons=0, title='LibreOffice') -> int: - """ Displays a dialogue box containing a message and returns a value.""" + """ Displays a dialog box containing a message and returns a value.""" xScript = _getScript("_MsgBox") res = xScript.invoke((prompt,buttons,title), (), ()) return res[0] def InputBox(prompt: str, title='LibreOffice', defaultValue='') -> str: - """ Displays a prompt in a dialogue box at which the user can enter text.""" + """ Displays a prompt in a dialog box at which the user can enter text.""" xScript = _getScript("_InputBox") res = xScript.invoke((prompt,title,defaultValue), (), ()) return res[0] def Print(message: str): - """Outputs the specified strings or numeric expressions in a dialogue box.""" + """Outputs the specified strings or numeric expressions in a dialog box.""" xScript = _getScript("_Print") xScript.invoke((message,), (), ())