1463 |
alexandre_ |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* $Id: hu.php,v 1.1 2007-06-25 09:55:28 alexandre_tb Exp $
|
|
|
4 |
*/
|
|
|
5 |
|
|
|
6 |
$this->dateFormats = array(
|
|
|
7 |
I18Nv2_DATETIME_SHORT => '%Y-%m-%d',
|
|
|
8 |
I18Nv2_DATETIME_DEFAULT => '%Y. %b. %d.',
|
|
|
9 |
I18Nv2_DATETIME_MEDIUM => '%Y. %b. %d.',
|
|
|
10 |
I18Nv2_DATETIME_LONG => '%Y. %B %d.',
|
|
|
11 |
I18Nv2_DATETIME_FULL => '%Y. %B %d., %A'
|
|
|
12 |
);
|
|
|
13 |
$this->timeFormats = array(
|
|
|
14 |
I18Nv2_DATETIME_SHORT => '%H:%M',
|
|
|
15 |
I18Nv2_DATETIME_DEFAULT => '%H:%M:%S',
|
|
|
16 |
I18Nv2_DATETIME_MEDIUM => '%H:%M:%S',
|
|
|
17 |
I18Nv2_DATETIME_LONG => '%H:%M:%S %Z',
|
|
|
18 |
I18Nv2_DATETIME_FULL => 'idõ: %H:%M %Z'
|
|
|
19 |
);
|
|
|
20 |
$this->currencyFormats[I18Nv2_CURRENCY_LOCAL][0] = 'Ft';
|
|
|
21 |
$this->currencyFormats[I18Nv2_CURRENCY_LOCAL][1] = '2';
|
|
|
22 |
$this->currencyFormats[I18Nv2_CURRENCY_LOCAL][2] = ',';
|
|
|
23 |
$this->currencyFormats[I18Nv2_CURRENCY_LOCAL][3] = '.';
|
|
|
24 |
$this->currencyFormats[I18Nv2_CURRENCY_INTERNATIONAL][0] = 'HUF';
|
|
|
25 |
$this->currencyFormats[I18Nv2_CURRENCY_INTERNATIONAL][1] = '2';
|
|
|
26 |
$this->currencyFormats[I18Nv2_CURRENCY_INTERNATIONAL][2] = '.';
|
|
|
27 |
$this->currencyFormats[I18Nv2_CURRENCY_INTERNATIONAL][3] = ',';
|
|
|
28 |
?>
|