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: Wolfram Kriesing <wk@visionp.de>                            |
16
// |          Kovács Gergely <kgergely@dkgeast.hu>                        |
17
// +----------------------------------------------------------------------+
18
// $Id: hu.php 128187 2003-05-21 10:45:16Z cain $
19
 
20
class I18N_Common_hu
21
{
22
 
23
    var $days = array( 'vasárnap', 'hétfõ', 'kedd', 'szerda', 'csütörtök', 'péntek', 'szombat');
24
 
25
    var $daysAbbreviated = array( 'V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo' );
26
 
27
    var $monthsAbbreviated = array( 'jan', 'feb', 'márc', 'ápr', 'máj','jún', 'júl', 'aug', 'szept', 'okt', 'nov', 'dec' );
28
 
29
    var $months = array(
30
                            'január',
31
                            'február',
32
                            'március',
33
                            'április',
34
                            'május',
35
                            'június',
36
                            'július',
37
                            'augusztus',
38
                            'szeptember',
39
                            'október',
40
                            'november',
41
                            'december'
42
                        );
43
 
44
    var $dateFormats = array(
45
                            I18N_DATETIME_SHORT     =>  'Y-m-d',
46
                            I18N_DATETIME_DEFAULT   =>  'Y. M. d.',
47
                            I18N_DATETIME_MEDIUM    =>  'Y. M. d.',
48
                            I18N_DATETIME_LONG      =>  'Y. F d.',
49
                            I18N_DATETIME_FULL      =>  'Y. F d., l'
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      =>  '\i\d\õ: H:i T O'
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
    var $currencyFormats = array(
69
                                I18N_CURRENCY_LOCAL         =>  array("% Ft" , '2', ',', '.'),
70
                                I18N_CURRENCY_INTERNATIONAL =>  array('HUF %', '2', '.', ',')
71
                            );
72
 
73
}
74
?>