TableDialog.js 1022 B

12345678910111213141516171819202122232425262728293031323334
  1. define(
  2. "dojox/editor/plugins/nls/ca/TableDialog", //begin v1.x content
  3. ({
  4. insertTableTitle: "Insereix taula",
  5. modifyTableTitle: "Modifica taula",
  6. rows: "Files:",
  7. columns: "Columnes:",
  8. align: "Alinea:",
  9. cellPadding: "Emplenat de cel·la:",
  10. cellSpacing: "Espaiat de cel·la:",
  11. tableWidth: "Amplada de taula:",
  12. backgroundColor: "Color de fons:",
  13. borderColor: "Color del contorn",
  14. borderThickness: "Gruix del contorn",
  15. percent: "percentatge",
  16. pixels: "píxels",
  17. "default": "default",
  18. left: "esquerra",
  19. center: "centrat",
  20. right: "dreta",
  21. buttonSet: "Defineix", // translated elsewhere?
  22. buttonInsert: "Insereix",
  23. buttonCancel: "Cancel·la",
  24. selectTableLabel: "Selecciona taula",
  25. insertTableRowBeforeLabel: "Afegeix fila abans",
  26. insertTableRowAfterLabel: "Afegeix fila després",
  27. insertTableColumnBeforeLabel: "Afegeix columna abans",
  28. insertTableColumnAfterLabel: "Afegeix columna després",
  29. deleteTableRowLabel: "Suprimeix fila",
  30. deleteTableColumnLabel: "Suprimeix columna"
  31. })
  32. //end v1.x content
  33. );