2  * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
 
   4  * Licensed under the Apache License, Version 2.0 (the "License");
 
   5  * you may not use this file except in compliance with the License.
 
   6  * You may obtain a copy of the License at
 
   8  *     http://www.apache.org/licenses/LICENSE-2.0
 
  10  * Unless required by applicable law or agreed to in writing, software
 
  11  * distributed under the License is distributed on an "AS IS" BASIS,
 
  12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  13  * See the License for the specific language governing permissions and
 
  14  * limitations under the License.
 
  16  *     Author: Zhaoxing Meng
 
  17  *     email: meng.zhaoxing1@zte.com.cn
 
  19 (function( factory ) {
 
  20         if ( typeof define === "function" && define.amd ) {
 
  21                 define( ["jquery", "../jquery.validate"], factory );
 
  28  * Translated default messages for the jQuery validation plugin.
 
  29  * Locale: AR (Arabic; العربية)
 
  31 $.extend($.validator.messages, {
 
  32         required: "هذا الحقل إلزامي",
 
  33         remote: "يرجى تصحيح هذا الحقل للمتابعة",
 
  34         email: "رجاء إدخال عنوان بريد إلكتروني صحيح",
 
  35         url: "رجاء إدخال عنوان موقع إلكتروني صحيح",
 
  36         date: "رجاء إدخال تاريخ صحيح",
 
  37         dateISO: "رجاء إدخال تاريخ صحيح (ISO)",
 
  38         number: "رجاء إدخال عدد بطريقة صحيحة",
 
  39         digits: "رجاء إدخال أرقام فقط",
 
  40         creditcard: "رجاء إدخال رقم بطاقة ائتمان صحيح",
 
  41         equalTo: "رجاء إدخال نفس القيمة",
 
  42         extension: "رجاء إدخال ملف بامتداد موافق عليه",
 
  43         maxlength: $.validator.format("الحد الأقصى لعدد الحروف هو {0}"),
 
  44         minlength: $.validator.format("الحد الأدنى لعدد الحروف هو {0}"),
 
  45         rangelength: $.validator.format("عدد الحروف يجب أن يكون بين {0} و {1}"),
 
  46         range: $.validator.format("رجاء إدخال عدد قيمته بين {0} و {1}"),
 
  47         max: $.validator.format("رجاء إدخال عدد أقل من أو يساوي (0}"),
 
  48         min: $.validator.format("رجاء إدخال عدد أكبر من أو يساوي (0}")