mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
84 lines
3.1 KiB
PHP
84 lines
3.1 KiB
PHP
<?php
|
||
/**
|
||
* CodeIgniter
|
||
*
|
||
* An open source application development framework for PHP
|
||
*
|
||
* This content is released under the MIT License (MIT)
|
||
*
|
||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||
*
|
||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
* of this software and associated documentation files (the "Software"), to deal
|
||
* in the Software without restriction, including without limitation the rights
|
||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
* copies of the Software, and to permit persons to whom the Software is
|
||
* furnished to do so, subject to the following conditions:
|
||
*
|
||
* The above copyright notice and this permission notice shall be included in
|
||
* all copies or substantial portions of the Software.
|
||
*
|
||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
* THE SOFTWARE.
|
||
*
|
||
* @package CodeIgniter
|
||
* @author EllisLab Dev Team
|
||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||
* @license https://opensource.org/licenses/MIT MIT License
|
||
* @link https://codeigniter.com
|
||
* @since Version 1.0.0
|
||
* @filesource
|
||
*/
|
||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
||
$lang['cal_su'] = 'Вс';
|
||
$lang['cal_mo'] = 'Пн';
|
||
$lang['cal_tu'] = 'Вт';
|
||
$lang['cal_we'] = 'Ср';
|
||
$lang['cal_th'] = 'Чт';
|
||
$lang['cal_fr'] = 'Пт';
|
||
$lang['cal_sa'] = 'Сб';
|
||
$lang['cal_sun'] = 'Вос';
|
||
$lang['cal_mon'] = 'Пон';
|
||
$lang['cal_tue'] = 'Втр';
|
||
$lang['cal_wed'] = 'Сре';
|
||
$lang['cal_thu'] = 'Чет';
|
||
$lang['cal_fri'] = 'Пят';
|
||
$lang['cal_sat'] = 'Суб';
|
||
$lang['cal_sunday'] = 'Воскресенье';
|
||
$lang['cal_monday'] = 'Понедельник';
|
||
$lang['cal_tuesday'] = 'Вторник';
|
||
$lang['cal_wednesday'] = 'Среда';
|
||
$lang['cal_thursday'] = 'Четверг';
|
||
$lang['cal_friday'] = 'Пятница';
|
||
$lang['cal_saturday'] = 'Суббота';
|
||
$lang['cal_jan'] = 'Янв';
|
||
$lang['cal_feb'] = 'Фев';
|
||
$lang['cal_mar'] = 'Мар';
|
||
$lang['cal_apr'] = 'Апр';
|
||
$lang['cal_may'] = 'Май';
|
||
$lang['cal_jun'] = 'Июн';
|
||
$lang['cal_jul'] = 'Июл';
|
||
$lang['cal_aug'] = 'Авг';
|
||
$lang['cal_sep'] = 'Сен';
|
||
$lang['cal_oct'] = 'Окт';
|
||
$lang['cal_nov'] = 'Ноя';
|
||
$lang['cal_dec'] = 'Дек';
|
||
$lang['cal_january'] = 'Январь';
|
||
$lang['cal_february'] = 'Февраль';
|
||
$lang['cal_march'] = 'Март';
|
||
$lang['cal_april'] = 'Апрель';
|
||
$lang['cal_mayl'] = 'Май';
|
||
$lang['cal_june'] = 'Июнь';
|
||
$lang['cal_july'] = 'Июль';
|
||
$lang['cal_august'] = 'Август';
|
||
$lang['cal_september'] = 'Сентябрь';
|
||
$lang['cal_october'] = 'Октябрь';
|
||
$lang['cal_november'] = 'Ноябрь';
|
||
$lang['cal_december'] = 'Декабрь';
|