all
This commit is contained in:
44
Productivite/Snipe-IT/resources/assets/js/locale/bootstrap-table-ca-ES.js
vendored
Normal file
44
Productivite/Snipe-IT/resources/assets/js/locale/bootstrap-table-ca-ES.js
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
/**
|
||||
* Bootstrap Table Catalan translation
|
||||
* Authors: Marc Pina<iwalkalone69@gmail.com>
|
||||
* Claudi Martinez<claudix.kernel@gmail.com>
|
||||
*/
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
$.fn.bootstrapTable.locales['ca-ES'] = {
|
||||
formatLoadingMessage: function () {
|
||||
return 'Espereu, si us plau...';
|
||||
},
|
||||
formatRecordsPerPage: function (pageNumber) {
|
||||
return pageNumber + ' resultats per pàgina';
|
||||
},
|
||||
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
||||
return 'Mostrant de ' + pageFrom + ' fins ' + pageTo + ' - total ' + totalRows + ' resultats';
|
||||
},
|
||||
formatSearch: function () {
|
||||
return 'Cerca';
|
||||
},
|
||||
formatNoMatches: function () {
|
||||
return 'No s\'han trobat resultats';
|
||||
},
|
||||
formatPaginationSwitch: function () {
|
||||
return 'Amaga/Mostra paginació';
|
||||
},
|
||||
formatRefresh: function () {
|
||||
return 'Refresca';
|
||||
},
|
||||
formatToggle: function () {
|
||||
return 'Alterna formatació';
|
||||
},
|
||||
formatColumns: function () {
|
||||
return 'Columnes';
|
||||
},
|
||||
formatAllRows: function () {
|
||||
return 'Tots';
|
||||
}
|
||||
};
|
||||
|
||||
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ca-ES']);
|
||||
|
||||
})(jQuery);
|
Reference in New Issue
Block a user