pnp4nagios/lib/kohana/system/i18n/ru_RU/calendar.php
2017-05-20 15:26:21 +02:00

60 lines
1.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
// Two letter days
'mo' => 'Пн',
'tu' => 'Вт',
'we' => 'Ср',
'th' => 'Чт',
'fr' => 'Пт',
'sa' => 'Сб',
'su' => 'Вс',
// Short day names
'mon' => 'Пнд',
'tue' => 'Втр',
'wed' => 'Срд',
'thu' => 'Чтв',
'fri' => 'Птн',
'sat' => 'Сбт',
'sun' => 'Вск',
// Long day names
'monday' => 'Понедельник',
'tuesday' => 'Вторник',
'wednesday' => 'Среда',
'thursday' => 'Четверг',
'friday' => 'Пятница',
'saturday' => 'Суббота',
'sunday' => 'Воскресенье',
// Short month names
'jan' => 'Янв',
'feb' => 'Фев',
'mar' => 'Мар',
'apr' => 'Апр',
'may' => 'Май',
'jun' => 'Июн',
'jul' => 'Июл',
'aug' => 'Авг',
'sep' => 'Сен',
'oct' => 'Окт',
'nov' => 'Ноя',
'dec' => 'Дек',
// Long month names
'january' => 'Январь',
'february' => 'Февраль',
'march' => 'Март',
'april' => 'Апрель',
'mayl' => 'Май',
'june' => 'Июнь',
'july' => 'Июль',
'august' => 'Август',
'september' => 'Сентябрь',
'october' => 'Октябрь',
'november' => 'Ноябрь',
'december' => 'Декабрь'
);