zh-CN.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. const e = {
  2. sheetImage: {
  3. title: "图片",
  4. upload: {
  5. float: "浮动图片",
  6. cell: "单元格图片"
  7. },
  8. panel: {
  9. title: "编辑图片"
  10. }
  11. },
  12. "image-popup": {
  13. replace: "替换",
  14. delete: "删除",
  15. edit: "编辑",
  16. crop: "裁剪",
  17. reset: "重置大小"
  18. },
  19. "drawing-anchor": {
  20. title: "锚点属性",
  21. both: "与单元格一起移动和调整大小",
  22. position: "移动但不调整大小与单元格",
  23. none: "不要移动或调整大小与单元格"
  24. },
  25. "update-status": {
  26. exceedMaxSize: "图片大小超过限制, 限制为{0}M",
  27. invalidImageType: "图片类型错误",
  28. exceedMaxCount: "图片只能一次上传{0}张",
  29. invalidImage: "无效图片"
  30. },
  31. "sheet-drawing-view": "绘图",
  32. shortcut: {
  33. sheet: {
  34. "drawing-move-down": "下移绘图",
  35. "drawing-move-up": "上移绘图",
  36. "drawing-move-left": "左移绘图",
  37. "drawing-move-right": "右移绘图",
  38. "drawing-delete": "删除绘图"
  39. }
  40. }
  41. };
  42. export {
  43. e as default
  44. };