8000 Added new locale file: bootstrap-table-et-EE.js · coderabsolute/bootstrap-table@706b5e0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 706b5e0

Browse files
author
tennex
committed
Added new locale file: bootstrap-table-et-EE.js
1 parent f9a9bbb commit 706b5e0

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

src/locale/bootstrap-table-et-EE.js

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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);

0 commit comments

Comments
 (0)
0