diff options
author | Kuang-che Wu <kcwu@csie.org> | 2014-12-06 16:10:58 +0800 |
---|---|---|
committer | Kuang-che Wu <kcwu@csie.org> | 2014-12-06 16:25:48 +0800 |
commit | 3db6c993788f55a047a4bde3d90c181d377f32b7 (patch) | |
tree | fa6425900f54dfde0e29a687a0a63a858534d4f5 /sources | |
parent | f9994a2346cab060274946a82c444d087f67b523 (diff) | |
download | taginfo-3db6c993788f55a047a4bde3d90c181d377f32b7.tar taginfo-3db6c993788f55a047a4bde3d90c181d377f32b7.tar.gz |
Fix translation of language name for zh-hans and zh-hant
Diffstat (limited to 'sources')
-rw-r--r-- | sources/master/languages.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/master/languages.sql b/sources/master/languages.sql index 56fc897..b66dce5 100644 --- a/sources/master/languages.sql +++ b/sources/master/languages.sql @@ -57,7 +57,7 @@ INSERT INTO languages (code, iso639_1, english_name, native_name) VALUES ('tr', INSERT INTO languages (code, iso639_1, english_name, native_name) VALUES ('uk', 'uk', 'Ukrainian', 'Українська'); INSERT INTO languages (code, iso639_1, english_name, native_name) VALUES ('vi', 'vi', 'Vietnamese', 'Tiếng Việt'); INSERT INTO languages (code, iso639_1, english_name, native_name) VALUES ('zh', 'zh', 'Chinese', '中文'); -INSERT INTO languages (code, iso639_1, english_name, native_name) VALUES ('zh-hans', NULL, 'Simplified Chinese', '简体字'); -INSERT INTO languages (code, iso639_1, english_name, native_name) VALUES ('zh-hant', NULL, 'Traditional Chinese', '簡體字'); +INSERT INTO languages (code, iso639_1, english_name, native_name) VALUES ('zh-hans', NULL, 'Simplified Chinese', '简体中文'); +INSERT INTO languages (code, iso639_1, english_name, native_name) VALUES ('zh-hant', NULL, 'Traditional Chinese', '繁體中文'); -- INSERT INTO languages (code, iso639_1, english_name, native_name) VALUES ('', '', '', ''); |