langES.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. /**
  20. * Language: Spanish
  21. */
  22. export default {
  23. legend: {
  24. selector: {
  25. all: 'Todas',
  26. inverse: 'Inversa'
  27. }
  28. },
  29. toolbox: {
  30. brush: {
  31. title: {
  32. rect: 'Selección de cuadro',
  33. polygon: 'Selección de lazo',
  34. lineX: 'Seleccionar horizontalmente',
  35. lineY: 'Seleccionar verticalmente',
  36. keep: 'Mantener selección',
  37. clear: 'Despejar selecciones'
  38. }
  39. },
  40. dataView: {
  41. title: 'Ver datos',
  42. lang: ['Ver datos', 'Cerrar', 'Actualizar']
  43. },
  44. dataZoom: {
  45. title: {
  46. zoom: 'Zoom',
  47. back: 'Restablecer zoom'
  48. }
  49. },
  50. magicType: {
  51. title: {
  52. line: 'Cambiar a gráfico de líneas',
  53. bar: 'Cambiar a gráfico de barras',
  54. stack: 'Pila',
  55. tiled: 'Teja'
  56. }
  57. },
  58. restore: {
  59. title: 'Restaurar'
  60. },
  61. saveAsImage: {
  62. title: 'Guardar como imagen',
  63. lang: ['Clic derecho para guardar imagen']
  64. }
  65. }
  66. };