Skip to content

Commit

Permalink
Fix small typo in first use "send report" message
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Etchemaite committed Jan 15, 2016
1 parent fa13d82 commit fb8e11f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions 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

Expand Down
2 changes: 1 addition & 1 deletion python/mainwindow.py
Expand Up @@ -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")
Expand Down

0 comments on commit fb8e11f

Please sign in to comment.