FontChoice.js 488 B

123456789101112131415161718192021222324252627282930
  1. define(
  2. "dijit/_editor/nls/nl/FontChoice", //begin v1.x content
  3. ({
  4. fontSize: "Grootte",
  5. fontName: "Lettertype",
  6. formatBlock: "Opmaak",
  7. serif: "serif",
  8. "sans-serif": "sans-serif",
  9. monospace: "monospace",
  10. cursive: "cursief",
  11. fantasy: "fantasy",
  12. noFormat: "Geen",
  13. p: "Alinea",
  14. h1: "Kop",
  15. h2: "Subkop",
  16. h3: "Sub-subkop",
  17. pre: "Vooraf opgemaakt",
  18. 1: "xx-klein",
  19. 2: "x-klein",
  20. 3: "klein",
  21. 4: "gemiddeld",
  22. 5: "groot",
  23. 6: "x-groot",
  24. 7: "xx-groot"
  25. })
  26. //end v1.x content
  27. );