Add zh_CN builds

The api-quick-start has been translated for zh_CN, include it in builds.

Change-Id: If1740e128d95c8dec80ea489c7747b1d94e2edff
This commit is contained in:
Andreas Jaeger 2014-07-01 09:11:17 +02:00
parent 25ec402ec9
commit 9989ff28bc
1 changed files with 12 additions and 3 deletions

View File

@ -60,14 +60,19 @@ function test_fr {
test_api_quick_start 'fr'
}
function test_ja {
setup_lang 'ja'
test_api_quick_start 'ja'
}
function test_ko_KR {
setup_lang 'ko_KR'
test_api_quick_start 'ko_KR'
}
function test_ja {
setup_lang 'ja'
test_api_quick_start 'ja'
function test_zh_CN {
setup_lang 'zh_CN'
test_api_quick_start 'zh_CN'
}
function test_language () {
@ -79,6 +84,7 @@ function test_language () {
test_fr
test_ja
test_ko_KR
test_zh_CN
;;
de)
test_de
@ -95,6 +101,9 @@ function test_language () {
ko_KR)
test_ko_KR
;;
zh_CN)
test_zh_CN
;;
*)
BUILD_FAIL=1
echo "Language $language not handled"