Changeset 1038d554 in github


Ignore:
Timestamp:
Oct 20, 2005 1:33:39 PM (8 years ago)
Author:
svncommit <devs@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
7902df4
Parents:
53560c5
Message:

various fixes for correct catalan/spanish display

Location:
program
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • program/include/main.inc

    rf45ec7e r1038d554  
    857857 
    858858  foreach ($a_show_cols as $col) 
    859     $table .= '<td class="'.$col.'">' . rcube_label($col) . "</td>\n"; 
     859    $table .= '<td class="'.$col.'">' . rep_specialchars_output(rcube_label($col)) . "</td>\n"; 
    860860 
    861861  $table .= "</tr></thead>\n<tbody>\n"; 
  • program/localization/ca/labels.inc

    rcd900dd r1038d554  
    6565$labels['preferhtml'] = 'Prefereix HTML'; 
    6666$labels['htmlmessage'] = 'Missatge HTML'; 
     67$labels['prettydate'] = 'Dates curtes'; 
    6768 
    6869$labels['addtoaddressbook'] = 'Afegir a la llibreta d\'adreces'; 
  • program/localization/es/labels.inc

    r53560c5 r1038d554  
    6464$labels['preferhtml'] = 'Prefiero HTML'; 
    6565$labels['htmlmessage'] = 'Mensaje HTML'; 
    66 //$labels['prettydate'] = ''; 
     66$labels['prettydate'] = 'Fechas cortas'; 
    6767 
    6868$labels['addtoaddressbook'] = 'Añadir a contactos'; 
  • program/localization/index.inc

    r9fee0ed r1038d554  
    2626        'ar'    => 'Arabic', 
    2727        'bg'    => 'Bulgarian', 
    28         'cat'   => 'Catalan', 
    2928        'tw'    => 'Chinese (BIG5)', 
    3029        'cn'    => 'Chinese(GB2312)', 
    3130        'cz'    => 'Czech', 
    32         'ca'    => 'Catalan', 
     31        'ca'    => 'Catal&agrave;', 
    3332        'da'    => 'Dansk', 
    3433        'de'    => 'Deutsch', 
  • program/steps/mail/func.inc

    r1223297 r1038d554  
    252252  
    253253  foreach ($a_show_cols as $col) 
    254     $out .= '<td class="'.$col.'">' . rcube_label($col) . "</td>\n"; 
     254    $out .= '<td class="'.$col.'">' . rep_specialchars_output(rcube_label($col)) . "</td>\n"; 
    255255 
    256256  $out .= '<td class="icon">'.($attrib['attachmenticon'] ? sprintf($image_tag, $skin_path, $attrib['attachmenticon'], '') : '')."</td>\n"; 
     
    814814 
    815815    $out .= "\n<tr>\n"; 
    816     $out .= '<td class="header-title">'.rcube_label($hkey).":&nbsp;</td>\n"; 
     816    $out .= '<td class="header-title">'.rep_specialchars_output(rcube_label($hkey)).":&nbsp;</td>\n"; 
    817817    $out .= '<td class="'.$hkey.'" width="90%">'.$header_value."</td>\n</tr>"; 
    818818    $header_count++; 
  • program/steps/settings/edit_identity.inc

    r30233b8 r1038d554  
    8989    $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", 
    9090                    $attrib['id'], 
    91                     rcube_label($label), 
     91                    rep_specialchars_output(rcube_label($label)), 
    9292                    $value); 
    9393    } 
Note: See TracChangeset for help on using the changeset viewer.