Added Italian locale

This commit is contained in:
Boris du Reau 2012-01-17 22:16:58 +00:00
parent 8e6a59e6ad
commit 4ac94847db

View File

@ -36,7 +36,7 @@ public class SwingPreferences extends net.sf.openrocket.startup.Preferences {
private static final List<Locale> SUPPORTED_LOCALES;
static {
List<Locale> list = new ArrayList<Locale>();
for (String lang : new String[] { "en", "de", "es", "fr" }) {
for (String lang : new String[] { "en", "de", "es", "fr","it" }) {
list.add(new Locale(lang));
}
SUPPORTED_LOCALES = Collections.unmodifiableList(list);