Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1463 alexandre_ 1
<?php
2
/**
3
* $Id: no.php,v 1.1 2007-06-25 09:55:28 alexandre_tb Exp $
4
* @author   Asgeir Frimannsson <asgeir(@)frimannsson.com>
5
*/
6
 
7
$this->dateFormats = array(
8
    I18Nv2_DATETIME_SHORT     =>  '%d.%m.%y',
9
    I18Nv2_DATETIME_DEFAULT   =>  '%d.%b.%Y',
10
    I18Nv2_DATETIME_MEDIUM    =>  '%d.%b.%Y',
11
    I18Nv2_DATETIME_LONG      =>  '%d. %B %Y',
12
    I18Nv2_DATETIME_FULL      =>  '%A %d. %B %Y'
13
);
14
$this->timeFormats = array(
15
    I18Nv2_DATETIME_SHORT     =>  '%H:%M',
16
    I18Nv2_DATETIME_DEFAULT   =>  '%H:%M:%S',
17
    I18Nv2_DATETIME_MEDIUM    =>  '%H:%M:%S',
18
    I18Nv2_DATETIME_LONG      =>  '%H:%M:%S %Z',
19
    I18Nv2_DATETIME_FULL      =>  'kl %H.%M %Z'
20
);
21
?>