18n: Add German language to enum and modify pom.xml to use English userguide
This commit is contained in:
parent
48cea9fa63
commit
1e3990aab2
2 changed files with 5 additions and 1 deletions
|
|
@ -43,7 +43,8 @@ public enum Language {
|
|||
FRENCH_LANGUAGE("Français", new Locale("fr")),
|
||||
DUTCH_LANGUAGE("Nederlands", new Locale("nl")),
|
||||
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"));
|
||||
|
||||
private final String displayName;
|
||||
|
||||
|
|
|
|||
|
|
@ -132,6 +132,9 @@
|
|||
<copy todir="src/main/webapp/help/cs" failonerror="false">
|
||||
<fileset dir="../doc/src/user/en/html"/>
|
||||
</copy>
|
||||
<copy todir="src/main/webapp/help/de" failonerror="false">
|
||||
<fileset dir="../doc/src/user/en/html"/>
|
||||
</copy>
|
||||
</tasks>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue