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
This commit is contained in:
Nils Wallménius 2008-04-28 18:12:14 +00:00
parent ef1ce4336f
commit e3c61884c5

View file

@ -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;
}
}
}