Added pl locale and credit

This commit is contained in:
Boris du Reau 2012-06-27 20:18:47 +00:00
parent bc0897e30b
commit f47a7b5b16
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ public class AboutDialog extends JDialog {
"Sky Dart Team (Russian)<br>" + "Sky Dart Team (Russian)<br>" +
"Mauro Biasutti (Italian)<br><br>" + "Mauro Biasutti (Italian)<br><br>" +
"Vladimir Beran (Czech)<br><br>" + "Vladimir Beran (Czech)<br><br>" +
"Polish Rocketry Society / Łukasz & Alex kazanski (Polish)<br><br>" +
"<b>OpenRocket utilizes the following libraries:</b><br><br>" + "<b>OpenRocket utilizes the following libraries:</b><br><br>" +
"MiG Layout (http://www.miglayout.com/)<br>" + "MiG Layout (http://www.miglayout.com/)<br>" +
"JFreeChart (http://www.jfree.org/jfreechart/)<br>" + "JFreeChart (http://www.jfree.org/jfreechart/)<br>" +

View File

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