Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/PascalTriangle.activity/pascaltriangle.py
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2013-08-19 18:24:33 (GMT)
committer Philip Withnall <philip@tecnocode.co.uk>2013-08-19 18:24:33 (GMT)
commitcc64775b91e7a9b9c05d82b5d3fada147999dd5f (patch)
treeb9c1d99f94954c2928092cc235b1037448e53b09 /PascalTriangle.activity/pascaltriangle.py
parent2e592001157279d9a60caa9c298f21c45adcbf2d (diff)
Remove use of Unicode in C-locale strings
Apparently the Sugar build chain doesn’t support it.
Diffstat (limited to 'PascalTriangle.activity/pascaltriangle.py')
-rwxr-xr-xPascalTriangle.activity/pascaltriangle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/PascalTriangle.activity/pascaltriangle.py b/PascalTriangle.activity/pascaltriangle.py
index 281dd91..9a70ee4 100755
--- a/PascalTriangle.activity/pascaltriangle.py
+++ b/PascalTriangle.activity/pascaltriangle.py
@@ -382,8 +382,8 @@ class PascalTriangleActivity(activity.Activity):
# Check whether all blank cells have been filled.
if len(self._blank_cells) == 0:
alert = Alert()
- alert.props.title = _('You’ve won!')
- alert.props.msg = _('Well done! You’ve completed the Pascal '
+ alert.props.title = _('You\'ve won!')
+ alert.props.msg = _('Well done! You\'ve completed the Pascal '
'Triangle. Do you want to play again?')
icon = Icon(icon_name = 'emblem-favorite')
alert.props.icon = icon