File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11define ( function ( ) {
2- // Hebrew
2+ // English
33 return {
44 errorLoading : function ( ) {
5- return 'התוצאות לא נטענו בהלכה ' ;
5+ return 'The results could not be loaded. ' ;
66 } ,
77 inputTooLong : function ( args ) {
88 var overChars = args . input . length - args . maximum ;
99
10- var message = 'נא למחוק ' + overChars + ' תווים ' ;
10+ var message = 'Please delete ' + overChars + ' character ' ;
1111
1212 if ( overChars != 1 ) {
1313 message += 's' ;
@@ -18,15 +18,15 @@ define(function () {
1818 inputTooShort : function ( args ) {
1919 var remainingChars = args . minimum - args . input . length ;
2020
21- var message = 'נא להכניס ' + remainingChars + ' תווים או יותר ' ;
21+ var message = 'Please enter ' + remainingChars + ' or more characters ' ;
2222
2323 return message ;
2424 } ,
2525 loadingMore : function ( ) {
26- return 'טען תוצאות נוספות …' ;
26+ return 'Loading more results …' ;
2727 } ,
2828 maximumSelected : function ( args ) {
29- var message = 'באפשרותך לבחור רק ' + args . maximum + ' פריטים ' ;
29+ var message = 'You can only select ' + args . maximum + ' item ' ;
3030
3131 if ( args . maximum != 1 ) {
3232 message += 's' ;
@@ -35,10 +35,10 @@ define(function () {
3535 return message ;
3636 } ,
3737 noResults : function ( ) {
38- return 'לא נמצאו תוצאות ' ;
38+ return 'No results found ' ;
3939 } ,
4040 searching : function ( ) {
41- return 'מחפש …' ;
41+ return 'Searching …' ;
4242 }
4343 } ;
4444} ) ;
Original file line number Diff line number Diff line change 1+ define ( function ( ) {
2+ // Hebrew
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 += 's' ;
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+
31+ if ( args . maximum != 1 ) {
32+ message += 's' ;
33+ }
34+
35+ return message ;
36+ } ,
37+ noResults : function ( ) {
38+ return 'לא נמצאו תוצאות' ;
39+ } ,
40+ searching : function ( ) {
41+ return 'מחפש…' ;
42+ }
43+ } ;
44+ } ) ;
You can’t perform that action at this time.
0 commit comments