X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Fi18n.php;h=676f272060252ab5dfee9cf49b6a0b8a8ddca990;hb=fc380412e4affcb0ff647acbf72b0baa28699fde;hp=37cde724145446421e7ebae38871ff0a79162ed7;hpb=1989cc04ad1bab78d711d65a85f468bf4ce6ad2c;p=squirrelmail.git diff --git a/functions/i18n.php b/functions/i18n.php index 37cde724..676f2720 100644 --- a/functions/i18n.php +++ b/functions/i18n.php @@ -2,7 +2,7 @@ /** * SquirrelMail internationalization functions * - * Copyright (c) 1999-2004 The SquirrelMail Project Team + * Copyright (c) 1999-2005 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * This file contains variuos functions that are needed to do @@ -66,8 +66,8 @@ function sq_textdomain($domain) { * php gettext extension works only when locale is set. This wrapper * function allows to use more than one locale name. * - * @param int $category locale category name. Use php named constants - * (LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC, LC_TIME) + * @param int $category locale category name. Use php named constants + * (LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC, LC_TIME) * @param mixed $locale option contains array with possible locales or string with one locale * @return string name of set locale or false, if all locales fail. * @since 1.5.1 @@ -320,9 +320,9 @@ function set_up_language($sm_language, $do_search = false, $default = false) { if (function_exists('bind_textdomain_codeset')) { // Japanese translation uses different internal charset if ($sm_notAlias == 'ja_JP') { - bind_textdomain_codeset ("squirrelmail", 'EUC-JP'); + bind_textdomain_codeset ('squirrelmail', 'EUC-JP'); } else { - bind_textdomain_codeset ("squirrelmail", $languages[$sm_notAlias]['CHARSET'] ); + bind_textdomain_codeset ('squirrelmail', $languages[$sm_notAlias]['CHARSET'] ); } }