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

This commit is contained in:
Manuel Rego Casasnovas 2012-05-22 23:15:01 +02:00
parent 2fbc11e1b5
commit 73ae28b5b8
2 changed files with 5 additions and 1 deletions

View file

@ -42,7 +42,8 @@ public enum Language {
ITALIAN_LANGUAGE("Italiano", new Locale("it")),
FRENCH_LANGUAGE("Français", new Locale("fr")),
DUTCH_LANGUAGE("Nederlands", new Locale("nl")),
POLISH_LANGUAGE("Polski", new Locale("pl"));
POLISH_LANGUAGE("Polski", new Locale("pl")),
CZECH_LANGUAGE("Čeština", new Locale("cs"));
private final String displayName;

View file

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