Changeset 803
- Timestamp:
- 10/13/2007 01:42:09 AM (14 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
- 1 moved
-
application/config/config.php (modified) (1 diff)
-
modules/user_guide/views/user_guide/en/general/configuration.php (modified) (1 diff)
-
system/core/utf8.php (modified) (1 diff)
-
system/i18n/en_US (moved) (moved from trunk/system/i18n/en)
Legend:
- Unmodified
- Added
- Removed
-
trunk/application/config/config.php
r698 r803 79 79 | 80 80 */ 81 $config['locale'] = 'en ';81 $config['locale'] = 'en_US'; 82 82 83 83 /* -
trunk/modules/user_guide/views/user_guide/en/general/configuration.php
r644 r803 22 22 23 23 locale 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. 25 25 26 26 timezone -
trunk/system/core/utf8.php
r717 r803 59 59 60 60 /** 61 * @todo this should really be detected from either config.php62 61 * @todo move this out of this file and into Kohana or Bootstrap so that this file is re-usable 63 62 */ 64 setlocale(LC_ALL, 'en_US.UTF-8');63 setlocale(LC_ALL, Config::item('core.locale').'UTF-8'); 65 64 66 65 /**
