various fixes for correct catalan/spanish display
| | |
| | | $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"; |
| | | |
| | |
| | | |
| | | $labels['preferhtml'] = 'Prefereix HTML'; |
| | | $labels['htmlmessage'] = 'Missatge HTML'; |
| | | $labels['prettydate'] = 'Dates curtes'; |
| | | |
| | | $labels['addtoaddressbook'] = 'Afegir a la llibreta d\'adreces'; |
| | | |
| | |
| | | |
| | | $labels['preferhtml'] = 'Prefiero HTML'; |
| | | $labels['htmlmessage'] = 'Mensaje HTML'; |
| | | //$labels['prettydate'] = ''; |
| | | $labels['prettydate'] = 'Fechas cortas'; |
| | | |
| | | $labels['addtoaddressbook'] = 'AƱadir a contactos'; |
| | | |
| | |
| | | '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', |
| | |
| | | $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"; |
| | |
| | | $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++; |
| | | } |
| | |
| | | |
| | | $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); |
| | | } |
| | | |