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

This commit is contained in:
Manuel Rego Casasnovas 2012-03-06 16:50:38 +01:00
parent dfa099aacf
commit 115b572f6b
2 changed files with 5 additions and 1 deletions

View file

@ -38,7 +38,8 @@ public enum Language {
RUSSIAN_LANGUAGE("Pусский", new Locale("ru")), RUSSIAN_LANGUAGE("Pусский", new Locale("ru")),
PORTUGUESE_LANGUAGE("Português", new Locale("pt")), PORTUGUESE_LANGUAGE("Português", new Locale("pt")),
ITALIAN_LANGUAGE("Italiano", new Locale("it")), ITALIAN_LANGUAGE("Italiano", new Locale("it")),
FRENCH_LANGUAGE("Français", new Locale("fr")); FRENCH_LANGUAGE("Français", new Locale("fr")),
DUTCH_LANGUAGE("Nederlands", new Locale("nl"));
private final String displayName; private final String displayName;

View file

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