summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-03-16 09:08:12 +0000
committerBharat Mediratta <bharat@menalto.com>2009-03-16 09:08:12 +0000
commit8458eba279356bf8a00741a0c7e9a9edcaed1fd0 (patch)
treed9871b117a2b5557f84c7c3bd86144bb21902057
parent6aadb0bc77702bdfd37356d398fe2d9444835b3b (diff)
Switch the locale::$locales data structure to be an array instead of a
stdClass because we're not allowed to asort() stdClass objects in PHP 5.2.6.
-rw-r--r--core/helpers/locale.php90
-rw-r--r--modules/user/helpers/user.php8
2 files changed, 49 insertions, 49 deletions
diff --git a/core/helpers/locale.php b/core/helpers/locale.php
index 6a284c06..660c27e4 100644
--- a/core/helpers/locale.php
+++ b/core/helpers/locale.php
@@ -41,7 +41,7 @@ class locale_Core {
$codes = explode("|", module::get_var("core", "installed_locales", $default));
foreach ($codes as $code) {
if (isset($available->$code)) {
- $installed->$code = $available->$code;
+ $installed[$code] = $available[$code];
}
}
return $installed;
@@ -57,49 +57,49 @@ class locale_Core {
// TODO(andy_st): Might want to add a localizable language name as well.
private static function _init_language_data() {
- $l->af_ZA = "Afrikaans"; // Afrikaans
- $l->ar_SA = "&#1575;&#1604;&#1593;&#1585;&#1576;&#1610;&#1577;"; // Arabic
- $l->bg_BG = "&#x0411;&#x044a;&#x043b;&#x0433;&#x0430;&#x0440;&#x0441;&#x043a;&#x0438;"; // Bulgarian
- $l->ca_ES = "Catalan"; // Catalan
- $l->cs_CZ = "&#x010c;esky"; // Czech
- $l->da_DK = "Dansk"; // Danish
- $l->de_DE = "Deutsch"; // German
- $l->el_GR = "Greek"; // Greek
- $l->en_GB = "English (UK)"; // English (UK)
- $l->en_US = "English (US)"; // English (US)
- $l->es_AR = "Espa&#241;ol (AR)"; // Spanish (AR)
- $l->es_ES = "Espa&#241;ol"; // Spanish (ES)
- $l->es_MX = "Espa&#241;ol (MX)"; // Spanish (MX)
- $l->et_EE = "Eesti"; // Estonian
- $l->eu_ES = "Euskara"; // Basque
- $l->fa_IR = "&#1601;&#1575;&#1585;&#1587;&#1610;"; // Farsi
- $l->fi_FI = "Suomi"; // Finnish
- $l->fr_FR = "Fran&#231;ais"; // French
- $l->ga_IE = "Gaeilge"; // Irish
- $l->he_IL = "&#1506;&#1489;&#1512;&#1497;&#1514;"; // Hebrew
- $l->hu_HU = "Magyar"; // Hungarian
- $l->is_IS = "Icelandic"; // Icelandic
- $l->it_IT = "Italiano"; // Italian
- $l->ja_JP = "&#x65e5;&#x672c;&#x8a9e;"; // Japanese
- $l->ko_KR = "&#xd55c;&#xad6d;&#xb9d0;"; // Korean
- $l->lt_LT = "Lietuvi&#371;"; // Lithuanian
- $l->lv_LV = "Latvie&#353;u"; // Latvian
- $l->nl_NL = "Nederlands"; // Dutch
- $l->no_NO = "Norsk bokm&#229;l"; // Norwegian
- $l->pl_PL = "Polski"; // Polish
- $l->pt_BR = "Portugu&#234;s Brasileiro"; // Portuguese (BR)
- $l->pt_PT = "Portugu&#234;s"; // Portuguese (PT)
- $l->ro_RO = "Rom&#226;n&#259;"; // Romanian
- $l->ru_RU = "&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;"; // Russian
- $l->sk_SK = "Sloven&#269;ina"; // Slovak
- $l->sl_SI = "Sloven&#353;&#269;ina"; // Slovenian
- $l->sr_CS = "Srpski"; // Serbian
- $l->sv_SE = "Svenska"; // Swedish
- $l->tr_TR = "T&#252;rk&#231;e"; // Turkish
- $l->uk_UA = "Українська"; // Ukrainian
- $l->vi_VN = "Ti&#7871;ng Vi&#7879;t"; // Vietnamese
- $l->zh_CN = "&#31616;&#20307;&#20013;&#25991;"; // Chinese (CN)
- $l->zh_TW = "&#32321;&#39636;&#20013;&#25991;"; // Chinese (TW)
+ $l["af_ZA"] = "Afrikaans"; // Afrikaans
+ $l["ar_SA"] = "&#1575;&#1604;&#1593;&#1585;&#1576;&#1610;&#1577;"; // Arabic
+ $l["bg_BG"] = "&#x0411;&#x044a;&#x043b;&#x0433;&#x0430;&#x0440;&#x0441;&#x043a;&#x0438;"; // Bulgarian
+ $l["ca_ES"] = "Catalan"; // Catalan
+ $l["cs_CZ"] = "&#x010c;esky"; // Czech
+ $l["da_DK"] = "Dansk"; // Danish
+ $l["de_DE"] = "Deutsch"; // German
+ $l["el_GR"] = "Greek"; // Greek
+ $l["en_GB"] = "English (UK)"; // English (UK)
+ $l["en_US"] = "English (US)"; // English (US)
+ $l["es_AR"] = "Espa&#241;ol (AR)"; // Spanish (AR)
+ $l["es_ES"] = "Espa&#241;ol"; // Spanish (ES)
+ $l["es_MX"] = "Espa&#241;ol (MX)"; // Spanish (MX)
+ $l["et_EE"] = "Eesti"; // Estonian
+ $l["eu_ES"] = "Euskara"; // Basque
+ $l["fa_IR"] = "&#1601;&#1575;&#1585;&#1587;&#1610;"; // Farsi
+ $l["fi_FI"] = "Suomi"; // Finnish
+ $l["fr_FR"] = "Fran&#231;ais"; // French
+ $l["ga_IE"] = "Gaeilge"; // Irish
+ $l["he_IL"] = "&#1506;&#1489;&#1512;&#1497;&#1514;"; // Hebrew
+ $l["hu_HU"] = "Magyar"; // Hungarian
+ $l["is_IS"] = "Icelandic"; // Icelandic
+ $l["it_IT"] = "Italiano"; // Italian
+ $l["ja_JP"] = "&#x65e5;&#x672c;&#x8a9e;"; // Japanese
+ $l["ko_KR"] = "&#xd55c;&#xad6d;&#xb9d0;"; // Korean
+ $l["lt_LT"] = "Lietuvi&#371;"; // Lithuanian
+ $l["lv_LV"] = "Latvie&#353;u"; // Latvian
+ $l["nl_NL"] = "Nederlands"; // Dutch
+ $l["no_NO"] = "Norsk bokm&#229;l"; // Norwegian
+ $l["pl_PL"] = "Polski"; // Polish
+ $l["pt_BR"] = "Portugu&#234;s Brasileiro"; // Portuguese (BR)
+ $l["pt_PT"] = "Portugu&#234;s"; // Portuguese (PT)
+ $l["ro_RO"] = "Rom&#226;n&#259;"; // Romanian
+ $l["ru_RU"] = "&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;"; // Russian
+ $l["sk_SK"] = "Sloven&#269;ina"; // Slovak
+ $l["sl_SI"] = "Sloven&#353;&#269;ina"; // Slovenian
+ $l["sr_CS"] = "Srpski"; // Serbian
+ $l["sv_SE"] = "Svenska"; // Swedish
+ $l["tr_TR"] = "T&#252;rk&#231;e"; // Turkish
+ $l["uk_UA"] = "Українська"; // Ukrainian
+ $l["vi_VN"] = "Ti&#7871;ng Vi&#7879;t"; // Vietnamese
+ $l["zh_CN"] = "&#31616;&#20307;&#20013;&#25991;"; // Chinese (CN)
+ $l["zh_TW"] = "&#32321;&#39636;&#20013;&#25991;"; // Chinese (TW)
asort($l, SORT_LOCALE_STRING);
self::$locales = $l;
}
@@ -110,7 +110,7 @@ class locale_Core {
}
$locale or $locale = I18n::instance()->locale();
- return self::$locales->$locale;
+ return self::$locales["$locale"];
}
static function is_rtl($locale) {
diff --git a/modules/user/helpers/user.php b/modules/user/helpers/user.php
index 93f07629..6dc2567b 100644
--- a/modules/user/helpers/user.php
+++ b/modules/user/helpers/user.php
@@ -80,10 +80,10 @@ class user_Core {
private static function _add_locale_dropdown(&$form, $user=null) {
$locales = locale::installed();
- $locales_array = (array) $locales;
- if (count($locales_array) > 1) {
- $locales->none = t("&laquo; none &raquo;");
- $selected_locale = ($user && $user->locale) ? $user->locale : "none";
+ if (count($locales) > 1) {
+ // Put "none" at the first position in the array
+ $locales = array_merge(array("" => t("&laquo; none &raquo;")), $locales);
+ $selected_locale = ($user && $user->locale) ? $user->locale : "";
$form->dropdown("locale")
->label(t("Language Preference"))
->options($locales)