@univerjs-pro/shape-editor-ui 1.0.0-alpha.1 → 1.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/README.md +14 -2
  2. package/lib/cjs/index.js +1 -1
  3. package/lib/cjs/locale/ar-SA.js +1 -1
  4. package/lib/cjs/locale/ca-ES.js +1 -1
  5. package/lib/cjs/locale/de-DE.js +1 -1
  6. package/lib/cjs/locale/en-US.js +1 -1
  7. package/lib/cjs/locale/es-ES.js +1 -1
  8. package/lib/cjs/locale/fa-IR.js +1 -1
  9. package/lib/cjs/locale/fr-FR.js +1 -1
  10. package/lib/cjs/locale/id-ID.js +1 -1
  11. package/lib/cjs/locale/it-IT.js +1 -1
  12. package/lib/cjs/locale/ja-JP.js +1 -1
  13. package/lib/cjs/locale/ko-KR.js +1 -1
  14. package/lib/cjs/locale/pl-PL.js +1 -1
  15. package/lib/cjs/locale/pt-BR.js +1 -1
  16. package/lib/cjs/locale/ru-RU.js +1 -1
  17. package/lib/cjs/locale/sk-SK.js +1 -1
  18. package/lib/cjs/locale/vi-VN.js +1 -1
  19. package/lib/cjs/locale/zh-CN.js +1 -1
  20. package/lib/cjs/locale/zh-HK.js +1 -1
  21. package/lib/cjs/locale/zh-TW.js +1 -1
  22. package/lib/es/index.js +1 -1
  23. package/lib/es/locale/ar-SA.js +1 -1
  24. package/lib/es/locale/ca-ES.js +1 -1
  25. package/lib/es/locale/de-DE.js +1 -1
  26. package/lib/es/locale/en-US.js +1 -1
  27. package/lib/es/locale/es-ES.js +1 -1
  28. package/lib/es/locale/fa-IR.js +1 -1
  29. package/lib/es/locale/fr-FR.js +1 -1
  30. package/lib/es/locale/id-ID.js +1 -1
  31. package/lib/es/locale/it-IT.js +1 -1
  32. package/lib/es/locale/ja-JP.js +1 -1
  33. package/lib/es/locale/ko-KR.js +1 -1
  34. package/lib/es/locale/pl-PL.js +1 -1
  35. package/lib/es/locale/pt-BR.js +1 -1
  36. package/lib/es/locale/ru-RU.js +1 -1
  37. package/lib/es/locale/sk-SK.js +1 -1
  38. package/lib/es/locale/vi-VN.js +1 -1
  39. package/lib/es/locale/zh-CN.js +1 -1
  40. package/lib/es/locale/zh-HK.js +1 -1
  41. package/lib/es/locale/zh-TW.js +1 -1
  42. package/lib/index.css +159 -12
  43. package/lib/index.js +1 -1
  44. package/lib/locale/ar-SA.js +1 -1
  45. package/lib/locale/ca-ES.js +1 -1
  46. package/lib/locale/de-DE.js +1 -1
  47. package/lib/locale/en-US.js +1 -1
  48. package/lib/locale/es-ES.js +1 -1
  49. package/lib/locale/fa-IR.js +1 -1
  50. package/lib/locale/fr-FR.js +1 -1
  51. package/lib/locale/id-ID.js +1 -1
  52. package/lib/locale/it-IT.js +1 -1
  53. package/lib/locale/ja-JP.js +1 -1
  54. package/lib/locale/ko-KR.js +1 -1
  55. package/lib/locale/pl-PL.js +1 -1
  56. package/lib/locale/pt-BR.js +1 -1
  57. package/lib/locale/ru-RU.js +1 -1
  58. package/lib/locale/sk-SK.js +1 -1
  59. package/lib/locale/vi-VN.js +1 -1
  60. package/lib/locale/zh-CN.js +1 -1
  61. package/lib/locale/zh-HK.js +1 -1
  62. package/lib/locale/zh-TW.js +1 -1
  63. package/lib/types/components/fill-style-tabs-editor/FillStyleTabsEditor.d.ts +2 -1
  64. package/lib/types/config/config.d.ts +5 -0
  65. package/lib/types/controllers/components.controller.d.ts +7 -0
  66. package/lib/types/index.d.ts +25 -20
  67. package/lib/types/locale/en-US.d.ts +2 -0
  68. package/lib/types/plugin.d.ts +13 -0
  69. package/lib/types/utils/activate-drawing-object.d.ts +23 -0
  70. package/lib/types/utils/shape-floating-toolbar-config.d.ts +5 -0
  71. package/lib/types/utils/shape-transformer-config.d.ts +31 -0
  72. package/lib/types/views/shape-floating-toolbar/ShapeFloatingToolbar.d.ts +131 -10
  73. package/lib/types/views/shape-floating-toolbar/shape-floating-toolbar-utils.d.ts +2 -5
  74. package/lib/types/views/shape-picker/ShapePickerGrid.d.ts +22 -0
  75. package/lib/types/views/shape-picker/index.d.ts +4 -0
  76. package/lib/types/views/shape-picker/shapes.d.ts +25 -0
  77. package/lib/types/views/shape-text-editor/ShapeTextEditor.d.ts +105 -9
  78. package/lib/types/views/shape-text-editor/ShapeTextEditorContainer.d.ts +2 -2
  79. package/lib/types/views/shape-text-editor/ShapeTextPositionWrapper.d.ts +29 -0
  80. package/lib/types/views/shape-text-editor/hooks/use-shape-position.d.ts +3 -1
  81. package/lib/types/views/shape-text-editor/shape-text-behavior.d.ts +15 -0
  82. package/lib/types/views/shape-text-editor/shape-text-document.d.ts +8 -3
  83. package/lib/types/views/shape-text-editor/shape-text-editor-commands.d.ts +4 -0
  84. package/lib/types/views/shape-text-editor/shape-text-layout.d.ts +24 -0
  85. package/lib/types/views/shape-text-editor/shape-text-no-wrap-layout.d.ts +24 -0
  86. package/lib/types/views/shape-text-editor/shape-text-placeholder.d.ts +8 -0
  87. package/lib/types/views/shape-text-editor/shape-text-resize-policy.d.ts +17 -0
  88. package/lib/types/views/shape-text-editor/types.d.ts +25 -6
  89. package/lib/umd/index.js +1 -1
  90. package/lib/umd/locale/ar-SA.js +1 -1
  91. package/lib/umd/locale/ca-ES.js +1 -1
  92. package/lib/umd/locale/de-DE.js +1 -1
  93. package/lib/umd/locale/en-US.js +1 -1
  94. package/lib/umd/locale/es-ES.js +1 -1
  95. package/lib/umd/locale/fa-IR.js +1 -1
  96. package/lib/umd/locale/fr-FR.js +1 -1
  97. package/lib/umd/locale/id-ID.js +1 -1
  98. package/lib/umd/locale/it-IT.js +1 -1
  99. package/lib/umd/locale/ja-JP.js +1 -1
  100. package/lib/umd/locale/ko-KR.js +1 -1
  101. package/lib/umd/locale/pl-PL.js +1 -1
  102. package/lib/umd/locale/pt-BR.js +1 -1
  103. package/lib/umd/locale/ru-RU.js +1 -1
  104. package/lib/umd/locale/sk-SK.js +1 -1
  105. package/lib/umd/locale/vi-VN.js +1 -1
  106. package/lib/umd/locale/zh-CN.js +1 -1
  107. package/lib/umd/locale/zh-HK.js +1 -1
  108. package/lib/umd/locale/zh-TW.js +1 -1
  109. package/package.json +13 -13
@@ -1 +1 @@
1
- const _0x2ed74b=_0x4f60;function _0x4f60(_0x41f3e9,_0x1bc022){_0x41f3e9=_0x41f3e9-0xc7;const _0x404faa=_0x404f();let _0x4f60f2=_0x404faa[_0x41f3e9];return _0x4f60f2;}(function(_0x2f4845,_0x23cf9b){const _0x3c891e=_0x4f60,_0x57e214=_0x2f4845();while(!![]){try{const _0x3985c0=-parseInt(_0x3c891e(0xf6))/0x1*(-parseInt(_0x3c891e(0x194))/0x2)+-parseInt(_0x3c891e(0x14c))/0x3*(parseInt(_0x3c891e(0x12d))/0x4)+-parseInt(_0x3c891e(0x1a5))/0x5+-parseInt(_0x3c891e(0xe9))/0x6*(parseInt(_0x3c891e(0x167))/0x7)+parseInt(_0x3c891e(0x17a))/0x8*(-parseInt(_0x3c891e(0xf2))/0x9)+parseInt(_0x3c891e(0xef))/0xa*(-parseInt(_0x3c891e(0x1bd))/0xb)+parseInt(_0x3c891e(0x189))/0xc;if(_0x3985c0===_0x23cf9b)break;else _0x57e214['push'](_0x57e214['shift']());}catch(_0x5b5bec){_0x57e214['push'](_0x57e214['shift']());}}}(_0x404f,0xdc0a9));const e={'shape-editor-ui':{'title':'Hình\x20dạng','insertShape':_0x2ed74b(0x10b),'openPanel':'Mở\x20bảng\x20hình\x20dạng','deleteShape':_0x2ed74b(0xde),'hidePanel':_0x2ed74b(0x12c),'formatShape':'Định\x20dạng\x20hình\x20dạng','shapeStyle':_0x2ed74b(0x1bb),'shapePosition':_0x2ed74b(0x13a),'toggleFlipH':_0x2ed74b(0xeb),'toggleFlipV':_0x2ed74b(0x108),'rotateRight90':_0x2ed74b(0x196),'rotateLeft90':'Xoay\x2090\x20độ\x20ngược\x20chiều\x20kim\x20đồng\x20hồ','toggleTextVertical':_0x2ed74b(0x132),'textEditor':{'paragraphType':{'normal':'Văn\x20bản','heading1':_0x2ed74b(0x119),'heading2':_0x2ed74b(0x13d),'heading3':'Tiêu\x20đề\x203','heading4':'Tiêu\x20đề\x204','heading5':'Tiêu\x20đề\x205','orderedList':_0x2ed74b(0x109),'bulletList':_0x2ed74b(0x178),'checkList':_0x2ed74b(0x1b6),'quote':_0x2ed74b(0xce),'code':_0x2ed74b(0x128),'callout':_0x2ed74b(0x106)}},'fill':{'title':'Tô\x20màu','noFill':_0x2ed74b(0x191),'solidFill':'Tô\x20màu\x20đặc','gradientFill':_0x2ed74b(0x105),'pictureFill':_0x2ed74b(0x199),'patternFill':_0x2ed74b(0x1af),'color':_0x2ed74b(0x131),'transparency':_0x2ed74b(0xd6),'picture':{'source':_0x2ed74b(0xf8),'insert':_0x2ed74b(0x15d),'tileAsTexture':_0x2ed74b(0x19c),'offsetX':_0x2ed74b(0x19f),'offsetY':_0x2ed74b(0x184),'scaleX':_0x2ed74b(0xcb),'scaleY':'Tỷ\x20lệ\x20Y','alignment':_0x2ed74b(0xfa),'rotateWithShape':_0x2ed74b(0x12b),'align':{'tl':_0x2ed74b(0x160),'t':_0x2ed74b(0xf3),'tr':_0x2ed74b(0xfe),'l':_0x2ed74b(0x1a7),'ctr':'Giữa','r':_0x2ed74b(0x1b7),'bl':'Dưới\x20trái','b':_0x2ed74b(0x13b),'br':'Dưới\x20phải'}}},'line':{'title':_0x2ed74b(0x1be),'noLine':_0x2ed74b(0xf7),'solidLine':_0x2ed74b(0x173),'gradientLine':_0x2ed74b(0x16d),'color':_0x2ed74b(0x131),'transparency':_0x2ed74b(0xd6),'width':_0x2ed74b(0x1ac),'cornerRadius':_0x2ed74b(0x11c),'dashType':{'title':_0x2ed74b(0xe2),'solid':_0x2ed74b(0x1c2),'roundDot':_0x2ed74b(0x11f),'squareDot':_0x2ed74b(0x110),'dash':_0x2ed74b(0x149),'dashDot':_0x2ed74b(0x188),'longDash':_0x2ed74b(0x136),'longDashDot':'Nét\x20đứt\x20dài\x20chấm','longDashDotDot':_0x2ed74b(0x14e)},'capType':{'title':_0x2ed74b(0x181),'flat':_0x2ed74b(0x126),'round':'Tròn','square':'Vuông'},'joinType':{'title':'Kiểu\x20nối\x20góc','miter':'Nhọn','round':_0x2ed74b(0x17b),'bevel':_0x2ed74b(0x10e)},'beginArrowType':_0x2ed74b(0x134),'beginArrowSize':_0x2ed74b(0x140),'endArrowType':_0x2ed74b(0x18d),'endArrowSize':_0x2ed74b(0x104),'arrowType':{'none':_0x2ed74b(0x180),'arrow':_0x2ed74b(0x192),'openArrow':_0x2ed74b(0x1a8),'stealthArrow':_0x2ed74b(0x18b),'diamondArrow':_0x2ed74b(0x171),'ovalArrow':_0x2ed74b(0x174)},'arrowSize':{'small':_0x2ed74b(0x175),'medium':'Vừa','large':_0x2ed74b(0x123)},'sketchType':{'title':_0x2ed74b(0x1a1),'none':_0x2ed74b(0xdc),'curved':_0x2ed74b(0x16c),'freehand':_0x2ed74b(0x161),'handDrawn':'Vẽ\x20nguệch\x20ngoạc'}},'shape':{'group':{'line':_0x2ed74b(0x117),'rectangle':_0x2ed74b(0xdf),'basicShape':_0x2ed74b(0x133),'blockArrow':_0x2ed74b(0xf0),'equationShape':_0x2ed74b(0xd5),'flowchart':'Lưu\x20đồ','starAndBanner':_0x2ed74b(0x143),'callout':'Chú\x20thích','other':_0x2ed74b(0x111)},'type':{'line':_0x2ed74b(0x145),'straight-connector1':_0x2ed74b(0x1bf),'straight-connector2':_0x2ed74b(0x159),'bent-connector3':_0x2ed74b(0x107),'bent-connector3-arrow1':'Đường\x20nối\x20khuỷu\x20có\x20mũi\x20tên','bent-connector3-arrow2':_0x2ed74b(0x170),'curved-connector3':'Đường\x20nối\x20cong','curved-connector3-arrow1':_0x2ed74b(0x13e),'curved-connector3-arrow2':'Đường\x20nối\x20cong\x20mũi\x20tên\x20hai\x20đầu','rect':_0x2ed74b(0xdf),'round-rect':'Hình\x20chữ\x20nhật\x20bo\x20góc','snip1-rect':_0x2ed74b(0xd3),'snip2-same-rect':_0x2ed74b(0x1c0),'snip2-diag-rect':_0x2ed74b(0xd0),'snip-round-rect':_0x2ed74b(0xe3),'round1-rect':_0x2ed74b(0x12e),'round2-same-rect':_0x2ed74b(0x1ad),'round2-diag-rect':_0x2ed74b(0xda),'rect-textbox-horizontal':_0x2ed74b(0x1c1),'rect-textbox-vertical':_0x2ed74b(0x11b),'ellipse':_0x2ed74b(0xfb),'triangle':_0x2ed74b(0xfc),'rt-triangle':_0x2ed74b(0x103),'parallelogram':_0x2ed74b(0x10f),'trapezoid':'Hình\x20thang','non-isosceles-trapezoid':_0x2ed74b(0x19b),'diamond':'Hình\x20thoi','pentagon':_0x2ed74b(0x166),'hexagon':_0x2ed74b(0xec),'heptagon':_0x2ed74b(0x157),'octagon':'Bát\x20giác','decagon':'Thập\x20giác','dodecagon':_0x2ed74b(0xf5),'pie':_0x2ed74b(0x182),'chord':_0x2ed74b(0xcf),'teardrop':_0x2ed74b(0x1b3),'frame':_0x2ed74b(0x186),'half-frame':'Khung\x20một\x20nửa','corner':_0x2ed74b(0x168),'diag-stripe':_0x2ed74b(0x172),'plus':_0x2ed74b(0xf9),'plaque':_0x2ed74b(0x165),'can':_0x2ed74b(0x10a),'cube':_0x2ed74b(0x13f),'bevel':'Hình\x20vát','donut':_0x2ed74b(0x1bc),'no-smoking':'Biển\x20cấm\x20hút\x20thuốc','block-arc':_0x2ed74b(0x17e),'folder-corner':_0x2ed74b(0xfd),'smiley-face':_0x2ed74b(0x1ab),'heart':_0x2ed74b(0x114),'lightning-bolt':_0x2ed74b(0xd1),'sun':_0x2ed74b(0x130),'moon':_0x2ed74b(0x18a),'cloud':_0x2ed74b(0x11a),'arc':'Hình\x20cung','bracket-pair':_0x2ed74b(0x1aa),'brace-pair':'Cặp\x20ngoặc\x20nhọn','left-bracket':'Ngoặc\x20vuông\x20trái','right-bracket':_0x2ed74b(0x185),'left-brace':_0x2ed74b(0x112),'right-brace':_0x2ed74b(0x139),'right-arrow':_0x2ed74b(0xe7),'left-arrow':_0x2ed74b(0x162),'up-arrow':_0x2ed74b(0x164),'down-arrow':_0x2ed74b(0xd9),'left-right-arrow':'Mũi\x20tên\x20trái\x20phải','up-down-arrow':_0x2ed74b(0x125),'quad-arrow':'Mũi\x20tên\x20bốn\x20chiều','left-right-up-arrow':_0x2ed74b(0x17c),'bent-arrow':_0x2ed74b(0x17f),'uturn-arrow':_0x2ed74b(0x1b8),'left-up-arrow':'Mũi\x20tên\x20trái\x20lên','bent-up-arrow':_0x2ed74b(0x156),'curved-right-arrow':'Mũi\x20tên\x20cong\x20phải','curved-left-arrow':_0x2ed74b(0x13c),'curved-up-arrow':_0x2ed74b(0x156),'curved-down-arrow':_0x2ed74b(0xe6),'striped-right-arrow':_0x2ed74b(0x14f),'notched-right-arrow':_0x2ed74b(0x152),'home-plate':_0x2ed74b(0x11e),'chevron':_0x2ed74b(0x1a2),'right-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20phải','down-arrow-callout':_0x2ed74b(0x122),'left-arrow-callout':_0x2ed74b(0xf1),'up-arrow-callout':_0x2ed74b(0x138),'left-right-arrow-callout':_0x2ed74b(0x1c4),'quad-arrow-callout':_0x2ed74b(0x12f),'circular-arrow':_0x2ed74b(0x16b),'math-plus':'Dấu\x20cộng','math-minus':_0x2ed74b(0x147),'math-multiply':_0x2ed74b(0x135),'math-divide':_0x2ed74b(0x1a4),'math-equal':_0x2ed74b(0x1c3),'math-not-equal':_0x2ed74b(0x15b),'flow-chart-process':_0x2ed74b(0xea),'flow-chart-alternate-process':_0x2ed74b(0xcd),'flow-chart-decision':_0x2ed74b(0x17d),'flow-chart-input-output':_0x2ed74b(0x1b2),'flow-chart-predefined-process':_0x2ed74b(0x118),'flow-chart-internal-storage':_0x2ed74b(0x124),'flow-chart-document':_0x2ed74b(0x1b9),'flow-chart-multidocument':_0x2ed74b(0x12a),'flow-chart-terminator':'Kết\x20thúc','flow-chart-preparation':_0x2ed74b(0x137),'flow-chart-manual-input':_0x2ed74b(0xff),'flow-chart-manual-operation':_0x2ed74b(0x1b5),'flow-chart-connector':_0x2ed74b(0x1a0),'flow-chart-offpage-connector':_0x2ed74b(0x14a),'flow-chart-punched-card':_0x2ed74b(0x1b0),'flow-chart-punched-tape':_0x2ed74b(0x1b1),'flow-chart-summing-junction':_0x2ed74b(0x121),'flow-chart-or':'Hoặc','flow-chart-collate':_0x2ed74b(0xdd),'flow-chart-sort':_0x2ed74b(0x187),'flow-chart-extract':_0x2ed74b(0x153),'flow-chart-merge':_0x2ed74b(0xd4),'flow-chart-online-storage':_0x2ed74b(0x1ba),'flow-chart-delay':_0x2ed74b(0x113),'flow-chart-magnetic-tape':_0x2ed74b(0xcc),'flow-chart-magnetic-disk':_0x2ed74b(0x151),'flow-chart-magnetic-drum':_0x2ed74b(0x11d),'flow-chart-display':_0x2ed74b(0x18e),'irregular-seal1':_0x2ed74b(0x169),'irregular-seal2':_0x2ed74b(0x129),'star4':_0x2ed74b(0x18f),'star5':'Sao\x205\x20cánh','star6':_0x2ed74b(0x18c),'star7':_0x2ed74b(0x1a6),'star8':_0x2ed74b(0x197),'star10':'Sao\x2010\x20cánh','star12':_0x2ed74b(0x1b4),'star16':'Sao\x2016\x20cánh','star24':_0x2ed74b(0x100),'star32':_0x2ed74b(0x193),'ribbon2':_0x2ed74b(0x19d),'ribbon':_0x2ed74b(0xe5),'ellipse-ribbon2':_0x2ed74b(0x15a),'ellipse-ribbon':_0x2ed74b(0x116),'vertical-scroll':_0x2ed74b(0x19e),'horizontal-scroll':_0x2ed74b(0xe0),'wave':'Sóng','double-wave':_0x2ed74b(0xf4),'wedge-rect-callout':_0x2ed74b(0x19a),'wedge-round-rect-callout':_0x2ed74b(0x177),'wedge-ellipse-callout':_0x2ed74b(0x15e),'cloud-callout':'Chú\x20thích\x20đám\x20mây','border-callout1':_0x2ed74b(0xd7),'border-callout2':_0x2ed74b(0x15c),'border-callout3':'Chú\x20thích\x20đường\x20kẻ\x203','accent-callout1':_0x2ed74b(0xdb),'accent-callout2':_0x2ed74b(0x10d),'accent-callout3':_0x2ed74b(0xc7),'callout1':_0x2ed74b(0x127),'callout2':_0x2ed74b(0x198),'callout3':_0x2ed74b(0xca),'accent-border-callout1':_0x2ed74b(0xd2),'accent-border-callout2':_0x2ed74b(0xc8),'accent-border-callout3':'Chú\x20thích\x20viền\x20nhấn\x20mạnh\x203','left-circular-arrow':_0x2ed74b(0x190),'left-right-circular-arrow':_0x2ed74b(0x16a),'swoosh-arrow':_0x2ed74b(0x16e),'left-right-ribbon':_0x2ed74b(0x1a3),'pie-wedge':_0x2ed74b(0xed),'funnel':_0x2ed74b(0x144),'gear6':_0x2ed74b(0x14d),'gear9':_0x2ed74b(0x155),'corner-tabs':'Tab\x20góc','action-button-back-previous':'Nút\x20hành\x20động:\x20Quay\x20lại\x20hoặc\x20Trước','action-button-forward-next':_0x2ed74b(0xe1),'action-button-beginning':_0x2ed74b(0xc9),'action-button-end':_0x2ed74b(0x179),'action-button-home':_0x2ed74b(0xe4),'action-button-information':_0x2ed74b(0x1ae),'action-button-return':_0x2ed74b(0x154),'action-button-movie':_0x2ed74b(0x183),'action-button-document':'Nút\x20hành\x20động:\x20Tài\x20liệu','action-button-sound':_0x2ed74b(0x14b),'action-button-help':_0x2ed74b(0x141),'action-button-blank':_0x2ed74b(0x195),'chart-plus':'Biểu\x20đồ\x20cộng','chart-star':'Biểu\x20đồ\x20sao','chart-x':_0x2ed74b(0x15f),'flow-chart-offline-storage':_0x2ed74b(0x163),'line-inv':_0x2ed74b(0x115),'plaque-tabs':'Tab\x20biển\x20hiệu','square-tabs':_0x2ed74b(0x176),'up-down-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20lên\x20xuống'}},'toolbar':{'expandShapeToolbar':'Mở\x20rộng\x20thanh\x20công\x20cụ\x20hình\x20dạng','collapseShapeToolbar':_0x2ed74b(0x16f),'alignLeft':_0x2ed74b(0x102),'alignCenter':'Căn\x20giữa','alignRight':_0x2ed74b(0xe8),'alignJustify':_0x2ed74b(0x150),'bold':_0x2ed74b(0x158),'italic':'In\x20nghiêng','underline':_0x2ed74b(0x142),'strikethrough':_0x2ed74b(0xee),'subscript':'Subscript','superscript':_0x2ed74b(0xd8),'textColor':_0x2ed74b(0x1a9),'textBackgroundColor':'Text\x20Background\x20color','fillColor':_0x2ed74b(0x10c),'resetColor':_0x2ed74b(0x146)},'align':{'top':_0x2ed74b(0x101),'middle':'Căn\x20giữa\x20theo\x20chiều\x20dọc','bottom':_0x2ed74b(0x148)},'textWrap':{'inline':'In\x20line\x20with\x20text','square':'Square','topAndBottom':_0x2ed74b(0x120),'behindText':'Behind\x20text','inFrontText':'In\x20front\x20of\x20text'},'crop':{'shape':'Cắt\x20theo\x20hình\x20dạng'}}};function _0x404f(){const _0x449eae=['Kiểu\x20đầu\x20mút','Hình\x20quạt','Nút\x20hành\x20động:\x20Phim','Bù\x20trừ\x20Y','Ngoặc\x20vuông\x20phải','Khung','Sắp\x20xếp','Nét\x20đứt\x20chấm','49679484WvJOfl','Mặt\x20trăng','Mũi\x20tên\x20nhọn','Sao\x206\x20cánh','Kiểu\x20mũi\x20tên\x20cuối','Hiển\x20thị','Sao\x204\x20cánh','Mũi\x20tên\x20tròn\x20trái','Không\x20tô','Mũi\x20tên','Sao\x2032\x20cánh','6mThCDJ','Nút\x20hành\x20động:\x20Trống','Xoay\x2090\x20độ\x20theo\x20chiều\x20kim\x20đồng\x20hồ','Sao\x208\x20cánh','Chú\x20thích\x202','Tô\x20bằng\x20hình\x20ảnh\x20hoặc\x20kết\x20cấu','Chú\x20thích\x20hình\x20chữ\x20nhật','Hình\x20thang\x20không\x20cân','Lát\x20ảnh\x20làm\x20kết\x20cấu','Ruy\x20băng\x20lên','Cuộn\x20dọc','Bù\x20trừ\x20X','Đầu\x20nối','Kiểu\x20phác\x20thảo','Hình\x20chữ\x20V','Ruy\x20băng\x20trái\x20phải','Dấu\x20chia','1804805qHlBYr','Sao\x207\x20cánh','Trái','Mũi\x20tên\x20hở','Màu\x20chữ','Cặp\x20ngoặc\x20vuông','Mặt\x20cười','Độ\x20rộng','Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20cùng\x20phía','Nút\x20hành\x20động:\x20Thông\x20tin','Tô\x20bằng\x20mẫu','Thẻ\x20đục\x20lỗ','Băng\x20đục\x20lỗ','Dữ\x20liệu','Hình\x20giọt\x20nước','Sao\x2012\x20cánh','Thao\x20tác\x20thủ\x20công','Danh\x20sách\x20công\x20việc','Phải','Mũi\x20tên\x20quay\x20đầu','Tài\x20liệu','Lưu\x20trữ\x20trực\x20tuyến','Kiểu\x20hình\x20dạng','Hình\x20bánh\x20rán','24002glkcIJ','Đường\x20viền','Mũi\x20tên\x20đường\x20thẳng','Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20cùng\x20phía','Hộp\x20văn\x20bản\x20ngang','Liền','Dấu\x20bằng','Chú\x20thích\x20mũi\x20tên\x20trái\x20phải','Chú\x20thích\x20nhấn\x20mạnh\x203','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x202','Nút\x20hành\x20động:\x20Bắt\x20đầu','Chú\x20thích\x203','Tỷ\x20lệ\x20X','Băng\x20từ','Quy\x20trình\x20thay\x20thế','Trích\x20dẫn','Hình\x20cung','Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20chéo','Tia\x20sét','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x201','Hình\x20chữ\x20nhật\x20cắt\x20một\x20góc','Hợp\x20nhất','Hình\x20công\x20thức','Độ\x20trong\x20suốt','Chú\x20thích\x20đường\x20kẻ\x201','Superscript','Mũi\x20tên\x20xuống','Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20chéo','Chú\x20thích\x20nhấn\x20mạnh\x201','Không','Đối\x20chiếu','Xóa\x20hình\x20dạng','Hình\x20chữ\x20nhật','Cuộn\x20ngang','Nút\x20hành\x20động:\x20Chuyển\x20tiếp\x20hoặc\x20Tiếp\x20theo','Kiểu\x20nét\x20đứt','Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn\x20một\x20góc\x20cắt','Nút\x20hành\x20động:\x20Trang\x20chủ','Ruy\x20băng\x20xuống','Mũi\x20tên\x20cong\x20xuống','Mũi\x20tên\x20phải','Căn\x20phải','6DZwMnT','Quy\x20trình','Chuyển\x20đổi\x20lật\x20ngang','Lục\x20giác','Miếng\x20bánh','Gạch\x20ngang','3250nojDnm','Mũi\x20tên\x20khối','Chú\x20thích\x20mũi\x20tên\x20trái','4695498RBfpHk','Trên','Sóng\x20đôi','Thập\x20nhị\x20giác','81433mgzvIH','Không\x20có\x20đường\x20viền','Nguồn\x20ảnh','Dấu\x20cộng','Căn\x20chỉnh','Hình\x20elip','Tam\x20giác\x20cân','Góc\x20thư\x20mục','Trên\x20phải','Nhập\x20thủ\x20công','Sao\x2024\x20cánh','Căn\x20trên','Căn\x20trái','Tam\x20giác\x20vuông','Kích\x20thước\x20mũi\x20tên\x20cuối','Tô\x20màu\x20gradient','Khung\x20nổi\x20bật','Đường\x20nối\x20khuỷu','Bật/tắt\x20lật\x20dọc','Danh\x20sách\x20có\x20thứ\x20tự','Hình\x20trụ','Chèn\x20hình\x20dạng','Màu\x20nền\x20văn\x20bản','Chú\x20thích\x20nhấn\x20mạnh\x202','Vát','Hình\x20bình\x20hành','Chấm\x20vuông','Khác','Ngoặc\x20nhọn\x20trái','Trì\x20hoãn','Trái\x20tim','Đường\x20ngược','Ruy\x20băng\x20cong\x20xuống','Đường\x20kẻ','Quy\x20trình\x20xác\x20định\x20trước','Tiêu\x20đề\x201','Đám\x20mây','Hộp\x20văn\x20bản\x20dọc','Bán\x20kính\x20góc','Trống\x20từ','Hình\x20ngũ\x20giác\x20(Home\x20Plate)','Chấm\x20tròn','Top\x20and\x20Bottom','Điểm\x20nối\x20tổng','Chú\x20thích\x20mũi\x20tên\x20xuống','Lớn','Lưu\x20trữ\x20nội\x20bộ','Mũi\x20tên\x20lên\x20xuống','Phẳng','Chú\x20thích\x201','Khối\x20mã','Hình\x20nổ\x202','Đa\x20tài\x20liệu','Xoay\x20cùng\x20hình\x20dạng','Ẩn\x20bảng\x20hình\x20dạng','4IkOfSG','Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn','Chú\x20thích\x20mũi\x20tên\x20bốn\x20chiều','Mặt\x20trời','Màu\x20sắc','Chuyển\x20đổi\x20văn\x20bản\x20dọc','Hình\x20cơ\x20bản','Kiểu\x20mũi\x20tên\x20đầu','Dấu\x20nhân','Nét\x20đứt\x20dài','Chuẩn\x20bị','Chú\x20thích\x20mũi\x20tên\x20lên','Ngoặc\x20nhọn\x20phải','Vị\x20trí\x20hình\x20dạng','Dưới','Mũi\x20tên\x20cong\x20trái','Tiêu\x20đề\x202','Đường\x20nối\x20cong\x20có\x20mũi\x20tên','Hình\x20lập\x20phương','Kích\x20thước\x20mũi\x20tên\x20đầu','Nút\x20hành\x20động:\x20Trợ\x20giúp','Gạch\x20chân','Sao\x20và\x20Biểu\x20ngữ','Phễu','Đường\x20thẳng','Reset\x20color','Dấu\x20trừ','Căn\x20dưới','Nét\x20đứt','Đầu\x20nối\x20khác\x20trang','Nút\x20hành\x20động:\x20Âm\x20thanh','3744639nEmPns','Bánh\x20răng\x206','Nét\x20đứt\x20dài\x20hai\x20chấm','Mũi\x20tên\x20sọc\x20phải','Căn\x20đều\x20hai\x20bên','Đĩa\x20từ','Mũi\x20tên\x20khía\x20phải','Trích\x20xuất','Nút\x20hành\x20động:\x20Trở\x20lại','Bánh\x20răng\x209','Mũi\x20tên\x20cong\x20lên','Thất\x20giác','In\x20đậm','Đường\x20thẳng\x20mũi\x20tên\x20hai\x20đầu','Ruy\x20băng\x20cong\x20lên','Dấu\x20khác','Chú\x20thích\x20đường\x20kẻ\x202','Chèn...','Chú\x20thích\x20hình\x20elip','Biểu\x20đồ\x20X','Trên\x20trái','Vẽ\x20tay','Mũi\x20tên\x20trái','Lưu\x20trữ\x20ngoại\x20tuyến','Mũi\x20tên\x20lên','Hình\x20biển\x20hiệu','Ngũ\x20giác','4500447ldXcFK','Hình\x20chữ\x20L','Hình\x20nổ\x201','Mũi\x20tên\x20tròn\x20trái\x20phải','Mũi\x20tên\x20tròn','Cong','Đường\x20viền\x20gradient','Mũi\x20tên\x20lướt','Thu\x20gọn\x20thanh\x20công\x20cụ\x20hình\x20dạng','Đường\x20nối\x20khuỷu\x20mũi\x20tên\x20hai\x20đầu','Mũi\x20tên\x20kim\x20cương','Sọc\x20chéo','Đường\x20viền\x20liền','Mũi\x20tên\x20hình\x20bầu\x20dục','Nhỏ','Tab\x20vuông','Chú\x20thích\x20hình\x20chữ\x20nhật\x20bo\x20góc','Danh\x20sách\x20không\x20thứ\x20tự','Nút\x20hành\x20động:\x20Kết\x20thúc','8fsOykZ','Tròn','Mũi\x20tên\x20trái\x20phải\x20lên','Quyết\x20định','Hình\x20cung\x20khối','Mũi\x20tên\x20cong','Không\x20có'];_0x404f=function(){return _0x449eae;};return _0x404f();}export{e as default};
1
+ function _0x15f0(){const _0x3c5294=['Đường\x20viền\x20liền','Hình\x20chữ\x20L','Dấu\x20trừ','Lát\x20ảnh\x20làm\x20kết\x20cấu','Mũi\x20tên\x20cong','Hình\x20vuông','Nút\x20hành\x20động:\x20Phim','Chuẩn\x20bị','Hình\x20cơ\x20bản','Chấm\x20vuông','Góc\x20thư\x20mục','Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20cùng\x20phía','Nút\x20hành\x20động:\x20Trang\x20chủ','Lưu\x20trữ\x20nội\x20bộ','Trên','Lưu\x20trữ\x20trực\x20tuyến','Không\x20có','Mũi\x20tên\x20tròn','Chú\x20thích\x20mũi\x20tên\x20trái','Mặt\x20cười','Mũi\x20tên\x20cong\x20trái','Sao\x204\x20cánh','Chỉ\x20số\x20trên','Mũi\x20tên\x20lướt','Bán\x20kính\x20góc','Quy\x20trình\x20thay\x20thế','Tô\x20màu','Đối\x20chiếu','Hộp\x20văn\x20bản\x20ngang','Dữ\x20liệu','Kích\x20thước\x20mũi\x20tên\x20đầu','Trên\x20phải','Chú\x20thích\x20nhấn\x20mạnh\x203','Cặp\x20ngoặc\x20nhọn','Đường\x20viền','6959712xFRyeV','Khung','6532966OFnmpC','Tô\x20bằng\x20mẫu','Lớn','Ruy\x20băng\x20xuống','Nhập\x20văn\x20bản','Mũi\x20tên\x20bốn\x20chiều','Khối\x20mã','Dưới','Tiêu\x20đề\x202','Trích\x20dẫn','Không','Sao\x2032\x20cánh','Tab\x20góc','Nút\x20hành\x20động:\x20Tài\x20liệu','Mũi\x20tên\x20tròn\x20trái\x20phải','Nút\x20hành\x20động:\x20Thông\x20tin','Thập\x20giác','Tô\x20màu\x20gradient','Ngũ\x20giác','Mũi\x20tên\x20tròn\x20trái','Kiểu\x20mũi\x20tên\x20đầu','Không\x20có\x20đường\x20viền','Băng\x20đục\x20lỗ','Độ\x20trong\x20suốt','Nét\x20đứt\x20chấm','Ruy\x20băng\x20cong\x20lên','Mặt\x20trời','Dưới\x20phải','Quy\x20trình','Cuộn\x20ngang','Xoay\x2090\x20độ\x20ngược\x20chiều\x20kim\x20đồng\x20hồ','6zIwcRj','Mũi\x20tên\x20cong\x20lên','Chú\x20thích\x202','Nút\x20hành\x20động:\x20Bắt\x20đầu','Sao\x2010\x20cánh','Tia\x20sét','Dấu\x20cộng','Hình\x20dạng','Sao\x20và\x20Biểu\x20ngữ','Cắt\x20theo\x20hình\x20dạng','Đường\x20ngược','Biển\x20cấm\x20hút\x20thuốc','Hình\x20chữ\x20nhật','Hình\x20vát','Chú\x20thích\x20đường\x20kẻ\x202','Mũi\x20tên\x20hình\x20bầu\x20dục','Giữa','1084184gGoeUI','Bật/tắt\x20lật\x20dọc','Chú\x20thích\x20đường\x20kẻ\x201','474OQxqws','Vừa','10jvjNzW','Chú\x20thích\x20hình\x20elip','Chú\x20thích\x203','Phía\x20sau\x20văn\x20bản','Bánh\x20răng\x206','Hình\x20chữ\x20nhật\x20bo\x20góc','Chú\x20thích','Chú\x20thích\x20mũi\x20tên\x20lên','Kích\x20thước\x20mũi\x20tên\x20cuối','Tiêu\x20đề\x205','Ngoặc\x20vuông\x20phải','Nút\x20hành\x20động:\x20Kết\x20thúc','Danh\x20sách\x20không\x20thứ\x20tự','58709GiVsgY','Đám\x20mây','Chấm\x20tròn','Đặt\x20lại\x20màu','Nút\x20hành\x20động:\x20Trở\x20lại','Đường\x20nối\x20cong\x20mũi\x20tên\x20hai\x20đầu','Lưu\x20trữ\x20ngoại\x20tuyến','30589iPhuLd','Sọc\x20chéo','Thu\x20gọn\x20thanh\x20công\x20cụ\x20hình\x20dạng','Hình\x20chữ\x20nhật\x20cắt\x20một\x20góc','Căn\x20giữa','Sao\x208\x20cánh','Mũi\x20tên\x20lên\x20xuống','Đường\x20nối\x20cong\x20có\x20mũi\x20tên','Biểu\x20đồ\x20sao','Dấu\x20khác','Trên\x20trái','Hình\x20quạt','Tiêu\x20đề\x204','Sao\x2016\x20cánh','Sao\x207\x20cánh','8672170uNPtiO','Ruy\x20băng\x20lên','Mở\x20bảng\x20hình\x20dạng','Định\x20dạng\x20hình\x20dạng','Căn\x20phải','Miếng\x20bánh','Thẻ\x20đục\x20lỗ','Văn\x20bản','Nét\x20đứt\x20dài\x20chấm','Hình\x20nổ\x202','Ngoặc\x20nhọn\x20trái','Biểu\x20đồ\x20cộng','Chú\x20thích\x20hình\x20chữ\x20nhật\x20bo\x20góc','Tròn','Căn\x20chỉnh','Dấu\x20chia','Chú\x20thích\x20hình\x20chữ\x20nhật','Hình\x20giọt\x20nước','Đường\x20nối\x20khuỷu\x20mũi\x20tên\x20hai\x20đầu','Hình\x20thang','Thất\x20giác','Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn','Mũi\x20tên\x20khía\x20phải','Hình\x20ngũ\x20giác\x20(Home\x20Plate)','Điểm\x20nối\x20tổng','Mũi\x20tên','Căn\x20dưới','Hình\x20chữ\x20V','Cặp\x20ngoặc\x20vuông','Mặt\x20trăng','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x202','Mũi\x20tên\x20phải','Tam\x20giác\x20vuông','Mở\x20rộng\x20thanh\x20công\x20cụ\x20hình\x20dạng','Tab\x20vuông','15dYkfoF','12BGpvtW','Mũi\x20tên\x20hở','Xoay\x2090\x20độ\x20theo\x20chiều\x20kim\x20đồng\x20hồ','Nút\x20hành\x20động:\x20Chuyển\x20tiếp\x20hoặc\x20Tiếp\x20theo','Trên\x20và\x20dưới','Hình\x20bình\x20hành','Gạch\x20ngang','Mũi\x20tên\x20trái\x20phải','Hình\x20trụ','Sao\x206\x20cánh','Danh\x20sách\x20có\x20thứ\x20tự','Cong','Nét\x20đứt\x20dài\x20hai\x20chấm','Kiểu\x20đầu\x20mút','Danh\x20sách\x20công\x20việc','Bù\x20trừ\x20X','Nút\x20hành\x20động:\x20Trống','Đường\x20nối\x20khuỷu','Chú\x20thích\x20nhấn\x20mạnh\x201','Mũi\x20tên\x20sọc\x20phải','Căn\x20trên','Mũi\x20tên\x20nhọn','Biểu\x20đồ\x20X','Khung\x20nổi\x20bật','Chuyển\x20đổi\x20lật\x20ngang','Kiểu\x20nối\x20góc','Nhỏ','Chú\x20thích\x20mũi\x20tên\x20trái\x20phải','Mũi\x20tên\x20khối','Mũi\x20tên\x20quay\x20đầu','Màu\x20sắc','Mũi\x20tên\x20cong\x20phải','Chú\x20thích\x20mũi\x20tên\x20xuống','Vẽ\x20nguệch\x20ngoạc','Chú\x20thích\x20mũi\x20tên\x20phải','Hình\x20thang\x20không\x20cân','Đường\x20thẳng\x20mũi\x20tên\x20hai\x20đầu','Cùng\x20dòng\x20với\x20văn\x20bản','Kiểu\x20nét\x20đứt','Trái','Chú\x20thích\x201','Tỷ\x20lệ\x20Y','Vát','Sóng\x20đôi','Chỉ\x20số\x20dưới','Căn\x20trái','Đường\x20nối\x20khuỷu\x20có\x20mũi\x20tên','Bánh\x20răng\x209','Băng\x20từ','Tiêu\x20đề\x203','Vuông','Hình\x20lập\x20phương','Vị\x20trí\x20hình\x20dạng','Mũi\x20tên\x20kim\x20cương','Thập\x20nhị\x20giác','Ruy\x20băng\x20cong\x20xuống','Đường\x20nối\x20cong','Sắp\x20xếp','Đường\x20viền\x20gradient','Tam\x20giác\x20cân','Đầu\x20nối','Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20cùng\x20phía','Màu\x20nền\x20văn\x20bản','Màu\x20chữ','Lục\x20giác','In\x20đậm','Quyết\x20định','11843019ijBBLS','Đường\x20kẻ','Hình\x20công\x20thức','Ẩn\x20bảng\x20hình\x20dạng','Xóa\x20hình\x20dạng','Trái\x20tim','Hình\x20bánh\x20rán','Thao\x20tác\x20thủ\x20công'];_0x15f0=function(){return _0x3c5294;};return _0x15f0();}function _0x26b3(_0x10fffe,_0x224380){_0x10fffe=_0x10fffe-0x8b;const _0x15f050=_0x15f0();let _0x26b3ad=_0x15f050[_0x10fffe];return _0x26b3ad;}const _0x204e2b=_0x26b3;(function(_0x2cf4fb,_0x49fc34){const _0x40e918=_0x26b3,_0x4c06f3=_0x2cf4fb();while(!![]){try{const _0x441ed7=-parseInt(_0x40e918(0x150))/0x1*(parseInt(_0x40e918(0x126))/0x2)+-parseInt(_0x40e918(0x96))/0x3*(-parseInt(_0x40e918(0x137))/0x4)+parseInt(_0x40e918(0x15f))/0x5+-parseInt(_0x40e918(0x13a))/0x6*(-parseInt(_0x40e918(0x149))/0x7)+-parseInt(_0x40e918(0x105))/0x8+-parseInt(_0x40e918(0xda))/0x9*(parseInt(_0x40e918(0x13c))/0xa)+parseInt(_0x40e918(0x107))/0xb*(-parseInt(_0x40e918(0x97))/0xc);if(_0x441ed7===_0x49fc34)break;else _0x4c06f3['push'](_0x4c06f3['shift']());}catch(_0x1ecfe0){_0x4c06f3['push'](_0x4c06f3['shift']());}}}(_0x15f0,0xd7045));const e={'shape-editor-ui':{'title':_0x204e2b(0x12d),'insertShape':'Chèn\x20hình\x20dạng','openPanel':_0x204e2b(0x161),'deleteShape':_0x204e2b(0xde),'hidePanel':_0x204e2b(0xdd),'formatShape':_0x204e2b(0x162),'shapeStyle':'Kiểu\x20hình\x20dạng','shapePosition':_0x204e2b(0xcb),'toggleFlipH':_0x204e2b(0xaf),'toggleFlipV':_0x204e2b(0x138),'rotateRight90':_0x204e2b(0x99),'rotateLeft90':_0x204e2b(0x125),'toggleTextVertical':'Chuyển\x20đổi\x20văn\x20bản\x20dọc','textEditor':{'placeholder':_0x204e2b(0x10b),'paragraphType':{'normal':_0x204e2b(0x166),'heading1':'Tiêu\x20đề\x201','heading2':_0x204e2b(0x10f),'heading3':_0x204e2b(0xc8),'heading4':_0x204e2b(0x15c),'heading5':_0x204e2b(0x145),'orderedList':_0x204e2b(0xa1),'bulletList':_0x204e2b(0x148),'checkList':_0x204e2b(0xa5),'quote':_0x204e2b(0x110),'code':_0x204e2b(0x10d),'callout':_0x204e2b(0xae)}},'fill':{'title':_0x204e2b(0xfc),'noFill':'Không\x20tô','solidFill':'Tô\x20màu\x20đặc','gradientFill':_0x204e2b(0x118),'pictureFill':'Tô\x20bằng\x20hình\x20ảnh\x20hoặc\x20kết\x20cấu','patternFill':_0x204e2b(0x108),'color':_0x204e2b(0xb5),'transparency':_0x204e2b(0x11e),'picture':{'source':'Nguồn\x20ảnh','insert':'Chèn...','tileAsTexture':_0x204e2b(0xe5),'offsetX':_0x204e2b(0xa6),'offsetY':'Bù\x20trừ\x20Y','scaleX':'Tỷ\x20lệ\x20X','scaleY':_0x204e2b(0xc0),'alignment':_0x204e2b(0x16d),'rotateWithShape':'Xoay\x20cùng\x20hình\x20dạng','align':{'tl':_0x204e2b(0x15a),'t':_0x204e2b(0xf0),'tr':_0x204e2b(0x101),'l':_0x204e2b(0xbe),'ctr':_0x204e2b(0x136),'r':'Phải','bl':'Dưới\x20trái','b':_0x204e2b(0x10e),'br':_0x204e2b(0x122)}}},'line':{'title':_0x204e2b(0x104),'noLine':_0x204e2b(0x11c),'solidLine':_0x204e2b(0xe2),'gradientLine':_0x204e2b(0xd1),'color':_0x204e2b(0xb5),'transparency':'Độ\x20trong\x20suốt','width':'Độ\x20rộng','cornerRadius':_0x204e2b(0xfa),'dashType':{'title':_0x204e2b(0xbd),'solid':'Liền','roundDot':_0x204e2b(0x14b),'squareDot':_0x204e2b(0xeb),'dash':'Nét\x20đứt','dashDot':_0x204e2b(0x11f),'longDash':'Nét\x20đứt\x20dài','longDashDot':_0x204e2b(0x167),'longDashDotDot':_0x204e2b(0xa3)},'capType':{'title':_0x204e2b(0xa4),'flat':'Phẳng','round':_0x204e2b(0x16c),'square':_0x204e2b(0xc9)},'joinType':{'title':_0x204e2b(0xb0),'miter':'Nhọn','round':_0x204e2b(0x16c),'bevel':_0x204e2b(0xc1)},'beginArrowType':_0x204e2b(0x11b),'beginArrowSize':_0x204e2b(0x100),'endArrowType':'Kiểu\x20mũi\x20tên\x20cuối','endArrowSize':_0x204e2b(0x144),'arrowType':{'none':_0x204e2b(0xf2),'arrow':_0x204e2b(0x8c),'openArrow':_0x204e2b(0x98),'stealthArrow':_0x204e2b(0xac),'diamondArrow':_0x204e2b(0xcc),'ovalArrow':_0x204e2b(0x135)},'arrowSize':{'small':_0x204e2b(0xb1),'medium':_0x204e2b(0x13b),'large':_0x204e2b(0x109)},'sketchType':{'title':'Kiểu\x20phác\x20thảo','none':_0x204e2b(0x111),'curved':_0x204e2b(0xa2),'freehand':'Vẽ\x20tay','handDrawn':_0x204e2b(0xb8)}},'shape':{'group':{'line':_0x204e2b(0xdb),'rectangle':_0x204e2b(0x132),'basicShape':_0x204e2b(0xea),'blockArrow':_0x204e2b(0xb3),'equationShape':_0x204e2b(0xdc),'flowchart':'Lưu\x20đồ','starAndBanner':_0x204e2b(0x12e),'callout':_0x204e2b(0x142),'other':'Khác'},'type':{'line':'Đường\x20thẳng','straight-connector1':'Mũi\x20tên\x20đường\x20thẳng','straight-connector2':_0x204e2b(0xbb),'bent-connector3':_0x204e2b(0xa8),'bent-connector3-arrow1':_0x204e2b(0xc5),'bent-connector3-arrow2':_0x204e2b(0x171),'curved-connector3':_0x204e2b(0xcf),'curved-connector3-arrow1':_0x204e2b(0x157),'curved-connector3-arrow2':_0x204e2b(0x14e),'rect':_0x204e2b(0x132),'round-rect':_0x204e2b(0x141),'snip1-rect':_0x204e2b(0x153),'snip2-same-rect':_0x204e2b(0xed),'snip2-diag-rect':'Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20chéo','snip-round-rect':'Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn\x20một\x20góc\x20cắt','round1-rect':_0x204e2b(0x174),'round2-same-rect':_0x204e2b(0xd4),'round2-diag-rect':'Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20chéo','rect-textbox-horizontal':_0x204e2b(0xfe),'rect-textbox-vertical':'Hộp\x20văn\x20bản\x20dọc','ellipse':'Hình\x20elip','triangle':_0x204e2b(0xd2),'rt-triangle':_0x204e2b(0x93),'parallelogram':_0x204e2b(0x9c),'trapezoid':_0x204e2b(0x172),'non-isosceles-trapezoid':_0x204e2b(0xba),'diamond':'Hình\x20thoi','pentagon':_0x204e2b(0x119),'hexagon':_0x204e2b(0xd7),'heptagon':_0x204e2b(0x173),'octagon':'Bát\x20giác','decagon':_0x204e2b(0x117),'dodecagon':_0x204e2b(0xcd),'pie':_0x204e2b(0x15b),'chord':'Hình\x20cung','teardrop':_0x204e2b(0x170),'frame':_0x204e2b(0x106),'half-frame':'Khung\x20một\x20nửa','corner':_0x204e2b(0xe3),'diag-stripe':_0x204e2b(0x151),'plus':_0x204e2b(0x12c),'plaque':'Hình\x20biển\x20hiệu','can':_0x204e2b(0x9f),'cube':_0x204e2b(0xca),'bevel':_0x204e2b(0x133),'donut':_0x204e2b(0xe0),'no-smoking':_0x204e2b(0x131),'block-arc':'Hình\x20cung\x20khối','folder-corner':_0x204e2b(0xec),'smiley-face':_0x204e2b(0xf5),'heart':_0x204e2b(0xdf),'lightning-bolt':_0x204e2b(0x12b),'sun':_0x204e2b(0x121),'moon':_0x204e2b(0x90),'cloud':_0x204e2b(0x14a),'arc':'Hình\x20cung','bracket-pair':_0x204e2b(0x8f),'brace-pair':_0x204e2b(0x103),'left-bracket':'Ngoặc\x20vuông\x20trái','right-bracket':_0x204e2b(0x146),'left-brace':_0x204e2b(0x169),'right-brace':'Ngoặc\x20nhọn\x20phải','right-arrow':_0x204e2b(0x92),'left-arrow':'Mũi\x20tên\x20trái','up-arrow':'Mũi\x20tên\x20lên','down-arrow':'Mũi\x20tên\x20xuống','left-right-arrow':_0x204e2b(0x9e),'up-down-arrow':_0x204e2b(0x156),'quad-arrow':_0x204e2b(0x10c),'left-right-up-arrow':'Mũi\x20tên\x20trái\x20phải\x20lên','bent-arrow':_0x204e2b(0xe6),'uturn-arrow':_0x204e2b(0xb4),'left-up-arrow':'Mũi\x20tên\x20trái\x20lên','bent-up-arrow':_0x204e2b(0x127),'curved-right-arrow':_0x204e2b(0xb6),'curved-left-arrow':_0x204e2b(0xf6),'curved-up-arrow':_0x204e2b(0x127),'curved-down-arrow':'Mũi\x20tên\x20cong\x20xuống','striped-right-arrow':_0x204e2b(0xaa),'notched-right-arrow':_0x204e2b(0x175),'home-plate':_0x204e2b(0x176),'chevron':_0x204e2b(0x8e),'right-arrow-callout':_0x204e2b(0xb9),'down-arrow-callout':_0x204e2b(0xb7),'left-arrow-callout':_0x204e2b(0xf4),'up-arrow-callout':_0x204e2b(0x143),'left-right-arrow-callout':_0x204e2b(0xb2),'quad-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20bốn\x20chiều','circular-arrow':_0x204e2b(0xf3),'math-plus':_0x204e2b(0x12c),'math-minus':_0x204e2b(0xe4),'math-multiply':'Dấu\x20nhân','math-divide':_0x204e2b(0x16e),'math-equal':'Dấu\x20bằng','math-not-equal':_0x204e2b(0x159),'flow-chart-process':_0x204e2b(0x123),'flow-chart-alternate-process':_0x204e2b(0xfb),'flow-chart-decision':_0x204e2b(0xd9),'flow-chart-input-output':_0x204e2b(0xff),'flow-chart-predefined-process':'Quy\x20trình\x20xác\x20định\x20trước','flow-chart-internal-storage':_0x204e2b(0xef),'flow-chart-document':'Tài\x20liệu','flow-chart-multidocument':'Đa\x20tài\x20liệu','flow-chart-terminator':'Kết\x20thúc','flow-chart-preparation':_0x204e2b(0xe9),'flow-chart-manual-input':'Nhập\x20thủ\x20công','flow-chart-manual-operation':_0x204e2b(0xe1),'flow-chart-connector':_0x204e2b(0xd3),'flow-chart-offpage-connector':'Đầu\x20nối\x20khác\x20trang','flow-chart-punched-card':_0x204e2b(0x165),'flow-chart-punched-tape':_0x204e2b(0x11d),'flow-chart-summing-junction':_0x204e2b(0x8b),'flow-chart-or':'Hoặc','flow-chart-collate':_0x204e2b(0xfd),'flow-chart-sort':_0x204e2b(0xd0),'flow-chart-extract':'Trích\x20xuất','flow-chart-merge':'Hợp\x20nhất','flow-chart-online-storage':_0x204e2b(0xf1),'flow-chart-delay':'Trì\x20hoãn','flow-chart-magnetic-tape':_0x204e2b(0xc7),'flow-chart-magnetic-disk':'Đĩa\x20từ','flow-chart-magnetic-drum':'Trống\x20từ','flow-chart-display':'Hiển\x20thị','irregular-seal1':'Hình\x20nổ\x201','irregular-seal2':_0x204e2b(0x168),'star4':_0x204e2b(0xf7),'star5':'Sao\x205\x20cánh','star6':_0x204e2b(0xa0),'star7':_0x204e2b(0x15e),'star8':_0x204e2b(0x155),'star10':_0x204e2b(0x12a),'star12':'Sao\x2012\x20cánh','star16':_0x204e2b(0x15d),'star24':'Sao\x2024\x20cánh','star32':_0x204e2b(0x112),'ribbon2':_0x204e2b(0x160),'ribbon':_0x204e2b(0x10a),'ellipse-ribbon2':_0x204e2b(0x120),'ellipse-ribbon':_0x204e2b(0xce),'vertical-scroll':'Cuộn\x20dọc','horizontal-scroll':_0x204e2b(0x124),'wave':'Sóng','double-wave':_0x204e2b(0xc2),'wedge-rect-callout':_0x204e2b(0x16f),'wedge-round-rect-callout':_0x204e2b(0x16b),'wedge-ellipse-callout':_0x204e2b(0x13d),'cloud-callout':'Chú\x20thích\x20đám\x20mây','border-callout1':_0x204e2b(0x139),'border-callout2':_0x204e2b(0x134),'border-callout3':'Chú\x20thích\x20đường\x20kẻ\x203','accent-callout1':_0x204e2b(0xa9),'accent-callout2':'Chú\x20thích\x20nhấn\x20mạnh\x202','accent-callout3':_0x204e2b(0x102),'callout1':_0x204e2b(0xbf),'callout2':_0x204e2b(0x128),'callout3':_0x204e2b(0x13e),'accent-border-callout1':'Chú\x20thích\x20viền\x20nhấn\x20mạnh\x201','accent-border-callout2':_0x204e2b(0x91),'accent-border-callout3':'Chú\x20thích\x20viền\x20nhấn\x20mạnh\x203','left-circular-arrow':_0x204e2b(0x11a),'left-right-circular-arrow':_0x204e2b(0x115),'swoosh-arrow':_0x204e2b(0xf9),'left-right-ribbon':'Ruy\x20băng\x20trái\x20phải','pie-wedge':_0x204e2b(0x164),'funnel':'Phễu','gear6':_0x204e2b(0x140),'gear9':_0x204e2b(0xc6),'corner-tabs':_0x204e2b(0x113),'action-button-back-previous':'Nút\x20hành\x20động:\x20Quay\x20lại\x20hoặc\x20Trước','action-button-forward-next':_0x204e2b(0x9a),'action-button-beginning':_0x204e2b(0x129),'action-button-end':_0x204e2b(0x147),'action-button-home':_0x204e2b(0xee),'action-button-information':_0x204e2b(0x116),'action-button-return':_0x204e2b(0x14d),'action-button-movie':_0x204e2b(0xe8),'action-button-document':_0x204e2b(0x114),'action-button-sound':'Nút\x20hành\x20động:\x20Âm\x20thanh','action-button-help':'Nút\x20hành\x20động:\x20Trợ\x20giúp','action-button-blank':_0x204e2b(0xa7),'chart-plus':_0x204e2b(0x16a),'chart-star':_0x204e2b(0x158),'chart-x':_0x204e2b(0xad),'flow-chart-offline-storage':_0x204e2b(0x14f),'line-inv':_0x204e2b(0x130),'plaque-tabs':'Tab\x20biển\x20hiệu','square-tabs':_0x204e2b(0x95),'up-down-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20lên\x20xuống'}},'toolbar':{'expandShapeToolbar':_0x204e2b(0x94),'collapseShapeToolbar':_0x204e2b(0x152),'alignLeft':_0x204e2b(0xc4),'alignCenter':_0x204e2b(0x154),'alignRight':_0x204e2b(0x163),'alignJustify':'Căn\x20đều\x20hai\x20bên','bold':_0x204e2b(0xd8),'italic':'In\x20nghiêng','underline':'Gạch\x20chân','strikethrough':_0x204e2b(0x9d),'subscript':_0x204e2b(0xc3),'superscript':_0x204e2b(0xf8),'textColor':_0x204e2b(0xd6),'textBackgroundColor':_0x204e2b(0xd5),'fillColor':_0x204e2b(0xd5),'resetColor':_0x204e2b(0x14c),'typography':'Kiểu\x20chữ'},'align':{'top':_0x204e2b(0xab),'middle':'Căn\x20giữa\x20theo\x20chiều\x20dọc','bottom':_0x204e2b(0x8d)},'textWrap':{'inline':_0x204e2b(0xbc),'square':_0x204e2b(0xe7),'topAndBottom':_0x204e2b(0x9b),'behindText':_0x204e2b(0x13f),'inFrontText':'Phía\x20trước\x20văn\x20bản'},'crop':{'shape':_0x204e2b(0x12f)}}};export{e as default};
@@ -1 +1 @@
1
- const _0x128b83=_0xa96e;(function(_0x486463,_0x13a117){const _0xe512cc=_0xa96e,_0x4e52c8=_0x486463();while(!![]){try{const _0x1d843d=-parseInt(_0xe512cc(0x17a))/0x1+parseInt(_0xe512cc(0x11c))/0x2*(-parseInt(_0xe512cc(0x190))/0x3)+-parseInt(_0xe512cc(0x16e))/0x4*(parseInt(_0xe512cc(0x117))/0x5)+parseInt(_0xe512cc(0xf3))/0x6*(-parseInt(_0xe512cc(0x1a3))/0x7)+-parseInt(_0xe512cc(0x135))/0x8*(-parseInt(_0xe512cc(0x17e))/0x9)+-parseInt(_0xe512cc(0x13d))/0xa+parseInt(_0xe512cc(0x106))/0xb;if(_0x1d843d===_0x13a117)break;else _0x4e52c8['push'](_0x4e52c8['shift']());}catch(_0x15f7d8){_0x4e52c8['push'](_0x4e52c8['shift']());}}}(_0xf683,0x9a451));const e={'shape-editor-ui':{'title':'形状','insertShape':_0x128b83(0x17d),'openPanel':_0x128b83(0x141),'deleteShape':_0x128b83(0x149),'hidePanel':_0x128b83(0x163),'formatShape':'格式化形状','shapeStyle':_0x128b83(0x10b),'shapePosition':_0x128b83(0x142),'toggleFlipH':_0x128b83(0x138),'toggleFlipV':_0x128b83(0x130),'rotateRight90':_0x128b83(0x160),'rotateLeft90':'逆时针90度旋转','toggleTextVertical':'切换文本竖排','textEditor':{'paragraphType':{'normal':'正文','heading1':'标题1','heading2':'标题2','heading3':'标题3','heading4':'标题4','heading5':_0x128b83(0x13a),'orderedList':'有序列表','bulletList':'无序列表','checkList':_0x128b83(0xe8),'quote':'引用','code':_0x128b83(0xfb),'callout':_0x128b83(0x15a)}},'fill':{'title':'填充','noFill':_0x128b83(0x112),'solidFill':'纯色','gradientFill':'渐变','pictureFill':'图片','patternFill':'图案填充','color':'颜色','transparency':_0x128b83(0x188),'picture':{'source':_0x128b83(0x18a),'insert':_0x128b83(0x12f),'tileAsTexture':'将图片平铺为纹理','offsetX':_0x128b83(0x192),'offsetY':'偏移量\x20Y','scaleX':'刻度\x20X','scaleY':_0x128b83(0x171),'alignment':_0x128b83(0x19e),'rotateWithShape':_0x128b83(0x10d),'align':{'tl':_0x128b83(0xe5),'t':_0x128b83(0x15c),'tr':'右上对齐','l':_0x128b83(0x124),'ctr':_0x128b83(0x170),'r':_0x128b83(0xfc),'bl':_0x128b83(0xef),'b':_0x128b83(0x14c),'br':_0x128b83(0x15e)}}},'line':{'title':'线条','noLine':_0x128b83(0x147),'solidLine':'实线','gradientLine':'渐变线','color':'颜色','transparency':'透明度','width':'宽度','cornerRadius':_0x128b83(0x14f),'dashType':{'title':_0x128b83(0x10e),'solid':'实线','roundDot':'圆点','squareDot':'方点','dash':_0x128b83(0x193),'dashDot':_0x128b83(0x166),'longDash':_0x128b83(0x121),'longDashDot':_0x128b83(0x184),'longDashDotDot':_0x128b83(0x169)},'capType':{'title':'端点类型','flat':'平面','round':'圆形','square':'方形'},'joinType':{'title':'联接类型','miter':'斜接','round':'圆形','bevel':'斜面'},'beginArrowType':'起点箭头类型','beginArrowSize':'起点箭头大小','endArrowType':_0x128b83(0xed),'endArrowSize':_0x128b83(0x13e),'arrowType':{'none':'无','arrow':'箭头','openArrow':_0x128b83(0x12c),'stealthArrow':_0x128b83(0x199),'diamondArrow':_0x128b83(0x113),'ovalArrow':'椭圆箭头'},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x128b83(0x155),'none':'无','curved':'弯曲','freehand':'手绘','handDrawn':'潦草'}},'shape':{'group':{'line':'线条','rectangle':'矩形','basicShape':'基本形状','blockArrow':'箭头总汇','equationShape':'公式形状','flowchart':_0x128b83(0x101),'starAndBanner':_0x128b83(0x1a1),'callout':'标注','other':'其他'},'type':{'line':'直线','straight-connector1':_0x128b83(0x173),'straight-connector2':_0x128b83(0xfd),'bent-connector3':'折线','bent-connector3-arrow1':'折线:箭头','bent-connector3-arrow2':'双箭头折线','curved-connector3':'曲线','curved-connector3-arrow1':_0x128b83(0x19f),'curved-connector3-arrow2':_0x128b83(0x153),'rect':'矩形','round-rect':_0x128b83(0x109),'snip1-rect':'剪去单角矩形','snip2-same-rect':_0x128b83(0x143),'snip2-diag-rect':_0x128b83(0x19b),'snip-round-rect':_0x128b83(0x158),'round1-rect':_0x128b83(0x102),'round2-same-rect':_0x128b83(0x125),'round2-diag-rect':_0x128b83(0x167),'rect-textbox-horizontal':_0x128b83(0x174),'rect-textbox-vertical':_0x128b83(0x12a),'ellipse':'椭圆','triangle':'等腰三角形','rt-triangle':_0x128b83(0x196),'parallelogram':_0x128b83(0xee),'trapezoid':'梯形','non-isosceles-trapezoid':_0x128b83(0x128),'diamond':'菱形','pentagon':_0x128b83(0xf8),'hexagon':_0x128b83(0x16c),'heptagon':_0x128b83(0x159),'octagon':'八边形','decagon':'十边形','dodecagon':'十二边形','pie':'不完整圆','chord':'弦形','teardrop':'泪滴形','frame':_0x128b83(0x16d),'half-frame':_0x128b83(0x11f),'corner':'L形','diag-stripe':'斜纹','plus':_0x128b83(0xe7),'plaque':_0x128b83(0xe9),'can':_0x128b83(0xfa),'cube':'立方体','bevel':'矩形:棱台','donut':_0x128b83(0x10a),'no-smoking':_0x128b83(0x1a0),'block-arc':_0x128b83(0x133),'folder-corner':'矩形:折角','smiley-face':'笑脸','heart':'心形','lightning-bolt':_0x128b83(0x176),'sun':_0x128b83(0x120),'moon':_0x128b83(0x178),'cloud':'云形','arc':'弧形','bracket-pair':'双括号','brace-pair':_0x128b83(0xf4),'left-bracket':'左中括号','right-bracket':_0x128b83(0x17c),'left-brace':_0x128b83(0x19c),'right-brace':_0x128b83(0x1a6),'right-arrow':_0x128b83(0xf7),'left-arrow':'箭头:左','up-arrow':_0x128b83(0x11a),'down-arrow':_0x128b83(0x137),'left-right-arrow':_0x128b83(0x15d),'up-down-arrow':_0x128b83(0x11e),'quad-arrow':_0x128b83(0x119),'left-right-up-arrow':_0x128b83(0x115),'bent-arrow':'箭头:圆角右','uturn-arrow':'箭头:手杖形','left-up-arrow':_0x128b83(0x150),'bent-up-arrow':_0x128b83(0x12d),'curved-right-arrow':_0x128b83(0x116),'curved-left-arrow':'箭头:左弧形','curved-up-arrow':_0x128b83(0x180),'curved-down-arrow':_0x128b83(0x185),'striped-right-arrow':_0x128b83(0x11b),'notched-right-arrow':_0x128b83(0x18c),'home-plate':_0x128b83(0xf8),'chevron':_0x128b83(0x134),'right-arrow-callout':_0x128b83(0x10f),'down-arrow-callout':_0x128b83(0x18d),'left-arrow-callout':'标注:左箭头','up-arrow-callout':_0x128b83(0x16a),'left-right-arrow-callout':'标注:左右箭头','quad-arrow-callout':_0x128b83(0x14b),'circular-arrow':'箭头:环形','math-plus':'加号','math-minus':'减号','math-multiply':'乘号','math-divide':'除号','math-equal':'等号','math-not-equal':_0x128b83(0x177),'flow-chart-process':_0x128b83(0x172),'flow-chart-alternate-process':_0x128b83(0x181),'flow-chart-decision':'流程图:决策','flow-chart-input-output':_0x128b83(0xf2),'flow-chart-predefined-process':_0x128b83(0x15b),'flow-chart-internal-storage':_0x128b83(0x13f),'flow-chart-document':_0x128b83(0x123),'flow-chart-multidocument':_0x128b83(0x194),'flow-chart-terminator':'流程图:终止','flow-chart-preparation':_0x128b83(0x140),'flow-chart-manual-input':_0x128b83(0x17f),'flow-chart-manual-operation':'流程图:手动操作','flow-chart-connector':_0x128b83(0x186),'flow-chart-offpage-connector':_0x128b83(0xeb),'flow-chart-punched-card':_0x128b83(0xf5),'flow-chart-punched-tape':_0x128b83(0x164),'flow-chart-summing-junction':_0x128b83(0x152),'flow-chart-or':_0x128b83(0x107),'flow-chart-collate':'流程图:对照','flow-chart-sort':_0x128b83(0x11d),'flow-chart-extract':_0x128b83(0x129),'flow-chart-merge':'流程图:合并','flow-chart-online-storage':_0x128b83(0x19d),'flow-chart-delay':_0x128b83(0x18f),'flow-chart-magnetic-tape':_0x128b83(0x13b),'flow-chart-magnetic-disk':_0x128b83(0x136),'flow-chart-magnetic-drum':'流程图:直接访问存储器','flow-chart-display':_0x128b83(0xec),'irregular-seal1':_0x128b83(0xf6),'irregular-seal2':_0x128b83(0x182),'star4':_0x128b83(0x1a7),'star5':'星形:五角','star6':_0x128b83(0x122),'star7':'星形:七角','star8':_0x128b83(0x148),'star10':_0x128b83(0x10c),'star12':'星形:十二角','star16':_0x128b83(0x1a2),'star24':_0x128b83(0x151),'star32':'星形:三十二角','ribbon2':_0x128b83(0x195),'ribbon':_0x128b83(0xfe),'ellipse-ribbon2':_0x128b83(0x100),'ellipse-ribbon':_0x128b83(0x189),'vertical-scroll':'卷形:垂直','horizontal-scroll':_0x128b83(0x14a),'wave':'波形','double-wave':_0x128b83(0x197),'wedge-rect-callout':_0x128b83(0x198),'wedge-round-rect-callout':_0x128b83(0x16f),'wedge-ellipse-callout':'对话气泡:圆形','cloud-callout':_0x128b83(0xea),'border-callout1':_0x128b83(0x146),'border-callout2':_0x128b83(0x162),'border-callout3':_0x128b83(0x108),'accent-callout1':_0x128b83(0x145),'accent-callout2':_0x128b83(0x156),'accent-callout3':_0x128b83(0x13c),'callout1':_0x128b83(0xe6),'callout2':_0x128b83(0x114),'callout3':_0x128b83(0x14d),'accent-border-callout1':_0x128b83(0x132),'accent-border-callout2':_0x128b83(0x104),'accent-border-callout3':_0x128b83(0x18e),'left-circular-arrow':_0x128b83(0x17b),'left-right-circular-arrow':_0x128b83(0x144),'swoosh-arrow':'弯曲箭头','left-right-ribbon':_0x128b83(0x139),'pie-wedge':_0x128b83(0x157),'funnel':'漏斗','gear6':_0x128b83(0x126),'gear9':_0x128b83(0x12b),'corner-tabs':'角标','action-button-back-previous':_0x128b83(0x111),'action-button-forward-next':_0x128b83(0x15f),'action-button-beginning':'开始按钮','action-button-end':_0x128b83(0x103),'action-button-home':_0x128b83(0x154),'action-button-information':_0x128b83(0x187),'action-button-return':_0x128b83(0x175),'action-button-movie':_0x128b83(0x1a4),'action-button-document':_0x128b83(0x118),'action-button-sound':'声音按钮','action-button-help':_0x128b83(0xf1),'action-button-blank':'空白按钮','chart-plus':'图表加号','chart-star':_0x128b83(0x1a5),'chart-x':_0x128b83(0x110),'flow-chart-offline-storage':'流程图:离线存储','line-inv':_0x128b83(0x183),'plaque-tabs':_0x128b83(0x168),'square-tabs':_0x128b83(0x19a),'up-down-arrow-callout':_0x128b83(0x131)}},'toolbar':{'expandShapeToolbar':'展开形状工具栏','collapseShapeToolbar':'收起形状工具栏','alignLeft':'左对齐','alignCenter':_0x128b83(0x170),'alignRight':_0x128b83(0xfc),'alignJustify':_0x128b83(0xff),'bold':'粗体','italic':'斜体','underline':_0x128b83(0x105),'strikethrough':_0x128b83(0x165),'subscript':'Subscript','superscript':_0x128b83(0x179),'textColor':_0x128b83(0x127),'textBackgroundColor':_0x128b83(0x18b),'fillColor':_0x128b83(0xf0),'resetColor':_0x128b83(0x16b)},'align':{'top':'顶部对齐','middle':_0x128b83(0x12e),'bottom':_0x128b83(0x14c)},'textWrap':{'inline':_0x128b83(0x161),'square':_0x128b83(0xf9),'topAndBottom':'上下型','behindText':_0x128b83(0x191),'inFrontText':_0x128b83(0x14e)},'crop':{'shape':'裁剪为形状'}}};export{e as default};function _0xa96e(_0x56884b,_0x1d012d){_0x56884b=_0x56884b-0xe5;const _0xf683a2=_0xf683();let _0xa96ebf=_0xf683a2[_0x56884b];return _0xa96ebf;}function _0xf683(){const _0x46dd84=['五边形','四周型','圆柱形','代码块','右对齐','双箭头直线','带形:前凸','两端对齐','带形:上凸弯','流程图','矩形:单圆角','结束按钮','标注:弯曲线形(带边框和强调线)','下划线','56483130Mugjbj','流程图:或者','标注:双弯曲线形','圆角矩形','圆:空心','形状样式','星形:十角','与形状一起旋转','短划线类型','标注:右箭头','图表X','返回/上一个按钮','无颜色','菱形箭头','标注:弯曲线形(无边框)','箭头:丁字','箭头:右弧形','1725edMZPE','文档按钮','箭头:十字','箭头:上','箭头:虚尾','6tjokAU','流程图:排序','箭头:上下','半闭框','太阳形','长划线','星形:六角','流程图:文档','左对齐','矩形:圆顶角','6齿齿轮','文本颜色','非等腰梯形','流程图:摘录','纵向文本框','9齿齿轮','开放箭头','箭头:直角上','垂直居中','插入...','切换垂直翻转','上下箭头标注','标注:线形(带边框和强调线)','空心弧','箭头:V型','2327352UkYDAn','流程图:磁盘','箭头:下','切换水平翻转','左右带形','标题5','流程图:顺序访问存储器','标注:双弯曲线形(带强调线)','12404890OeMPYr','终点箭头大小','流程图:内部贮存','流程图:准备','打开形状面板','形状位置','矩形:剪去顶角','左右圆形箭头','标注:线形(带强调线)','标注:线形','无线条','星形:八角','删除形状','卷形:水平','标注:十字箭头','底部对齐','标注:双弯曲线形(无边框)','浮于文字上方','拐角半径','箭头:直角双向','星形:二十四角','流程图:汇总连接','双箭头曲线','主页按钮','草绘样式','标注:弯曲线形(带强调线)','饼形楔','矩形:一个圆顶角,剪去另一个顶角','七边形','高亮框','流程图:预定义过程','顶部对齐','箭头:左右','右下对齐','前进/下一个按钮','顺时针90度旋转','嵌入型','标注:弯曲线形','隐藏形状面板','流程图:资料带','删除线','短划线-点','矩形:对角圆角','牌匾标签','长划线-点-点','标注:上箭头','重置颜色','六边形','图文框','12748FWRlKl','对话气泡:圆角矩形','居中对齐','刻度\x20Y','流程图:过程','直线箭头','横向文本框','返回按钮','闪电形','不等号','新月形','Superscript','1168577PWjLRD','左圆形箭头','右中括号','插入形状','9wUsivC','流程图:手动输入','箭头:上弧形','流程图:可选过程','爆炸形:14pt','线反向','长划线-点','箭头:下弧形','流程图:接点','信息按钮','透明度','带形:前凸弯','图片源','文字背景颜色','箭头:燕尾形','标注:下箭头','标注:双弯曲线形(带边框和强调线)','流程图:延期','66267MoNukG','衬于文字下方','偏移量\x20X','短划线','流程图:多文档','带形:上凸','直角三角形','双波形','对话气泡:矩形','隐形箭头','方形标签','矩形:剪去对角','左大括号','流程图:存储数据','对齐方式','曲线:箭头','禁止符','星与旗帜','星形:十六角','1148OUmoIP','电影按钮','图表星号','右大括号','星形:四角','左上对齐','标注:线形(无边框)','十字形','任务列表','缺角矩形','气泡:云','流程图:离页连接符','流程图:显示','终点箭头类型','平行四边形','左下对齐','文本背景色','帮助按钮','流程图:数据','44598bIscTM','双大括号','流程图:卡片','爆炸形:8pt','箭头:右'];_0xf683=function(){return _0x46dd84;};return _0xf683();}
1
+ function _0x5d44(){const _0xd1f04e=['90LnUFbo','图文框','气泡:云','方形标签','闪电形','饼形楔','渐变线','居中对齐','声音按钮','标注:双弯曲线形(无边框)','新月形','信息按钮','流程图:准备','箭头:左','嵌入型','标注:线形','矩形:单圆角','矩形:剪去顶角','流程图:汇总连接','不完整圆','流程图:内部贮存','右上对齐','箭头:直角上','对话气泡:圆形','切换垂直翻转','泪滴形','箭头:下','297235RBrFlr','左大括号','对话气泡:圆角矩形','5486535iHrniR','标题2','长划线-点','开放箭头','文字背景颜色','标题5','衬于文字下方','等腰三角形','箭头:V型','标注:弯曲线形(带边框和强调线)','星形:四角','收起形状工具栏','无线条','带形:前凸弯','矩形:剪去对角','887845dPfEGR','矩形:对角圆角','双波形','偏移量\x20Y','半闭框','帮助按钮','插入...','端点类型','上下箭头标注','10193DKJBao','空心弧','箭头:下弧形','高亮框','带形:上凸','终点箭头类型','右中括号','爆炸形:14pt','横向文本框','删除形状','弯曲箭头','返回按钮','公式形状','刻度\x20Y','双箭头折线','标注:线形(带强调线)','浮于文字上方','矩形:棱台','十边形','箭头:环形','箭头:丁字','标注:右箭头','短划线','偏移量\x20X','流程图:显示','卷形:水平','顶部对齐','请输入文字','流程图:直接访问存储器','线反向','下划线','星形:六角','流程图:终止','箭头:右弧形','图案填充','六边形','打开形状面板','箭头:虚尾','纵向文本框','平行四边形','流程图','与形状一起旋转','十字形','箭头总汇','流程图:或者','流程图:手动输入','箭头:直角双向','9齿齿轮','剪去单角矩形','逆时针90度旋转','流程图:过程','文本背景色','流程图:顺序访问存储器','立方体','前进/下一个按钮','空白按钮','标注:双弯曲线形(带边框和强调线)','流程图:排序','箭头:上','标注:线形(无边框)','图片源','流程图:接点','标注:上箭头','无颜色','图表加号','裁剪为形状','格式化形状','缺角矩形','两端对齐','带形:前凸','流程图:文档','圆角矩形','右大括号','长划线-点-点','流程图:可选过程','流程图:资料带','无序列表','删除线','五边形','短划线-点','禁止符','标注:双弯曲线形','标题4','长划线','星形:十二角','太阳形','流程图:合并','曲线:箭头','星形:八角','标注:左右箭头','代码块','流程图:摘录','图表X','标注:弯曲线形(无边框)','4499235GQnWKx','标注:线形(带边框和强调线)','1150600NWlpjr','箭头:上下','形状样式','10275048IICnWs','文本颜色','重置颜色','星形:二十四角','切换文本竖排','标题1','基本形状','流程图:延期','标注:左箭头','对齐方式','圆:空心','双箭头曲线','展开形状工具栏','电影按钮','形状位置','箭头:燕尾形','主页按钮','标注:十字箭头','流程图:对照','星形:十六角','不等号','左右带形','起点箭头类型','左对齐','爆炸形:8pt','顺时针90度旋转','折线:箭头','254hWOJmN','矩形:折角','刻度\x20X','标注:弯曲线形','对话气泡:矩形','直角三角形','将图片平铺为纹理','流程图:决策','右对齐','插入形状','矩形:一个圆顶角,剪去另一个顶角','星形:七角','联接类型','图表星号','右下对齐'];_0x5d44=function(){return _0xd1f04e;};return _0x5d44();}const _0x1fa0be=_0x4fbc;(function(_0x19ad2f,_0x2bf29c){const _0x1c6442=_0x4fbc,_0x180db9=_0x19ad2f();while(!![]){try{const _0x23d58a=parseInt(_0x1c6442(0x17b))/0x1*(-parseInt(_0x1c6442(0x136))/0x2)+parseInt(_0x1c6442(0x116))/0x3+-parseInt(_0x1c6442(0x118))/0x4+parseInt(_0x1c6442(0x160))/0x5*(-parseInt(_0x1c6442(0x145))/0x6)+-parseInt(_0x1c6442(0x172))/0x7+parseInt(_0x1c6442(0x11b))/0x8+parseInt(_0x1c6442(0x163))/0x9;if(_0x23d58a===_0x2bf29c)break;else _0x180db9['push'](_0x180db9['shift']());}catch(_0x1f04f0){_0x180db9['push'](_0x180db9['shift']());}}}(_0x5d44,0xc19d0));function _0x4fbc(_0x3f68f4,_0x12cec6){_0x3f68f4=_0x3f68f4-0xbd;const _0x5d4424=_0x5d44();let _0x4fbcd3=_0x5d4424[_0x3f68f4];return _0x4fbcd3;}const e={'shape-editor-ui':{'title':'形状','insertShape':_0x1fa0be(0x13f),'openPanel':_0x1fa0be(0xdc),'deleteShape':_0x1fa0be(0xc1),'hidePanel':'隐藏形状面板','formatShape':_0x1fa0be(0xfa),'shapeStyle':_0x1fa0be(0x11a),'shapePosition':_0x1fa0be(0x129),'toggleFlipH':'切换水平翻转','toggleFlipV':_0x1fa0be(0x15d),'rotateRight90':_0x1fa0be(0x134),'rotateLeft90':_0x1fa0be(0xe9),'toggleTextVertical':_0x1fa0be(0x11f),'textEditor':{'placeholder':_0x1fa0be(0xd3),'paragraphType':{'normal':'正文','heading1':_0x1fa0be(0x120),'heading2':_0x1fa0be(0x164),'heading3':'标题3','heading4':_0x1fa0be(0x10a),'heading5':_0x1fa0be(0x168),'orderedList':'有序列表','bulletList':_0x1fa0be(0x104),'checkList':'任务列表','quote':'引用','code':_0x1fa0be(0x112),'callout':_0x1fa0be(0x17e)}},'fill':{'title':'填充','noFill':_0x1fa0be(0xf7),'solidFill':'纯色','gradientFill':'渐变','pictureFill':'图片','patternFill':_0x1fa0be(0xda),'color':'颜色','transparency':'透明度','picture':{'source':_0x1fa0be(0xf4),'insert':_0x1fa0be(0x178),'tileAsTexture':_0x1fa0be(0x13c),'offsetX':_0x1fa0be(0xcf),'offsetY':_0x1fa0be(0x175),'scaleX':_0x1fa0be(0x138),'scaleY':_0x1fa0be(0xc5),'alignment':_0x1fa0be(0x124),'rotateWithShape':_0x1fa0be(0xe1),'align':{'tl':'左上对齐','t':_0x1fa0be(0xd2),'tr':_0x1fa0be(0x15a),'l':_0x1fa0be(0x132),'ctr':_0x1fa0be(0x14c),'r':_0x1fa0be(0x13e),'bl':'左下对齐','b':'底部对齐','br':_0x1fa0be(0x144)}}},'line':{'title':'线条','noLine':_0x1fa0be(0x16f),'solidLine':'实线','gradientLine':_0x1fa0be(0x14b),'color':'颜色','transparency':'透明度','width':'宽度','cornerRadius':'拐角半径','dashType':{'title':'短划线类型','solid':'实线','roundDot':'圆点','squareDot':'方点','dash':_0x1fa0be(0xce),'dashDot':_0x1fa0be(0x107),'longDash':_0x1fa0be(0x10b),'longDashDot':_0x1fa0be(0x165),'longDashDotDot':_0x1fa0be(0x101)},'capType':{'title':_0x1fa0be(0x179),'flat':'平面','round':'圆形','square':'方形'},'joinType':{'title':_0x1fa0be(0x142),'miter':'斜接','round':'圆形','bevel':'斜面'},'beginArrowType':_0x1fa0be(0x131),'beginArrowSize':'起点箭头大小','endArrowType':_0x1fa0be(0xbd),'endArrowSize':'终点箭头大小','arrowType':{'none':'无','arrow':'箭头','openArrow':_0x1fa0be(0x166),'stealthArrow':'隐形箭头','diamondArrow':'菱形箭头','ovalArrow':'椭圆箭头'},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':'草绘样式','none':'无','curved':'弯曲','freehand':'手绘','handDrawn':'潦草'}},'shape':{'group':{'line':'线条','rectangle':'矩形','basicShape':_0x1fa0be(0x121),'blockArrow':_0x1fa0be(0xe3),'equationShape':_0x1fa0be(0xc4),'flowchart':_0x1fa0be(0xe0),'starAndBanner':'星与旗帜','callout':'标注','other':'其他'},'type':{'line':'直线','straight-connector1':'直线箭头','straight-connector2':'双箭头直线','bent-connector3':'折线','bent-connector3-arrow1':_0x1fa0be(0x135),'bent-connector3-arrow2':_0x1fa0be(0xc6),'curved-connector3':'曲线','curved-connector3-arrow1':_0x1fa0be(0x10f),'curved-connector3-arrow2':_0x1fa0be(0x126),'rect':'矩形','round-rect':_0x1fa0be(0xff),'snip1-rect':_0x1fa0be(0xe8),'snip2-same-rect':_0x1fa0be(0x156),'snip2-diag-rect':_0x1fa0be(0x171),'snip-round-rect':_0x1fa0be(0x140),'round1-rect':_0x1fa0be(0x155),'round2-same-rect':'矩形:圆顶角','round2-diag-rect':_0x1fa0be(0x173),'rect-textbox-horizontal':_0x1fa0be(0xc0),'rect-textbox-vertical':_0x1fa0be(0xde),'ellipse':'椭圆','triangle':_0x1fa0be(0x16a),'rt-triangle':_0x1fa0be(0x13b),'parallelogram':_0x1fa0be(0xdf),'trapezoid':'梯形','non-isosceles-trapezoid':'非等腰梯形','diamond':'菱形','pentagon':_0x1fa0be(0x106),'hexagon':_0x1fa0be(0xdb),'heptagon':'七边形','octagon':'八边形','decagon':_0x1fa0be(0xca),'dodecagon':'十二边形','pie':_0x1fa0be(0x158),'chord':'弦形','teardrop':_0x1fa0be(0x15e),'frame':_0x1fa0be(0x146),'half-frame':_0x1fa0be(0x176),'corner':'L形','diag-stripe':'斜纹','plus':_0x1fa0be(0xe2),'plaque':_0x1fa0be(0xfb),'can':'圆柱形','cube':_0x1fa0be(0xed),'bevel':_0x1fa0be(0xc9),'donut':_0x1fa0be(0x125),'no-smoking':_0x1fa0be(0x108),'block-arc':_0x1fa0be(0x17c),'folder-corner':_0x1fa0be(0x137),'smiley-face':'笑脸','heart':'心形','lightning-bolt':_0x1fa0be(0x149),'sun':_0x1fa0be(0x10d),'moon':_0x1fa0be(0x14f),'cloud':'云形','arc':'弧形','bracket-pair':'双括号','brace-pair':'双大括号','left-bracket':'左中括号','right-bracket':_0x1fa0be(0xbe),'left-brace':_0x1fa0be(0x161),'right-brace':_0x1fa0be(0x100),'right-arrow':'箭头:右','left-arrow':_0x1fa0be(0x152),'up-arrow':_0x1fa0be(0xf2),'down-arrow':_0x1fa0be(0x15f),'left-right-arrow':'箭头:左右','up-down-arrow':_0x1fa0be(0x119),'quad-arrow':'箭头:十字','left-right-up-arrow':_0x1fa0be(0xcc),'bent-arrow':'箭头:圆角右','uturn-arrow':'箭头:手杖形','left-up-arrow':_0x1fa0be(0xe6),'bent-up-arrow':_0x1fa0be(0x15b),'curved-right-arrow':_0x1fa0be(0xd9),'curved-left-arrow':'箭头:左弧形','curved-up-arrow':'箭头:上弧形','curved-down-arrow':_0x1fa0be(0x17d),'striped-right-arrow':_0x1fa0be(0xdd),'notched-right-arrow':_0x1fa0be(0x12a),'home-plate':_0x1fa0be(0x106),'chevron':_0x1fa0be(0x16b),'right-arrow-callout':_0x1fa0be(0xcd),'down-arrow-callout':'标注:下箭头','left-arrow-callout':_0x1fa0be(0x123),'up-arrow-callout':_0x1fa0be(0xf6),'left-right-arrow-callout':_0x1fa0be(0x111),'quad-arrow-callout':_0x1fa0be(0x12c),'circular-arrow':_0x1fa0be(0xcb),'math-plus':'加号','math-minus':'减号','math-multiply':'乘号','math-divide':'除号','math-equal':'等号','math-not-equal':_0x1fa0be(0x12f),'flow-chart-process':_0x1fa0be(0xea),'flow-chart-alternate-process':_0x1fa0be(0x102),'flow-chart-decision':_0x1fa0be(0x13d),'flow-chart-input-output':'流程图:数据','flow-chart-predefined-process':'流程图:预定义过程','flow-chart-internal-storage':_0x1fa0be(0x159),'flow-chart-document':_0x1fa0be(0xfe),'flow-chart-multidocument':'流程图:多文档','flow-chart-terminator':_0x1fa0be(0xd8),'flow-chart-preparation':_0x1fa0be(0x151),'flow-chart-manual-input':_0x1fa0be(0xe5),'flow-chart-manual-operation':'流程图:手动操作','flow-chart-connector':_0x1fa0be(0xf5),'flow-chart-offpage-connector':'流程图:离页连接符','flow-chart-punched-card':'流程图:卡片','flow-chart-punched-tape':_0x1fa0be(0x103),'flow-chart-summing-junction':_0x1fa0be(0x157),'flow-chart-or':_0x1fa0be(0xe4),'flow-chart-collate':_0x1fa0be(0x12d),'flow-chart-sort':_0x1fa0be(0xf1),'flow-chart-extract':_0x1fa0be(0x113),'flow-chart-merge':_0x1fa0be(0x10e),'flow-chart-online-storage':'流程图:存储数据','flow-chart-delay':_0x1fa0be(0x122),'flow-chart-magnetic-tape':_0x1fa0be(0xec),'flow-chart-magnetic-disk':'流程图:磁盘','flow-chart-magnetic-drum':_0x1fa0be(0xd4),'flow-chart-display':_0x1fa0be(0xd0),'irregular-seal1':_0x1fa0be(0x133),'irregular-seal2':_0x1fa0be(0xbf),'star4':_0x1fa0be(0x16d),'star5':'星形:五角','star6':_0x1fa0be(0xd7),'star7':_0x1fa0be(0x141),'star8':_0x1fa0be(0x110),'star10':'星形:十角','star12':_0x1fa0be(0x10c),'star16':_0x1fa0be(0x12e),'star24':_0x1fa0be(0x11e),'star32':'星形:三十二角','ribbon2':_0x1fa0be(0x17f),'ribbon':_0x1fa0be(0xfd),'ellipse-ribbon2':'带形:上凸弯','ellipse-ribbon':_0x1fa0be(0x170),'vertical-scroll':'卷形:垂直','horizontal-scroll':_0x1fa0be(0xd1),'wave':'波形','double-wave':_0x1fa0be(0x174),'wedge-rect-callout':_0x1fa0be(0x13a),'wedge-round-rect-callout':_0x1fa0be(0x162),'wedge-ellipse-callout':_0x1fa0be(0x15c),'cloud-callout':_0x1fa0be(0x147),'border-callout1':_0x1fa0be(0x154),'border-callout2':_0x1fa0be(0x139),'border-callout3':_0x1fa0be(0x109),'accent-callout1':_0x1fa0be(0xc7),'accent-callout2':'标注:弯曲线形(带强调线)','accent-callout3':'标注:双弯曲线形(带强调线)','callout1':_0x1fa0be(0xf3),'callout2':_0x1fa0be(0x115),'callout3':_0x1fa0be(0x14e),'accent-border-callout1':_0x1fa0be(0x117),'accent-border-callout2':_0x1fa0be(0x16c),'accent-border-callout3':_0x1fa0be(0xf0),'left-circular-arrow':'左圆形箭头','left-right-circular-arrow':'左右圆形箭头','swoosh-arrow':_0x1fa0be(0xc2),'left-right-ribbon':_0x1fa0be(0x130),'pie-wedge':_0x1fa0be(0x14a),'funnel':'漏斗','gear6':'6齿齿轮','gear9':_0x1fa0be(0xe7),'corner-tabs':'角标','action-button-back-previous':'返回/上一个按钮','action-button-forward-next':_0x1fa0be(0xee),'action-button-beginning':'开始按钮','action-button-end':'结束按钮','action-button-home':_0x1fa0be(0x12b),'action-button-information':_0x1fa0be(0x150),'action-button-return':_0x1fa0be(0xc3),'action-button-movie':_0x1fa0be(0x128),'action-button-document':'文档按钮','action-button-sound':_0x1fa0be(0x14d),'action-button-help':_0x1fa0be(0x177),'action-button-blank':_0x1fa0be(0xef),'chart-plus':_0x1fa0be(0xf8),'chart-star':_0x1fa0be(0x143),'chart-x':_0x1fa0be(0x114),'flow-chart-offline-storage':'流程图:离线存储','line-inv':_0x1fa0be(0xd5),'plaque-tabs':'牌匾标签','square-tabs':_0x1fa0be(0x148),'up-down-arrow-callout':_0x1fa0be(0x17a)}},'toolbar':{'expandShapeToolbar':_0x1fa0be(0x127),'collapseShapeToolbar':_0x1fa0be(0x16e),'alignLeft':_0x1fa0be(0x132),'alignCenter':_0x1fa0be(0x14c),'alignRight':'右对齐','alignJustify':_0x1fa0be(0xfc),'bold':'粗体','italic':'斜体','underline':_0x1fa0be(0xd6),'strikethrough':_0x1fa0be(0x105),'subscript':'下标','superscript':'上标','textColor':_0x1fa0be(0x11c),'textBackgroundColor':_0x1fa0be(0x167),'fillColor':_0x1fa0be(0xeb),'resetColor':_0x1fa0be(0x11d),'typography':'排版'},'align':{'top':_0x1fa0be(0xd2),'middle':'垂直居中','bottom':'底部对齐'},'textWrap':{'inline':_0x1fa0be(0x153),'square':'四周型','topAndBottom':'上下型','behindText':_0x1fa0be(0x169),'inFrontText':_0x1fa0be(0xc8)},'crop':{'shape':_0x1fa0be(0xf9)}}};export{e as default};
@@ -1 +1 @@
1
- const _0x24933f=_0x556d;(function(_0x4c4d79,_0x2bb4b5){const _0x2e669e=_0x556d,_0x2eb834=_0x4c4d79();while(!![]){try{const _0x540db5=-parseInt(_0x2e669e(0x10f))/0x1*(parseInt(_0x2e669e(0xca))/0x2)+-parseInt(_0x2e669e(0x13d))/0x3+-parseInt(_0x2e669e(0xaa))/0x4*(parseInt(_0x2e669e(0x9b))/0x5)+parseInt(_0x2e669e(0x110))/0x6+-parseInt(_0x2e669e(0xb7))/0x7*(-parseInt(_0x2e669e(0x98))/0x8)+-parseInt(_0x2e669e(0x11d))/0x9*(parseInt(_0x2e669e(0x100))/0xa)+parseInt(_0x2e669e(0x122))/0xb*(parseInt(_0x2e669e(0xd5))/0xc);if(_0x540db5===_0x2bb4b5)break;else _0x2eb834['push'](_0x2eb834['shift']());}catch(_0x122384){_0x2eb834['push'](_0x2eb834['shift']());}}}(_0x2e70,0x78c50));const e={'shape-editor-ui':{'title':'形狀','insertShape':_0x24933f(0xc4),'openPanel':_0x24933f(0xd1),'deleteShape':_0x24933f(0xbd),'hidePanel':'隱藏形狀面板','formatShape':_0x24933f(0xa8),'shapeStyle':_0x24933f(0x9f),'shapePosition':'圖形位置','toggleFlipH':_0x24933f(0x142),'toggleFlipV':'切換垂直翻轉','rotateRight90':'順時針\x2090\x20度旋轉','rotateLeft90':_0x24933f(0xcf),'toggleTextVertical':_0x24933f(0x125),'textEditor':{'paragraphType':{'normal':'正文','heading1':_0x24933f(0xea),'heading2':'標題\x202','heading3':_0x24933f(0xcb),'heading4':_0x24933f(0xc2),'heading5':_0x24933f(0x12d),'orderedList':'有序列表','bulletList':'無序列表','checkList':_0x24933f(0xb3),'quote':'引用','code':_0x24933f(0x144),'callout':_0x24933f(0xd2)}},'fill':{'title':'填充','noFill':_0x24933f(0xed),'solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':'圖案填充','color':'顏色','transparency':_0x24933f(0xce),'picture':{'source':_0x24933f(0xf2),'insert':_0x24933f(0x129),'tileAsTexture':_0x24933f(0x7f),'offsetX':'偏移量\x20X','offsetY':_0x24933f(0x119),'scaleX':'縮放\x20X','scaleY':_0x24933f(0xd7),'alignment':'對齊方式','rotateWithShape':_0x24933f(0x91),'align':{'tl':_0x24933f(0x92),'t':'頂部對齊','tr':_0x24933f(0x11e),'l':_0x24933f(0x94),'ctr':_0x24933f(0xeb),'r':_0x24933f(0xc0),'bl':_0x24933f(0x88),'b':_0x24933f(0xf7),'br':'右下對齊'}}},'line':{'title':'線條','noLine':_0x24933f(0x8a),'solidLine':'實線','gradientLine':_0x24933f(0xd6),'color':'顏色','transparency':_0x24933f(0xce),'width':'寬度','cornerRadius':'拐角半徑','dashType':{'title':_0x24933f(0x13e),'solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':_0x24933f(0x11a),'longDash':_0x24933f(0x13f),'longDashDot':'長虛線-點','longDashDotDot':_0x24933f(0x8d)},'capType':{'title':_0x24933f(0x8b),'flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':'聯接類型','miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':'起點箭頭類型','beginArrowSize':_0x24933f(0xcc),'endArrowType':_0x24933f(0xa0),'endArrowSize':_0x24933f(0xf4),'arrowType':{'none':'無','arrow':'箭頭','openArrow':_0x24933f(0x134),'stealthArrow':_0x24933f(0xad),'diamondArrow':_0x24933f(0xf3),'ovalArrow':_0x24933f(0xd8)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':'草繪樣式','none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':_0x24933f(0xfb),'blockArrow':_0x24933f(0x117),'equationShape':_0x24933f(0x148),'flowchart':_0x24933f(0x11f),'starAndBanner':_0x24933f(0x13a),'callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':_0x24933f(0x138),'straight-connector2':'雙箭頭直線','bent-connector3':'折線','bent-connector3-arrow1':_0x24933f(0x103),'bent-connector3-arrow2':'雙箭頭折線','curved-connector3':'曲線','curved-connector3-arrow1':_0x24933f(0xe2),'curved-connector3-arrow2':_0x24933f(0xb1),'rect':'矩形','round-rect':_0x24933f(0xe3),'snip1-rect':_0x24933f(0xf0),'snip2-same-rect':_0x24933f(0x12f),'snip2-diag-rect':_0x24933f(0x121),'snip-round-rect':'矩形:一個圓頂角,剪去另一個頂角','round1-rect':_0x24933f(0x83),'round2-same-rect':_0x24933f(0x130),'round2-diag-rect':_0x24933f(0xc3),'rect-textbox-horizontal':_0x24933f(0xe9),'rect-textbox-vertical':'縱向文字方塊','ellipse':'橢圓','triangle':'等腰三角形','rt-triangle':'直角三角形','parallelogram':_0x24933f(0x86),'trapezoid':'梯形','non-isosceles-trapezoid':_0x24933f(0x8f),'diamond':'菱形','pentagon':'五邊形','hexagon':_0x24933f(0xf9),'heptagon':_0x24933f(0xdf),'octagon':_0x24933f(0x126),'decagon':'十邊形','dodecagon':_0x24933f(0xa7),'pie':'不完整圓','chord':'弦形','teardrop':_0x24933f(0xfe),'frame':'圖文框','half-frame':_0x24933f(0x96),'corner':'L形','diag-stripe':'斜紋','plus':'十字形','plaque':'缺角矩形','can':_0x24933f(0x12e),'cube':_0x24933f(0xda),'bevel':_0x24933f(0x10b),'donut':_0x24933f(0xae),'no-smoking':'禁止符','block-arc':_0x24933f(0xe8),'folder-corner':'矩形:折角','smiley-face':'笑臉','heart':'心形','lightning-bolt':_0x24933f(0xba),'sun':_0x24933f(0xbb),'moon':_0x24933f(0x114),'cloud':'雲形','arc':'弧形','bracket-pair':_0x24933f(0xac),'brace-pair':_0x24933f(0xfc),'left-bracket':'左中括號','right-bracket':_0x24933f(0x149),'left-brace':_0x24933f(0xb6),'right-brace':_0x24933f(0xe6),'right-arrow':_0x24933f(0xb0),'left-arrow':'箭頭:左','up-arrow':_0x24933f(0xbe),'down-arrow':_0x24933f(0x111),'left-right-arrow':_0x24933f(0x13b),'up-down-arrow':_0x24933f(0xc5),'quad-arrow':_0x24933f(0x108),'left-right-up-arrow':_0x24933f(0x90),'bent-arrow':_0x24933f(0x13c),'uturn-arrow':_0x24933f(0x137),'left-up-arrow':_0x24933f(0xa2),'bent-up-arrow':_0x24933f(0x139),'curved-right-arrow':_0x24933f(0x12b),'curved-left-arrow':_0x24933f(0xee),'curved-up-arrow':_0x24933f(0x9d),'curved-down-arrow':_0x24933f(0x87),'striped-right-arrow':_0x24933f(0xf8),'notched-right-arrow':'箭頭:燕尾形','home-plate':_0x24933f(0xcd),'chevron':_0x24933f(0x8e),'right-arrow-callout':_0x24933f(0x95),'down-arrow-callout':_0x24933f(0x9e),'left-arrow-callout':'標註:左箭頭','up-arrow-callout':_0x24933f(0xd9),'left-right-arrow-callout':_0x24933f(0xd0),'quad-arrow-callout':'標註:十字箭頭','circular-arrow':_0x24933f(0xc1),'math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':'不等號','flow-chart-process':_0x24933f(0x140),'flow-chart-alternate-process':_0x24933f(0x116),'flow-chart-decision':_0x24933f(0x106),'flow-chart-input-output':'流程圖:數據','flow-chart-predefined-process':_0x24933f(0x105),'flow-chart-internal-storage':_0x24933f(0xc7),'flow-chart-document':_0x24933f(0x127),'flow-chart-multidocument':_0x24933f(0x99),'flow-chart-terminator':_0x24933f(0x141),'flow-chart-preparation':_0x24933f(0x93),'flow-chart-manual-input':_0x24933f(0x143),'flow-chart-manual-operation':_0x24933f(0x104),'flow-chart-connector':'流程圖:接點','flow-chart-offpage-connector':'流程圖:離頁連接符','flow-chart-punched-card':'流程圖:卡片','flow-chart-punched-tape':_0x24933f(0xbc),'flow-chart-summing-junction':_0x24933f(0xe5),'flow-chart-or':_0x24933f(0x12a),'flow-chart-collate':_0x24933f(0x128),'flow-chart-sort':'流程圖:排序','flow-chart-extract':_0x24933f(0xf1),'flow-chart-merge':_0x24933f(0x102),'flow-chart-online-storage':_0x24933f(0x11b),'flow-chart-delay':_0x24933f(0xf5),'flow-chart-magnetic-tape':'流程圖:順序訪問存儲器','flow-chart-magnetic-disk':_0x24933f(0x109),'flow-chart-magnetic-drum':_0x24933f(0x8c),'flow-chart-display':_0x24933f(0x120),'irregular-seal1':'爆炸形:8pt','irregular-seal2':_0x24933f(0xe1),'star4':_0x24933f(0x84),'star5':'星形:五角','star6':_0x24933f(0xc9),'star7':'星形:七角','star8':_0x24933f(0xd4),'star10':_0x24933f(0xe0),'star12':_0x24933f(0xa9),'star16':_0x24933f(0xa1),'star24':_0x24933f(0x85),'star32':_0x24933f(0x12c),'ribbon2':_0x24933f(0xa3),'ribbon':_0x24933f(0x9a),'ellipse-ribbon2':_0x24933f(0x123),'ellipse-ribbon':_0x24933f(0xc6),'vertical-scroll':_0x24933f(0xdc),'horizontal-scroll':_0x24933f(0x133),'wave':'波形','double-wave':'雙波形','wedge-rect-callout':_0x24933f(0x81),'wedge-round-rect-callout':_0x24933f(0xef),'wedge-ellipse-callout':_0x24933f(0x147),'cloud-callout':'氣泡:雲','border-callout1':_0x24933f(0x124),'border-callout2':_0x24933f(0x136),'border-callout3':_0x24933f(0x135),'accent-callout1':_0x24933f(0x82),'accent-callout2':_0x24933f(0x146),'accent-callout3':_0x24933f(0x9c),'callout1':_0x24933f(0xb9),'callout2':_0x24933f(0xdd),'callout3':_0x24933f(0xa6),'accent-border-callout1':_0x24933f(0xec),'accent-border-callout2':_0x24933f(0xdb),'accent-border-callout3':_0x24933f(0xf6),'left-circular-arrow':'左圓形箭頭','left-right-circular-arrow':_0x24933f(0xab),'swoosh-arrow':'彎曲箭頭','left-right-ribbon':'左右帶形','pie-wedge':_0x24933f(0x10e),'funnel':'漏斗','gear6':_0x24933f(0x80),'gear9':_0x24933f(0x132),'corner-tabs':'角標','action-button-back-previous':_0x24933f(0xfd),'action-button-forward-next':'前進/下一個按鈕','action-button-beginning':_0x24933f(0xde),'action-button-end':_0x24933f(0x11c),'action-button-home':_0x24933f(0xaf),'action-button-information':_0x24933f(0xa5),'action-button-return':_0x24933f(0x131),'action-button-movie':_0x24933f(0x118),'action-button-document':'文檔按鈕','action-button-sound':_0x24933f(0xb5),'action-button-help':_0x24933f(0x10a),'action-button-blank':_0x24933f(0x101),'chart-plus':_0x24933f(0xff),'chart-star':_0x24933f(0x115),'chart-x':_0x24933f(0x89),'flow-chart-offline-storage':'流程圖:離線存儲','line-inv':_0x24933f(0xc8),'plaque-tabs':_0x24933f(0xa4),'square-tabs':_0x24933f(0xbf),'up-down-arrow-callout':_0x24933f(0xfa)}},'toolbar':{'expandShapeToolbar':_0x24933f(0x112),'collapseShapeToolbar':_0x24933f(0x10d),'alignLeft':_0x24933f(0x94),'alignCenter':_0x24933f(0x113),'alignRight':_0x24933f(0xc0),'alignJustify':_0x24933f(0xb4),'bold':'粗體','italic':'斜體','underline':'底線','strikethrough':_0x24933f(0xb2),'subscript':'Subscript','superscript':'Superscript','textColor':_0x24933f(0xb8),'textBackgroundColor':'Text\x20Background\x20color','fillColor':'文字背景色','resetColor':_0x24933f(0xe4)},'align':{'top':_0x24933f(0x97),'middle':_0x24933f(0xe7),'bottom':'底部對齊'},'textWrap':{'inline':_0x24933f(0xd3),'square':'矩形','topAndBottom':_0x24933f(0x107),'behindText':_0x24933f(0x145),'inFrontText':'文字在後'},'crop':{'shape':_0x24933f(0x10c)}}};function _0x2e70(){const _0xaa718d=['左下對齊','圖表X','無線條','端點類型','流程圖:直接訪問存儲器','長虛線-點-點','箭頭:V型','非等腰梯形','箭頭:丁字','隨形狀旋轉','左上對齊','流程圖:準備','左對齊','標註:右箭頭','半閉框','頂部對齊','2036768wDZvyT','流程圖:多文檔','帶形:前凸','3894310yOPBpw','標註:雙彎曲線形(帶強調線)','箭頭:上弧形','標註:下箭頭','圖形樣式','終點箭頭類型','星形:十六角','箭頭:直角雙向','帶形:上凸','牌匾標籤','信息按鈕','標註:雙彎曲線形(無邊框)','十二邊形','格式化形狀','星形:十二角','4vBEqCD','左右圓形箭頭','雙括號','隱形箭頭','圓:空心','主頁按鈕','箭頭:右','雙箭頭曲線','刪除線','任務列表','兩端對齊','聲音按鈕','左大括號','21bjfZZw','文字顏色','標註:線形(無邊框)','閃電形','太陽形','流程圖:資料帶','刪除形狀','箭頭:上','方形標籤','右對齊','箭頭:環形','標題\x204','矩形:對角圓角','插入形狀','箭頭:上下','帶形:前凸彎','流程圖:內部貯存','線反向','星形:六角','2zMmZcg','標題\x203','起點箭頭大小','五邊形','透明度','逆時針\x2090\x20度旋轉','標註:左右箭頭','打開形狀面板','醒目提示框','與文字排列','星形:八角','188004XeodkH','漸層線','縮放\x20Y','橢圓箭頭','標註:上箭頭','立方體','標註:彎曲線形(帶邊框和強調線)','卷形:垂直','標註:彎曲線形(無邊框)','開始按鈕','七邊形','星形:十角','爆炸形:14pt','曲線:箭頭','圓角矩形','重置顏色','流程圖:匯總連接','右大括號','垂直居中','空心弧','橫向文字方塊','標題\x201','置中對齊','標註:線形(帶邊框和強調線)','無顏色','箭頭:左弧形','對話氣泡:圓角矩形','剪去單角矩形','流程圖:摘錄','圖片來源','菱形箭頭','終點箭頭大小','流程圖:延期','標註:雙彎曲線形(帶邊框和強調線)','底部對齊','箭頭:虛尾','六邊形','上下箭頭標註','基本形狀','雙大括號','返回/上一個按鈕','淚滴形','圖表加號','1385470Vdqzjx','空白按鈕','流程圖:合併','折線:箭頭','流程圖:手動操作','流程圖:預定義過程','流程圖:決策','上及下','箭頭:十字','流程圖:磁盤','幫助按鈕','矩形:棱台','裁切為形狀','收起形狀工具列','餅形楔','113657ktnMxo','1648704ewNHGL','箭頭:下','展開形狀工具列','居中對齊','新月形','圖表星號','流程圖:可選過程','箭頭總匯','電影按鈕','偏移量\x20Y','虛線-點','流程圖:存儲數據','結束按鈕','18QKoOFw','右上對齊','流程圖','流程圖:顯示','矩形:剪去對角','1089IxxxUA','帶形:上凸彎','標註:線形','切換文本豎排','八邊形','流程圖:文檔','流程圖:對照','插入...','流程圖:或者','箭頭:右弧形','星形:三十二角','標題\x205','圓柱形','矩形:剪去頂角','矩形:圓頂角','返回按鈕','9齒齒輪','卷形:水平','開放箭頭','標註:雙彎曲線形','標註:彎曲線形','箭頭:手杖形','直線箭頭','箭頭:直角上','星與旗幟','箭頭:左右','箭頭:圓角右','2775960RubLmI','虛線類型','長虛線','流程圖:過程','流程圖:終止','切換水平翻轉','流程圖:手動輸入','程式碼區塊','文字在前','標註:彎曲線形(帶強調線)','對話氣泡:圓形','公式形狀','右中括號','將圖片平鋪為紋理','6齒齒輪','對話氣泡:矩形','標註:線形(帶強調線)','矩形:單圓角','星形:四角','星形:二十四角','平行四邊形','箭頭:下弧形'];_0x2e70=function(){return _0xaa718d;};return _0x2e70();}function _0x556d(_0x22aa4d,_0x55b7be){_0x22aa4d=_0x22aa4d-0x7f;const _0x2e701f=_0x2e70();let _0x556d9e=_0x2e701f[_0x22aa4d];return _0x556d9e;}export{e as default};
1
+ const _0x84c452=_0x46de;function _0x5972(){const _0x26ebfb=['流程圖:過程','氣泡:雲','刪除線','右上對齊','切換水平翻轉','平行四邊形','任務列表','矩形:圓頂角','右下對齊','箭頭:上下','方形標籤','底部對齊','流程圖:摘錄','標註:線形(帶邊框和強調線)','漸層線','箭頭:直角雙向','流程圖:對照','927810FUCeft','居中對齊','標註:上箭頭','彎曲箭頭','箭頭:右','十二邊形','起點箭頭大小','圖表X','程式碼區塊','流程圖:終止','箭頭:右弧形','虛線-點','菱形箭頭','文字顏色','矩形:一個圓頂角,剪去另一個頂角','矩形:剪去對角','橫向文字方塊','左上對齊','圖文框','右對齊','主頁按鈕','標註:雙彎曲線形(帶邊框和強調線)','星與旗幟','縮放\x20X','圖形位置','矩形:棱台','空心弧','流程圖:準備','文字在前','7084176bAwJOw','基本形狀','缺角矩形','星形:七角','十字形','直角三角形','標註:雙彎曲線形(無邊框)','帶形:上凸','電影按鈕','矩形:對角圓角','直線箭頭','星形:三十二角','流程圖:離線存儲','流程圖:手動操作','頂部對齊','圖片來源','順時針\x2090\x20度旋轉','圖形樣式','流程圖:排序','對話氣泡:圓形','9齒齒輪','兩端對齊','卷形:垂直','星形:十二角','文字在後','不完整圓','開始按鈕','流程圖:卡片','無序列表','插入形狀','信息按鈕','終點箭頭類型','長虛線-點-點','標註:雙彎曲線形(帶強調線)','矩形:折角','醒目提示框','流程圖:離頁連接符','流程圖','6齒齒輪','非等腰梯形','裁切為形狀','圓角矩形','帶形:上凸彎','對話氣泡:矩形','偏移量\x20X','箭頭:虛尾','圖案填充','標題\x203','標註:彎曲線形(帶強調線)','349328fhnhQw','星形:二十四角','起點箭頭類型','2800554GHhhUi','圖表加號','切換垂直翻轉','與文字排列','五邊形','置中對齊','太陽形','不等號','標註:線形(帶強調線)','牌匾標籤','箭頭:左弧形','幫助按鈕','插入...','隱形箭頭','淚滴形','雙大括號','右大括號','標註:左右箭頭','箭頭:直角上','格式化形狀','右中括號','左大括號','876952aFXvdM','箭頭:十字','帶形:前凸','箭頭:圓角右','長虛線','切換文本豎排','公式形狀','等腰三角形','重置顏色','有序列表','箭頭:下','雙箭頭折線','折線:箭頭','空白按鈕','左中括號','剪去單角矩形','24578217NNhmDK','前進/下一個按鈕','流程圖:內部貯存','標題\x201','聯接類型','星形:八角','收起形狀工具列','箭頭:左','帶形:前凸彎','左下對齊','矩形:單圓角','流程圖:磁盤','返回/上一個按鈕','對話氣泡:圓角矩形','餅形楔','21MmMLta','1659928TlLzVp','標題\x205','七邊形','箭頭:燕尾形','橢圓箭頭','聲音按鈕','返回按鈕','雙箭頭直線','圖表星號','標註:下箭頭','標註:線形(無邊框)','禁止符','標註:十字箭頭','流程圖:決策','隨形狀旋轉','流程圖:存儲數據','透明度','十邊形','線反向','端點類型','雙箭頭曲線','流程圖:直接訪問存儲器','文檔按鈕','流程圖:合併','左右圓形箭頭','圓:空心','爆炸形:8pt','標註:彎曲線形','刪除形狀','流程圖:匯總連接','逆時針\x2090\x20度旋轉','無顏色','星形:六角','星形:五角','標註:線形','縱向文字方塊','箭頭:上弧形','無線條','打開形狀面板','雙波形','新月形','5gGbrbq','虛線類型','流程圖:延期','標註:右箭頭'];_0x5972=function(){return _0x26ebfb;};return _0x5972();}(function(_0xd29310,_0x49f0f2){const _0x3ebe5e=_0x46de,_0x31ee61=_0xd29310();while(!![]){try{const _0x1328bb=-parseInt(_0x3ebe5e(0xc9))/0x1+parseInt(_0x3ebe5e(0x117))/0x2+-parseInt(_0x3ebe5e(0x11a))/0x3+-parseInt(_0x3ebe5e(0x150))/0x4*(-parseInt(_0x3ebe5e(0x179))/0x5)+-parseInt(_0x3ebe5e(0xe6))/0x6+parseInt(_0x3ebe5e(0x14f))/0x7*(parseInt(_0x3ebe5e(0x130))/0x8)+parseInt(_0x3ebe5e(0x140))/0x9;if(_0x1328bb===_0x49f0f2)break;else _0x31ee61['push'](_0x31ee61['shift']());}catch(_0x4715ab){_0x31ee61['push'](_0x31ee61['shift']());}}}(_0x5972,0x944a0));const e={'shape-editor-ui':{'title':'形狀','insertShape':_0x84c452(0x103),'openPanel':_0x84c452(0x176),'deleteShape':_0x84c452(0x16c),'hidePanel':'隱藏形狀面板','formatShape':_0x84c452(0x12d),'shapeStyle':_0x84c452(0xf7),'shapePosition':_0x84c452(0xe1),'toggleFlipH':_0x84c452(0x181),'toggleFlipV':_0x84c452(0x11c),'rotateRight90':_0x84c452(0xf6),'rotateLeft90':_0x84c452(0x16e),'toggleTextVertical':_0x84c452(0x135),'textEditor':{'placeholder':'請輸入文字','paragraphType':{'normal':'正文','heading1':_0x84c452(0x143),'heading2':'標題\x202','heading3':_0x84c452(0x115),'heading4':'標題\x204','heading5':_0x84c452(0x151),'orderedList':_0x84c452(0x139),'bulletList':_0x84c452(0x102),'checkList':_0x84c452(0x183),'quote':'引用','code':_0x84c452(0xd1),'callout':_0x84c452(0x109)}},'fill':{'title':'填充','noFill':_0x84c452(0x16f),'solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':_0x84c452(0x114),'color':'顏色','transparency':_0x84c452(0x160),'picture':{'source':_0x84c452(0xf5),'insert':_0x84c452(0x126),'tileAsTexture':'將圖片平鋪為紋理','offsetX':_0x84c452(0x112),'offsetY':'偏移量\x20Y','scaleX':_0x84c452(0xe0),'scaleY':'縮放\x20Y','alignment':'對齊方式','rotateWithShape':_0x84c452(0x15e),'align':{'tl':_0x84c452(0xda),'t':'頂部對齊','tr':_0x84c452(0x180),'l':'左對齊','ctr':_0x84c452(0x11f),'r':'右對齊','bl':_0x84c452(0x149),'b':_0x84c452(0x188),'br':_0x84c452(0x185)}}},'line':{'title':'線條','noLine':_0x84c452(0x175),'solidLine':'實線','gradientLine':_0x84c452(0xc6),'color':'顏色','transparency':_0x84c452(0x160),'width':'寬度','cornerRadius':'拐角半徑','dashType':{'title':_0x84c452(0x17a),'solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':_0x84c452(0xd4),'longDash':_0x84c452(0x134),'longDashDot':'長虛線-點','longDashDotDot':_0x84c452(0x106)},'capType':{'title':_0x84c452(0x163),'flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':_0x84c452(0x144),'miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':_0x84c452(0x119),'beginArrowSize':_0x84c452(0xcf),'endArrowType':_0x84c452(0x105),'endArrowSize':'終點箭頭大小','arrowType':{'none':'無','arrow':'箭頭','openArrow':'開放箭頭','stealthArrow':_0x84c452(0x127),'diamondArrow':_0x84c452(0xd5),'ovalArrow':_0x84c452(0x154)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':'草繪樣式','none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':_0x84c452(0xe7),'blockArrow':'箭頭總匯','equationShape':_0x84c452(0x136),'flowchart':_0x84c452(0x10b),'starAndBanner':_0x84c452(0xdf),'callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':_0x84c452(0xf0),'straight-connector2':_0x84c452(0x157),'bent-connector3':'折線','bent-connector3-arrow1':_0x84c452(0x13c),'bent-connector3-arrow2':_0x84c452(0x13b),'curved-connector3':'曲線','curved-connector3-arrow1':'曲線:箭頭','curved-connector3-arrow2':_0x84c452(0x164),'rect':'矩形','round-rect':_0x84c452(0x10f),'snip1-rect':_0x84c452(0x13f),'snip2-same-rect':'矩形:剪去頂角','snip2-diag-rect':_0x84c452(0xd8),'snip-round-rect':_0x84c452(0xd7),'round1-rect':_0x84c452(0x14a),'round2-same-rect':_0x84c452(0x184),'round2-diag-rect':_0x84c452(0xef),'rect-textbox-horizontal':_0x84c452(0xd9),'rect-textbox-vertical':_0x84c452(0x173),'ellipse':'橢圓','triangle':_0x84c452(0x137),'rt-triangle':_0x84c452(0xeb),'parallelogram':_0x84c452(0x182),'trapezoid':'梯形','non-isosceles-trapezoid':_0x84c452(0x10d),'diamond':'菱形','pentagon':'五邊形','hexagon':'六邊形','heptagon':_0x84c452(0x152),'octagon':'八邊形','decagon':_0x84c452(0x161),'dodecagon':_0x84c452(0xce),'pie':_0x84c452(0xff),'chord':'弦形','teardrop':_0x84c452(0x128),'frame':_0x84c452(0xdb),'half-frame':'半閉框','corner':'L形','diag-stripe':'斜紋','plus':_0x84c452(0xea),'plaque':_0x84c452(0xe8),'can':'圓柱形','cube':'立方體','bevel':_0x84c452(0xe2),'donut':_0x84c452(0x169),'no-smoking':_0x84c452(0x15b),'block-arc':_0x84c452(0xe3),'folder-corner':_0x84c452(0x108),'smiley-face':'笑臉','heart':'心形','lightning-bolt':'閃電形','sun':_0x84c452(0x120),'moon':_0x84c452(0x178),'cloud':'雲形','arc':'弧形','bracket-pair':'雙括號','brace-pair':_0x84c452(0x129),'left-bracket':_0x84c452(0x13e),'right-bracket':_0x84c452(0x12e),'left-brace':_0x84c452(0x12f),'right-brace':_0x84c452(0x12a),'right-arrow':_0x84c452(0xcd),'left-arrow':_0x84c452(0x147),'up-arrow':'箭頭:上','down-arrow':_0x84c452(0x13a),'left-right-arrow':'箭頭:左右','up-down-arrow':_0x84c452(0x186),'quad-arrow':_0x84c452(0x131),'left-right-up-arrow':'箭頭:丁字','bent-arrow':_0x84c452(0x133),'uturn-arrow':'箭頭:手杖形','left-up-arrow':_0x84c452(0xc7),'bent-up-arrow':_0x84c452(0x12c),'curved-right-arrow':_0x84c452(0xd3),'curved-left-arrow':_0x84c452(0x124),'curved-up-arrow':_0x84c452(0x174),'curved-down-arrow':'箭頭:下弧形','striped-right-arrow':_0x84c452(0x113),'notched-right-arrow':_0x84c452(0x153),'home-plate':_0x84c452(0x11e),'chevron':'箭頭:V型','right-arrow-callout':_0x84c452(0x17c),'down-arrow-callout':_0x84c452(0x159),'left-arrow-callout':'標註:左箭頭','up-arrow-callout':_0x84c452(0xcb),'left-right-arrow-callout':_0x84c452(0x12b),'quad-arrow-callout':_0x84c452(0x15c),'circular-arrow':'箭頭:環形','math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':_0x84c452(0x121),'flow-chart-process':_0x84c452(0x17d),'flow-chart-alternate-process':'流程圖:可選過程','flow-chart-decision':_0x84c452(0x15d),'flow-chart-input-output':'流程圖:數據','flow-chart-predefined-process':'流程圖:預定義過程','flow-chart-internal-storage':_0x84c452(0x142),'flow-chart-document':'流程圖:文檔','flow-chart-multidocument':'流程圖:多文檔','flow-chart-terminator':_0x84c452(0xd2),'flow-chart-preparation':_0x84c452(0xe4),'flow-chart-manual-input':'流程圖:手動輸入','flow-chart-manual-operation':_0x84c452(0xf3),'flow-chart-connector':'流程圖:接點','flow-chart-offpage-connector':_0x84c452(0x10a),'flow-chart-punched-card':_0x84c452(0x101),'flow-chart-punched-tape':'流程圖:資料帶','flow-chart-summing-junction':_0x84c452(0x16d),'flow-chart-or':'流程圖:或者','flow-chart-collate':_0x84c452(0xc8),'flow-chart-sort':_0x84c452(0xf8),'flow-chart-extract':_0x84c452(0xc4),'flow-chart-merge':_0x84c452(0x167),'flow-chart-online-storage':_0x84c452(0x15f),'flow-chart-delay':_0x84c452(0x17b),'flow-chart-magnetic-tape':'流程圖:順序訪問存儲器','flow-chart-magnetic-disk':_0x84c452(0x14b),'flow-chart-magnetic-drum':_0x84c452(0x165),'flow-chart-display':'流程圖:顯示','irregular-seal1':_0x84c452(0x16a),'irregular-seal2':'爆炸形:14pt','star4':'星形:四角','star5':_0x84c452(0x171),'star6':_0x84c452(0x170),'star7':_0x84c452(0xe9),'star8':_0x84c452(0x145),'star10':'星形:十角','star12':_0x84c452(0xfd),'star16':'星形:十六角','star24':_0x84c452(0x118),'star32':_0x84c452(0xf1),'ribbon2':_0x84c452(0xed),'ribbon':_0x84c452(0x132),'ellipse-ribbon2':_0x84c452(0x110),'ellipse-ribbon':_0x84c452(0x148),'vertical-scroll':_0x84c452(0xfc),'horizontal-scroll':'卷形:水平','wave':'波形','double-wave':_0x84c452(0x177),'wedge-rect-callout':_0x84c452(0x111),'wedge-round-rect-callout':_0x84c452(0x14d),'wedge-ellipse-callout':_0x84c452(0xf9),'cloud-callout':_0x84c452(0x17e),'border-callout1':_0x84c452(0x172),'border-callout2':_0x84c452(0x16b),'border-callout3':'標註:雙彎曲線形','accent-callout1':_0x84c452(0x122),'accent-callout2':_0x84c452(0x116),'accent-callout3':_0x84c452(0x107),'callout1':_0x84c452(0x15a),'callout2':'標註:彎曲線形(無邊框)','callout3':_0x84c452(0xec),'accent-border-callout1':_0x84c452(0xc5),'accent-border-callout2':'標註:彎曲線形(帶邊框和強調線)','accent-border-callout3':_0x84c452(0xde),'left-circular-arrow':'左圓形箭頭','left-right-circular-arrow':_0x84c452(0x168),'swoosh-arrow':_0x84c452(0xcc),'left-right-ribbon':'左右帶形','pie-wedge':_0x84c452(0x14e),'funnel':'漏斗','gear6':_0x84c452(0x10c),'gear9':_0x84c452(0xfa),'corner-tabs':'角標','action-button-back-previous':_0x84c452(0x14c),'action-button-forward-next':_0x84c452(0x141),'action-button-beginning':_0x84c452(0x100),'action-button-end':'結束按鈕','action-button-home':_0x84c452(0xdd),'action-button-information':_0x84c452(0x104),'action-button-return':_0x84c452(0x156),'action-button-movie':_0x84c452(0xee),'action-button-document':_0x84c452(0x166),'action-button-sound':_0x84c452(0x155),'action-button-help':_0x84c452(0x125),'action-button-blank':_0x84c452(0x13d),'chart-plus':_0x84c452(0x11b),'chart-star':_0x84c452(0x158),'chart-x':_0x84c452(0xd0),'flow-chart-offline-storage':_0x84c452(0xf2),'line-inv':_0x84c452(0x162),'plaque-tabs':_0x84c452(0x123),'square-tabs':_0x84c452(0x187),'up-down-arrow-callout':'上下箭頭標註'}},'toolbar':{'expandShapeToolbar':'展開形狀工具列','collapseShapeToolbar':_0x84c452(0x146),'alignLeft':'左對齊','alignCenter':_0x84c452(0xca),'alignRight':_0x84c452(0xdc),'alignJustify':_0x84c452(0xfb),'bold':'粗體','italic':'斜體','underline':'底線','strikethrough':_0x84c452(0x17f),'subscript':'下標','superscript':'上標','textColor':_0x84c452(0xd6),'textBackgroundColor':'文字背景顏色','fillColor':'文字背景色','resetColor':_0x84c452(0x138),'typography':'排版'},'align':{'top':_0x84c452(0xf4),'middle':'垂直居中','bottom':'底部對齊'},'textWrap':{'inline':_0x84c452(0x11d),'square':'矩形','topAndBottom':'上及下','behindText':_0x84c452(0xe5),'inFrontText':_0x84c452(0xfe)},'crop':{'shape':_0x84c452(0x10e)}}};function _0x46de(_0xde4df4,_0x581782){_0xde4df4=_0xde4df4-0xc4;const _0x5972e5=_0x5972();let _0x46debe=_0x5972e5[_0xde4df4];return _0x46debe;}export{e as default};
@@ -1 +1 @@
1
- const _0x225d59=_0x4d95;(function(_0x4de926,_0x286541){const _0x1b5c4c=_0x4d95,_0x1d6e83=_0x4de926();while(!![]){try{const _0x448516=-parseInt(_0x1b5c4c(0xea))/0x1*(-parseInt(_0x1b5c4c(0x161))/0x2)+parseInt(_0x1b5c4c(0x11c))/0x3+-parseInt(_0x1b5c4c(0x100))/0x4+parseInt(_0x1b5c4c(0xde))/0x5+parseInt(_0x1b5c4c(0xd4))/0x6*(parseInt(_0x1b5c4c(0x138))/0x7)+-parseInt(_0x1b5c4c(0xc7))/0x8+-parseInt(_0x1b5c4c(0x11d))/0x9;if(_0x448516===_0x286541)break;else _0x1d6e83['push'](_0x1d6e83['shift']());}catch(_0xc2f892){_0x1d6e83['push'](_0x1d6e83['shift']());}}}(_0x3834,0x41a8a));const e={'shape-editor-ui':{'title':'形狀','insertShape':'插入形狀','openPanel':_0x225d59(0xed),'deleteShape':_0x225d59(0xf6),'hidePanel':_0x225d59(0xe8),'formatShape':'格式化形狀','shapeStyle':_0x225d59(0xc0),'shapePosition':_0x225d59(0xf9),'toggleFlipH':'切換水平翻轉','toggleFlipV':'切換垂直翻轉','rotateRight90':_0x225d59(0xd2),'rotateLeft90':_0x225d59(0x13e),'toggleTextVertical':_0x225d59(0xc6),'textEditor':{'paragraphType':{'normal':'正文','heading1':_0x225d59(0x15d),'heading2':_0x225d59(0x111),'heading3':_0x225d59(0x11a),'heading4':_0x225d59(0x127),'heading5':_0x225d59(0xf5),'orderedList':_0x225d59(0xec),'bulletList':_0x225d59(0x11e),'checkList':_0x225d59(0x129),'quote':'引用','code':_0x225d59(0xc5),'callout':_0x225d59(0x14a)}},'fill':{'title':'填充','noFill':_0x225d59(0x140),'solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':'圖案填充','color':'顏色','transparency':'透明度','picture':{'source':'圖片來源','insert':'插入...','tileAsTexture':_0x225d59(0x164),'offsetX':'偏移量\x20X','offsetY':_0x225d59(0x166),'scaleX':_0x225d59(0x128),'scaleY':_0x225d59(0x10f),'alignment':_0x225d59(0xcc),'rotateWithShape':_0x225d59(0x162),'align':{'tl':'左上對齊','t':_0x225d59(0xdc),'tr':_0x225d59(0xbf),'l':_0x225d59(0x10a),'ctr':'置中對齊','r':_0x225d59(0x14f),'bl':_0x225d59(0x157),'b':'底部對齊','br':_0x225d59(0x122)}}},'line':{'title':'線條','noLine':_0x225d59(0x14c),'solidLine':'實線','gradientLine':'漸層線','color':'顏色','transparency':'透明度','width':'寬度','cornerRadius':_0x225d59(0xe4),'dashType':{'title':'虛線類型','solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':'虛線-點','longDash':_0x225d59(0xd9),'longDashDot':_0x225d59(0x14e),'longDashDotDot':'長虛線-點-點'},'capType':{'title':_0x225d59(0xd0),'flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':'聯接類型','miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':'起點箭頭類型','beginArrowSize':'起點箭頭大小','endArrowType':_0x225d59(0xbc),'endArrowSize':_0x225d59(0x153),'arrowType':{'none':'無','arrow':'箭頭','openArrow':_0x225d59(0x170),'stealthArrow':_0x225d59(0x137),'diamondArrow':_0x225d59(0x119),'ovalArrow':_0x225d59(0x141)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x225d59(0x16a),'none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':'基本形狀','blockArrow':_0x225d59(0x171),'equationShape':'公式形狀','flowchart':'流程圖','starAndBanner':'星與旗幟','callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':_0x225d59(0xcd),'straight-connector2':_0x225d59(0x136),'bent-connector3':'折線','bent-connector3-arrow1':_0x225d59(0x110),'bent-connector3-arrow2':_0x225d59(0x13b),'curved-connector3':'曲線','curved-connector3-arrow1':'曲線:箭頭','curved-connector3-arrow2':'雙箭頭曲線','rect':'矩形','round-rect':_0x225d59(0x131),'snip1-rect':_0x225d59(0xcf),'snip2-same-rect':_0x225d59(0x121),'snip2-diag-rect':_0x225d59(0x16d),'snip-round-rect':_0x225d59(0xe3),'round1-rect':'矩形:單圓角','round2-same-rect':'矩形:圓頂角','round2-diag-rect':_0x225d59(0xd3),'rect-textbox-horizontal':_0x225d59(0xff),'rect-textbox-vertical':_0x225d59(0x103),'ellipse':'橢圓','triangle':_0x225d59(0x109),'rt-triangle':_0x225d59(0x108),'parallelogram':'平行四邊形','trapezoid':'梯形','non-isosceles-trapezoid':_0x225d59(0x154),'diamond':'菱形','pentagon':_0x225d59(0x12e),'hexagon':'六邊形','heptagon':_0x225d59(0x132),'octagon':'八邊形','decagon':'十邊形','dodecagon':_0x225d59(0xfd),'pie':_0x225d59(0x105),'chord':'弦形','teardrop':'淚滴形','frame':_0x225d59(0xf3),'half-frame':_0x225d59(0x15e),'corner':'L形','diag-stripe':'斜紋','plus':'十字形','plaque':'缺角矩形','can':_0x225d59(0x102),'cube':_0x225d59(0x120),'bevel':_0x225d59(0x14b),'donut':'圓:空心','no-smoking':_0x225d59(0x16b),'block-arc':_0x225d59(0xbd),'folder-corner':_0x225d59(0x168),'smiley-face':'笑臉','heart':'心形','lightning-bolt':_0x225d59(0xf7),'sun':_0x225d59(0x167),'moon':'新月形','cloud':'雲形','arc':'弧形','bracket-pair':_0x225d59(0x151),'brace-pair':_0x225d59(0x145),'left-bracket':_0x225d59(0x148),'right-bracket':_0x225d59(0xef),'left-brace':_0x225d59(0x10b),'right-brace':_0x225d59(0x124),'right-arrow':_0x225d59(0xe9),'left-arrow':_0x225d59(0x150),'up-arrow':_0x225d59(0x101),'down-arrow':_0x225d59(0x126),'left-right-arrow':'箭頭:左右','up-down-arrow':'箭頭:上下','quad-arrow':'箭頭:十字','left-right-up-arrow':'箭頭:丁字','bent-arrow':_0x225d59(0x11b),'uturn-arrow':_0x225d59(0x146),'left-up-arrow':_0x225d59(0xe2),'bent-up-arrow':_0x225d59(0x125),'curved-right-arrow':_0x225d59(0x143),'curved-left-arrow':_0x225d59(0xfe),'curved-up-arrow':_0x225d59(0x14d),'curved-down-arrow':_0x225d59(0x15b),'striped-right-arrow':_0x225d59(0x112),'notched-right-arrow':'箭頭:燕尾形','home-plate':_0x225d59(0x12e),'chevron':_0x225d59(0x117),'right-arrow-callout':_0x225d59(0xd1),'down-arrow-callout':_0x225d59(0xdd),'left-arrow-callout':_0x225d59(0xf0),'up-arrow-callout':_0x225d59(0xd7),'left-right-arrow-callout':'標註:左右箭頭','quad-arrow-callout':_0x225d59(0x156),'circular-arrow':'箭頭:環形','math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':'不等號','flow-chart-process':_0x225d59(0xf8),'flow-chart-alternate-process':_0x225d59(0xe5),'flow-chart-decision':'流程圖:決策','flow-chart-input-output':'流程圖:數據','flow-chart-predefined-process':_0x225d59(0x13a),'flow-chart-internal-storage':'流程圖:內部貯存','flow-chart-document':'流程圖:文檔','flow-chart-multidocument':'流程圖:多文檔','flow-chart-terminator':'流程圖:終止','flow-chart-preparation':_0x225d59(0xf1),'flow-chart-manual-input':_0x225d59(0x115),'flow-chart-manual-operation':'流程圖:手動操作','flow-chart-connector':'流程圖:接點','flow-chart-offpage-connector':_0x225d59(0x114),'flow-chart-punched-card':_0x225d59(0x139),'flow-chart-punched-tape':_0x225d59(0x152),'flow-chart-summing-junction':_0x225d59(0x106),'flow-chart-or':'流程圖:或者','flow-chart-collate':_0x225d59(0xce),'flow-chart-sort':'流程圖:排序','flow-chart-extract':_0x225d59(0xfc),'flow-chart-merge':_0x225d59(0xcb),'flow-chart-online-storage':_0x225d59(0x12a),'flow-chart-delay':_0x225d59(0x149),'flow-chart-magnetic-tape':'流程圖:順序訪問存儲器','flow-chart-magnetic-disk':'流程圖:磁盤','flow-chart-magnetic-drum':_0x225d59(0xf4),'flow-chart-display':_0x225d59(0xda),'irregular-seal1':_0x225d59(0x113),'irregular-seal2':_0x225d59(0x12b),'star4':_0x225d59(0x10d),'star5':_0x225d59(0xca),'star6':'星形:六角','star7':'星形:七角','star8':_0x225d59(0xe0),'star10':_0x225d59(0x11f),'star12':_0x225d59(0x16f),'star16':_0x225d59(0x123),'star24':_0x225d59(0x13c),'star32':_0x225d59(0xd5),'ribbon2':_0x225d59(0x160),'ribbon':_0x225d59(0xee),'ellipse-ribbon2':_0x225d59(0xc3),'ellipse-ribbon':_0x225d59(0x142),'vertical-scroll':_0x225d59(0x12c),'horizontal-scroll':_0x225d59(0xfb),'wave':'波形','double-wave':'雙波形','wedge-rect-callout':_0x225d59(0x159),'wedge-round-rect-callout':_0x225d59(0x118),'wedge-ellipse-callout':'對話氣泡:圓形','cloud-callout':_0x225d59(0x144),'border-callout1':_0x225d59(0xeb),'border-callout2':'標註:彎曲線形','border-callout3':_0x225d59(0xbb),'accent-callout1':'標註:線形(帶強調線)','accent-callout2':_0x225d59(0x107),'accent-callout3':_0x225d59(0x12f),'callout1':_0x225d59(0xdb),'callout2':'標註:彎曲線形(無邊框)','callout3':_0x225d59(0x13d),'accent-border-callout1':_0x225d59(0x147),'accent-border-callout2':_0x225d59(0xc1),'accent-border-callout3':'標註:雙彎曲線形(帶邊框和強調線)','left-circular-arrow':'左圓形箭頭','left-right-circular-arrow':_0x225d59(0x16e),'swoosh-arrow':_0x225d59(0x134),'left-right-ribbon':_0x225d59(0xc9),'pie-wedge':_0x225d59(0x130),'funnel':'漏斗','gear6':_0x225d59(0x15f),'gear9':_0x225d59(0x135),'corner-tabs':'角標','action-button-back-previous':_0x225d59(0x155),'action-button-forward-next':_0x225d59(0xbe),'action-button-beginning':_0x225d59(0xc8),'action-button-end':_0x225d59(0x16c),'action-button-home':_0x225d59(0x15a),'action-button-information':_0x225d59(0x163),'action-button-return':_0x225d59(0xe1),'action-button-movie':_0x225d59(0xf2),'action-button-document':'文檔按鈕','action-button-sound':'聲音按鈕','action-button-help':'幫助按鈕','action-button-blank':_0x225d59(0xc2),'chart-plus':_0x225d59(0x104),'chart-star':'圖表星號','chart-x':'圖表X','flow-chart-offline-storage':_0x225d59(0x133),'line-inv':_0x225d59(0xd8),'plaque-tabs':_0x225d59(0x15c),'square-tabs':_0x225d59(0xd6),'up-down-arrow-callout':_0x225d59(0x10c)}},'toolbar':{'expandShapeToolbar':_0x225d59(0xfa),'collapseShapeToolbar':_0x225d59(0xe6),'alignLeft':_0x225d59(0x10a),'alignCenter':_0x225d59(0x116),'alignRight':'右對齊','alignJustify':'兩端對齊','bold':'粗體','italic':'斜體','underline':'底線','strikethrough':_0x225d59(0xe7),'subscript':_0x225d59(0x12d),'superscript':'Superscript','textColor':_0x225d59(0x158),'textBackgroundColor':_0x225d59(0x13f),'fillColor':'文字背景色','resetColor':_0x225d59(0xc4)},'align':{'top':_0x225d59(0xdc),'middle':'垂直居中','bottom':_0x225d59(0x165)},'textWrap':{'inline':_0x225d59(0x10e),'square':'矩形','topAndBottom':'上及下','behindText':_0x225d59(0x169),'inFrontText':'文字在後'},'crop':{'shape':_0x225d59(0xdf)}}};function _0x3834(){const _0x2a312d=['拐角半徑','流程圖:可選過程','收合形狀工具列','刪除線','隱藏形狀面板','箭頭:右','21XBigtX','標註:線形','有序列表','打開形狀面板','帶形:前凸','右中括號','標註:左箭頭','流程圖:準備','電影按鈕','圖文框','流程圖:直接訪問存儲器','標題\x205','刪除形狀','閃電形','流程圖:過程','圖形位置','展開形狀工具列','卷形:水平','流程圖:摘錄','十二邊形','箭頭:左弧形','橫向文字方塊','550004YopCPj','箭頭:上','圓柱形','縱向文字方塊','圖表加號','不完整圓','流程圖:匯總連接','標註:彎曲線形(帶強調線)','直角三角形','等腰三角形','左對齊','左大括號','上下箭頭標註','星形:四角','與文字排列','縮放\x20Y','折線:箭頭','標題\x202','箭頭:虛尾','爆炸形:8pt','流程圖:離頁連接符','流程圖:手動輸入','居中對齊','箭頭:V型','對話氣泡:圓角矩形','菱形箭頭','標題\x203','箭頭:圓角右','1443297yTwcMH','5374476lvQweV','無序列表','星形:十角','立方體','矩形:剪去頂角','右下對齊','星形:十六角','右大括號','箭頭:直角上','箭頭:下','標題\x204','縮放\x20X','任務列表','流程圖:存儲數據','爆炸形:14pt','卷形:垂直','Subscript','五邊形','標註:雙彎曲線形(帶強調線)','餅形楔','圓角矩形','七邊形','流程圖:離線存儲','彎曲箭頭','9齒齒輪','雙箭頭直線','隱形箭頭','1109423KWnrYG','流程圖:卡片','流程圖:預定義過程','雙箭頭折線','星形:二十四角','標註:雙彎曲線形(無邊框)','逆時針\x2090\x20度旋轉','Text\x20Background\x20color','無顏色','橢圓箭頭','帶形:前凸彎','箭頭:右弧形','氣泡:雲','雙大括號','箭頭:手杖形','標註:線形(帶邊框和強調線)','左中括號','流程圖:延期','醒目提示框','矩形:棱台','無線條','箭頭:上弧形','長虛線-點','右對齊','箭頭:左','雙括號','流程圖:資料帶','終點箭頭大小','非等腰梯形','返回/上一個按鈕','標註:十字箭頭','左下對齊','文字顏色','對話氣泡:矩形','主頁按鈕','箭頭:下弧形','牌匾標籤','標題\x201','半閉框','6齒齒輪','帶形:上凸','2474RgHwfS','隨形狀旋轉','信息按鈕','將圖片平鋪為紋理','底部對齊','偏移量\x20Y','太陽形','矩形:折角','文字在前','草繪樣式','禁止符','結束按鈕','矩形:剪去對角','左右圓形箭頭','星形:十二角','開放箭頭','箭頭總匯','標註:雙彎曲線形','終點箭頭類型','空心弧','前進/下一個按鈕','右上對齊','圖形樣式','標註:彎曲線形(帶邊框和強調線)','空白按鈕','帶形:上凸彎','重置顏色','程式碼區塊','切換文本竖排','1447440YNDDdE','開始按鈕','左右帶形','星形:五角','流程圖:合併','對齊方式','直線箭頭','流程圖:對照','剪去單角矩形','端點類型','標註:右箭頭','順時針\x2090\x20度旋轉','矩形:對角圓角','6ZaRYdD','星形:三十二角','方形標籤','標註:上箭頭','線反向','長虛線','流程圖:顯示','標註:線形(無邊框)','頂部對齊','標註:下箭頭','2594840XKYkLm','裁切為形狀','星形:八角','返回按鈕','箭頭:直角雙向','矩形:一個圓頂角,剪去另一個頂角'];_0x3834=function(){return _0x2a312d;};return _0x3834();}function _0x4d95(_0x44868e,_0x532c00){_0x44868e=_0x44868e-0xbb;const _0x3834f3=_0x3834();let _0x4d9592=_0x3834f3[_0x44868e];return _0x4d9592;}export{e as default};
1
+ function _0x40d9(){const _0x442771=['矩形:一個圓頂角,剪去另一個頂角','頂部對齊','右上對齊','右對齊','基本形狀','標註:彎曲線形','不等號','6688odNMkO','有序列表','兩端對齊','右大括號','箭頭:燕尾形','對話氣泡:圓角矩形','星與旗幟','帶形:上凸彎','等腰三角形','流程圖:內部貯存','透明度','標註:雙彎曲線形(無邊框)','直角三角形','箭頭:虛尾','逆時針\x2090\x20度旋轉','標註:十字箭頭','左大括號','刪除形狀','標註:彎曲線形(帶強調線)','箭頭:上','流程圖:多文檔','線反向','左右帶形','左下對齊','標註:雙彎曲線形','空心弧','展開形狀工具列','方形標籤','文字在前','橢圓箭頭','新月形','虛線類型','流程圖:摘錄','圓:空心','長虛線','流程圖:手動操作','開放箭頭','星形:十角','裁切為形狀','平行四邊形','168JEWwxV','標註:下箭頭','折線:箭頭','右下對齊','重置顏色','公式形狀','順時針\x2090\x20度旋轉','縮放\x20X','氣泡:雲','流程圖:卡片','淚滴形','雙箭頭曲線','流程圖:預定義過程','半閉框','橫向文字方塊','幫助按鈕','隱藏形狀面板','置中對齊','爆炸形:14pt','箭頭:圓角右','流程圖:匯總連接','標題\x204','箭頭:左右','切換水平翻轉','左右圓形箭頭','返回/上一個按鈕','箭頭:上下','曲線:箭頭','牌匾標籤','閃電形','偏移量\x20Y','格式化形狀','雙箭頭直線','爆炸形:8pt','箭頭:左弧形','流程圖:對照','收合形狀工具列','刪除線','流程圖:順序訪問存儲器','流程圖:離線存儲','標題\x205','禁止符','圓角矩形','箭頭:上弧形','直線箭頭','箭頭:十字','與文字排列','返回按鈕','缺角矩形','請輸入文字','偏移量\x20X','文檔按鈕','終點箭頭大小','七邊形','流程圖:決策','標註:上箭頭','標註:左右箭頭','隨形狀旋轉','箭頭:下弧形','箭頭:V型','標註:線形(帶邊框和強調線)','圖形樣式','流程圖','流程圖:磁盤','上下箭頭標註','聲音按鈕','卷形:水平','電影按鈕','箭頭:手杖形','9齒齒輪','流程圖:延期','星形:八角','流程圖:過程','標註:線形','圖表星號','5LDsICd','585762nDKfuT','菱形箭頭','標註:雙彎曲線形(帶邊框和強調線)','圖表加號','流程圖:手動輸入','無序列表','標題\x203','插入...','長虛線-點-點','矩形:折角','六邊形','流程圖:數據','標註:線形(無邊框)','流程圖:合併','切換文本竖排','流程圖:顯示','標註:線形(帶強調線)','剪去單角矩形','3697692NUNTxq','流程圖:資料帶','對話氣泡:矩形','流程圖:可選過程','6齒齒輪','流程圖:接點','星形:三十二角','流程圖:離頁連接符','圖案填充','箭頭:下','十字形','箭頭:直角上','標註:彎曲線形(帶邊框和強調線)','箭頭:環形','長虛線-點','箭頭:左','十邊形','不完整圓','信息按鈕','140504InGOcn','3681yxFvaD','矩形:剪去頂角','左圓形箭頭','文字背景色','垂直居中','漸層線','標註:右箭頭','矩形:棱台','餅形楔','將圖片平鋪為紋理','草繪樣式','程式碼區塊','矩形:單圓角','14798720ArWDdq','底部對齊','4720616UYkldD','左中括號','主頁按鈕','雙括號','隱形箭頭','星形:五角','1944114dXdTfm','縱向文字方塊','拐角半徑','五邊形','星形:七角','帶形:前凸','起點箭頭大小','矩形:剪去對角','雙大括號','帶形:前凸彎','箭頭總匯','立方體','十二邊形','居中對齊'];_0x40d9=function(){return _0x442771;};return _0x40d9();}const _0x5692f2=_0x6f92;(function(_0x3ba285,_0x4c2a67){const _0x136600=_0x6f92,_0x3562ee=_0x3ba285();while(!![]){try{const _0x2bd3eb=-parseInt(_0x136600(0x10c))/0x1+parseInt(_0x136600(0x147))/0x2+-parseInt(_0x136600(0x11e))/0x3+parseInt(_0x136600(0x141))/0x4*(parseInt(_0x136600(0x10b))/0x5)+-parseInt(_0x136600(0xc0))/0x6*(parseInt(_0x136600(0x131))/0x7)+parseInt(_0x136600(0x15c))/0x8*(-parseInt(_0x136600(0x132))/0x9)+parseInt(_0x136600(0x13f))/0xa;if(_0x2bd3eb===_0x4c2a67)break;else _0x3562ee['push'](_0x3562ee['shift']());}catch(_0x2be731){_0x3562ee['push'](_0x3562ee['shift']());}}}(_0x40d9,0xde1f9));function _0x6f92(_0xc8820,_0x2c1ba1){_0xc8820=_0xc8820-0xa4;const _0x40d95e=_0x40d9();let _0x6f92f0=_0x40d95e[_0xc8820];return _0x6f92f0;}const e={'shape-editor-ui':{'title':'形狀','insertShape':'插入形狀','openPanel':'打開形狀面板','deleteShape':_0x5692f2(0xa9),'hidePanel':_0x5692f2(0xd0),'formatShape':_0x5692f2(0xdf),'shapeStyle':_0x5692f2(0xfd),'shapePosition':'圖形位置','toggleFlipH':_0x5692f2(0xd7),'toggleFlipV':'切換垂直翻轉','rotateRight90':_0x5692f2(0xc6),'rotateLeft90':_0x5692f2(0xa6),'toggleTextVertical':_0x5692f2(0x11a),'textEditor':{'placeholder':_0x5692f2(0xf1),'paragraphType':{'normal':'正文','heading1':'標題\x201','heading2':'標題\x202','heading3':_0x5692f2(0x112),'heading4':_0x5692f2(0xd5),'heading5':_0x5692f2(0xe8),'orderedList':_0x5692f2(0x15d),'bulletList':_0x5692f2(0x111),'checkList':'任務列表','quote':'引用','code':_0x5692f2(0x13d),'callout':'醒目提示框'}},'fill':{'title':'填充','noFill':'無顏色','solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':_0x5692f2(0x126),'color':'顏色','transparency':_0x5692f2(0x166),'picture':{'source':'圖片來源','insert':_0x5692f2(0x113),'tileAsTexture':_0x5692f2(0x13b),'offsetX':_0x5692f2(0xf2),'offsetY':_0x5692f2(0xde),'scaleX':_0x5692f2(0xc7),'scaleY':'縮放\x20Y','alignment':'對齊方式','rotateWithShape':_0x5692f2(0xf9),'align':{'tl':'左上對齊','t':_0x5692f2(0x156),'tr':_0x5692f2(0x157),'l':'左對齊','ctr':_0x5692f2(0xd1),'r':'右對齊','bl':_0x5692f2(0xaf),'b':'底部對齊','br':_0x5692f2(0xc3)}}},'line':{'title':'線條','noLine':'無線條','solidLine':'實線','gradientLine':_0x5692f2(0x137),'color':'顏色','transparency':_0x5692f2(0x166),'width':'寬度','cornerRadius':_0x5692f2(0x149),'dashType':{'title':_0x5692f2(0xb7),'solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':'虛線-點','longDash':_0x5692f2(0xba),'longDashDot':_0x5692f2(0x12c),'longDashDotDot':_0x5692f2(0x114)},'capType':{'title':'端點類型','flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':'聯接類型','miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':'起點箭頭類型','beginArrowSize':_0x5692f2(0x14d),'endArrowType':'終點箭頭類型','endArrowSize':_0x5692f2(0xf4),'arrowType':{'none':'無','arrow':'箭頭','openArrow':_0x5692f2(0xbc),'stealthArrow':_0x5692f2(0x145),'diamondArrow':_0x5692f2(0x10d),'ovalArrow':_0x5692f2(0xb5)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x5692f2(0x13c),'none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':_0x5692f2(0x159),'blockArrow':_0x5692f2(0x151),'equationShape':_0x5692f2(0xc5),'flowchart':_0x5692f2(0xfe),'starAndBanner':_0x5692f2(0x162),'callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':_0x5692f2(0xec),'straight-connector2':_0x5692f2(0xe0),'bent-connector3':'折線','bent-connector3-arrow1':_0x5692f2(0xc2),'bent-connector3-arrow2':'雙箭頭折線','curved-connector3':'曲線','curved-connector3-arrow1':_0x5692f2(0xdb),'curved-connector3-arrow2':_0x5692f2(0xcb),'rect':'矩形','round-rect':_0x5692f2(0xea),'snip1-rect':_0x5692f2(0x11d),'snip2-same-rect':_0x5692f2(0x133),'snip2-diag-rect':_0x5692f2(0x14e),'snip-round-rect':_0x5692f2(0x155),'round1-rect':_0x5692f2(0x13e),'round2-same-rect':'矩形:圓頂角','round2-diag-rect':'矩形:對角圓角','rect-textbox-horizontal':_0x5692f2(0xce),'rect-textbox-vertical':_0x5692f2(0x148),'ellipse':'橢圓','triangle':_0x5692f2(0x164),'rt-triangle':_0x5692f2(0xa4),'parallelogram':_0x5692f2(0xbf),'trapezoid':'梯形','non-isosceles-trapezoid':'非等腰梯形','diamond':'菱形','pentagon':'五邊形','hexagon':_0x5692f2(0x116),'heptagon':_0x5692f2(0xf5),'octagon':'八邊形','decagon':_0x5692f2(0x12e),'dodecagon':_0x5692f2(0x153),'pie':_0x5692f2(0x12f),'chord':'弦形','teardrop':_0x5692f2(0xca),'frame':'圖文框','half-frame':_0x5692f2(0xcd),'corner':'L形','diag-stripe':'斜紋','plus':_0x5692f2(0x128),'plaque':_0x5692f2(0xf0),'can':'圓柱形','cube':_0x5692f2(0x152),'bevel':_0x5692f2(0x139),'donut':_0x5692f2(0xb9),'no-smoking':_0x5692f2(0xe9),'block-arc':_0x5692f2(0xb1),'folder-corner':_0x5692f2(0x115),'smiley-face':'笑臉','heart':'心形','lightning-bolt':_0x5692f2(0xdd),'sun':'太陽形','moon':_0x5692f2(0xb6),'cloud':'雲形','arc':'弧形','bracket-pair':_0x5692f2(0x144),'brace-pair':_0x5692f2(0x14f),'left-bracket':_0x5692f2(0x142),'right-bracket':'右中括號','left-brace':_0x5692f2(0xa8),'right-brace':_0x5692f2(0x15f),'right-arrow':'箭頭:右','left-arrow':_0x5692f2(0x12d),'up-arrow':_0x5692f2(0xab),'down-arrow':_0x5692f2(0x127),'left-right-arrow':_0x5692f2(0xd6),'up-down-arrow':_0x5692f2(0xda),'quad-arrow':_0x5692f2(0xed),'left-right-up-arrow':'箭頭:丁字','bent-arrow':_0x5692f2(0xd3),'uturn-arrow':_0x5692f2(0x104),'left-up-arrow':'箭頭:直角雙向','bent-up-arrow':_0x5692f2(0x129),'curved-right-arrow':'箭頭:右弧形','curved-left-arrow':_0x5692f2(0xe2),'curved-up-arrow':_0x5692f2(0xeb),'curved-down-arrow':_0x5692f2(0xfa),'striped-right-arrow':_0x5692f2(0xa5),'notched-right-arrow':_0x5692f2(0x160),'home-plate':_0x5692f2(0x14a),'chevron':_0x5692f2(0xfb),'right-arrow-callout':_0x5692f2(0x138),'down-arrow-callout':_0x5692f2(0xc1),'left-arrow-callout':'標註:左箭頭','up-arrow-callout':_0x5692f2(0xf7),'left-right-arrow-callout':_0x5692f2(0xf8),'quad-arrow-callout':_0x5692f2(0xa7),'circular-arrow':_0x5692f2(0x12b),'math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':_0x5692f2(0x15b),'flow-chart-process':_0x5692f2(0x108),'flow-chart-alternate-process':_0x5692f2(0x121),'flow-chart-decision':_0x5692f2(0xf6),'flow-chart-input-output':_0x5692f2(0x117),'flow-chart-predefined-process':_0x5692f2(0xcc),'flow-chart-internal-storage':_0x5692f2(0x165),'flow-chart-document':'流程圖:文檔','flow-chart-multidocument':_0x5692f2(0xac),'flow-chart-terminator':'流程圖:終止','flow-chart-preparation':'流程圖:準備','flow-chart-manual-input':_0x5692f2(0x110),'flow-chart-manual-operation':_0x5692f2(0xbb),'flow-chart-connector':_0x5692f2(0x123),'flow-chart-offpage-connector':_0x5692f2(0x125),'flow-chart-punched-card':_0x5692f2(0xc9),'flow-chart-punched-tape':_0x5692f2(0x11f),'flow-chart-summing-junction':_0x5692f2(0xd4),'flow-chart-or':'流程圖:或者','flow-chart-collate':_0x5692f2(0xe3),'flow-chart-sort':'流程圖:排序','flow-chart-extract':_0x5692f2(0xb8),'flow-chart-merge':_0x5692f2(0x119),'flow-chart-online-storage':'流程圖:存儲數據','flow-chart-delay':_0x5692f2(0x106),'flow-chart-magnetic-tape':_0x5692f2(0xe6),'flow-chart-magnetic-disk':_0x5692f2(0xff),'flow-chart-magnetic-drum':'流程圖:直接訪問存儲器','flow-chart-display':_0x5692f2(0x11b),'irregular-seal1':_0x5692f2(0xe1),'irregular-seal2':_0x5692f2(0xd2),'star4':'星形:四角','star5':_0x5692f2(0x146),'star6':'星形:六角','star7':_0x5692f2(0x14b),'star8':_0x5692f2(0x107),'star10':_0x5692f2(0xbd),'star12':'星形:十二角','star16':'星形:十六角','star24':'星形:二十四角','star32':_0x5692f2(0x124),'ribbon2':'帶形:上凸','ribbon':_0x5692f2(0x14c),'ellipse-ribbon2':_0x5692f2(0x163),'ellipse-ribbon':_0x5692f2(0x150),'vertical-scroll':'卷形:垂直','horizontal-scroll':_0x5692f2(0x102),'wave':'波形','double-wave':'雙波形','wedge-rect-callout':_0x5692f2(0x120),'wedge-round-rect-callout':_0x5692f2(0x161),'wedge-ellipse-callout':'對話氣泡:圓形','cloud-callout':_0x5692f2(0xc8),'border-callout1':_0x5692f2(0x109),'border-callout2':_0x5692f2(0x15a),'border-callout3':_0x5692f2(0xb0),'accent-callout1':_0x5692f2(0x11c),'accent-callout2':_0x5692f2(0xaa),'accent-callout3':'標註:雙彎曲線形(帶強調線)','callout1':_0x5692f2(0x118),'callout2':'標註:彎曲線形(無邊框)','callout3':_0x5692f2(0x167),'accent-border-callout1':_0x5692f2(0xfc),'accent-border-callout2':_0x5692f2(0x12a),'accent-border-callout3':_0x5692f2(0x10e),'left-circular-arrow':_0x5692f2(0x134),'left-right-circular-arrow':_0x5692f2(0xd8),'swoosh-arrow':'彎曲箭頭','left-right-ribbon':_0x5692f2(0xae),'pie-wedge':_0x5692f2(0x13a),'funnel':'漏斗','gear6':_0x5692f2(0x122),'gear9':_0x5692f2(0x105),'corner-tabs':'角標','action-button-back-previous':_0x5692f2(0xd9),'action-button-forward-next':'前進/下一個按鈕','action-button-beginning':'開始按鈕','action-button-end':'結束按鈕','action-button-home':_0x5692f2(0x143),'action-button-information':_0x5692f2(0x130),'action-button-return':_0x5692f2(0xef),'action-button-movie':_0x5692f2(0x103),'action-button-document':_0x5692f2(0xf3),'action-button-sound':_0x5692f2(0x101),'action-button-help':_0x5692f2(0xcf),'action-button-blank':'空白按鈕','chart-plus':_0x5692f2(0x10f),'chart-star':_0x5692f2(0x10a),'chart-x':'圖表X','flow-chart-offline-storage':_0x5692f2(0xe7),'line-inv':_0x5692f2(0xad),'plaque-tabs':_0x5692f2(0xdc),'square-tabs':_0x5692f2(0xb3),'up-down-arrow-callout':_0x5692f2(0x100)}},'toolbar':{'expandShapeToolbar':_0x5692f2(0xb2),'collapseShapeToolbar':_0x5692f2(0xe4),'alignLeft':'左對齊','alignCenter':_0x5692f2(0x154),'alignRight':_0x5692f2(0x158),'alignJustify':_0x5692f2(0x15e),'bold':'粗體','italic':'斜體','underline':'底線','strikethrough':_0x5692f2(0xe5),'subscript':'下標','superscript':'上標','textColor':'文字顏色','textBackgroundColor':'文字背景顏色','fillColor':_0x5692f2(0x135),'resetColor':_0x5692f2(0xc4),'typography':'排版'},'align':{'top':_0x5692f2(0x156),'middle':_0x5692f2(0x136),'bottom':_0x5692f2(0x140)},'textWrap':{'inline':_0x5692f2(0xee),'square':'矩形','topAndBottom':'上及下','behindText':_0x5692f2(0xb4),'inFrontText':'文字在後'},'crop':{'shape':_0x5692f2(0xbe)}}};export{e as default};