Add a full stop after strings, since some voices use the existance of one to change intonation.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20184 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonas Häggqvist 2009-03-02 22:29:17 +00:00
parent 7389928d89
commit a6052d30af

View file

@ -140,6 +140,7 @@ sub correct_string {
} }
case "festival" { case "festival" {
$string =~ s/\ba\b/ay/ig; $string =~ s/\ba\b/ay/ig;
$string =~ s/$/./;
} }
} }
} }