2021-03-25 13:26:11 +03:00
|
|
|
<?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.
|
|
|
|
*
|
2023-11-29 12:24:09 +03:00
|
|
|
* @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
|
2021-03-25 13:26:11 +03:00
|
|
|
* @filesource
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
2021-03-25 13:26:11 +03:00
|
|
|
|
2024-06-01 20:59:54 +03:00
|
|
|
$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'] = 'ديسمبر';
|