mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-12-21 06:02:23 +03:00
84 lines
3 KiB
PHP
84 lines
3 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'] = '1月';
|
|
$lang['cal_feb'] = '2月';
|
|
$lang['cal_mar'] = '3月';
|
|
$lang['cal_apr'] = '4月';
|
|
$lang['cal_may'] = '5月';
|
|
$lang['cal_jun'] = '6月';
|
|
$lang['cal_jul'] = '7月';
|
|
$lang['cal_aug'] = '8月';
|
|
$lang['cal_sep'] = '9月';
|
|
$lang['cal_oct'] = '10月';
|
|
$lang['cal_nov'] = '11月';
|
|
$lang['cal_dec'] = '12月';
|
|
$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'] = '十二月';
|