Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
// +----------------------------------------------------------------------+
3
// | PHP version 4.0                                                      |
4
// +----------------------------------------------------------------------+
5
// | Copyright (c) 1997-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: Tommy Ipsen <tommy.ipsen@nalnet.dk>                         |
16
// +----------------------------------------------------------------------+
17
// $Id: da_DK.php 136856 2003-08-07 07:45:50Z cain $
18
 
19
class I18N_Common_da_DK
20
{
21
 
22
    var $days = array('søndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lørdag');
23
 
24
    var $daysAbbreviated = array('søn', 'man', 'tir','ons','tor','fre','lør');
25
 
26
    var $monthsAbbreviated = array( 'Jan' , 'Feb' , 'Mar' , 'Apr' , 'Maj' , 'Jun' ,'Jul' , 'Aug' , 'Sep' , 'Okt' , 'Nov' , 'Dec' );
27
 
28
    var $months = array(
29
                            'januar',
30
                            'februar',
31
                            'marts',
32
                            'april',
33
                            'maj',
34
                            'juni',
35
                            'juli',
36
                            'august',
37
                            'september',
38
                            'oktober',
39
                            'november',
40
                            'december'
41
                        );
42
 
43
    var $dateFormats = array(
44
                            I18N_DATETIME_SHORT    =>  'j/n-y',
45
                            I18N_DATETIME_DEFAULT  =>  'd-M-Y',
46
                            I18N_DATETIME_MEDIUM    =>  'd-M-Y',
47
                            I18N_DATETIME_LONG      =>  'j. F Y',
48
                            I18N_DATETIME_FULL      =>  'l, \d. j. F Y'
49
                        );
50
 
51
    var $timeFormats = array(
52
                            I18N_DATETIME_SHORT     =>  'H:i',
53
                            I18N_DATETIME_DEFAULT   =>  'H:i:s',
54
                            I18N_DATETIME_MEDIUM    =>  'H:i:s',
55
                            I18N_DATETIME_LONG      =>  'H:i:s T O',
56
                            I18N_DATETIME_FULL      =>  '\k\l. H:i'
57
                        );
58
 
59
   /**
60
    * the NUMBER stuff
61
    * @var    array   the same parameters as they have to be passed to the number_format-funciton
62
    */
63
    var $numberFormat = array(
64
                                I18N_NUMBER_FLOAT   =>  array('3',',','.'),
65
                                I18N_NUMBER_INTEGER =>  array('0',',','.'),
66
                            );
67
 
68
}
69
?>