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