| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- const e = {
- sheetImage: {
- title: "Image",
- upload: {
- float: "Float Image",
- cell: "Cell Image"
- },
- panel: {
- title: "Edit Image"
- }
- },
- "image-popup": {
- replace: "Replace",
- delete: "Delete",
- edit: "Edit",
- crop: "Crop",
- reset: "Reset Size"
- },
- "drawing-anchor": {
- title: "Anchor Properties",
- both: "Move and size with cells",
- position: "Move but don't size with cells",
- none: "Don't move or size with cells"
- },
- "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"
- },
- "sheet-drawing-view": "Drawing",
- shortcut: {
- sheet: {
- "drawing-move-down": "Move Drawing down",
- "drawing-move-up": "Move Drawing up",
- "drawing-move-left": "Move Drawing left",
- "drawing-move-right": "Move Drawing right",
- "drawing-delete": "Delete Drawing"
- }
- }
- };
- export {
- e as default
- };
|