File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ define ( function ( ) {
2+ // Arabic
3+ return {
4+ errorLoading : function ( ) {
5+ return 'لا يمكن تحميل النتائج' ;
6+ } ,
7+ inputTooLong : function ( args ) {
8+ var overChars = args . input . length - args . maximum ;
9+
10+ var message = 'الرجاء حذف ' + overChars + ' عناصر' ;
11+
12+ return message ;
13+ } ,
14+ inputTooShort : function ( args ) {
15+ var remainingChars = args . minimum - args . input . length ;
16+
17+ var message = 'الرجاء إضافة ' + remainingChars + ' عناصر' ;
18+
19+ return message ;
20+ } ,
21+ loadingMore : function ( ) {
22+ return 'جاري تحميل نتائج إضافية...' ;
23+ } ,
24+ maximumSelected : function ( args ) {
25+ var message = 'تستطيع إختيار ' + args . maximum + ' بنود فقط' ;
26+
27+ return message ;
28+ } ,
29+ noResults : function ( ) {
30+ return 'لم يتم العثور على أي نتائج' ;
31+ } ,
32+ searching : function ( ) {
33+ return 'جاري البحث…' ;
34+ }
35+ } ;
36+ } ) ;
You can’t perform that action at this time.
0 commit comments