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+ // Hindi
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+ if ( overChars > 1 ) {
13+ message = overChars + ' अक्षरों को हटा दें ' ;
14+ }
15+
16+ return message ;
17+ } ,
18+ inputTooShort : function ( args ) {
19+ var remainingChars = args . minimum - args . input . length ;
20+
21+ var message = 'कृपया ' + remainingChars + ' या अधिक अक्षर दर्ज करें' ;
22+
23+ return message ;
24+ } ,
25+ loadingMore : function ( ) {
26+ return 'अधिक परिणाम लोड हो रहे है...' ;
27+ } ,
28+ maximumSelected : function ( args ) {
29+ var message = 'आप केवल ' + args . maximum + ' आइटम का चयन कर सकते हैं' ;
30+ return message ;
31+ } ,
32+ noResults : function ( ) {
33+ return 'कोई परिणाम नहीं मिला' ;
34+ } ,
35+ searching : function ( ) {
36+ return 'खोज रहा है...' ;
37+ }
38+ } ;
39+ } ) ;
You can’t perform that action at this time.
0 commit comments