Ignore:
Timestamp:
2013/01/27 22:44:41 (11 years ago)
Author:
kim
Message:

#2060 メッセージIDの振り直し T_FILEDを%sに置き換え

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/util/SC_Utils.php

    r22433 r22437  
    4949        $path = HTML_REALDIR . 'install/' . DIR_INDEX_FILE; 
    5050        if (file_exists($path)) { 
    51             SC_Utils_Ex::sfErrorHeader(t('SC_Utils_001', array('T_FIELD' => DIR_INDEX_FILE))); 
     51            SC_Utils_Ex::sfErrorHeader(t('SC_Utils_001', array('%s1' => DIR_INDEX_FILE))); 
    5252        } 
    5353    } 
     
    11481148                } else { 
    11491149                    if (!$override && file_exists($des.$data)) { 
    1150                         $mess.= t('SC_Utils_003', array('T_FIELD01' => $des, 'T_FIELD02' => $data)); 
     1150                        $mess.= t('SC_Utils_003', array('%s1' => $des, '%s2' => $data)); 
    11511151                    } else { 
    11521152                        if (@copy($data_, $des.$data)) { 
    1153                             $mess.= t('SC_Utils_004', array('T_FIELD01' => $des, 'T_FIELD02' => $data)); 
     1153                            $mess.= t('SC_Utils_004', array('%s1' => $des, '%s2' => $data)); 
    11541154                        } else { 
    1155                             $mess.= t('SC_Utils_005', array('T_FIELD01' => $des, 'T_FIELD02' => $data)); 
     1155                            $mess.= t('SC_Utils_005', array('%s1' => $des, '%s2' => $data)); 
    11561156                        } 
    11571157                    } 
Note: See TracChangeset for help on using the changeset viewer.