~quam-plures-core/quam-plures/calendar_de-cored

« back to all changes in this revision

Viewing changes to qp_locales/en/en-CA.locale.php

  • Committer: EdB
  • Date: 2013-03-24 16:34:53 UTC
  • mfrom: (7660.2.1 quam-plures)
  • Revision ID: 1912webworks@gmail.com-20130324163453-865v9rc9pi2a7v03
update to current core

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Locale definition
 
4
 *
 
5
 * Documentation of the keys:
 
6
 * - 'name' : The locale name displayed to the user (keep short).
 
7
 * - 'charset' : Character set of the locale's messages files.
 
8
 * - 'datefmt' : The date format for this language. See {@link date_i18n()}.
 
9
 * - 'timefmt' : The time format for this language. See {@link date_i18n()}.
 
10
 * - 'startofweek' : Start of week for this locale. 0 means Sunday, 1 Monday etc.
 
11
 *
 
12
 * @author {@link http://wonderwinds.com/ Ed Bennett}
 
13
 * @author {@link http://fplanque.net/ Francois PLANQUE}
 
14
 * @copyright (c) 2009 by {@link http://quamplures.net/ the Quam Plures project}
 
15
 * @license http://www.gnu.org/licenses/gpl.txt GNU General Public License v3
 
16
 * @package locales
 
17
 */
 
18
 
 
19
$locale_defs['en-CA'] = array(
 
20
        'name' => NT_('English (CA) latin1'),
 
21
        'charset' => 'iso-8859-1',
 
22
        'datefmt' => 'm/d/y',
 
23
        'timefmt' => 'h:i:s a',
 
24
        'startofweek' => 0,
 
25
);
 
26
 
 
27
?>