From 1038d554e41b4007461a0c74a89625fd03107f7f Mon Sep 17 00:00:00 2001 From: svncommit <devs@roundcube.net> Date: Thu, 20 Oct 2005 13:33:39 -0400 Subject: [PATCH] --- program/include/main.inc | 2 +- program/steps/mail/func.inc | 4 ++-- program/localization/es/labels.inc | 2 +- program/localization/index.inc | 3 +-- program/localization/ca/labels.inc | 1 + program/steps/settings/edit_identity.inc | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/program/include/main.inc b/program/include/main.inc index 8cad777..b4b2aa9 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -856,7 +856,7 @@ $table .= "<thead><tr>\n"; foreach ($a_show_cols as $col) - $table .= '<td class="'.$col.'">' . rcube_label($col) . "</td>\n"; + $table .= '<td class="'.$col.'">' . rep_specialchars_output(rcube_label($col)) . "</td>\n"; $table .= "</tr></thead>\n<tbody>\n"; diff --git a/program/localization/ca/labels.inc b/program/localization/ca/labels.inc index 533cd31..f6b2877 100644 --- a/program/localization/ca/labels.inc +++ b/program/localization/ca/labels.inc @@ -64,6 +64,7 @@ $labels['preferhtml'] = 'Prefereix HTML'; $labels['htmlmessage'] = 'Missatge HTML'; +$labels['prettydate'] = 'Dates curtes'; $labels['addtoaddressbook'] = 'Afegir a la llibreta d\'adreces'; diff --git a/program/localization/es/labels.inc b/program/localization/es/labels.inc index 0f627eb..bd80036 100644 --- a/program/localization/es/labels.inc +++ b/program/localization/es/labels.inc @@ -63,7 +63,7 @@ $labels['preferhtml'] = 'Prefiero HTML'; $labels['htmlmessage'] = 'Mensaje HTML'; -//$labels['prettydate'] = ''; +$labels['prettydate'] = 'Fechas cortas'; $labels['addtoaddressbook'] = 'A�adir a contactos'; diff --git a/program/localization/index.inc b/program/localization/index.inc index 94b07b9..6f68b0c 100644 --- a/program/localization/index.inc +++ b/program/localization/index.inc @@ -25,11 +25,10 @@ 'en_GB' => 'English (GB)', 'ar' => 'Arabic', 'bg' => 'Bulgarian', - 'cat' => 'Catalan', 'tw' => 'Chinese (BIG5)', 'cn' => 'Chinese(GB2312)', 'cz' => 'Czech', - 'ca' => 'Catalan', + 'ca' => 'Català', 'da' => 'Dansk', 'de' => 'Deutsch', 'es' => 'Español', diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 01b02bb..c0b303a 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -251,7 +251,7 @@ $out .= "<thead><tr>\n<td class=\"icon\"> </td>\n"; foreach ($a_show_cols as $col) - $out .= '<td class="'.$col.'">' . rcube_label($col) . "</td>\n"; + $out .= '<td class="'.$col.'">' . rep_specialchars_output(rcube_label($col)) . "</td>\n"; $out .= '<td class="icon">'.($attrib['attachmenticon'] ? sprintf($image_tag, $skin_path, $attrib['attachmenticon'], '') : '')."</td>\n"; $out .= "</tr></thead>\n<tbody>\n"; @@ -813,7 +813,7 @@ $header_value = rep_specialchars_output($IMAP->decode_header($headers[$hkey]), '', 'all'); $out .= "\n<tr>\n"; - $out .= '<td class="header-title">'.rcube_label($hkey).": </td>\n"; + $out .= '<td class="header-title">'.rep_specialchars_output(rcube_label($hkey)).": </td>\n"; $out .= '<td class="'.$hkey.'" width="90%">'.$header_value."</td>\n</tr>"; $header_count++; } diff --git a/program/steps/settings/edit_identity.inc b/program/steps/settings/edit_identity.inc index f9cbc7c..e0f649c 100644 --- a/program/steps/settings/edit_identity.inc +++ b/program/steps/settings/edit_identity.inc @@ -88,7 +88,7 @@ $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", $attrib['id'], - rcube_label($label), + rep_specialchars_output(rcube_label($label)), $value); } -- Gitblit v1.9.1