diff options
author | thomascube <thomas@roundcube.net> | 2005-10-07 14:17:08 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-10-07 14:17:08 +0000 |
commit | 42b11351497ce67e96a0465c76694632cdfb3ecb (patch) | |
tree | e70135646b2422dccab017cb9f6999ad50e91564 /program/steps | |
parent | 597170feb25f5c2e5a90a9c0b1fd62001f169afb (diff) |
Several bugfixes and feature improvements
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/settings/func.inc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index 60b1056dd..4e1e345fa 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -57,12 +57,13 @@ function rcmail_user_prefs_form($attrib) $select_lang->add('Deutsch', 'de'); $select_lang->add('English', 'en'); $select_lang->add('Espanol', 'es'); - $select_lang->add('Fran¨ais', 'fr'); + $select_lang->add('Français', 'fr'); $select_lang->add('Italiano', 'it'); + $select_lang->add('Nederlands', 'nl'); $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", $field_id, - rcube_label('language'), + rep_specialchars_output(rcube_label('language')), $select_lang->show($sess_user_lang)); @@ -99,7 +100,7 @@ function rcmail_user_prefs_form($attrib) $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", $field_id, - rcube_label('timezone'), + rep_specialchars_output(rcube_label('timezone')), $select_timezone->show($CONFIG['timezone'])); @@ -109,7 +110,7 @@ function rcmail_user_prefs_form($attrib) $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", $field_id, - rcube_label('pagesize'), + rep_specialchars_output(rcube_label('pagesize')), $input_pagesize->show($CONFIG['pagesize'])); // show checkbox for HTML/plaintext messages @@ -118,7 +119,7 @@ function rcmail_user_prefs_form($attrib) $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", $field_id, - rcube_label('preferhtml'), + rep_specialchars_output(rcube_label('preferhtml')), $input_pagesize->show($CONFIG['prefer_html']?1:0)); // MM: Show checkbox for toggling 'pretty dates' @@ -127,7 +128,7 @@ function rcmail_user_prefs_form($attrib) $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", $field_id, - rcube_label('prettydate'), + rep_specialchars_output(rcube_label('prettydate')), $input_prettydate->show($CONFIG['prettydate']?1:0)); |