Theme Inspinia
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

grid.locale-pt.js 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. ;(function($){
  2. /**
  3. * jqGrid Portuguese Translation
  4. * Tradu��o da jqGrid em Portugues por Frederico Carvalho, http://www.eyeviewdesign.pt
  5. * Dual licensed under the MIT and GPL licenses:
  6. * http://www.opensource.org/licenses/mit-license.php
  7. * http://www.gnu.org/licenses/gpl.html
  8. **/
  9. $.jgrid = $.jgrid || {};
  10. $.extend($.jgrid,{
  11. defaults : {
  12. recordtext: "View {0} - {1} of {2}",
  13. emptyrecords: "No records to view",
  14. loadtext: "A carregar...",
  15. pgtext : "Página {0} de {1}"
  16. },
  17. search : {
  18. caption: "Busca...",
  19. Find: "Procurar",
  20. Reset: "Limpar",
  21. odata: [{ oper:'eq', text:'equal'},{ oper:'ne', text:'not equal'},{ oper:'lt', text:'less'},{ oper:'le', text:'less or equal'},{ oper:'gt', text:'greater'},{ oper:'ge', text:'greater or equal'},{ oper:'bw', text:'begins with'},{ oper:'bn', text:'does not begin with'},{ oper:'in', text:'is in'},{ oper:'ni', text:'is not in'},{ oper:'ew', text:'ends with'},{ oper:'en', text:'does not end with'},{ oper:'cn', text:'contains'},{ oper:'nc', text:'does not contain'},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],
  22. groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ],
  23. operandTitle : "Click to select search operation.",
  24. resetTitle : "Reset Search Value"
  25. },
  26. edit : {
  27. addCaption: "Adicionar Registo",
  28. editCaption: "Modificar Registo",
  29. bSubmit: "Submeter",
  30. bCancel: "Cancelar",
  31. bClose: "Fechar",
  32. saveData: "Data has been changed! Save changes?",
  33. bYes : "Yes",
  34. bNo : "No",
  35. bExit : "Cancel",
  36. msg: {
  37. required:"Campo obrigat�rio",
  38. number:"Por favor, introduza um numero",
  39. minValue:"O valor deve ser maior ou igual que",
  40. maxValue:"O valor deve ser menor ou igual a",
  41. email: "N�o � um endere�o de email v�lido",
  42. integer: "Por favor, introduza um numero inteiro",
  43. url: "is not a valid URL. Prefix required ('http://' or 'https://')",
  44. nodefined : " is not defined!",
  45. novalue : " return value is required!",
  46. customarray : "Custom function should return array!",
  47. customfcheck : "Custom function should be present in case of custom checking!"
  48. }
  49. },
  50. view : {
  51. caption: "View Record",
  52. bClose: "Close"
  53. },
  54. del : {
  55. caption: "Eliminar",
  56. msg: "Deseja eliminar o(s) registo(s) seleccionado(s)?",
  57. bSubmit: "Eliminar",
  58. bCancel: "Cancelar"
  59. },
  60. nav : {
  61. edittext: " ",
  62. edittitle: "Modificar registo seleccionado",
  63. addtext:" ",
  64. addtitle: "Adicionar novo registo",
  65. deltext: " ",
  66. deltitle: "Eliminar registo seleccionado",
  67. searchtext: " ",
  68. searchtitle: "Procurar",
  69. refreshtext: "",
  70. refreshtitle: "Actualizar",
  71. alertcap: "Aviso",
  72. alerttext: "Por favor, seleccione um registo",
  73. viewtext: "",
  74. viewtitle: "View selected row"
  75. },
  76. col : {
  77. caption: "Mostrar/Ocultar Colunas",
  78. bSubmit: "Enviar",
  79. bCancel: "Cancelar"
  80. },
  81. errors : {
  82. errcap : "Erro",
  83. nourl : "N�o especificou um url",
  84. norecords: "N�o existem dados para processar",
  85. model : "Tamanho do colNames <> colModel!"
  86. },
  87. formatter : {
  88. integer : {thousandsSeparator: " ", defaultValue: '0'},
  89. number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
  90. currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
  91. date : {
  92. dayNames: [
  93. "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab",
  94. "Domingo", "Segunda-Feira", "Ter�a-Feira", "Quarta-Feira", "Quinta-Feira", "Sexta-Feira", "S�bado"
  95. ],
  96. monthNames: [
  97. "Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez",
  98. "Janeiro", "Fevereiro", "Mar�o", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"
  99. ],
  100. AmPm : ["am","pm","AM","PM"],
  101. S: function (j) {return j < 11 || j > 13 ? ['�', '�', '�', '�'][Math.min((j - 1) % 10, 3)] : '�'},
  102. srcformat: 'Y-m-d',
  103. newformat: 'd/m/Y',
  104. parseRe : /[#%\\\/:_;.,\t\s-]/,
  105. masks : {
  106. ISO8601Long:"Y-m-d H:i:s",
  107. ISO8601Short:"Y-m-d",
  108. ShortDate: "n/j/Y",
  109. LongDate: "l, F d, Y",
  110. FullDateTime: "l, F d, Y g:i:s A",
  111. MonthDay: "F d",
  112. ShortTime: "g:i A",
  113. LongTime: "g:i:s A",
  114. SortableDateTime: "Y-m-d\\TH:i:s",
  115. UniversalSortableDateTime: "Y-m-d H:i:sO",
  116. YearMonth: "F, Y"
  117. },
  118. reformatAfterEdit : false
  119. },
  120. baseLinkUrl: '',
  121. showAction: '',
  122. target: '',
  123. checkbox : {disabled:true},
  124. idName : 'id'
  125. }
  126. });
  127. })(jQuery);