| 1 |
lars |
1 |
<?php
|
|
|
2 |
// +----------------------------------------------------------------------+
|
|
|
3 |
// | PHP version 4.0 |
|
|
|
4 |
// +----------------------------------------------------------------------+
|
|
|
5 |
// | Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003 The PHP Group |
|
|
|
6 |
// +----------------------------------------------------------------------+
|
|
|
7 |
// | This source file is subject to version 2.0 of the PHP license, |
|
|
|
8 |
// | that is bundled with this package in the file LICENSE, and is |
|
|
|
9 |
// | available at through the world-wide-web at |
|
|
|
10 |
// | http://www.php.net/license/2_02.txt. |
|
|
|
11 |
// | If you did not receive a copy of the PHP license and are unable to |
|
|
|
12 |
// | obtain it through the world-wide-web, please send a note to |
|
|
|
13 |
// | license@php.net so we can mail you a copy immediately. |
|
|
|
14 |
// +----------------------------------------------------------------------+
|
|
|
15 |
// | Authors: Wolfram Kriesing <wk@visionp.de> |
|
|
|
16 |
// | |
|
|
|
17 |
// +----------------------------------------------------------------------+//
|
|
|
18 |
// $Id: en.php 110869 2003-01-07 11:03:32Z cain $
|
|
|
19 |
|
|
|
20 |
class I18N_Common_en
|
|
|
21 |
{
|
|
|
22 |
/*
|
|
|
23 |
since this file is mostly the starting point for translations, dont forget to translate the
|
|
|
24 |
days and month names, which are not defined here for english, since they are the default values
|
|
|
25 |
which are in the DateTime-class itself
|
|
|
26 |
|
|
|
27 |
|
|
|
28 |
var $days = array( 'Sunday' , 'Monday' , 'Tuesday' , 'Wednesday' , 'Thursday' , 'Friday' , 'Saturday' );
|
|
|
29 |
|
|
|
30 |
var $daysAbbreviated = array( 'Sun','Mon','Tue','Wed','Thu','Fri','Sat');
|
|
|
31 |
|
|
|
32 |
var $monthsAbbreviated = array( 'Jan' , 'Feb' , 'Mar' , 'Apr' , 'May' , 'Jun' ,'Jul' , 'Aug' , 'Sep' , 'Oct' , 'Nov' , 'Dec' );
|
|
|
33 |
|
|
|
34 |
var $months = array(
|
|
|
35 |
'January',
|
|
|
36 |
'February',
|
|
|
37 |
'March',
|
|
|
38 |
'April',
|
|
|
39 |
'May',
|
|
|
40 |
'June',
|
|
|
41 |
'Juli',
|
|
|
42 |
'August',
|
|
|
43 |
'September',
|
|
|
44 |
'October',
|
|
|
45 |
'November',
|
|
|
46 |
'December'
|
|
|
47 |
);
|
|
|
48 |
|
|
|
49 |
*/
|
|
|
50 |
var $dateFormats = array(
|
|
|
51 |
I18N_DATETIME_SHORT => 'd/m/y',
|
|
|
52 |
I18N_DATETIME_DEFAULT => 'd-M-Y',
|
|
|
53 |
I18N_DATETIME_MEDIUM => 'd-M-Y',// ???? what shall medium look like????
|
|
|
54 |
I18N_DATETIME_LONG => 'd F Y',
|
|
|
55 |
I18N_DATETIME_FULL => 'l, d F Y'
|
|
|
56 |
);
|
|
|
57 |
var $timeFormats = array(
|
|
|
58 |
I18N_DATETIME_SHORT => 'H:i',
|
|
|
59 |
I18N_DATETIME_DEFAULT => 'H:i:s',
|
|
|
60 |
I18N_DATETIME_MEDIUM => 'H:i:s', // ???? what shall medium look like????
|
|
|
61 |
I18N_DATETIME_LONG => 'H:i:s T O',
|
|
|
62 |
I18N_DATETIME_FULL => 'H:i \o\'\c\l\o\c\k T O'
|
|
|
63 |
);
|
|
|
64 |
|
|
|
65 |
/**
|
|
|
66 |
* the NUMBER stuff
|
|
|
67 |
* @var array the same parameters as they have to be passed to the number_format-funciton
|
|
|
68 |
*/
|
|
|
69 |
var $numberFormat = array(
|
|
|
70 |
I18N_NUMBER_FLOAT => array('3','.',','),
|
|
|
71 |
I18N_NUMBER_INTEGER => array('0','.',','),
|
|
|
72 |
);
|
|
|
73 |
|
|
|
74 |
}
|
|
|
75 |
?>
|