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

#2060 メッセージIDの振り直し T_FILED等の修正
T_TAG T_LENGTH~T_ORDER_IDを置き換え

File:
1 edited

Legend:

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

    r22433 r22435  
    137137        $this->lfText(27, 78, $this->arrData['msg3'], 8);  //メッセージ3 
    138138        $tokens = array( 
    139             'T_YEAR' => $this->arrData['year'], 
    140             'T_MONTH' => $this->arrData['month'], 
    141             'T_DAY' => $this->arrData['day'] 
     139            '%s1' => $this->arrData['year'], 
     140            '%s2' => $this->arrData['month'], 
     141            '%s3' => $this->arrData['day'] 
    142142        ); 
    143143        $text = t('SC_Fpdf_017', $tokens); 
     
    157157        $this->lfText(27, 47, $text, 10); //購入者都道府県+住所1 
    158158        $this->lfText(27, 51, $this->arrDisp['order_addr02'], 10); //購入者住所2 
    159         $text = t('SC_Fpdf_018', array('T_LASTNAME' => $this->arrDisp['order_name01'], 'T_FIRSTNAME' => $this->arrDisp['order_name02'])); 
     159        $text = t('SC_Fpdf_018', array('%s1' => $this->arrDisp['order_name01'], '%s2' => $this->arrDisp['order_name02'])); 
    160160        $this->lfText(27, 59, $text, 11); //購入者氏名 
    161161 
Note: See TracChangeset for help on using the changeset viewer.