Skip to content

Commit

Permalink
mod_translation: Add zh to languages list, add Shuyu Wang to translators
Browse files Browse the repository at this point in the history
Fixes zotonic#498
(cherry picked from commit 3c0d17d)
  • Loading branch information
Arjan Scherpenisse committed Jan 13, 2013
1 parent 86411a0 commit 4dd294f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions TRANSLATORS
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ pl - Piotr Meyer <aniou@smutek.pl>
pl / th / pt / ar / id - Ivette Mrova <schedule@online.nl>
ru - Konstantin Nikiforov <helllamer@gmail.com>
ga - Michael Connors <michael@bring42.net>
zh - Shuyu Wang aka andelf <andelf@gmail.com>
3 changes: 2 additions & 1 deletion modules/mod_translation/mod_translation.erl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ init(Context) ->
{de, [ {language, <<"Deutsch">>}, {is_enabled, true}]},
{nl, [ {language, <<"Nederlands">>}, {is_enabled, true}]},
{tr, [ {language, <<"Türkçe">>}, {is_enabled, true}]},
{pl, [ {language, <<"Polski">>}, {is_enabled, true}]}
{pl, [ {language, <<"Polski">>}, {is_enabled, true}]},
{zh, [ {language, <<"中文">>}, {is_enabled, false}]}
], Context);
_Exists ->
ok
Expand Down

0 comments on commit 4dd294f

Please sign in to comment.