en-US.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. const e = {
  2. "image-popup": {
  3. replace: "Replace",
  4. delete: "Delete",
  5. edit: "Edit",
  6. crop: "Crop",
  7. reset: "Reset Size"
  8. },
  9. "image-cropper": {
  10. error: "Cannot crop non-image objects."
  11. },
  12. "image-panel": {
  13. arrange: {
  14. title: "Arrange",
  15. forward: "Bring Forward",
  16. backward: "Send Backward",
  17. front: "Bring to Front",
  18. back: "Send to Back"
  19. },
  20. transform: {
  21. title: "Transform",
  22. rotate: "Rotate (°)",
  23. x: "X (px)",
  24. y: "Y (px)",
  25. width: "Width (px)",
  26. height: "Height (px)",
  27. lock: "Lock Ratio (%)"
  28. },
  29. crop: {
  30. title: "Crop",
  31. start: "Start Crop",
  32. mode: "Free"
  33. },
  34. group: {
  35. title: "Group",
  36. group: "Group",
  37. reGroup: "Regroup",
  38. unGroup: "Ungroup"
  39. },
  40. align: {
  41. title: "Align",
  42. default: "Select Align Type",
  43. left: "Align Left",
  44. center: "Align Center",
  45. right: "Align Right",
  46. top: "Align Top",
  47. middle: "Align Middle",
  48. bottom: "Align Bottom",
  49. horizon: "Distribute Horizontally ",
  50. vertical: "Distribute Vertically "
  51. },
  52. null: "No Object Selection"
  53. }
  54. };
  55. export {
  56. e as default
  57. };