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

This commit is contained in:
Jeroen Baten 2015-04-01 15:23:08 +02:00
parent ff5f31e110
commit c764b09575
2 changed files with 5 additions and 1 deletions

View file

@ -46,7 +46,8 @@ public enum Language {
CZECH_LANGUAGE("Čeština", new Locale("cs")),
GERMAN_LANGUAGE("Deutsch", new Locale("de")),
CATALAN_LANGUAGE("Català", new Locale("ca")),
CHINESE_LANGUAGE("中文", new Locale("zh"));
CHINESE_LANGUAGE("中文", new Locale("zh")),
NORWEGIAN_LANGUAGE("Norwegian Bokmål", new Locale("nb"));
private final String displayName;

View file

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