Ignore:
Timestamp:
2013/02/05 18:21:13 (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/basis/LC_Page_Admin_Basis_ZipInstall.php

    r22500 r22503  
    391391 
    392392        if (!$entry) { 
    393             trigger_error(t(t('LC_Page_Admin_Basis_ZipInstall_011', array('T_ARG1' => $this->zip_csv_temp_realfile))), E_USER_ERROR); 
     393            trigger_error(t(t('c_The target file was not found in T_ARG1._01', array('T_ARG1' => $this->zip_csv_temp_realfile))), E_USER_ERROR); 
    394394        } 
    395395 
     
    399399        $res = zip_entry_open($zip, $entry, 'rb'); 
    400400        if (!$res) { 
    401             trigger_error(t('LC_Page_Admin_Basis_ZipInstall_012', array('T_ARG1' => $this->zip_csv_temp_realfile)), E_USER_ERROR); 
     401            trigger_error(t('c_T_ARG1 decompression failed._01', array('T_ARG1' => $this->zip_csv_temp_realfile)), E_USER_ERROR); 
    402402        } 
    403403 
     
    425425        $res = rename($tmp_csv_realfile, ZIP_CSV_REALFILE); 
    426426        if (!$res) { 
    427             trigger_error(t('LC_Page_Admin_Basis_ZipInstall_014', array('T_ARG1' => $tmp_csv_realfile, 'T_ARG2' => ZIP_CSV_REALFILE)), E_USER_ERROR); 
     427            trigger_error(t('c_The file name cannot be changed.: T_ARG1 -> TFIELF2_01', array('T_ARG1' => $tmp_csv_realfile, 'T_ARG2' => ZIP_CSV_REALFILE)), E_USER_ERROR); 
    428428        } 
    429429    } 
Note: See TracChangeset for help on using the changeset viewer.