Ignore:
Timestamp:
2013/02/05 12:51:23 (11 years ago)
Author:
m_uehara
Message:

#2084 メッセージIDの振り直し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php

    r22496 r22500  
    4848        $this->tpl_subno = 'pdf'; 
    4949        $this->tpl_maintitle = t('c_Orders_01'); 
    50         $this->tpl_subtitle = t('LC_Page_Admin_Order_Pdf_001'); 
     50        $this->tpl_subtitle = t('c_Ledger output_01'); 
    5151 
    5252        $this->SHORTTEXT_MAX = STEXT_LEN; 
     
    5454        $this->LONGTEXT_MAX = LTEXT_LEN; 
    5555 
    56         $this->arrType[0]  = t('LC_Page_Admin_Order_Pdf_002'); 
    57  
    58         $this->arrDownload[0] = t('LC_Page_Admin_Order_Pdf_003'); 
    59         $this->arrDownload[1] = t('LC_Page_Admin_Order_Pdf_004'); 
     56        $this->arrType[0]  = t('c_Delivery slip_01'); 
     57 
     58        $this->arrDownload[0] = t('c_Open in browser_01'); 
     59        $this->arrDownload[1] = t('c_Save to file_01'); 
    6060    } 
    6161 
     
    120120        $arrForm = array(); 
    121121        // タイトルをセット 
    122         $arrForm['title'] = t('LC_Page_Admin_Order_Pdf_005'); 
     122        $arrForm['title'] = t('c_Detailed purchase statement (delivery slip)_01'); 
    123123 
    124124        // 今日の日付をセット 
     
    214214        $year = $objFormParam->getValue('year'); 
    215215        if (!is_numeric($year)) { 
    216             $arrErr['year'] = t('LC_Page_Admin_Order_Pdf_009'); 
     216            $arrErr['year'] = t('c_Enter a number for the issuance year._01'); 
    217217        } 
    218218 
    219219        $month = $objFormParam->getValue('month'); 
    220220        if (!is_numeric($month)) { 
    221             $arrErr['month'] = t('LC_Page_Admin_Order_Pdf_010'); 
     221            $arrErr['month'] = t('c_Enter a number for the issuance month._01'); 
    222222        } else if (0 >= $month && 12 < $month) { 
    223223 
    224             $arrErr['month'] = t('LC_Page_Admin_Order_Pdf_011'); 
     224            $arrErr['month'] = t('c_Enter between 1 - 12 for the issuance month_01'); 
    225225        } 
    226226 
    227227        $day = $objFormParam->getValue('day'); 
    228228        if (!is_numeric($day)) { 
    229             $arrErr['day'] = t('LC_Page_Admin_Order_Pdf_012'); 
     229            $arrErr['day'] = t('c_Enter a number for the issuance date._01'); 
    230230        } else if (0 >= $day && 31 < $day) { 
    231231 
    232             $arrErr['day'] = t('LC_Page_Admin_Order_Pdf_013'); 
     232            $arrErr['day'] = t('c_Enter a number between 1 
     233- 31 for the issuance date._01'); 
    233234        } 
    234235 
Note: See TracChangeset for help on using the changeset viewer.