You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
11 months ago
|
/**
|
||
|
* Bootstrap Table Portuguese Portugal Translation
|
||
|
* Author: Burnspirit<burnspirit@gmail.com>
|
||
|
*/
|
||
|
(function ($) {
|
||
|
'use strict';
|
||
|
|
||
|
$.fn.bootstrapTable.locales['pt-PT'] = {
|
||
|
formatLoadingMessage: function () {
|
||
|
return 'A carregar, por favor aguarde...';
|
||
|
},
|
||
|
formatRecordsPerPage: function (pageNumber) {
|
||
|
return pageNumber + ' registos por página';
|
||
|
},
|
||
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
||
|
return 'A mostrar ' + pageFrom + ' até ' + pageTo + ' de ' + totalRows + ' linhas';
|
||
|
},
|
||
|
formatSearch: function () {
|
||
|
return 'Pesquisa';
|
||
|
},
|
||
|
formatNoMatches: function () {
|
||
|
return 'Nenhum registo encontrado';
|
||
|
},
|
||
|
formatPaginationSwitch: function () {
|
||
|
return 'Esconder/Mostrar paginação';
|
||
|
},
|
||
|
formatRefresh: function () {
|
||
|
return 'Atualizar';
|
||
|
},
|
||
|
formatToggle: function () {
|
||
|
return 'Alternar';
|
||
|
},
|
||
|
formatColumns: function () {
|
||
|
return 'Colunas';
|
||
|
},
|
||
|
formatAllRows: function () {
|
||
|
return 'Tudo';
|
||
|
}
|
||
|
};
|
||
|
|
||
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pt-PT']);
|
||
|
|
||
|
})(jQuery);
|