| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- const e = {
- docImage: {
- title: "Image",
- upload: {
- float: "Insert Image"
- },
- panel: {
- title: "Edit Image"
- }
- },
- "image-popup": {
- replace: "Replace",
- delete: "Delete",
- edit: "Edit",
- crop: "Crop",
- reset: "Reset Size"
- },
- "image-text-wrap": {
- title: "Text Wrapping",
- wrappingStyle: "Wrapping Style",
- square: "Square",
- topAndBottom: "Top and Bottom",
- inline: "In line with text",
- behindText: "Behind text",
- inFrontText: "In front of text",
- wrapText: "Wrap text",
- bothSide: "Both sides",
- leftOnly: "Left only",
- rightOnly: "Right only",
- distanceFromText: "Distance from text",
- top: "Top(px)",
- left: "Left(px)",
- bottom: "Bottom(px)",
- right: "Right(px)"
- },
- "image-position": {
- title: "Position",
- horizontal: "Horizontal",
- vertical: "Vertical",
- absolutePosition: "Absolute Position(px)",
- relativePosition: "Relative Position",
- toTheRightOf: "to the right of",
- relativeTo: "relative to",
- bellow: "bellow",
- options: "Options",
- moveObjectWithText: "Move object with text",
- column: "Column",
- margin: "Margin",
- page: "Page",
- line: "Line",
- paragraph: "Paragraph"
- },
- "update-status": {
- exceedMaxSize: "Image size exceeds limit, limit is {0}M",
- invalidImageType: "Invalid image type",
- exceedMaxCount: "Only {0} images can be uploaded at a time",
- invalidImage: "Invalid image"
- }
- };
- export {
- e as default
- };
|