Ignore:
Timestamp:
2012/05/08 10:51:04 (12 years ago)
Author:
pineray
Message:

#163 国際化対応

置換用の数値を書式化.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/util/SC_Utils.php

    r21813 r21816  
    17771777     */ 
    17781778    function t_plural($count, $single, $plural, $args = array(), $options = array()) { 
    1779         $args[':count'] = $count; 
     1779        // 置換用のパラメーターに数値を追加 
     1780        $args[':count'] = number_format($count); 
    17801781 
    17811782        // 言語コードが指定されていなければ、サイトの言語コードを使用する 
Note: See TracChangeset for help on using the changeset viewer.