diff options
author | Jonas Häggqvist <rasher@rasher.dk> | 2007-09-19 20:56:07 +0000 |
---|---|---|
committer | Jonas Häggqvist <rasher@rasher.dk> | 2007-09-19 20:56:07 +0000 |
commit | b9022cf0eb23054a70a9f4c66d13c1560867e148 (patch) | |
tree | 023bc9d64fb4e587c393f5dec4c71cb815343021 | |
parent | a783f44d449c4ee0684342ed1c23fee0f8275fb4 (diff) | |
download | rockbox-b9022cf0eb23054a70a9f4c66d13c1560867e148.tar.gz rockbox-b9022cf0eb23054a70a9f4c66d13c1560867e148.zip |
Attempt to fix pronounciation of "plugins" for all English languages. Hopefully this spells the end of ploogins.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14758 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-x | tools/voice.pl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/voice.pl b/tools/voice.pl index dae6456ed5..7d6f84ec4a 100755 --- a/tools/voice.pl +++ b/tools/voice.pl @@ -130,11 +130,7 @@ sub correct_string { $string =~ s/ID3/I D 3/g; case "english" { - switch($$tts_object{"name"}) { - case "sapi" { # just for SAPI - $string =~ s/plugin(s?)/plug-in$1/ig; - } - } + $string =~ s/plugin(s?)/plug-in$1/ig; } case "deutsch" { # for all german engines (e.g. for english words) |