i18n: Add Catalan language to enum and modify pom.xml to use Spanish userguide

This commit is contained in:
Manuel Rego Casasnovas 2012-08-21 08:53:26 +02:00
parent 545f3b05e7
commit c3cb56dfc7
2 changed files with 5 additions and 1 deletions

View file

@ -44,7 +44,8 @@ public enum Language {
DUTCH_LANGUAGE("Nederlands", new Locale("nl")),
POLISH_LANGUAGE("Polski", new Locale("pl")),
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"));
private final String displayName;

View file

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