grid.locale-gl.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /**
  2. * jqGrid Galician Translation
  3. * Translated by Jorge Barreiro <yortx.barry@gmail.com>
  4. * Dual licensed under the MIT and GPL licenses:
  5. * http://www.opensource.org/licenses/mit-license.php
  6. * http://www.gnu.org/licenses/gpl.html
  7. **/
  8. /*global jQuery, define */
  9. (function( factory ) {
  10. "use strict";
  11. if ( typeof define === "function" && define.amd ) {
  12. // AMD. Register as an anonymous module.
  13. define([
  14. "jquery",
  15. "../grid.base"
  16. ], factory );
  17. } else {
  18. // Browser globals
  19. factory( jQuery );
  20. }
  21. }(function( $ ) {
  22. $.jgrid = $.jgrid || {};
  23. if(!$.jgrid.hasOwnProperty("regional")) {
  24. $.jgrid.regional = [];
  25. }
  26. $.jgrid.regional["gl"] = {
  27. defaults : {
  28. recordtext: "Amosando {0} - {1} de {2}",
  29. emptyrecords: "Sen rexistros que amosar",
  30. loadtext: "Cargando...",
  31. pgtext : "Páxina {0} de {1}",
  32. savetext: "Saving...",
  33. pgfirst : "First Page",
  34. pglast : "Last Page",
  35. pgnext : "Next Page",
  36. pgprev : "Previous Page",
  37. pgrecs : "Records per Page",
  38. showhide: "Toggle Expand Collapse Grid",
  39. // mobile
  40. pagerCaption : "Grid::Page Settings",
  41. pageText : "Page:",
  42. recordPage : "Records per Page",
  43. nomorerecs : "No more records...",
  44. scrollPullup: "Pull up to load more...",
  45. scrollPulldown : "Pull down to refresh...",
  46. scrollRefresh : "Release to refresh..."
  47. },
  48. search : {
  49. caption: "Búsqueda...",
  50. Find: "Buscar",
  51. Reset: "Limpar",
  52. odata: [{ oper:'eq', text:"igual "},{ oper:'ne', text:"diferente a"},{ oper:'lt', text:"menor que"},{ oper:'le', text:"menor ou igual que"},{ oper:'gt', text:"maior que"},{ oper:'ge', text:"maior ou igual a"},{ oper:'bw', text:"empece por"},{ oper:'bn', text:"non empece por"},{ oper:'in', text:"está en"},{ oper:'ni', text:"non está en"},{ oper:'ew', text:"termina por"},{ oper:'en', text:"non termina por"},{ oper:'cn', text:"contén"},{ oper:'nc', text:"non contén"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}, {oper:'bt', text:'between'}],
  53. groupOps: [ { op: "AND", text: "todo" }, { op: "OR", text: "calquera" } ],
  54. operandTitle : "Click to select search operation.",
  55. resetTitle : "Reset Search Value"
  56. },
  57. edit : {
  58. addCaption: "Engadir rexistro",
  59. editCaption: "Modificar rexistro",
  60. bSubmit: "Gardar",
  61. bCancel: "Cancelar",
  62. bClose: "Pechar",
  63. saveData: "Modificáronse os datos, quere gardar os cambios?",
  64. bYes : "Si",
  65. bNo : "Non",
  66. bExit : "Cancelar",
  67. msg: {
  68. required:"Campo obrigatorio",
  69. number:"Introduza un número",
  70. minValue:"O valor debe ser maior ou igual a ",
  71. maxValue:"O valor debe ser menor ou igual a ",
  72. email: "non é un enderezo de correo válido",
  73. integer: "Introduza un valor enteiro",
  74. date: "Introduza unha data correcta ",
  75. url: "non é unha URL válida. Prefixo requerido ('http://' ou 'https://')",
  76. nodefined : " non está definido.",
  77. novalue : " o valor de retorno é obrigatorio.",
  78. customarray : "A función persoalizada debe devolver un array.",
  79. customfcheck : "A función persoalizada debe estar presente no caso de ter validación persoalizada."
  80. }
  81. },
  82. view : {
  83. caption: "Consultar rexistro",
  84. bClose: "Pechar"
  85. },
  86. del : {
  87. caption: "Eliminar",
  88. msg: "Desexa eliminar os rexistros seleccionados?",
  89. bSubmit: "Eliminar",
  90. bCancel: "Cancelar"
  91. },
  92. nav : {
  93. edittext: " ",
  94. edittitle: "Modificar a fila seleccionada",
  95. addtext:" ",
  96. addtitle: "Engadir unha nova fila",
  97. deltext: " ",
  98. deltitle: "Eliminar a fila seleccionada",
  99. searchtext: " ",
  100. searchtitle: "Buscar información",
  101. refreshtext: "",
  102. refreshtitle: "Recargar datos",
  103. alertcap: "Aviso",
  104. alerttext: "Seleccione unha fila",
  105. viewtext: "",
  106. viewtitle: "Ver fila seleccionada",
  107. savetext: "",
  108. savetitle: "Save row",
  109. canceltext: "",
  110. canceltitle : "Cancel row editing",
  111. selectcaption : "Actions..."
  112. },
  113. col : {
  114. caption: "Mostrar/ocultar columnas",
  115. bSubmit: "Enviar",
  116. bCancel: "Cancelar"
  117. },
  118. errors : {
  119. errcap : "Erro",
  120. nourl : "Non especificou unha URL",
  121. norecords: "Non hai datos para procesar",
  122. model : "As columnas de nomes son diferentes das columnas de modelo"
  123. },
  124. formatter : {
  125. integer : {thousandsSeparator: ".", defaultValue: '0'},
  126. number : {decimalSeparator:",", thousandsSeparator: ".", decimalPlaces: 2, defaultValue: '0,00'},
  127. currency : {decimalSeparator:",", thousandsSeparator: ".", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0,00'},
  128. date : {
  129. dayNames: [
  130. "Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa",
  131. "Domingo", "Luns", "Martes", "Mércoles", "Xoves", "Vernes", "Sábado"
  132. ],
  133. monthNames: [
  134. "Xan", "Feb", "Mar", "Abr", "Mai", "Xuñ", "Xul", "Ago", "Set", "Out", "Nov", "Dec",
  135. "Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"
  136. ],
  137. AmPm : ["am","pm","AM","PM"],
  138. S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
  139. srcformat: 'Y-m-d',
  140. newformat: 'd-m-Y',
  141. parseRe : /[#%\\\/:_;.,\t\s-]/,
  142. masks : {
  143. ISO8601Long:"Y-m-d H:i:s",
  144. ISO8601Short:"Y-m-d",
  145. ShortDate: "n/j/Y",
  146. LongDate: "l, F d, Y",
  147. FullDateTime: "l, F d, Y g:i:s A",
  148. MonthDay: "F d",
  149. ShortTime: "g:i A",
  150. LongTime: "g:i:s A",
  151. SortableDateTime: "Y-m-d\\TH:i:s",
  152. UniversalSortableDateTime: "Y-m-d H:i:sO",
  153. YearMonth: "F, Y"
  154. },
  155. reformatAfterEdit : false,
  156. userLocalTime : false
  157. },
  158. baseLinkUrl: '',
  159. showAction: '',
  160. target: '',
  161. checkbox : {disabled:true},
  162. idName : 'id'
  163. },
  164. colmenu : {
  165. sortasc : "Sort Ascending",
  166. sortdesc : "Sort Descending",
  167. columns : "Columns",
  168. filter : "Filter",
  169. grouping : "Group By",
  170. ungrouping : "Ungroup",
  171. searchTitle : "Get items with value that:",
  172. freeze : "Freeze",
  173. unfreeze : "Unfreeze",
  174. reorder : "Move to reorder"
  175. }
  176. };
  177. }));