diff options
author | hikalkan <hikalkan@gmail.com> | 2013-01-28 04:22:15 -0800 |
---|---|---|
committer | hikalkan <hikalkan@gmail.com> | 2013-01-28 04:22:15 -0800 |
commit | a571e38d92ef93edf725587456616fb24825b0d0 (patch) | |
tree | c8b096822b6db0570b22e71f5a642d49542202d5 | |
parent | 25885e3b8d1b4b3c5bae6cf992c1b97eebc8733b (diff) | |
parent | 0fab862bd8e76b935b85ba533277cec215544c3d (diff) | |
download | jtable-a571e38d92ef93edf725587456616fb24825b0d0.zip jtable-a571e38d92ef93edf725587456616fb24825b0d0.tar.gz jtable-a571e38d92ef93edf725587456616fb24825b0d0.tar.bz2 |
Merge pull request #142 from edmspjp/patch-1
Create jquery.jtable.pt-PT.js
-rw-r--r-- | lib/localization/jquery.jtable.pt-PT.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/localization/jquery.jtable.pt-PT.js b/lib/localization/jquery.jtable.pt-PT.js new file mode 100644 index 0000000..4916b82 --- /dev/null +++ b/lib/localization/jquery.jtable.pt-PT.js @@ -0,0 +1,24 @@ +(function ($) { + + $.extend(true, $.hik.jtable.prototype.options.messages, { + serverCommunicationError: 'Erro na ligação ao servidor.', + loadingMessage: 'A ler dados ...', + noDataAvailable: 'Não existem dados!', + addNewRecord: 'Novo', + editRecord: 'Editar', + areYouSure: 'Tem a certeza?', + deleteConfirmation: 'Confirma eliminação?', + save: 'Salvar', + saving: 'A salvar ...', + cancel: 'Cancelar', + deleteText: 'Eliminar', + deleting: 'A eliminar ...', + error: 'Erro', + close: 'Fechar', + cannotLoadOptionsFor: 'Não foi possivel carregar opções para o campo {0}!', + pagingInfo: 'Registos {0} a {1} de {2}', + canNotDeletedRecords: 'Não foi possível eliminar o(s) registo(s) {0} de {1}!', + deleteProggress: 'A eliminar {0} de {1} registos ...' + }); + +})(jQuery); |