diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-07-22 20:23:59 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-07-22 20:27:24 -0400 |
commit | e8257580c63244c784b57ee917919f9ea23c40ec (patch) | |
tree | e54400ff3c0370d17a46fc911b2a988057b9117a | |
parent | 9a84e9eb34b03d74d6062a0c2227a3c4d5d6cb20 (diff) | |
download | rockbox-e8257580c6.tar.gz rockbox-e8257580c6.zip |
voices: Add Korean (using espeak-ng) to the nightly voice build set
Change-Id: I8dd3db1fa571353e8a3c06fb6db0d8205530bfd5
-rw-r--r-- | apps/lang/korean.lang | 8 | ||||
-rw-r--r-- | tools/builds.pm | 11 |
2 files changed, 15 insertions, 4 deletions
diff --git a/apps/lang/korean.lang b/apps/lang/korean.lang index bfdf4849f2..35ba2e1e67 100644 --- a/apps/lang/korean.lang +++ b/apps/lang/korean.lang @@ -5979,15 +5979,15 @@ </source> <dest> *: none - hibylinux: "USB:" - multivolume: "HD1:" + hibylinux: "~USB:" + multivolume: "~HD1:" sansac200*,sansaclipplus,sansae200*,sansafuze*: "마이크로SD:" xduoox3: "마이크로SD2:" </dest> <voice> *: none - hibylinux: "U S B" - multivolume: "H D 1" + hibylinux: "~U S B" + multivolume: "~H D 1" sansac200*,sansaclipplus,sansae200*,sansafuze*: "마이크로 S D" xduoox3: "마이크로 S D 2" </voice> diff --git a/tools/builds.pm b/tools/builds.pm index a2abe2a9b3..de016bbb04 100644 --- a/tools/builds.pm +++ b/tools/builds.pm @@ -740,6 +740,17 @@ sub simbuilds { }, 'enabled' => 1, }, + 'korean' => { # + 'lang' => 'korean', + 'name' => '한국어 (Korean)', + 'short' => 'ko_KR', + 'defengine' => 'espeak', + 'engines' => { + 'espeak' => '-vko', + 'gtts' => '-l ko', + }, + 'enabled' => 1, + }, 'nederlands' => { 'lang' => 'nederlands', 'name' => 'Nederlands (Dutch)', |