FontChoice.js 517 B

123456789101112131415161718192021222324252627282930
  1. define(
  2. "dijit/_editor/nls/es/FontChoice", //begin v1.x content
  3. ({
  4. fontSize: "Tamaño",
  5. fontName: "Font",
  6. formatBlock: "Formato",
  7. serif: "serif",
  8. "sans-serif": "sans-serif",
  9. monospace: "espacio sencillo",
  10. cursive: "cursiva",
  11. fantasy: "fantasía",
  12. noFormat: "Ninguno",
  13. p: "Párrafo",
  14. h1: "Cabecera",
  15. h2: "Subcabecera",
  16. h3: "Sub-subcabecera",
  17. pre: "Preformateado",
  18. 1: "xx-pequeño",
  19. 2: "x-pequeño",
  20. 3: "pequeño",
  21. 4: "medio",
  22. 5: "grande",
  23. 6: "x-grande",
  24. 7: "xx-grande"
  25. })
  26. //end v1.x content
  27. );