Commit 693413d8 authored by Franco Fichtner's avatar Franco Fichtner

system: defaults on top

parent f11ef105
...@@ -36,12 +36,11 @@ function get_locale_list() ...@@ -36,12 +36,11 @@ function get_locale_list()
{ {
$locales = array(); $locales = array();
/* first one is the default */
$locales['en_US'] = _('English'); $locales['en_US'] = _('English');
//$locales['ja_JP'] = _('Japanese'); //$locales['ja_JP'] = _('Japanese');
$locales['zh_CN'] = _('Chinese (Simplified)'); $locales['zh_CN'] = _('Chinese (Simplified)');
asort($locales);
return $locales; return $locales;
} }
...@@ -49,10 +48,9 @@ function get_flavour_list() ...@@ -49,10 +48,9 @@ function get_flavour_list()
{ {
$flavours = array(); $flavours = array();
$flavours['libressl'] = 'LibreSSL'; /* first one is the default */
$flavours['latest'] = 'OpenSSL'; $flavours['latest'] = 'OpenSSL';
$flavours['libressl'] = 'LibreSSL';
asort($flavours);
return $flavours; return $flavours;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment