1463 |
alexandre_ |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* $Id: cs.php,v 1.1 2007-06-25 09:55:28 alexandre_tb Exp $
|
|
|
4 |
* @author <mishal(@)centrum.cz>
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
$this->dateFormats = array(
|
|
|
8 |
I18Nv2_DATETIME_SHORT => '%d.%m.%y',
|
|
|
9 |
I18Nv2_DATETIME_DEFAULT => '%d.%m.%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 => '%H:%M hod. %Z'
|
|
|
20 |
);
|
|
|
21 |
|
|
|
22 |
$this->currencyFormats[I18Nv2_CURRENCY_LOCAL][0] = 'Kè';
|
|
|
23 |
$this->currencyFormats[I18Nv2_CURRENCY_LOCAL][1] = '2';
|
|
|
24 |
$this->currencyFormats[I18Nv2_CURRENCY_LOCAL][2] = ',';
|
|
|
25 |
$this->currencyFormats[I18Nv2_CURRENCY_LOCAL][3] = '.';
|
|
|
26 |
$this->currencyFormats[I18Nv2_CURRENCY_INTERNATIONAL][0] = 'CZK';
|
|
|
27 |
$this->currencyFormats[I18Nv2_CURRENCY_INTERNATIONAL][1] = '2';
|
|
|
28 |
$this->currencyFormats[I18Nv2_CURRENCY_INTERNATIONAL][2] = '.';
|
|
|
29 |
$this->currencyFormats[I18Nv2_CURRENCY_INTERNATIONAL][3] = ',';
|
|
|
30 |
|
|
|
31 |
?>
|