| 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 |
// | Authors: Piotr Klaban <makler@man.torun.pl> |
|
|
|
17 |
// | |
|
|
|
18 |
// +----------------------------------------------------------------------+//
|
|
|
19 |
// $Id: pl.php 110339 2003-01-04 11:55:29Z mj $
|
|
|
20 |
|
|
|
21 |
class I18N_Common_pl
|
|
|
22 |
{
|
|
|
23 |
|
|
|
24 |
var $days = array( 'Niedziela' , 'Poniedzia³ek' , 'Wtorek' , '¦roda' , 'Czwartek' , 'Pi±tek' , 'Sobota' );
|
|
|
25 |
|
|
|
26 |
var $daysAbbreviated = array( 'Ni','Po','Wt','¦r','Cz','Pi','So');
|
|
|
27 |
|
|
|
28 |
var $monthsAbbreviated = array( 'sty' , 'lut' , 'mar' , 'kwi', 'maj' , 'cze' , 'lip' ,'sie' , 'wrz' , 'pa¼' , 'lis' , 'gru' );
|
|
|
29 |
|
|
|
30 |
var $months = array(
|
|
|
31 |
'styczeñ',
|
|
|
32 |
'luty',
|
|
|
33 |
'marzec',
|
|
|
34 |
'kwiecieñ',
|
|
|
35 |
'maj',
|
|
|
36 |
'czerwiec',
|
|
|
37 |
'lipiec',
|
|
|
38 |
'sierpieñ',
|
|
|
39 |
'wrzesieñ',
|
|
|
40 |
'pa¼dziernik',
|
|
|
41 |
'listopad',
|
|
|
42 |
'grudzieñ'
|
|
|
43 |
);
|
|
|
44 |
|
|
|
45 |
|
|
|
46 |
var $dateFormats = array(
|
|
|
47 |
I18N_DATETIME_SHORT => 'd.m.y',
|
|
|
48 |
I18N_DATETIME_DEFAULT => 'd.m.Y',
|
|
|
49 |
I18N_DATETIME_MEDIUM => 'd M Y',// ???? what shall medium look like????
|
|
|
50 |
I18N_DATETIME_LONG => 'd F Y',
|
|
|
51 |
I18N_DATETIME_FULL => 'l, d F Y'
|
|
|
52 |
);
|
|
|
53 |
var $timeFormats = array(
|
|
|
54 |
I18N_DATETIME_SHORT => 'H:i',
|
|
|
55 |
I18N_DATETIME_DEFAULT => 'H:i:s',
|
|
|
56 |
I18N_DATETIME_MEDIUM => 'H:i:s', // ???? what shall medium look like????
|
|
|
57 |
I18N_DATETIME_LONG => 'H:i:s T O',
|
|
|
58 |
I18N_DATETIME_FULL => '\g\o\d\z\. H:i T O'
|
|
|
59 |
);
|
|
|
60 |
|
|
|
61 |
/**
|
|
|
62 |
* the NUMBER stuff
|
|
|
63 |
* @var array the same parameters as they have to be passed to the number_format-funciton
|
|
|
64 |
*/
|
|
|
65 |
var $numberFormat = array(
|
|
|
66 |
I18N_NUMBER_FLOAT => array('3',',','.'),
|
|
|
67 |
I18N_NUMBER_INTEGER => array('0',',','.'),
|
|
|
68 |
);
|
|
|
69 |
|
|
|
70 |
/**
|
|
|
71 |
* @var array the first is the currency symbol, second is the international currency symbol
|
|
|
72 |
*/
|
|
|
73 |
var $currencyFormats = array(
|
|
|
74 |
// probably about year 2006 there will be Euro currency
|
|
|
75 |
I18N_CURRENCY_LOCAL => array( '% z³' , '2',',','.' ),
|
|
|
76 |
I18N_CURRENCY_INTERNATIONAL => array( '% PLN' , '2',',','.' ),
|
|
|
77 |
);
|
|
|
78 |
|
|
|
79 |
}
|
|
|
80 |
?>
|