Ignore:
Timestamp:
2012/09/13 21:39:00 (12 years ago)
Author:
pineray
Message:

#1890 コード中のメッセージを集約

class 直下のファイル内の文字列を差し替え.

File:
1 edited

Legend:

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

    r21926 r22031  
    102102            $time_end = microtime(true); 
    103103            $time = $time_end - $this->time_start; 
    104             $res .= '処理時間: ' . sprintf('%.3f', $time) . '秒'; 
     104            $res .= SC_I18n_Ex::t('SC_VIEW_RESPONSE_TIME', array('T_TIME' => sprintf('%.3f', $time))); 
    105105        } 
    106106        return $res; 
     
    170170            $time_end = microtime(true); 
    171171            $time = $time_end - $this->time_start; 
    172             echo '処理時間: ' . sprintf('%.3f', $time) . '秒'; 
     172            echo SC_I18n_Ex::t('SC_VIEW_RESPONSE_TIME', array('T_TIME' => sprintf('%.3f', $time))); 
    173173        } 
    174174    } 
Note: See TracChangeset for help on using the changeset viewer.