Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2011-09-23 19:37:28 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2011-09-23 19:37:28 (GMT)
commitb7c2e4d33cee6757ef1f9a960a9fca65f242f5c9 (patch)
tree93c799141f09ad08d380003f876fd8309277b21e /activity.py
parent474fd83a4a2b7b0243b0017a792f02040e6be9dd (diff)
avoiding gettext warning
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/activity.py b/activity.py
index a225869..b0a578c 100644
--- a/activity.py
+++ b/activity.py
@@ -442,7 +442,7 @@ class SpeakActivity(SharedActivity):
if i[0].short_name == old_voice.short_name]
if not new_voice:
new_voice = brain.get_default_voice()
- sorry = _("Sorry, I can't speak %s, let's speak %s instead.") % \
+ sorry = _("Sorry, I can't %(speak)s, let's %(speak)s instead.") % \
(old_voice.friendlyname, new_voice.friendlyname)
else:
new_voice = new_voice[0]