Changeset 2214
- Timestamp:
- 03/03/2008 12:34:48 PM (7 months ago)
- Location:
- trunk/system
- Files:
-
- 1 added
- 2 modified
- 1 moved
-
config/locale.php (modified) (1 diff)
-
core/Kohana.php (modified) (1 diff)
-
l10n/en_US (added)
-
l10n/en_US/USA.php (moved) (moved from trunk/system/l10n/US.php)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/config/locale.php
r2202 r2214 11 11 * Default country locale. 12 12 */ 13 $config['country'] = 'US ';13 $config['country'] = 'USA'; 14 14 15 15 /** -
trunk/system/core/Kohana.php
r2203 r2214 853 853 // Loop through the files and include each one, so SYSPATH files 854 854 // can be overloaded by more localized files 855 foreach(self::find_file('l10n', $filename) as $file)855 foreach(self::find_file('l10n', Config::item('locale.language').'/'.$filename) as $file) 856 856 { 857 857 include $file;
