| 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: Antony Dovgal <tony2001@php.net> |
|
|
|
16 |
// | |
|
|
|
17 |
// +----------------------------------------------------------------------+//
|
|
|
18 |
// $Id: ru.php 127952 2003-05-20 12:10:50Z cain $
|
|
|
19 |
|
|
|
20 |
class I18N_Common_ru
|
|
|
21 |
{
|
|
|
22 |
var $days = array( '÷ÏÓËÒÅÓÅÎØÅ' , 'ðÏÎÅÄÅÌØÎÉË' , '÷ÔÏÒÎÉË' , 'óÒÅÄÁ' , 'þÅÔ×ÅÒÇ' , 'ðÑÔÎÉÃÁ' , 'óÕÂÂÏÔÁ' );
|
|
|
23 |
|
|
|
24 |
var $daysAbbreviated = array( '÷ÓË','ðÎÄ','÷ÔÒ','óÒÄ','þÔ×','ðÔÎ','óÕÂ');
|
|
|
25 |
|
|
|
26 |
var $monthsAbbreviated = array( 'ñÎ×' , 'æÅ×' , 'íÁÒ' , 'áÐÒ' , 'íÁÊ' , 'éÀÎ' ,'éÀÌ' , 'á×Ç' , 'óÅÎ' , 'ïËÔ' , 'îÏÑ' , 'äÅË' );
|
|
|
27 |
|
|
|
28 |
var $months = array(
|
|
|
29 |
'ñÎ×ÁÒÑ',
|
|
|
30 |
'æÅ×ÒÁÌÑ',
|
|
|
31 |
'íÁÒÔÁ',
|
|
|
32 |
'áÐÒÅÌÑ',
|
|
|
33 |
'íÁÑ',
|
|
|
34 |
'éÀÎÑ',
|
|
|
35 |
'éÀÌÑ',
|
|
|
36 |
'á×ÇÕÓÔÁ',
|
|
|
37 |
'óÅÎÔÑÂÒÑ',
|
|
|
38 |
'ïËÔÑÂÒÑ',
|
|
|
39 |
'îÏÑÂÒÑ',
|
|
|
40 |
'äÅËÁÂÒÑ'
|
|
|
41 |
);
|
|
|
42 |
|
|
|
43 |
var $dateFormats = array(
|
|
|
44 |
I18N_DATETIME_SHORT => 'd/m/y',
|
|
|
45 |
I18N_DATETIME_DEFAULT => 'd-M-Y',
|
|
|
46 |
I18N_DATETIME_MEDIUM => 'd-M-Y',// ???? what shall medium look like????
|
|
|
47 |
I18N_DATETIME_LONG => 'd F Y',
|
|
|
48 |
I18N_DATETIME_FULL => 'l, d F Y'
|
|
|
49 |
);
|
|
|
50 |
var $timeFormats = array(
|
|
|
51 |
I18N_DATETIME_SHORT => 'H:i',
|
|
|
52 |
I18N_DATETIME_DEFAULT => 'H:i:s',
|
|
|
53 |
I18N_DATETIME_MEDIUM => 'H:i:s', // ???? what shall medium look like????
|
|
|
54 |
I18N_DATETIME_LONG => 'H:i:s T O',
|
|
|
55 |
I18N_DATETIME_FULL => 'H:i \Þ\Á\Ó\Ï\× T O'
|
|
|
56 |
);
|
|
|
57 |
|
|
|
58 |
/**
|
|
|
59 |
* the NUMBER stuff
|
|
|
60 |
* @var array the same parameters as they have to be passed to the number_format-funciton
|
|
|
61 |
*/
|
|
|
62 |
var $numberFormat = array(
|
|
|
63 |
I18N_NUMBER_FLOAT => array('3','.',','),
|
|
|
64 |
I18N_NUMBER_INTEGER => array('0','.',','),
|
|
|
65 |
);
|
|
|
66 |
/**
|
|
|
67 |
* @var array the first is the currency symbol, second is the international currency symbol
|
|
|
68 |
*/
|
|
|
69 |
var $currencyFormats = array(
|
|
|
70 |
I18N_CURRENCY_LOCAL => array( '% Ò.' , '2' , '.' , ',' ),
|
|
|
71 |
I18N_CURRENCY_INTERNATIONAL => array( 'RUR %' , '2' , '.' , ',' )
|
|
|
72 |
);
|
|
|
73 |
|
|
|
74 |
}
|
|
|
75 |
?>
|