| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- const e = {
- sheetImage: {
- title: "圖片",
- upload: {
- float: "浮動圖片",
- cell: "儲存格圖片"
- },
- panel: {
- title: "編圖"
- }
- },
- "image-popup": {
- replace: "替換",
- delete: "刪除",
- edit: "編輯",
- crop: "裁切",
- reset: "重置大小"
- },
- "drawing-anchor": {
- title: "錨點屬性",
- both: "與儲存格一起移動和調整大小",
- position: "移動但不調整大小與儲存格",
- none: "不要移動或調整大小與單元格"
- },
- "update-status": {
- exceedMaxSize: "圖片大小超過限制, 限制為{0}M",
- invalidImageType: "圖片類型錯誤",
- exceedMaxCount: "圖片只能一次上傳{0}張",
- invalidImage: "無效圖片"
- },
- "sheet-drawing-view": "繪圖",
- shortcut: {
- sheet: {
- "drawing-move-down": "下移繪圖",
- "drawing-move-up": "上移繪圖",
- "drawing-move-left": "左移繪圖",
- "drawing-move-right": "右移繪圖",
- "drawing-delete": "刪除繪圖"
- }
- }
- };
- export {
- e as default
- };
|