diff --git a/build-langs.sh b/build-langs.sh index c74c029ea..251ee6ce2 100755 --- a/build-langs.sh +++ b/build-langs.sh @@ -19,6 +19,9 @@ merge_lang() { if [ "$filename" == "zh_Hant" ]; then filename="zh-tw" fi + if [ "$filename" == "zh_Hans" ]; then + filename="zh-cn" + fi output_file="$output_folder/release.$filename.json" if [ -f "$output_file" ]; then merged_json=$(jq -s 'reduce .[] as $item ({}; . * $item)' "$output_file" "$file")