en-US.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. const e = {
  2. sheetImage: {
  3. title: "Image",
  4. upload: {
  5. float: "Float Image",
  6. cell: "Cell Image"
  7. },
  8. panel: {
  9. title: "Edit Image"
  10. }
  11. },
  12. "image-popup": {
  13. replace: "Replace",
  14. delete: "Delete",
  15. edit: "Edit",
  16. crop: "Crop",
  17. reset: "Reset Size"
  18. },
  19. "drawing-anchor": {
  20. title: "Anchor Properties",
  21. both: "Move and size with cells",
  22. position: "Move but don't size with cells",
  23. none: "Don't move or size with cells"
  24. },
  25. "update-status": {
  26. exceedMaxSize: "Image size exceeds limit, limit is {0}M",
  27. invalidImageType: "Invalid image type",
  28. exceedMaxCount: "Only {0} images can be uploaded at a time",
  29. invalidImage: "Invalid image"
  30. },
  31. "sheet-drawing-view": "Drawing",
  32. shortcut: {
  33. sheet: {
  34. "drawing-move-down": "Move Drawing down",
  35. "drawing-move-up": "Move Drawing up",
  36. "drawing-move-left": "Move Drawing left",
  37. "drawing-move-right": "Move Drawing right",
  38. "drawing-delete": "Delete Drawing"
  39. }
  40. }
  41. };
  42. export {
  43. e as default
  44. };