diff options
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 235c25768..569af7c32 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -128,6 +128,32 @@ function system_view_general() { $output .= form_select(t("Date format (short)"), "date_format_short", variable_get("date_format_short", $dateshort[0]), $dateshortchoices, t("The short format of date display.")); $output .= form_select(t("Date format (medium)"), "date_format_medium", variable_get("date_format_medium", $datemedium[0]), $datemediumchoices, t("The medium sized date display.")); $output .= form_select(t("Date format (long)"), "date_format_long", variable_get("date_format_long", $datelong[0]), $datelongchoices, t("Longer date format used for detailed display.")); + + $output .= "<hr />\n"; + + $output .= "<h3>". t("Character encoding settings") ."</h3>\n"; + + // charset settings + $charsets = array("iso-8859-1", + "iso-8859-2", + "iso-8859-3", + "iso-8859-4", + "iso-8859-5", + "iso-8859-6", + "iso-8859-7", + "iso-8859-8", + "iso-8859-8-i", + "iso-8859-9", + "utf-8", + "utf-16", + "utf-16be", + "euc-kr", + "koi8-r", + "ks_c_5601-1987", + "tis-620", + "iso-2022-kr", + "us-ascii"); + $output .= form_select(t("Character set"), "site_charset", variable_get("site_charset", "iso-8859-1"), $charsets, t("Select the character set (charset) used across your site. This will affect the content-type tag in web pages and the XML declarations in RSS feeds, among other things. You probably only need to change this if you need support for languages with non-ASCII characters like Korean, Polish, etc.")); return $output; } |