i18n: Add Polish language to enum and modify pom.xml to use English userguide
This commit is contained in:
parent
353ef9a980
commit
6df0d070af
2 changed files with 7 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
* This file is part of LibrePlan
|
||||
*
|
||||
* Copyright (C) 2011 ComtecSF, S.L.
|
||||
* Copyright (C) 2012 Igalia, S.L.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
|
|
@ -28,6 +29,7 @@ import java.util.Locale;
|
|||
*
|
||||
* @author Cristina Alavarino Perez <cristina.alvarino@comtecsf.es>
|
||||
* @author Ignacio Diaz Teijido <ignacio.diaz@comtecsf.es>
|
||||
* @author Manuel Rego Casasnovas <rego@igalia.com>
|
||||
*/
|
||||
public enum Language {
|
||||
|
||||
|
|
@ -39,7 +41,8 @@ public enum Language {
|
|||
PORTUGUESE_LANGUAGE("Português", new Locale("pt")),
|
||||
ITALIAN_LANGUAGE("Italiano", new Locale("it")),
|
||||
FRENCH_LANGUAGE("Français", new Locale("fr")),
|
||||
DUTCH_LANGUAGE("Nederlands", new Locale("nl"));
|
||||
DUTCH_LANGUAGE("Nederlands", new Locale("nl")),
|
||||
POLISH_LANGUAGE("Polski", new Locale("pl"));
|
||||
|
||||
private final String displayName;
|
||||
|
||||
|
|
|
|||
|
|
@ -126,6 +126,9 @@
|
|||
<copy todir="src/main/webapp/help/nl" failonerror="false">
|
||||
<fileset dir="../doc/src/user/en/html"/>
|
||||
</copy>
|
||||
<copy todir="src/main/webapp/help/pl" failonerror="false">
|
||||
<fileset dir="../doc/src/user/en/html"/>
|
||||
</copy>
|
||||
</tasks>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue