Ignore:
Timestamp:
2013/02/04 18:12:18 (11 years ago)
Author:
m_uehara
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/pages/error/LC_Page_Error.php

    r22100 r22496  
    6363    function init() { 
    6464        $this->tpl_mainpage = 'error.tpl'; 
    65         $this->tpl_title = t('LC_Page_Error_001'); 
     65        $this->tpl_title = t('c_Error_01'); 
    6666        // ディスプレイクラス生成 
    6767        $this->objDisplay = new SC_Display_Ex(); 
     
    9292        switch ($this->type) { 
    9393            case PRODUCT_NOT_FOUND: 
    94                 $this->tpl_error=t('LC_Page_Error_002'); 
     94                $this->tpl_error=t('c_The page you specified does not exist._01'); 
    9595                SC_Response_Ex::sendHttpStatus(404); 
    9696                break; 
     
    9999                break; 
    100100            case CART_EMPTY: 
    101                 $this->tpl_error=t('LC_Page_Error_004'); 
     101                $this->tpl_error=t('c_There are no products in your cart._01'); 
    102102                break; 
    103103            case CART_ADD_ERROR: 
    104                 $this->tpl_error=t('LC_Page_Error_005'); 
     104                $this->tpl_error=t('c_It is not possible to add products to your cart during purchase processing._01'); 
    105105                break; 
    106106            case CANCEL_PURCHASE: 
     
    108108                break; 
    109109            case CATEGORY_NOT_FOUND: 
    110                 $this->tpl_error=t('LC_Page_Error_007'); 
     110                $this->tpl_error=t('c_The category you specified does not exist._01'); 
    111111                SC_Response_Ex::sendHttpStatus(404); 
    112112                break; 
     
    118118                break; 
    119119            case CUSTOMER_ERROR: 
    120                 $this->tpl_error=t('LC_Page_Error_010'); 
     120                $this->tpl_error=t('c_Unauthorized access._01'); 
    121121                break; 
    122122            case SOLD_OUT: 
     
    130130                break; 
    131131            case FAVORITE_ERROR: 
    132                 $this->tpl_error=t('LC_Page_Error_014'); 
     132                $this->tpl_error=t('c_This product is already added to your favorites_01'); 
    133133                break; 
    134134            case EXTRACT_ERROR: 
     
    136136                break; 
    137137            case FTP_DOWNLOAD_ERROR: 
    138                 $this->tpl_error=t('LC_Page_Error_016'); 
     138                $this->tpl_error=t('c_FTP download of file failed._01'); 
    139139                break; 
    140140            case FTP_LOGIN_ERROR: 
     
    163163                break; 
    164164            default: 
    165                 $this->tpl_error=t('LC_Page_Error_024'); 
     165                $this->tpl_error=t('c_An error has occurred._01'); 
    166166                break; 
    167167        } 
Note: See TracChangeset for help on using the changeset viewer.