i18n: Add French language to enum and modify pom.xml to use English userguide
This commit is contained in:
parent
339e800f13
commit
2099743665
2 changed files with 5 additions and 1 deletions
|
|
@ -37,7 +37,8 @@ public enum Language {
|
|||
ENGLISH_LANGUAGE(_("English"), Locale.ENGLISH),
|
||||
RUSSIAN_LANGUAGE(_("Russian"), new Locale("ru")),
|
||||
PORTUGUESE_LANGUAGE(_("Portuguese"), new Locale("pt")),
|
||||
ITALIAN_LANGUAGE(_("Italian"), new Locale("it"));
|
||||
ITALIAN_LANGUAGE(_("Italian"), new Locale("it")),
|
||||
FRENCH_LANGUAGE(_("French"), new Locale("fr"));
|
||||
|
||||
private final String displayName;
|
||||
|
||||
|
|
|
|||
|
|
@ -120,6 +120,9 @@
|
|||
<copy todir="src/main/webapp/help/it" failonerror="false">
|
||||
<fileset dir="../doc/src/user/en/html"/>
|
||||
</copy>
|
||||
<copy todir="src/main/webapp/help/fr" failonerror="false">
|
||||
<fileset dir="../doc/src/user/en/html"/>
|
||||
</copy>
|
||||
</tasks>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue