forked from wenzhixin/bootstrap-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap-table-eu-EU.js
More file actions
43 lines (40 loc) · 1.27 KB
/
bootstrap-table-eu-EU.js
File metadata and controls
43 lines (40 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* Bootstrap Table Basque (Basque Country) translation
* Author: Iker Ibarguren Berasaluze<ikerib@gmail.com>
*/
(function ($) {
'use strict';
$.fn.bootstrapTable.locales['eu-EU'] = {
formatLoadingMessage: function () {
return 'Itxaron mesedez...';
},
formatRecordsPerPage: function (pageNumber) {
return pageNumber + ' emaitza orriko.';
},
formatShowingRows: function (pageFrom, pageTo, totalRows) {
return totalRows + ' erregistroetatik ' + pageFrom + 'etik ' + pageTo +'erakoak erakusten.';
},
formatSearch: function () {
return 'Bilatu';
},
formatNoMatches: function () {
return 'Ez da emaitzarik aurkitu';
},
formatPaginationSwitch: function () {
return 'Ezkutatu/Erakutsi orrikatzea';
},
formatRefresh: function () {
return 'Eguneratu';
},
formatToggle: function () {
return 'Ezkutatu/Erakutsi';
},
formatColumns: function () {
return 'Zutabeak';
},
formatAllRows: function () {
return 'Guztiak';
}
};
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['eu-EU']);
})(jQuery);