easyappointments/application/language/arabic/form_validation_lang.php

70 lines
5.1 KiB
PHP
Raw Normal View History

<?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');
2024-06-01 20:59:54 +03:00
$lang['form_validation_required'] = 'الحقل {field} مطلوب.';
$lang['form_validation_isset'] = 'الحقل {field} يجب أن يحتوي قيمة.';
$lang['form_validation_valid_email'] = 'الحقل {field} يجب أن يحتوي عنوان بريد إلكتروني صحيح.';
$lang['form_validation_valid_emails'] = 'الحقل {field} يجب أن يحتوي على جميع عناوين البريد الإلكتروني الصحيحة.';
$lang['form_validation_valid_url'] = 'الحقل {field} يجب أن يحتوي عنوان موقع إلكتروني صحيح.';
$lang['form_validation_valid_ip'] = 'الحقل {field} يجب أن يحتوي عنوان IP صحيح.';
$lang['form_validation_valid_base64'] = 'الحقل {field} يجب أن يحتوي على نصح Base64 صحيح.';
$lang['form_validation_min_length'] = 'الحقل {field} يجب أن يحتوي على الأقل {param} حرف.';
$lang['form_validation_max_length'] = 'الحقل {field} يجب أن لا يزيد عن {param} حرف.';
$lang['form_validation_exact_length'] = 'الحقل {field} يجب أن يحتوي على {param} حرف بالضبط.';
$lang['form_validation_alpha'] = 'الحقل {field} يقبل أحرف هجائية فقط.';
$lang['form_validation_alpha_numeric'] = 'الحقل {field} يقبل أحرف وأرقام فقط.';
$lang['form_validation_alpha_numeric_spaces'] = 'الحقل {field} يقبل أحرف وأرقام ومسافات فقط.';
$lang['form_validation_alpha_dash'] = 'الحقل {field} يقبل أحرف وأرقام وشرطات وشرطات على السطر فقط.';
$lang['form_validation_numeric'] = 'الحقل {field} يجب أن يحتوي على أرقام فقط.';
$lang['form_validation_is_numeric'] = 'الحقل {field} يجب أن يحتوي على أحرف رقمية فقط.';
$lang['form_validation_integer'] = 'الحقل {field} يجب أن يحتوي على عدد صحيح.';
$lang['form_validation_regex_match'] = 'الحقل {field} يجب أن يكون بالصيغة الصحيحة.';
$lang['form_validation_matches'] = 'الحقل {field} لا يطابق قيمة الحقل {param}.';
$lang['form_validation_differs'] = 'الحقل {field} يجب أن يختلف عن الحقل {param}.';
$lang['form_validation_is_unique'] = 'الحقل {field} يجب أن يحتوي على قيمة فريدة.';
$lang['form_validation_is_natural'] = 'الحقل {field} يجب أن يحتوي فقط على أرقام.';
$lang['form_validation_is_natural_no_zero'] = 'الحقل {field} يجب أن يحتوي فقط على أرقام أكبر من الصفر.';
$lang['form_validation_decimal'] = 'الحقل {field} يجب أن يحتوي على رقم عشري.';
$lang['form_validation_less_than'] = 'الحقل {field} يجب أن يحتوي على رقم أقل من {param}.';
$lang['form_validation_less_than_equal_to'] = 'الحقل {field} يجب أن يحتوي على رقم أقل من أو يساوي {param}.';
$lang['form_validation_greater_than'] = 'الحقل {field} يجب أن يحتوي على رقم أكبر من {param}.';
$lang['form_validation_greater_than_equal_to'] = 'الحقل {field} يجب أن يحتوي على رقم أكبر من أو يساوي {param}.';
$lang['form_validation_error_message_not_set'] = 'غير قادر على الوصول إلى رسالة خطأ تتوافق مع اسم الحقل {field}.';
$lang['form_validation_in_list'] = 'الحقل {field} يجب أن يكون واحد من: {param}.';