i18n: Add Chinese language to enum and modify pom.xml to use English userguide

This commit is contained in:
Manuel Rego Casasnovas 2013-03-12 09:54:37 +01:00
parent d7b9d0c5aa
commit 113f3455fe
2 changed files with 5 additions and 1 deletions

View file

@ -45,7 +45,8 @@ public enum Language {
POLISH_LANGUAGE("Polski", new Locale("pl")), POLISH_LANGUAGE("Polski", new Locale("pl")),
CZECH_LANGUAGE("Čeština", new Locale("cs")), CZECH_LANGUAGE("Čeština", new Locale("cs")),
GERMAN_LANGUAGE("Deutsch", new Locale("de")), GERMAN_LANGUAGE("Deutsch", new Locale("de")),
CATALAN_LANGUAGE("Català", new Locale("ca")); CATALAN_LANGUAGE("Català", new Locale("ca")),
CHINESE_LANGUAGE("中文", new Locale("zh"));
private final String displayName; private final String displayName;

View file

@ -143,6 +143,9 @@
<copy todir="src/main/webapp/help/ca" failonerror="false"> <copy todir="src/main/webapp/help/ca" failonerror="false">
<fileset dir="../doc/src/user/es/html"/> <fileset dir="../doc/src/user/es/html"/>
</copy> </copy>
<copy todir="src/main/webapp/help/zh" failonerror="false">
<fileset dir="../doc/src/user/en/html"/>
</copy>
</tasks> </tasks>
</configuration> </configuration>
</execution> </execution>