File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * Bootstrap Table Estonian translation
3
+ * Author: kristjan@logist.it>
4
+ */
5
+ ( function ( $ ) {
6
+ 'use strict' ;
7
+
8
+ $ . fn . bootstrapTable . locales [ 'et-EE' ] = {
9
+ formatLoadingMessage : function ( ) {
10
+ return 'Päring käib, palun oota...' ;
11
+ } ,
12
+ formatRecordsPerPage : function ( pageNumber ) {
13
+ return pageNumber + ' rida lehe kohta' ;
14
+ } ,
15
+ formatShowingRows : function ( pageFrom , pageTo , totalRows ) {
16
+ return 'Näitan tulemusi ' + pageFrom + ' kuni ' + pageTo + ' - kokku ' + totalRows + ' tulemust' ;
17
+ } ,
18
+ formatSearch : function ( ) {
19
+ return 'Otsi' ;
20
+ } ,
21
+ formatNoMatches : function ( ) {
22
+ return 'Päringu tingimustele ei vastanud ühtegi tulemust' ;
23
+ } ,
24
+ formatPaginationSwitch : function ( ) {
25
+ return 'Näita/Peida lehtedeks jagamine' ;
26
+ } ,
27
+ formatRefresh : function ( ) {
28
+ return 'Värskenda' ;
29
+ } ,
30
+ formatToggle : function ( ) {
31
+ return 'Lülita' ;
32
+ } ,
33
+ formatColumns : function ( ) {
34
+ return 'Veerud' ;
35
+ } ,
36
+ formatAllRows : function ( ) {
37
+ return 'Kõik' ;
38
+ }
39
+ } ;
40
+
41
+ $ . extend ( $ . fn . bootstrapTable . defaults , $ . fn . bootstrapTable . locales [ 'et-EE' ] ) ;
42
+
43
+ } ) ( jQuery ) ;
You can’t perform that action at this time.
0 commit comments