TableDialog.js 1007 B

12345678910111213141516171819202122232425262728293031323334
  1. define(
  2. "dojox/editor/plugins/nls/cs/TableDialog", //begin v1.x content
  3. ({
  4. insertTableTitle: "Vložit tabulku",
  5. modifyTableTitle: "Upravit tabulku",
  6. rows: "Řádky:",
  7. columns: "Sloupce:",
  8. align: "Zarovnat:",
  9. cellPadding: "Okraj buňky:",
  10. cellSpacing: "Odstup buněk:",
  11. tableWidth: "Šířka tabulky:",
  12. backgroundColor: "Barva pozadí:",
  13. borderColor: "Barva ohraničení:",
  14. borderThickness: "TloušťkaOhraničení",
  15. percent: "procent",
  16. pixels: "pixelů",
  17. "default": "výchozí",
  18. left: "vlevo",
  19. center: "střed",
  20. right: "vpravo",
  21. buttonSet: "Nastavit", // translated elsewhere?
  22. buttonInsert: "Vložit",
  23. buttonCancel: "Storno",
  24. selectTableLabel: "Vybrat tabulku",
  25. insertTableRowBeforeLabel: "Přidat řádek před",
  26. insertTableRowAfterLabel: "Přidat řádek za",
  27. insertTableColumnBeforeLabel: "Přidat sloupec před",
  28. insertTableColumnAfterLabel: "Přidat sloupec za",
  29. deleteTableRowLabel: "Odstranit řádek",
  30. deleteTableColumnLabel: "Odstranit sloupec"
  31. })
  32. //end v1.x content
  33. );