Add Arabic translation contribution info

This commit is contained in:
SiboVG 2022-12-19 00:06:08 +01:00
parent eeb87bcf83
commit 593ea50a81
3 changed files with 3 additions and 1 deletions

View File

@ -69,3 +69,4 @@ OpenRocket needs help to become even better. Implementing features, writing docu
- Vladimir Beran
- Polish Rocketry Society / Łukasz & Alex Kazanski
- Sibo Van Gool
- Mohamed Amin Elkebsi

View File

@ -56,6 +56,7 @@ public class AboutDialog extends JDialog {
"Vladimir Beran (Czech)<br>" +
"Polish Rocketry Society / \u0141ukasz & Alex Kazanski (Polish)<br>" +
"Sibo Van Gool (Dutch)<br>" +
"Mohamed Amin Elkebsi (Arabic)<br>" +
"<br>" +
"See all contributors at <br>" + href("https://github.com/openrocket/openrocket/graphs/contributors", false, false) + "<br>" +
"<br>" +

View File

@ -43,7 +43,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", "nl", "ru", "cs", "pl", "ja", "pt", "tr" }) {
for (String lang : new String[] { "en", "ar", "de", "es", "fr", "it", "nl", "ru", "cs", "pl", "ja", "pt", "tr" }) {
list.add(new Locale(lang));
}
list.add(new Locale("zh", "CN"));