Ignore:
Timestamp:
2013/02/06 21:08:56 (11 years ago)
Author:
kim
Message:

#2084 ID振り直し 重複テキストの調整
#2100 郵便番号登録完了後の画面でメッセージIDの切り出しが間違っていた箇所を修正

File:
1 edited

Legend:

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

    r22503 r22509  
    277277                    document.open('text/html','replace'); 
    278278                    document.clear(); 
    279                     document.write(t('LC_Page_Admin_Basis_ZipInstall_003')); 
    280                     document.write("<?php echo $cntInsert ?> " . t('LC_Page_Admin_Basis_ZipInstall_004')); 
    281                     document.write(t('LC_Page_Admin_Basis_ZipInstall_005')); 
     279                    document.write('<?php t("c_<p>Completed.<br /> T_ARG1 items were added.</p>_01", array("T_ARG1" => $cntInsert))?>'); 
     280                    document.write('<?php t("c_<p><a href='?' target='_top'>Go back</a></p>_01"); ?>'); 
    282281                    document.close(); 
    283282                } 
     
    383382        $zip = zip_open($this->zip_csv_temp_realfile); 
    384383        if (!is_resource($zip)) { 
    385             trigger_error(t(t('c_cannot be opened._01', array('T_ARG1' => $this->zip_csv_temp_realfile))), E_USER_ERROR); 
     384            trigger_error(t(t('c_T_ARG1 cannot be opened._02', array('T_ARG1' => $this->zip_csv_temp_realfile))), E_USER_ERROR); 
    386385        } 
    387386 
     
    419418        $res = unlink(ZIP_CSV_REALFILE); 
    420419        if (!$res) { 
    421             trigger_error(t('LC_Page_Admin_Basis_ZipInstall_013', array('T_ARG1' => ZIP_CSV_REALFILE)), E_USER_ERROR); 
     420            trigger_error(t('c_T_ARG1 cannot be deleted._01', array('T_ARG1' => ZIP_CSV_REALFILE)), E_USER_ERROR); 
    422421        } 
    423422 
Note: See TracChangeset for help on using the changeset viewer.