root/trunk/system/config/locale.php

Revision 3189, 0.5 kB (checked in by Shadowhand, 5 months ago)

Removed locale.country, it's no longer needed now that l10n is gone. Good eye, tkuntario.

  • Property svn:eol-style set to LF
  • Property copyright set to Copyright (c) 2007 Kohana Team
  • Property svn:keywords set to Id
Line 
1<?php defined('SYSPATH') or die('No direct access allowed.');
2/**
3 * @package  Core
4 *
5 * Default language locale name(s).
6 * First item must be a valid i18n directory name, subsequent items are alternative locales
7 * for OS's that don't support the first (e.g. Windows). The first valid locale in the array will be used.
8 * @see http://php.net/setlocale
9 */
10$config['language'] = array('en_US', 'English_United States');
11
12/**
13 * Locale timezone. Defaults to use the server timezone.
14 * @see http://php.net/timezones
15 */
16$config['timezone'] = '';
Note: See TracBrowser for help on using the browser.