summaryrefslogtreecommitdiff
path: root/tools/voice.pl
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2008-04-28 18:12:14 +0000
committerNils Wallménius <nils@rockbox.org>2008-04-28 18:12:14 +0000
commite3c61884c59064ecdf5bed8bf941a413ccc8c6b1 (patch)
treea58797afbe4528c969629d3d2e4b8110ecc15261 /tools/voice.pl
parentef1ce4336f5838dce794312ca8e64535bb829c14 (diff)
Small tweak for festival to correct the spelling of 'A', fixes FS#8889
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17282 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/voice.pl')
-rwxr-xr-xtools/voice.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/voice.pl b/tools/voice.pl
index 6ffc565401..eb6bfc1bf6 100755
--- a/tools/voice.pl
+++ b/tools/voice.pl
@@ -132,7 +132,10 @@ sub correct_string {
case "english" {
switch($$tts_object{"name"}) {
case ["sapi","festival"] {
- $string =~ s/plugin(s?)/plug-in$1/ig;
+ $string =~ s/plugin(s?)/plug-in$1/ig; next
+ }
+ case "festival" {
+ $string =~ s/\ba\b/ay/ig;
}
}
}