en-US.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. const e = {
  2. docImage: {
  3. title: "Image",
  4. upload: {
  5. float: "Insert Image"
  6. },
  7. panel: {
  8. title: "Edit Image"
  9. }
  10. },
  11. "image-popup": {
  12. replace: "Replace",
  13. delete: "Delete",
  14. edit: "Edit",
  15. crop: "Crop",
  16. reset: "Reset Size"
  17. },
  18. "image-text-wrap": {
  19. title: "Text Wrapping",
  20. wrappingStyle: "Wrapping Style",
  21. square: "Square",
  22. topAndBottom: "Top and Bottom",
  23. inline: "In line with text",
  24. behindText: "Behind text",
  25. inFrontText: "In front of text",
  26. wrapText: "Wrap text",
  27. bothSide: "Both sides",
  28. leftOnly: "Left only",
  29. rightOnly: "Right only",
  30. distanceFromText: "Distance from text",
  31. top: "Top(px)",
  32. left: "Left(px)",
  33. bottom: "Bottom(px)",
  34. right: "Right(px)"
  35. },
  36. "image-position": {
  37. title: "Position",
  38. horizontal: "Horizontal",
  39. vertical: "Vertical",
  40. absolutePosition: "Absolute Position(px)",
  41. relativePosition: "Relative Position",
  42. toTheRightOf: "to the right of",
  43. relativeTo: "relative to",
  44. bellow: "bellow",
  45. options: "Options",
  46. moveObjectWithText: "Move object with text",
  47. column: "Column",
  48. margin: "Margin",
  49. page: "Page",
  50. line: "Line",
  51. paragraph: "Paragraph"
  52. },
  53. "update-status": {
  54. exceedMaxSize: "Image size exceeds limit, limit is {0}M",
  55. invalidImageType: "Invalid image type",
  56. exceedMaxCount: "Only {0} images can be uploaded at a time",
  57. invalidImage: "Invalid image"
  58. }
  59. };
  60. export {
  61. e as default
  62. };