Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.26 KB | None | 0 0
  1. JSONEditor.defaults.default_language = 'es';
  2. JSONEditor.defaults.language = JSONEditor.defaults.default_language;
  3. JSONEditor.defaults.languages.en = {
  4. /**
  5. * When a property is not set
  6. */
  7. error_notset: "La propiedad debe tener valor",
  8. /**
  9. * When a string must not be empty
  10. */
  11. error_notempty: "Se requiere un valor",
  12. /**
  13. * When a value is not one of the enumerated values
  14. */
  15. error_enum: "El valor debe ser uno de los valores de la enumeración",
  16. /**
  17. * When a value doesn't validate any schema of a 'anyOf' combination
  18. */
  19. error_anyOf: "El valor debe validar al menos uno de los esquemas proporcionados",
  20. /**
  21. * When a value doesn't validate
  22. * @variables This key takes one variable: The number of schemas the value does not validate
  23. */
  24. error_oneOf: 'El valor debe validar exactamente uno de los esquemas proporcionados. En este momento valida {{0}} de los esquemas.',
  25. /**
  26. * When a value does not validate a 'not' schema
  27. */
  28. error_not: "El valor no debe validar el esquema proporcionado",
  29. /**
  30. * When a value does not match any of the provided types
  31. */
  32. error_type_union: "El valor debe ser de uno de los tipos proporcionados",
  33. /**
  34. * When a value does not match the given type
  35. * @variables This key takes one variable: The type the value should be of
  36. */
  37. error_type: "El valor debe ser de tipo {{0}}",
  38. /**
  39. * When the value validates one of the disallowed types
  40. */
  41. error_disallow_union: "El valor no debe ser de ninguno de los tipos no admitidos",
  42. /**
  43. * When the value validates a disallowed type
  44. * @variables This key takes one variable: The type the value should not be of
  45. */
  46. error_disallow: "El valor no debe ser de tipo {{0}}",
  47. /**
  48. * When a value is not a multiple of or divisible by a given number
  49. * @variables This key takes one variable: The number mentioned above
  50. */
  51. error_multipleOf: "El valor debe ser múltiplo de {{0}}",
  52. /**
  53. * When a value is greater than it's supposed to be (exclusive)
  54. * @variables This key takes one variable: The maximum
  55. */
  56. error_maximum_excl: "El valor debe ser menor que {{0}}",
  57. /**
  58. * When a value is greater than it's supposed to be (inclusive
  59. * @variables This key takes one variable: The maximum
  60. */
  61. error_maximum_incl: "El valor debe ser como mucho {{0}}",
  62. /**
  63. * When a value is lesser than it's supposed to be (exclusive)
  64. * @variables This key takes one variable: The minimum
  65. */
  66. error_minimum_excl: "El valor debe ser mayor que {{0}}",
  67. /**
  68. * When a value is lesser than it's supposed to be (inclusive)
  69. * @variables This key takes one variable: The minimum
  70. */
  71. error_minimum_incl: "El valor debe ser al menos {{0}}",
  72. /**
  73. * When a value have too many characters
  74. * @variables This key takes one variable: The maximum character count
  75. */
  76. error_maxLength: "El valor debe ser de al menos {{0}} caracteres de longitud",
  77. /**
  78. * When a value does not have enough characters
  79. * @variables This key takes one variable: The minimum character count
  80. */
  81. error_minLength: "El valor debe tener al menos {{0}} caracteres",
  82. /**
  83. * When a value does not match a given pattern
  84. */
  85. error_pattern: "El valor debe validar el patrón {{0}}",
  86. /**
  87. * When an array has additional items whereas it is not supposed to
  88. */
  89. error_additionalItems: "No se permite más elementos en este conjunto",
  90. /**
  91. * When there are to many items in an array
  92. * @variables This key takes one variable: The maximum item count
  93. */
  94. error_maxItems: "El valor debe tener como mucho {{0}} elementos",
  95. /**
  96. * When there are not enough items in an array
  97. * @variables This key takes one variable: The minimum item count
  98. */
  99. error_minItems: "El valor debe tener al menos {{0}} elementos",
  100. /**
  101. * When an array is supposed to have unique items but has duplicates
  102. */
  103. error_uniqueItems: "Todos los elementos del conjunto deben ser únicos",
  104. /**
  105. * When there are too many properties in an object
  106. * @variables This key takes one variable: The maximum property count
  107. */
  108. error_maxProperties: "El objeto debe tener como mucho {{0}} propiedades",
  109. /**
  110. * When there are not enough properties in an object
  111. * @variables This key takes one variable: The minimum property count
  112. */
  113. error_minProperties: "El objeto debe tener al menos {{0}} propiedades",
  114. /**
  115. * When a required property is not defined
  116. * @variables This key takes one variable: The name of the missing property
  117. */
  118. error_required: "El objeto no tiene la propiedad requerida '{{0}}'",
  119. /**
  120. * When there is an additional property is set whereas there should be none
  121. * @variables This key takes one variable: The name of the additional property
  122. */
  123. error_additional_properties: "No se permiten propiedades adicionales, pero la propiedad {{0}} tiene valor",
  124. /**
  125. * When a dependency is not resolved
  126. * @variables This key takes one variable: The name of the missing property for the dependency
  127. */
  128. error_dependency: "Debe tener la propiedad {{0}} pues otra propiedad depende de esta",
  129. /**
  130. * When a date is in incorrect format
  131. * @variables This key takes one variable: The valid format
  132. */
  133. error_date: 'La fecha debe estar en formato {{0}}',
  134. /**
  135. * When a time is in incorrect format
  136. * @variables This key takes one variable: The valid format
  137. */
  138. error_time: 'La hora debe estar en formato {{0}}',
  139. /**
  140. * When a datetime-local is in incorrect format
  141. * @variables This key takes one variable: The valid format
  142. */
  143. error_datetime_local: 'La fecha y hora debe estar en formato {{0}}',
  144. /**
  145. * When a integer date is less than 1 January 1970
  146. */
  147. error_invalid_epoch: 'La fecha debe ser al menos 1 de enero de 1970',
  148.  
  149. /**
  150. * Text on Delete All buttons
  151. */
  152. button_delete_all: "Todo",
  153. /**
  154. * Title on Delete All buttons
  155. */
  156. button_delete_all_title: "Borrar todo",
  157. /**
  158. * Text on Delete Last buttons
  159. * @variable This key takes one variable: The title of object to delete
  160. */
  161. button_delete_last: "Último {{0}}",
  162. /**
  163. * Title on Delete Last buttons
  164. * @variable This key takes one variable: The title of object to delete
  165. */
  166. button_delete_last_title: "Borrar último {{0}}",
  167. /**
  168. * Title on Add Row buttons
  169. * @variable This key takes one variable: The title of object to add
  170. */
  171. button_add_row_title: "Añadir {{0}}",
  172. /**
  173. * Title on Move Down buttons
  174. */
  175. button_move_down_title: "Mover abajo",
  176. /**
  177. * Title on Move Up buttons
  178. */
  179. button_move_up_title: "Mover arriba",
  180. /**
  181. * Title on Delete Row buttons
  182. * @variable This key takes one variable: The title of object to delete
  183. */
  184. button_delete_row_title: "Borrar {{0}}",
  185. /**
  186. * Title on Delete Row buttons, short version (no parameter with the object title)
  187. */
  188. button_delete_row_title_short: "Borrar",
  189. /**
  190. * Title on Collapse buttons
  191. */
  192. button_collapse: "Recoger",
  193. /**
  194. * Title on Expand buttons
  195. */
  196. button_expand: "Expandir",
  197. /**
  198. * Title on Flatpickr toggle buttons
  199. */
  200. flatpickr_toggle_button: "Alternar",
  201. /**
  202. * Title on Flatpickr clear buttons
  203. */
  204. flatpickr_clear_button: "Limpiar"
  205. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement