Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2011-07-12 21:49:02 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2011-07-12 21:49:02 (GMT)
commit34d4e57200c7f3df79fc840cea3d0849af32f1c0 (patch)
treeb0c8db57165d4ef6a255e6ba1165bc9b20938f2d
parent76ea30bb252e1e433997f870d50ba7bf2daa433f (diff)
enabling english rp and english wmids for speak
-rw-r--r--speak/espeak_cmd.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/speak/espeak_cmd.py b/speak/espeak_cmd.py
index 682bfcd..511866c 100644
--- a/speak/espeak_cmd.py
+++ b/speak/espeak_cmd.py
@@ -1,3 +1,5 @@
+# Copyright (C) 2009, Aleksey Lim
+#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
@@ -55,8 +57,8 @@ def voices():
if not m:
continue
language, gender, name, stuff = m.groups()
- if stuff.startswith('mb/') or \
- name in ('en-rhotic','english_rp','english_wmids'):
+ if stuff.startswith('mb/'): #or \
+ #name in ('en-rhotic','english_rp','english_wmids'):
# these voices don't produce sound
continue
out.append((language, name))