Changeset 803

Show
Ignore:
Timestamp:
10/13/2007 01:42:09 AM (14 months ago)
Author:
Geert
Message:

Converting locale setting to take care of #152

Location:
trunk
Files:
3 modified
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/application/config/config.php

    r698 r803  
    7979| 
    8080*/ 
    81 $config['locale'] = 'en'; 
     81$config['locale'] = 'en_US'; 
    8282 
    8383/* 
  • trunk/modules/user_guide/views/user_guide/en/general/configuration.php

    r644 r803  
    2222 
    2323locale 
    24 : Sets the system locale using any standard two-letter language abbreviation. By default, Kohana only ships with English (en) language files. 
     24: Sets the system locale using any standard language abbreviation. By default, Kohana only ships with English (en_US) language files. 
    2525 
    2626timezone 
  • trunk/system/core/utf8.php

    r717 r803  
    5959 
    6060/** 
    61  * @todo  this should really be detected from either config.php 
    6261 * @todo  move this out of this file and into Kohana or Bootstrap so that this file is re-usable 
    6362 */ 
    64 setlocale(LC_ALL, 'en_US.UTF-8'); 
     63setlocale(LC_ALL, Config::item('core.locale').'UTF-8'); 
    6564 
    6665/**