
Newbie
 Status: offline
Registered: 05/05/06
Posts: 1
|
Hi, Blaine, I'm using 2.6RC3 quite happily except for a few slight inconveniences.
In layout/theme_name/admin/ranksetting_option.thtml around line 3, the template var {LANG_title} should be {LANG_level}.
In layout/theme_name/admin/boards_editforum.thtml at lines 25, 26, 29, 30, 33, 34, messages such as 'Readonly Forum' are hard-coded in English.
In admin/plugins/forum/mods.php, at line 210, 'Group' should be $LANG_GF01['GROUP'], and at line 213, 'User' should be $LANG_GF01['USER'].
In layout/theme_name/admin/migratestories.thtml
at line 29, 'Filter List' should be '{LANG_filterlist}',
at line 30, 'Select Forum' should be '{LANG_selectforum}',
at line 31, 'Migrate Now' should be '{LANG_migrate}',
at line 32, 'Delete after' should be '{LANG_deleteafter}',
at line 40, 'All' should be '{LANG_all}',
at line 41, 'Topic' should be '{LANG_topic}',
at line 42, 'Title' should be '{LANG_title}',
at line 43, 'Date' should be '{LANG_date}', and
at line 44, 'Comments' should be '{LANG_comments}'.
Besides, I noticed you use htmlspecialchars() instead of htmlentities(). This is good news for us. However, the htmlspecialchars() function is dependent on the locale. If its third parameter is omitted, 'ISO-8859-1' will be assumed as the default character set, which could break non ASCII text. So, we'd greatly appreciate it if you would write, for example, "htmlspecialchars( $text, ENT_QUOTES, $LANG_CHARSET )" instead of "htmlspecialchars( $text, ENT_QUOTES)".
Keep up great work.
-- mystral-kk, "Every cloud has a silver lining."
|