i18n: Add Dutch language to enum and modify pom.xml to use English userguide
This commit is contained in:
parent
dfa099aacf
commit
115b572f6b
2 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue