diff --git a/CHANGELOG.md b/CHANGELOG.md index f45472b48..cbcbc1a07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # 4.2.11 * Fix POL_SetupWindow_download clobbering $FILENAME +* Fix small typo in first use "send report" message # 4.2.10 diff --git a/python/mainwindow.py b/python/mainwindow.py index 800789336..f06df46cb 100755 --- a/python/mainwindow.py +++ b/python/mainwindow.py @@ -1249,7 +1249,7 @@ def systemCheck(self): if(os.environ["DEBIAN_PACKAGE"] == "FALSE"): if(playonlinux.GetSettings("SEND_REPORT") == ""): - if(wx.YES == wx.MessageBox(_('Do you want to help {0} to make a compatibility database?\n\nIf you click yes, the following things will be sent to us anonymously the first time you run a Windows program:\n\n- You graphic card model\n- Your OS version\n- If graphic drivers are installed or not.\n\n\nThese information will be very precious for us to help people.').format(os.environ["APPLICATION_TITLE"]).decode("utf-8","replace"), os.environ["APPLICATION_TITLE"],style=wx.YES_NO | wx.ICON_QUESTION)): + if(wx.YES == wx.MessageBox(_('Do you want to help {0} to make a compatibility database?\n\nIf you click yes, the following things will be sent to us anonymously the first time you run a Windows program:\n\n- Your graphic card model\n- Your OS version\n- If graphic drivers are installed or not.\n\n\nThese information will be very precious for us to help people.').format(os.environ["APPLICATION_TITLE"]).decode("utf-8","replace"), os.environ["APPLICATION_TITLE"],style=wx.YES_NO | wx.ICON_QUESTION)): playonlinux.SetSettings("SEND_REPORT","TRUE") else: playonlinux.SetSettings("SEND_REPORT","FALSE")