Added Czech locale

This commit is contained in:
Boris du Reau 2012-04-20 06:41:11 +00:00
parent 263c10baad
commit b782641e23

View File

@ -38,7 +38,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", "it", "ru" }) {
for (String lang : new String[] { "en", "de", "es", "fr", "it", "ru","cs" }) {
list.add(new Locale(lang));
}
SUPPORTED_LOCALES = Collections.unmodifiableList(list);