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+ // Khmer
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