summaryrefslogtreecommitdiffstats
path: root/tools/builds.pm
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-11 11:21:26 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-11 17:22:06 +0000
commitb546d9d172bfca7f050e40244cd5d6f0fbd96c90 (patch)
tree0d1e647fca11ef031010ba3dc3ddecf236af089f /tools/builds.pm
parentaad57ea1cc59144475cc80538523121d97b293d4 (diff)
downloadrockbox-b546d9d172bfca7f050e40244cd5d6f0fbd96c90.tar.gz
rockbox-b546d9d172bfca7f050e40244cd5d6f0fbd96c90.zip
voice: More fixes, and add more languages
* Pass strings via stdin where possible * Add German, Italian, and Norweigan to the build list. (in other words, everything with >=95% coverage) Change-Id: I0154b178b15ddd0b79566c1cb62f76ade32824aa
Diffstat (limited to 'tools/builds.pm')
-rw-r--r--tools/builds.pm30
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/builds.pm b/tools/builds.pm
index a69300cd3f..776f807f9d 100644
--- a/tools/builds.pm
+++ b/tools/builds.pm
@@ -526,6 +526,16 @@ sub allbuilds {
'gtts' => '-l en-gb',
},
},
+ 'deutsch' => {
+ 'lang' => 'deutsch',
+ 'name' => 'Deutsch (German)',
+ 'short' => 'de',
+ 'defengine' => 'espeak',
+ 'engines' => {
+ 'espeak' => '-vde',
+ 'gtts' => '-l de',
+ },
+ },
# Everything else in alphabetical order
'english-us' => {
'lang' => 'english-us',
@@ -548,6 +558,26 @@ sub allbuilds {
'gtts' => '-l el',
},
},
+ 'italiano' => {
+ 'lang' => 'italiano',
+ 'name' => 'Italiano (Italian)',
+ 'short' => 'it',
+ 'defengine' => 'espeak',
+ 'engines' => {
+ 'espeak' => '-vit',
+ 'gtts' => '-l it',
+ },
+ },
+ 'norsk' => {
+ 'lang' => 'norsk',
+ 'name' => 'Norsk (Norwegian)',
+ 'short' => 'no',
+ 'defengine' => 'espeak',
+ 'engines' => {
+ 'espeak' => '-vno',
+ 'gtts' => '-l no',
+ },
+ },
'polski' => {
'lang' => 'polski',
'name' => 'Polski (Polish)',