@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.
- package/README.md +14 -2
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/locale/ar-SA.js +1 -1
- package/lib/cjs/locale/ca-ES.js +1 -1
- package/lib/cjs/locale/de-DE.js +1 -1
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/es-ES.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/fr-FR.js +1 -1
- package/lib/cjs/locale/id-ID.js +1 -1
- package/lib/cjs/locale/it-IT.js +1 -1
- package/lib/cjs/locale/ja-JP.js +1 -1
- package/lib/cjs/locale/ko-KR.js +1 -1
- package/lib/cjs/locale/pl-PL.js +1 -1
- package/lib/cjs/locale/pt-BR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/sk-SK.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-HK.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/es/locale/ar-SA.js +1 -1
- package/lib/es/locale/ca-ES.js +1 -1
- package/lib/es/locale/de-DE.js +1 -1
- package/lib/es/locale/en-US.js +1 -1
- package/lib/es/locale/es-ES.js +1 -1
- package/lib/es/locale/fa-IR.js +1 -1
- package/lib/es/locale/fr-FR.js +1 -1
- package/lib/es/locale/id-ID.js +1 -1
- package/lib/es/locale/it-IT.js +1 -1
- package/lib/es/locale/ja-JP.js +1 -1
- package/lib/es/locale/ko-KR.js +1 -1
- package/lib/es/locale/pl-PL.js +1 -1
- package/lib/es/locale/pt-BR.js +1 -1
- package/lib/es/locale/ru-RU.js +1 -1
- package/lib/es/locale/sk-SK.js +1 -1
- package/lib/es/locale/vi-VN.js +1 -1
- package/lib/es/locale/zh-CN.js +1 -1
- package/lib/es/locale/zh-HK.js +1 -1
- package/lib/es/locale/zh-TW.js +1 -1
- package/lib/index.css +159 -12
- package/lib/index.js +1 -1
- package/lib/locale/ar-SA.js +1 -1
- package/lib/locale/ca-ES.js +1 -1
- package/lib/locale/de-DE.js +1 -1
- package/lib/locale/en-US.js +1 -1
- package/lib/locale/es-ES.js +1 -1
- package/lib/locale/fa-IR.js +1 -1
- package/lib/locale/fr-FR.js +1 -1
- package/lib/locale/id-ID.js +1 -1
- package/lib/locale/it-IT.js +1 -1
- package/lib/locale/ja-JP.js +1 -1
- package/lib/locale/ko-KR.js +1 -1
- package/lib/locale/pl-PL.js +1 -1
- package/lib/locale/pt-BR.js +1 -1
- package/lib/locale/ru-RU.js +1 -1
- package/lib/locale/sk-SK.js +1 -1
- package/lib/locale/vi-VN.js +1 -1
- package/lib/locale/zh-CN.js +1 -1
- package/lib/locale/zh-HK.js +1 -1
- package/lib/locale/zh-TW.js +1 -1
- package/lib/types/components/fill-style-tabs-editor/FillStyleTabsEditor.d.ts +2 -1
- package/lib/types/config/config.d.ts +5 -0
- package/lib/types/controllers/components.controller.d.ts +7 -0
- package/lib/types/index.d.ts +25 -20
- package/lib/types/locale/en-US.d.ts +2 -0
- package/lib/types/plugin.d.ts +13 -0
- package/lib/types/utils/activate-drawing-object.d.ts +23 -0
- package/lib/types/utils/shape-floating-toolbar-config.d.ts +5 -0
- package/lib/types/utils/shape-transformer-config.d.ts +31 -0
- package/lib/types/views/shape-floating-toolbar/ShapeFloatingToolbar.d.ts +131 -10
- package/lib/types/views/shape-floating-toolbar/shape-floating-toolbar-utils.d.ts +2 -5
- package/lib/types/views/shape-picker/ShapePickerGrid.d.ts +22 -0
- package/lib/types/views/shape-picker/index.d.ts +4 -0
- package/lib/types/views/shape-picker/shapes.d.ts +25 -0
- package/lib/types/views/shape-text-editor/ShapeTextEditor.d.ts +105 -9
- package/lib/types/views/shape-text-editor/ShapeTextEditorContainer.d.ts +2 -2
- package/lib/types/views/shape-text-editor/ShapeTextPositionWrapper.d.ts +29 -0
- package/lib/types/views/shape-text-editor/hooks/use-shape-position.d.ts +3 -1
- package/lib/types/views/shape-text-editor/shape-text-behavior.d.ts +15 -0
- package/lib/types/views/shape-text-editor/shape-text-document.d.ts +8 -3
- package/lib/types/views/shape-text-editor/shape-text-editor-commands.d.ts +4 -0
- package/lib/types/views/shape-text-editor/shape-text-layout.d.ts +24 -0
- package/lib/types/views/shape-text-editor/shape-text-no-wrap-layout.d.ts +24 -0
- package/lib/types/views/shape-text-editor/shape-text-placeholder.d.ts +8 -0
- package/lib/types/views/shape-text-editor/shape-text-resize-policy.d.ts +17 -0
- package/lib/types/views/shape-text-editor/types.d.ts +25 -6
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/ar-SA.js +1 -1
- package/lib/umd/locale/ca-ES.js +1 -1
- package/lib/umd/locale/de-DE.js +1 -1
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/es-ES.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/fr-FR.js +1 -1
- package/lib/umd/locale/id-ID.js +1 -1
- package/lib/umd/locale/it-IT.js +1 -1
- package/lib/umd/locale/ja-JP.js +1 -1
- package/lib/umd/locale/ko-KR.js +1 -1
- package/lib/umd/locale/pl-PL.js +1 -1
- package/lib/umd/locale/pt-BR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/sk-SK.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-HK.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +13 -13
package/lib/umd/locale/vi-VN.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(_0x5e8642,_0x3b8016){var _0x4cbb3a=_0x2891,_0x3aab1d=_0x5e8642();while(!![]){try{var _0x4dd5dd=-parseInt(_0x4cbb3a(0x206))/0x1*(-parseInt(_0x4cbb3a(0x22e))/0x2)+-parseInt(_0x4cbb3a(0x214))/0x3+parseInt(_0x4cbb3a(0x26a))/0x4*(-parseInt(_0x4cbb3a(0x224))/0x5)+parseInt(_0x4cbb3a(0x1f9))/0x6*(-parseInt(_0x4cbb3a(0x1e5))/0x7)+-parseInt(_0x4cbb3a(0x2a1))/0x8*(parseInt(_0x4cbb3a(0x28e))/0x9)+parseInt(_0x4cbb3a(0x25f))/0xa*(parseInt(_0x4cbb3a(0x27f))/0xb)+parseInt(_0x4cbb3a(0x26e))/0xc;if(_0x4dd5dd===_0x3b8016)break;else _0x3aab1d['push'](_0x3aab1d['shift']());}catch(_0x124ced){_0x3aab1d['push'](_0x3aab1d['shift']());}}}(_0x4953,0x1b817),function(_0x135499,_0x5a6b9b){var _0x34c166=_0x2891;typeof exports==_0x34c166(0x1c1)&&typeof module<'u'?module[_0x34c166(0x217)]=_0x5a6b9b():typeof define==_0x34c166(0x1f8)&&define[_0x34c166(0x1fa)]?define([],_0x5a6b9b):(_0x135499=typeof globalThis<'u'?globalThis:_0x135499||self,_0x135499[_0x34c166(0x1d2)]=_0x5a6b9b());}(this,function(){var _0x4fe384=_0x2891;return{'shape-editor-ui':{'title':_0x4fe384(0x1c8),'insertShape':'Chèn\x20hình\x20dạng','openPanel':_0x4fe384(0x28b),'deleteShape':'Xóa\x20hình\x20dạng','hidePanel':_0x4fe384(0x25e),'formatShape':'Định\x20dạng\x20hình\x20dạng','shapeStyle':_0x4fe384(0x1bb),'shapePosition':_0x4fe384(0x28c),'toggleFlipH':_0x4fe384(0x1d3),'toggleFlipV':_0x4fe384(0x1c0),'rotateRight90':'Xoay\x2090\x20độ\x20theo\x20chiều\x20kim\x20đồng\x20hồ','rotateLeft90':_0x4fe384(0x1ba),'toggleTextVertical':_0x4fe384(0x24d),'textEditor':{'paragraphType':{'normal':_0x4fe384(0x264),'heading1':_0x4fe384(0x1e1),'heading2':'Tiêu\x20đề\x202','heading3':_0x4fe384(0x1ee),'heading4':_0x4fe384(0x247),'heading5':_0x4fe384(0x1f3),'orderedList':_0x4fe384(0x1cc),'bulletList':_0x4fe384(0x1c9),'checkList':'Danh\x20sách\x20công\x20việc','quote':'Trích\x20dẫn','code':_0x4fe384(0x23c),'callout':_0x4fe384(0x1de)}},'fill':{'title':_0x4fe384(0x241),'noFill':_0x4fe384(0x1db),'solidFill':_0x4fe384(0x1ca),'gradientFill':_0x4fe384(0x23a),'pictureFill':'Tô\x20bằng\x20hình\x20ảnh\x20hoặc\x20kết\x20cấu','patternFill':_0x4fe384(0x28a),'color':_0x4fe384(0x203),'transparency':_0x4fe384(0x1fd),'picture':{'source':_0x4fe384(0x1ec),'insert':_0x4fe384(0x26d),'tileAsTexture':_0x4fe384(0x1b6),'offsetX':_0x4fe384(0x22c),'offsetY':_0x4fe384(0x250),'scaleX':_0x4fe384(0x1f2),'scaleY':_0x4fe384(0x227),'alignment':_0x4fe384(0x1fb),'rotateWithShape':_0x4fe384(0x1c4),'align':{'tl':_0x4fe384(0x257),'t':_0x4fe384(0x297),'tr':'Trên\x20phải','l':'Trái','ctr':_0x4fe384(0x299),'r':'Phải','bl':_0x4fe384(0x243),'b':_0x4fe384(0x282),'br':_0x4fe384(0x210)}}},'line':{'title':'Đường\x20viền','noLine':'Không\x20có\x20đường\x20viền','solidLine':_0x4fe384(0x208),'gradientLine':'Đường\x20viền\x20gradient','color':'Màu\x20sắc','transparency':_0x4fe384(0x1fd),'width':_0x4fe384(0x200),'cornerRadius':_0x4fe384(0x20c),'dashType':{'title':_0x4fe384(0x252),'solid':_0x4fe384(0x24a),'roundDot':'Chấm\x20tròn','squareDot':'Chấm\x20vuông','dash':_0x4fe384(0x209),'dashDot':'Nét\x20đứt\x20chấm','longDash':_0x4fe384(0x251),'longDashDot':_0x4fe384(0x21c),'longDashDotDot':_0x4fe384(0x238)},'capType':{'title':'Kiểu\x20đầu\x20mút','flat':_0x4fe384(0x1be),'round':_0x4fe384(0x1ce),'square':_0x4fe384(0x1bc)},'joinType':{'title':_0x4fe384(0x20f),'miter':'Nhọn','round':_0x4fe384(0x1ce),'bevel':_0x4fe384(0x27a)},'beginArrowType':'Kiểu\x20mũi\x20tên\x20đầu','beginArrowSize':_0x4fe384(0x22d),'endArrowType':_0x4fe384(0x287),'endArrowSize':_0x4fe384(0x218),'arrowType':{'none':'Không\x20có','arrow':_0x4fe384(0x288),'openArrow':_0x4fe384(0x21f),'stealthArrow':'Mũi\x20tên\x20nhọn','diamondArrow':_0x4fe384(0x1e9),'ovalArrow':_0x4fe384(0x29c)},'arrowSize':{'small':_0x4fe384(0x29b),'medium':_0x4fe384(0x29d),'large':_0x4fe384(0x1dc)},'sketchType':{'title':_0x4fe384(0x298),'none':'Không','curved':_0x4fe384(0x1bf),'freehand':'Vẽ\x20tay','handDrawn':_0x4fe384(0x1b0)}},'shape':{'group':{'line':'Đường\x20kẻ','rectangle':_0x4fe384(0x207),'basicShape':_0x4fe384(0x1d0),'blockArrow':'Mũi\x20tên\x20khối','equationShape':_0x4fe384(0x219),'flowchart':_0x4fe384(0x284),'starAndBanner':'Sao\x20và\x20Biểu\x20ngữ','callout':_0x4fe384(0x245),'other':_0x4fe384(0x258)},'type':{'line':_0x4fe384(0x1d7),'straight-connector1':_0x4fe384(0x1d6),'straight-connector2':_0x4fe384(0x1f4),'bent-connector3':_0x4fe384(0x25c),'bent-connector3-arrow1':_0x4fe384(0x25d),'bent-connector3-arrow2':_0x4fe384(0x1dd),'curved-connector3':'Đường\x20nối\x20cong','curved-connector3-arrow1':_0x4fe384(0x21b),'curved-connector3-arrow2':_0x4fe384(0x1f0),'rect':'Hình\x20chữ\x20nhật','round-rect':_0x4fe384(0x24b),'snip1-rect':_0x4fe384(0x212),'snip2-same-rect':'Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20cùng\x20phía','snip2-diag-rect':_0x4fe384(0x254),'snip-round-rect':_0x4fe384(0x266),'round1-rect':_0x4fe384(0x27d),'round2-same-rect':_0x4fe384(0x1b9),'round2-diag-rect':'Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20chéo','rect-textbox-horizontal':_0x4fe384(0x237),'rect-textbox-vertical':'Hộp\x20văn\x20bản\x20dọc','ellipse':_0x4fe384(0x1cf),'triangle':'Tam\x20giác\x20cân','rt-triangle':_0x4fe384(0x1b7),'parallelogram':_0x4fe384(0x280),'trapezoid':'Hình\x20thang','non-isosceles-trapezoid':'Hình\x20thang\x20không\x20cân','diamond':'Hình\x20thoi','pentagon':_0x4fe384(0x292),'hexagon':'Lục\x20giác','heptagon':_0x4fe384(0x1d8),'octagon':_0x4fe384(0x272),'decagon':_0x4fe384(0x275),'dodecagon':_0x4fe384(0x1e3),'pie':_0x4fe384(0x27e),'chord':'Hình\x20cung','teardrop':'Hình\x20giọt\x20nước','frame':'Khung','half-frame':_0x4fe384(0x1ff),'corner':'Hình\x20chữ\x20L','diag-stripe':_0x4fe384(0x1f7),'plus':_0x4fe384(0x204),'plaque':'Hình\x20biển\x20hiệu','can':_0x4fe384(0x225),'cube':_0x4fe384(0x21a),'bevel':_0x4fe384(0x235),'donut':_0x4fe384(0x1ed),'no-smoking':_0x4fe384(0x221),'block-arc':_0x4fe384(0x295),'folder-corner':_0x4fe384(0x23b),'smiley-face':_0x4fe384(0x24c),'heart':'Trái\x20tim','lightning-bolt':_0x4fe384(0x22f),'sun':_0x4fe384(0x1eb),'moon':_0x4fe384(0x26c),'cloud':'Đám\x20mây','arc':'Hình\x20cung','bracket-pair':_0x4fe384(0x267),'brace-pair':'Cặp\x20ngoặc\x20nhọn','left-bracket':'Ngoặc\x20vuông\x20trái','right-bracket':'Ngoặc\x20vuông\x20phải','left-brace':_0x4fe384(0x255),'right-brace':_0x4fe384(0x29f),'right-arrow':_0x4fe384(0x1cd),'left-arrow':_0x4fe384(0x2a0),'up-arrow':_0x4fe384(0x1bd),'down-arrow':_0x4fe384(0x1b8),'left-right-arrow':'Mũi\x20tên\x20trái\x20phải','up-down-arrow':_0x4fe384(0x22a),'quad-arrow':_0x4fe384(0x26b),'left-right-up-arrow':_0x4fe384(0x240),'bent-arrow':_0x4fe384(0x25a),'uturn-arrow':_0x4fe384(0x256),'left-up-arrow':_0x4fe384(0x291),'bent-up-arrow':_0x4fe384(0x1fe),'curved-right-arrow':_0x4fe384(0x276),'curved-left-arrow':_0x4fe384(0x23f),'curved-up-arrow':_0x4fe384(0x1fe),'curved-down-arrow':_0x4fe384(0x1e0),'striped-right-arrow':'Mũi\x20tên\x20sọc\x20phải','notched-right-arrow':'Mũi\x20tên\x20khía\x20phải','home-plate':_0x4fe384(0x1d5),'chevron':_0x4fe384(0x27c),'right-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20phải','down-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20xuống','left-arrow-callout':_0x4fe384(0x228),'up-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20lên','left-right-arrow-callout':_0x4fe384(0x268),'quad-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20bốn\x20chiều','circular-arrow':_0x4fe384(0x216),'math-plus':_0x4fe384(0x204),'math-minus':_0x4fe384(0x1b2),'math-multiply':'Dấu\x20nhân','math-divide':_0x4fe384(0x1c2),'math-equal':_0x4fe384(0x248),'math-not-equal':_0x4fe384(0x29e),'flow-chart-process':_0x4fe384(0x1b4),'flow-chart-alternate-process':_0x4fe384(0x1e2),'flow-chart-decision':_0x4fe384(0x278),'flow-chart-input-output':_0x4fe384(0x201),'flow-chart-predefined-process':'Quy\x20trình\x20xác\x20định\x20trước','flow-chart-internal-storage':_0x4fe384(0x1ae),'flow-chart-document':'Tài\x20liệu','flow-chart-multidocument':_0x4fe384(0x213),'flow-chart-terminator':_0x4fe384(0x281),'flow-chart-preparation':_0x4fe384(0x211),'flow-chart-manual-input':_0x4fe384(0x261),'flow-chart-manual-operation':_0x4fe384(0x1b1),'flow-chart-connector':_0x4fe384(0x283),'flow-chart-offpage-connector':_0x4fe384(0x215),'flow-chart-punched-card':'Thẻ\x20đục\x20lỗ','flow-chart-punched-tape':'Băng\x20đục\x20lỗ','flow-chart-summing-junction':_0x4fe384(0x269),'flow-chart-or':_0x4fe384(0x1c3),'flow-chart-collate':'Đối\x20chiếu','flow-chart-sort':_0x4fe384(0x231),'flow-chart-extract':'Trích\x20xuất','flow-chart-merge':_0x4fe384(0x263),'flow-chart-online-storage':_0x4fe384(0x242),'flow-chart-delay':_0x4fe384(0x279),'flow-chart-magnetic-tape':_0x4fe384(0x1fc),'flow-chart-magnetic-disk':_0x4fe384(0x1ef),'flow-chart-magnetic-drum':_0x4fe384(0x226),'flow-chart-display':_0x4fe384(0x1b3),'irregular-seal1':'Hình\x20nổ\x201','irregular-seal2':_0x4fe384(0x1e8),'star4':_0x4fe384(0x262),'star5':_0x4fe384(0x233),'star6':_0x4fe384(0x21e),'star7':_0x4fe384(0x223),'star8':_0x4fe384(0x1e6),'star10':_0x4fe384(0x1df),'star12':'Sao\x2012\x20cánh','star16':_0x4fe384(0x236),'star24':_0x4fe384(0x271),'star32':'Sao\x2032\x20cánh','ribbon2':_0x4fe384(0x244),'ribbon':_0x4fe384(0x260),'ellipse-ribbon2':_0x4fe384(0x286),'ellipse-ribbon':_0x4fe384(0x253),'vertical-scroll':_0x4fe384(0x1af),'horizontal-scroll':_0x4fe384(0x293),'wave':_0x4fe384(0x296),'double-wave':_0x4fe384(0x273),'wedge-rect-callout':_0x4fe384(0x1c5),'wedge-round-rect-callout':_0x4fe384(0x1da),'wedge-ellipse-callout':_0x4fe384(0x205),'cloud-callout':_0x4fe384(0x1f6),'border-callout1':'Chú\x20thích\x20đường\x20kẻ\x201','border-callout2':_0x4fe384(0x246),'border-callout3':_0x4fe384(0x259),'accent-callout1':_0x4fe384(0x23d),'accent-callout2':_0x4fe384(0x222),'accent-callout3':_0x4fe384(0x2a3),'callout1':'Chú\x20thích\x201','callout2':_0x4fe384(0x270),'callout3':_0x4fe384(0x21d),'accent-border-callout1':_0x4fe384(0x26f),'accent-border-callout2':_0x4fe384(0x1ea),'accent-border-callout3':_0x4fe384(0x29a),'left-circular-arrow':'Mũi\x20tên\x20tròn\x20trái','left-right-circular-arrow':'Mũi\x20tên\x20tròn\x20trái\x20phải','swoosh-arrow':_0x4fe384(0x239),'left-right-ribbon':_0x4fe384(0x1cb),'pie-wedge':_0x4fe384(0x1f5),'funnel':'Phễu','gear6':_0x4fe384(0x24e),'gear9':_0x4fe384(0x232),'corner-tabs':_0x4fe384(0x229),'action-button-back-previous':_0x4fe384(0x27b),'action-button-forward-next':_0x4fe384(0x290),'action-button-beginning':'Nút\x20hành\x20động:\x20Bắt\x20đầu','action-button-end':_0x4fe384(0x1d1),'action-button-home':_0x4fe384(0x1c6),'action-button-information':_0x4fe384(0x265),'action-button-return':'Nút\x20hành\x20động:\x20Trở\x20lại','action-button-movie':'Nút\x20hành\x20động:\x20Phim','action-button-document':_0x4fe384(0x202),'action-button-sound':_0x4fe384(0x285),'action-button-help':_0x4fe384(0x25b),'action-button-blank':_0x4fe384(0x2a2),'chart-plus':_0x4fe384(0x1e7),'chart-star':_0x4fe384(0x22b),'chart-x':_0x4fe384(0x1d4),'flow-chart-offline-storage':_0x4fe384(0x20e),'line-inv':'Đường\x20ngược','plaque-tabs':'Tab\x20biển\x20hiệu','square-tabs':_0x4fe384(0x20b),'up-down-arrow-callout':_0x4fe384(0x220)}},'toolbar':{'expandShapeToolbar':_0x4fe384(0x1e4),'collapseShapeToolbar':_0x4fe384(0x274),'alignLeft':'Căn\x20trái','alignCenter':'Căn\x20giữa','alignRight':_0x4fe384(0x28d),'alignJustify':'Căn\x20đều\x20hai\x20bên','bold':'In\x20đậm','italic':_0x4fe384(0x289),'underline':_0x4fe384(0x1c7),'strikethrough':'Gạch\x20ngang','subscript':_0x4fe384(0x230),'superscript':_0x4fe384(0x20d),'textColor':_0x4fe384(0x28f),'textBackgroundColor':_0x4fe384(0x277),'fillColor':_0x4fe384(0x23e),'resetColor':'Reset\x20color'},'align':{'top':_0x4fe384(0x20a),'middle':_0x4fe384(0x294),'bottom':_0x4fe384(0x1b5)},'textWrap':{'inline':'In\x20line\x20with\x20text','square':_0x4fe384(0x1d9),'topAndBottom':_0x4fe384(0x24f),'behindText':_0x4fe384(0x249),'inFrontText':_0x4fe384(0x234)},'crop':{'shape':_0x4fe384(0x1f1)}}};}));function _0x2891(_0x5d3ab2,_0x14848b){_0x5d3ab2=_0x5d3ab2-0x1ae;var _0x495359=_0x4953();var _0x28914d=_0x495359[_0x5d3ab2];return _0x28914d;}function _0x4953(){var _0x344152=['Mặt\x20trời','Nguồn\x20ảnh','Hình\x20bánh\x20rán','Tiêu\x20đề\x203','Đĩa\x20từ','Đường\x20nối\x20cong\x20mũi\x20tên\x20hai\x20đầu','Cắt\x20theo\x20hình\x20dạng','Tỷ\x20lệ\x20X','Tiêu\x20đề\x205','Đường\x20thẳng\x20mũi\x20tên\x20hai\x20đầu','Miếng\x20bánh','Chú\x20thích\x20đám\x20mây','Sọc\x20chéo','function','102wrMegU','amd','Căn\x20chỉnh','Băng\x20từ','Độ\x20trong\x20suốt','Mũi\x20tên\x20cong\x20lên','Khung\x20một\x20nửa','Độ\x20rộng','Dữ\x20liệu','Nút\x20hành\x20động:\x20Tài\x20liệu','Màu\x20sắc','Dấu\x20cộng','Chú\x20thích\x20hình\x20elip','197133PLCWgw','Hình\x20chữ\x20nhật','Đường\x20viền\x20liền','Nét\x20đứt','Căn\x20trên','Tab\x20vuông','Bán\x20kính\x20góc','Superscript','Lưu\x20trữ\x20ngoại\x20tuyến','Kiểu\x20nối\x20góc','Dưới\x20phải','Chuẩn\x20bị','Hình\x20chữ\x20nhật\x20cắt\x20một\x20góc','Đa\x20tài\x20liệu','576087HKmMAa','Đầu\x20nối\x20khác\x20trang','Mũi\x20tên\x20tròn','exports','Kích\x20thước\x20mũi\x20tên\x20cuối','Hình\x20công\x20thức','Hình\x20lập\x20phương','Đường\x20nối\x20cong\x20có\x20mũi\x20tên','Nét\x20đứt\x20dài\x20chấm','Chú\x20thích\x203','Sao\x206\x20cánh','Mũi\x20tên\x20hở','Chú\x20thích\x20mũi\x20tên\x20lên\x20xuống','Biển\x20cấm\x20hút\x20thuốc','Chú\x20thích\x20nhấn\x20mạnh\x202','Sao\x207\x20cánh','765820LsVEEt','Hình\x20trụ','Trống\x20từ','Tỷ\x20lệ\x20Y','Chú\x20thích\x20mũi\x20tên\x20trái','Tab\x20góc','Mũi\x20tên\x20lên\x20xuống','Biểu\x20đồ\x20sao','Bù\x20trừ\x20X','Kích\x20thước\x20mũi\x20tên\x20đầu','2hiwfZX','Tia\x20sét','Subscript','Sắp\x20xếp','Bánh\x20răng\x209','Sao\x205\x20cánh','In\x20front\x20of\x20text','Hình\x20vát','Sao\x2016\x20cánh','Hộp\x20văn\x20bản\x20ngang','Nét\x20đứt\x20dài\x20hai\x20chấm','Mũi\x20tên\x20lướt','Tô\x20màu\x20gradient','Góc\x20thư\x20mục','Khối\x20mã','Chú\x20thích\x20nhấn\x20mạnh\x201','Màu\x20nền\x20văn\x20bản','Mũi\x20tên\x20cong\x20trái','Mũi\x20tên\x20trái\x20phải\x20lên','Tô\x20màu','Lưu\x20trữ\x20trực\x20tuyến','Dưới\x20trái','Ruy\x20băng\x20lên','Chú\x20thích','Chú\x20thích\x20đường\x20kẻ\x202','Tiêu\x20đề\x204','Dấu\x20bằng','Behind\x20text','Liền','Hình\x20chữ\x20nhật\x20bo\x20góc','Mặt\x20cười','Chuyển\x20đổi\x20văn\x20bản\x20dọc','Bánh\x20răng\x206','Top\x20and\x20Bottom','Bù\x20trừ\x20Y','Nét\x20đứt\x20dài','Kiểu\x20nét\x20đứt','Ruy\x20băng\x20cong\x20xuống','Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20chéo','Ngoặc\x20nhọn\x20trái','Mũi\x20tên\x20quay\x20đầu','Trên\x20trái','Khác','Chú\x20thích\x20đường\x20kẻ\x203','Mũi\x20tên\x20cong','Nút\x20hành\x20động:\x20Trợ\x20giúp','Đường\x20nối\x20khuỷu','Đường\x20nối\x20khuỷu\x20có\x20mũi\x20tên','Ẩn\x20bảng\x20hình\x20dạng','22190ohWNlv','Ruy\x20băng\x20xuống','Nhập\x20thủ\x20công','Sao\x204\x20cánh','Hợp\x20nhất','Văn\x20bản','Nút\x20hành\x20động:\x20Thông\x20tin','Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn\x20một\x20góc\x20cắt','Cặp\x20ngoặc\x20vuông','Chú\x20thích\x20mũi\x20tên\x20trái\x20phải','Điểm\x20nối\x20tổng','4qsLTRk','Mũi\x20tên\x20bốn\x20chiều','Mặt\x20trăng','Chèn...','2544396hSRrAP','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x201','Chú\x20thích\x202','Sao\x2024\x20cánh','Bát\x20giác','Sóng\x20đôi','Thu\x20gọn\x20thanh\x20công\x20cụ\x20hình\x20dạng','Thập\x20giác','Mũi\x20tên\x20cong\x20phải','Text\x20Background\x20color','Quyết\x20định','Trì\x20hoãn','Vát','Nút\x20hành\x20động:\x20Quay\x20lại\x20hoặc\x20Trước','Hình\x20chữ\x20V','Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn','Hình\x20quạt','660giNsnJ','Hình\x20bình\x20hành','Kết\x20thúc','Dưới','Đầu\x20nối','Lưu\x20đồ','Nút\x20hành\x20động:\x20Âm\x20thanh','Ruy\x20băng\x20cong\x20lên','Kiểu\x20mũi\x20tên\x20cuối','Mũi\x20tên','In\x20nghiêng','Tô\x20bằng\x20mẫu','Mở\x20bảng\x20hình\x20dạng','Vị\x20trí\x20hình\x20dạng','Căn\x20phải','100773lhIBEU','Màu\x20chữ','Nút\x20hành\x20động:\x20Chuyển\x20tiếp\x20hoặc\x20Tiếp\x20theo','Mũi\x20tên\x20trái\x20lên','Ngũ\x20giác','Cuộn\x20ngang','Căn\x20giữa\x20theo\x20chiều\x20dọc','Hình\x20cung\x20khối','Sóng','Trên','Kiểu\x20phác\x20thảo','Giữa','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x203','Nhỏ','Mũi\x20tên\x20hình\x20bầu\x20dục','Vừa','Dấu\x20khác','Ngoặc\x20nhọn\x20phải','Mũi\x20tên\x20trái','8CyIOkd','Nút\x20hành\x20động:\x20Trống','Chú\x20thích\x20nhấn\x20mạnh\x203','Lưu\x20trữ\x20nội\x20bộ','Cuộn\x20dọc','Vẽ\x20nguệch\x20ngoạc','Thao\x20tác\x20thủ\x20công','Dấu\x20trừ','Hiển\x20thị','Quy\x20trình','Căn\x20dưới','Lát\x20ảnh\x20làm\x20kết\x20cấu','Tam\x20giác\x20vuông','Mũi\x20tên\x20xuống','Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20cùng\x20phía','Xoay\x2090\x20độ\x20ngược\x20chiều\x20kim\x20đồng\x20hồ','Kiểu\x20hình\x20dạng','Vuông','Mũi\x20tên\x20lên','Phẳng','Cong','Bật/tắt\x20lật\x20dọc','object','Dấu\x20chia','Hoặc','Xoay\x20cùng\x20hình\x20dạng','Chú\x20thích\x20hình\x20chữ\x20nhật','Nút\x20hành\x20động:\x20Trang\x20chủ','Gạch\x20chân','Hình\x20dạng','Danh\x20sách\x20không\x20thứ\x20tự','Tô\x20màu\x20đặc','Ruy\x20băng\x20trái\x20phải','Danh\x20sách\x20có\x20thứ\x20tự','Mũi\x20tên\x20phải','Tròn','Hình\x20elip','Hình\x20cơ\x20bản','Nút\x20hành\x20động:\x20Kết\x20thúc','UniverProShapeEditorUiViVN','Chuyển\x20đổi\x20lật\x20ngang','Biểu\x20đồ\x20X','Hình\x20ngũ\x20giác\x20(Home\x20Plate)','Mũi\x20tên\x20đường\x20thẳng','Đường\x20thẳng','Thất\x20giác','Square','Chú\x20thích\x20hình\x20chữ\x20nhật\x20bo\x20góc','Không\x20tô','Lớn','Đường\x20nối\x20khuỷu\x20mũi\x20tên\x20hai\x20đầu','Khung\x20nổi\x20bật','Sao\x2010\x20cánh','Mũi\x20tên\x20cong\x20xuống','Tiêu\x20đề\x201','Quy\x20trình\x20thay\x20thế','Thập\x20nhị\x20giác','Mở\x20rộng\x20thanh\x20công\x20cụ\x20hình\x20dạng','30163bMGftI','Sao\x208\x20cánh','Biểu\x20đồ\x20cộng','Hình\x20nổ\x202','Mũi\x20tên\x20kim\x20cương','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x202'];_0x4953=function(){return _0x344152;};return _0x4953();}
|
|
1
|
+
function _0x5c47(_0x57c1d2,_0x1741f4){_0x57c1d2=_0x57c1d2-0xd5;var _0x4ff6f6=_0x4ff6();var _0x5c4725=_0x4ff6f6[_0x57c1d2];return _0x5c4725;}(function(_0x55f864,_0x4f97c0){var _0x5133a4=_0x5c47,_0x3465a7=_0x55f864();while(!![]){try{var _0x597493=parseInt(_0x5133a4(0xf8))/0x1*(parseInt(_0x5133a4(0x157))/0x2)+parseInt(_0x5133a4(0x1cc))/0x3*(parseInt(_0x5133a4(0xec))/0x4)+-parseInt(_0x5133a4(0xfd))/0x5+parseInt(_0x5133a4(0x171))/0x6+-parseInt(_0x5133a4(0x10b))/0x7+-parseInt(_0x5133a4(0xe5))/0x8+parseInt(_0x5133a4(0x127))/0x9;if(_0x597493===_0x4f97c0)break;else _0x3465a7['push'](_0x3465a7['shift']());}catch(_0x4281cc){_0x3465a7['push'](_0x3465a7['shift']());}}}(_0x4ff6,0xa33d2),function(_0x5815d4,_0x17c087){var _0x5f04e6=_0x5c47;typeof exports=='object'&&typeof module<'u'?module['exports']=_0x17c087():typeof define==_0x5f04e6(0x110)&&define[_0x5f04e6(0x152)]?define([],_0x17c087):(_0x5815d4=typeof globalThis<'u'?globalThis:_0x5815d4||self,_0x5815d4[_0x5f04e6(0x149)]=_0x17c087());}(this,function(){var _0x16e8a6=_0x5c47;return{'shape-editor-ui':{'title':_0x16e8a6(0x1c5),'insertShape':_0x16e8a6(0x14a),'openPanel':_0x16e8a6(0x12a),'deleteShape':_0x16e8a6(0x198),'hidePanel':_0x16e8a6(0x1d3),'formatShape':_0x16e8a6(0x1bf),'shapeStyle':_0x16e8a6(0x194),'shapePosition':_0x16e8a6(0x1ca),'toggleFlipH':_0x16e8a6(0xde),'toggleFlipV':'Bật/tắt\x20lật\x20dọc','rotateRight90':_0x16e8a6(0x18f),'rotateLeft90':_0x16e8a6(0x154),'toggleTextVertical':_0x16e8a6(0x155),'textEditor':{'placeholder':_0x16e8a6(0xff),'paragraphType':{'normal':_0x16e8a6(0x123),'heading1':'Tiêu\x20đề\x201','heading2':'Tiêu\x20đề\x202','heading3':_0x16e8a6(0x191),'heading4':'Tiêu\x20đề\x204','heading5':_0x16e8a6(0xea),'orderedList':_0x16e8a6(0x12d),'bulletList':'Danh\x20sách\x20không\x20thứ\x20tự','checkList':_0x16e8a6(0x1d0),'quote':_0x16e8a6(0x1b6),'code':_0x16e8a6(0xfa),'callout':'Khung\x20nổi\x20bật'}},'fill':{'title':_0x16e8a6(0x1a3),'noFill':_0x16e8a6(0x12c),'solidFill':_0x16e8a6(0x173),'gradientFill':_0x16e8a6(0x121),'pictureFill':_0x16e8a6(0x180),'patternFill':_0x16e8a6(0x118),'color':_0x16e8a6(0x126),'transparency':_0x16e8a6(0x178),'picture':{'source':'Nguồn\x20ảnh','insert':_0x16e8a6(0x1af),'tileAsTexture':_0x16e8a6(0x187),'offsetX':_0x16e8a6(0x122),'offsetY':_0x16e8a6(0x1b1),'scaleX':_0x16e8a6(0xf9),'scaleY':_0x16e8a6(0x15c),'alignment':_0x16e8a6(0x1d2),'rotateWithShape':'Xoay\x20cùng\x20hình\x20dạng','align':{'tl':'Trên\x20trái','t':_0x16e8a6(0x144),'tr':_0x16e8a6(0x1a5),'l':'Trái','ctr':_0x16e8a6(0x1cb),'r':'Phải','bl':_0x16e8a6(0xf7),'b':_0x16e8a6(0xf5),'br':_0x16e8a6(0x1bd)}}},'line':{'title':'Đường\x20viền','noLine':_0x16e8a6(0xf0),'solidLine':'Đường\x20viền\x20liền','gradientLine':'Đường\x20viền\x20gradient','color':_0x16e8a6(0x126),'transparency':'Độ\x20trong\x20suốt','width':_0x16e8a6(0x13d),'cornerRadius':_0x16e8a6(0x19f),'dashType':{'title':_0x16e8a6(0xe6),'solid':_0x16e8a6(0x117),'roundDot':_0x16e8a6(0x132),'squareDot':_0x16e8a6(0x1c7),'dash':_0x16e8a6(0x190),'dashDot':'Nét\x20đứt\x20chấm','longDash':_0x16e8a6(0x11e),'longDashDot':_0x16e8a6(0x188),'longDashDotDot':_0x16e8a6(0x1c1)},'capType':{'title':_0x16e8a6(0x1c3),'flat':_0x16e8a6(0xd7),'round':'Tròn','square':_0x16e8a6(0x15a)},'joinType':{'title':_0x16e8a6(0x139),'miter':_0x16e8a6(0xe2),'round':_0x16e8a6(0x120),'bevel':_0x16e8a6(0x137)},'beginArrowType':_0x16e8a6(0x16e),'beginArrowSize':_0x16e8a6(0x141),'endArrowType':_0x16e8a6(0x143),'endArrowSize':'Kích\x20thước\x20mũi\x20tên\x20cuối','arrowType':{'none':_0x16e8a6(0x1cd),'arrow':'Mũi\x20tên','openArrow':_0x16e8a6(0x102),'stealthArrow':'Mũi\x20tên\x20nhọn','diamondArrow':_0x16e8a6(0xf4),'ovalArrow':'Mũi\x20tên\x20hình\x20bầu\x20dục'},'arrowSize':{'small':_0x16e8a6(0x130),'medium':_0x16e8a6(0x19c),'large':_0x16e8a6(0x162)},'sketchType':{'title':_0x16e8a6(0x134),'none':_0x16e8a6(0x142),'curved':_0x16e8a6(0x1a0),'freehand':'Vẽ\x20tay','handDrawn':_0x16e8a6(0x115)}},'shape':{'group':{'line':'Đường\x20kẻ','rectangle':_0x16e8a6(0xd5),'basicShape':_0x16e8a6(0x16b),'blockArrow':'Mũi\x20tên\x20khối','equationShape':'Hình\x20công\x20thức','flowchart':_0x16e8a6(0xdf),'starAndBanner':_0x16e8a6(0x1a8),'callout':'Chú\x20thích','other':_0x16e8a6(0x199)},'type':{'line':_0x16e8a6(0x174),'straight-connector1':_0x16e8a6(0x184),'straight-connector2':_0x16e8a6(0x13c),'bent-connector3':'Đường\x20nối\x20khuỷu','bent-connector3-arrow1':_0x16e8a6(0x16d),'bent-connector3-arrow2':_0x16e8a6(0x163),'curved-connector3':_0x16e8a6(0x113),'curved-connector3-arrow1':_0x16e8a6(0x104),'curved-connector3-arrow2':'Đường\x20nối\x20cong\x20mũi\x20tên\x20hai\x20đầu','rect':_0x16e8a6(0xd5),'round-rect':'Hình\x20chữ\x20nhật\x20bo\x20góc','snip1-rect':_0x16e8a6(0x18d),'snip2-same-rect':_0x16e8a6(0x1c2),'snip2-diag-rect':_0x16e8a6(0x175),'snip-round-rect':_0x16e8a6(0x193),'round1-rect':_0x16e8a6(0xfb),'round2-same-rect':'Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20cùng\x20phía','round2-diag-rect':_0x16e8a6(0x1a4),'rect-textbox-horizontal':'Hộp\x20văn\x20bản\x20ngang','rect-textbox-vertical':_0x16e8a6(0x10a),'ellipse':'Hình\x20elip','triangle':_0x16e8a6(0x140),'rt-triangle':_0x16e8a6(0x12e),'parallelogram':'Hình\x20bình\x20hành','trapezoid':'Hình\x20thang','non-isosceles-trapezoid':_0x16e8a6(0xd8),'diamond':_0x16e8a6(0x147),'pentagon':_0x16e8a6(0x172),'hexagon':_0x16e8a6(0x1a2),'heptagon':'Thất\x20giác','octagon':'Bát\x20giác','decagon':'Thập\x20giác','dodecagon':_0x16e8a6(0x1c6),'pie':_0x16e8a6(0x1ac),'chord':_0x16e8a6(0xed),'teardrop':_0x16e8a6(0x16f),'frame':_0x16e8a6(0xf2),'half-frame':_0x16e8a6(0x19a),'corner':_0x16e8a6(0x136),'diag-stripe':'Sọc\x20chéo','plus':'Dấu\x20cộng','plaque':'Hình\x20biển\x20hiệu','can':_0x16e8a6(0x196),'cube':_0x16e8a6(0xeb),'bevel':'Hình\x20vát','donut':_0x16e8a6(0xee),'no-smoking':'Biển\x20cấm\x20hút\x20thuốc','block-arc':'Hình\x20cung\x20khối','folder-corner':_0x16e8a6(0x17e),'smiley-face':_0x16e8a6(0x176),'heart':'Trái\x20tim','lightning-bolt':_0x16e8a6(0x11a),'sun':_0x16e8a6(0x19d),'moon':_0x16e8a6(0xd6),'cloud':_0x16e8a6(0xef),'arc':_0x16e8a6(0xed),'bracket-pair':'Cặp\x20ngoặc\x20vuông','brace-pair':_0x16e8a6(0xfc),'left-bracket':_0x16e8a6(0x13a),'right-bracket':'Ngoặc\x20vuông\x20phải','left-brace':_0x16e8a6(0x1bc),'right-brace':'Ngoặc\x20nhọn\x20phải','right-arrow':_0x16e8a6(0xfe),'left-arrow':'Mũi\x20tên\x20trái','up-arrow':_0x16e8a6(0x131),'down-arrow':_0x16e8a6(0x158),'left-right-arrow':'Mũi\x20tên\x20trái\x20phải','up-down-arrow':_0x16e8a6(0x17a),'quad-arrow':'Mũi\x20tên\x20bốn\x20chiều','left-right-up-arrow':_0x16e8a6(0x195),'bent-arrow':_0x16e8a6(0xe9),'uturn-arrow':_0x16e8a6(0x169),'left-up-arrow':'Mũi\x20tên\x20trái\x20lên','bent-up-arrow':'Mũi\x20tên\x20cong\x20lên','curved-right-arrow':_0x16e8a6(0x119),'curved-left-arrow':_0x16e8a6(0x1b3),'curved-up-arrow':_0x16e8a6(0x18b),'curved-down-arrow':_0x16e8a6(0x1ab),'striped-right-arrow':_0x16e8a6(0x17b),'notched-right-arrow':_0x16e8a6(0x1a9),'home-plate':_0x16e8a6(0x192),'chevron':_0x16e8a6(0x101),'right-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20phải','down-arrow-callout':_0x16e8a6(0x116),'left-arrow-callout':_0x16e8a6(0x1b2),'up-arrow-callout':_0x16e8a6(0x105),'left-right-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20trái\x20phải','quad-arrow-callout':_0x16e8a6(0xe8),'circular-arrow':_0x16e8a6(0x1b7),'math-plus':_0x16e8a6(0x1a7),'math-minus':_0x16e8a6(0x14b),'math-multiply':_0x16e8a6(0x106),'math-divide':_0x16e8a6(0x151),'math-equal':_0x16e8a6(0x1c0),'math-not-equal':'Dấu\x20khác','flow-chart-process':_0x16e8a6(0xdc),'flow-chart-alternate-process':_0x16e8a6(0x16c),'flow-chart-decision':_0x16e8a6(0x124),'flow-chart-input-output':'Dữ\x20liệu','flow-chart-predefined-process':_0x16e8a6(0x107),'flow-chart-internal-storage':'Lưu\x20trữ\x20nội\x20bộ','flow-chart-document':_0x16e8a6(0x13b),'flow-chart-multidocument':_0x16e8a6(0x153),'flow-chart-terminator':_0x16e8a6(0xe1),'flow-chart-preparation':_0x16e8a6(0x125),'flow-chart-manual-input':_0x16e8a6(0x1b5),'flow-chart-manual-operation':_0x16e8a6(0x1c8),'flow-chart-connector':_0x16e8a6(0xf1),'flow-chart-offpage-connector':_0x16e8a6(0x18a),'flow-chart-punched-card':_0x16e8a6(0x18e),'flow-chart-punched-tape':_0x16e8a6(0x1b9),'flow-chart-summing-junction':_0x16e8a6(0x14e),'flow-chart-or':_0x16e8a6(0x1d1),'flow-chart-collate':_0x16e8a6(0x13f),'flow-chart-sort':'Sắp\x20xếp','flow-chart-extract':_0x16e8a6(0x15f),'flow-chart-merge':_0x16e8a6(0x133),'flow-chart-online-storage':'Lưu\x20trữ\x20trực\x20tuyến','flow-chart-delay':_0x16e8a6(0x183),'flow-chart-magnetic-tape':_0x16e8a6(0x17f),'flow-chart-magnetic-disk':_0x16e8a6(0x114),'flow-chart-magnetic-drum':_0x16e8a6(0x1ad),'flow-chart-display':_0x16e8a6(0x156),'irregular-seal1':'Hình\x20nổ\x201','irregular-seal2':'Hình\x20nổ\x202','star4':_0x16e8a6(0x1aa),'star5':_0x16e8a6(0x13e),'star6':'Sao\x206\x20cánh','star7':_0x16e8a6(0xf6),'star8':_0x16e8a6(0x182),'star10':_0x16e8a6(0x1b8),'star12':'Sao\x2012\x20cánh','star16':_0x16e8a6(0x1be),'star24':'Sao\x2024\x20cánh','star32':_0x16e8a6(0x1ce),'ribbon2':_0x16e8a6(0x128),'ribbon':_0x16e8a6(0xe3),'ellipse-ribbon2':_0x16e8a6(0x14d),'ellipse-ribbon':_0x16e8a6(0x10d),'vertical-scroll':_0x16e8a6(0x17d),'horizontal-scroll':_0x16e8a6(0xf3),'wave':_0x16e8a6(0x112),'double-wave':_0x16e8a6(0x129),'wedge-rect-callout':_0x16e8a6(0xe0),'wedge-round-rect-callout':_0x16e8a6(0x11b),'wedge-ellipse-callout':'Chú\x20thích\x20hình\x20elip','cloud-callout':_0x16e8a6(0xdb),'border-callout1':_0x16e8a6(0x1c4),'border-callout2':_0x16e8a6(0x18c),'border-callout3':_0x16e8a6(0x16a),'accent-callout1':_0x16e8a6(0x1a6),'accent-callout2':_0x16e8a6(0x11d),'accent-callout3':_0x16e8a6(0x135),'callout1':_0x16e8a6(0x14c),'callout2':_0x16e8a6(0x189),'callout3':_0x16e8a6(0x1a1),'accent-border-callout1':_0x16e8a6(0x103),'accent-border-callout2':_0x16e8a6(0x166),'accent-border-callout3':_0x16e8a6(0x108),'left-circular-arrow':'Mũi\x20tên\x20tròn\x20trái','left-right-circular-arrow':_0x16e8a6(0x12b),'swoosh-arrow':'Mũi\x20tên\x20lướt','left-right-ribbon':_0x16e8a6(0x10e),'pie-wedge':_0x16e8a6(0x19b),'funnel':_0x16e8a6(0x10f),'gear6':'Bánh\x20răng\x206','gear9':_0x16e8a6(0x150),'corner-tabs':_0x16e8a6(0xdd),'action-button-back-previous':_0x16e8a6(0x1bb),'action-button-forward-next':_0x16e8a6(0x197),'action-button-beginning':_0x16e8a6(0x168),'action-button-end':_0x16e8a6(0x11c),'action-button-home':_0x16e8a6(0x11f),'action-button-information':_0x16e8a6(0x165),'action-button-return':_0x16e8a6(0x160),'action-button-movie':_0x16e8a6(0xe7),'action-button-document':_0x16e8a6(0x15e),'action-button-sound':_0x16e8a6(0x138),'action-button-help':_0x16e8a6(0x10c),'action-button-blank':_0x16e8a6(0x185),'chart-plus':_0x16e8a6(0x164),'chart-star':'Biểu\x20đồ\x20sao','chart-x':_0x16e8a6(0x1ba),'flow-chart-offline-storage':_0x16e8a6(0x177),'line-inv':_0x16e8a6(0x15b),'plaque-tabs':_0x16e8a6(0x15d),'square-tabs':_0x16e8a6(0x14f),'up-down-arrow-callout':_0x16e8a6(0x167)}},'toolbar':{'expandShapeToolbar':_0x16e8a6(0x1b0),'collapseShapeToolbar':_0x16e8a6(0xd9),'alignLeft':_0x16e8a6(0x146),'alignCenter':_0x16e8a6(0x148),'alignRight':_0x16e8a6(0x111),'alignJustify':_0x16e8a6(0x19e),'bold':_0x16e8a6(0x145),'italic':_0x16e8a6(0x179),'underline':_0x16e8a6(0x1ae),'strikethrough':_0x16e8a6(0x17c),'subscript':_0x16e8a6(0xe4),'superscript':_0x16e8a6(0x1b4),'textColor':_0x16e8a6(0x100),'textBackgroundColor':_0x16e8a6(0x109),'fillColor':_0x16e8a6(0x109),'resetColor':_0x16e8a6(0x181),'typography':_0x16e8a6(0xda)},'align':{'top':_0x16e8a6(0x161),'middle':'Căn\x20giữa\x20theo\x20chiều\x20dọc','bottom':_0x16e8a6(0x170)},'textWrap':{'inline':_0x16e8a6(0x12f),'square':_0x16e8a6(0x1cf),'topAndBottom':_0x16e8a6(0x1c9),'behindText':_0x16e8a6(0x186),'inFrontText':_0x16e8a6(0x159)},'crop':{'shape':'Cắt\x20theo\x20hình\x20dạng'}}};}));function _0x4ff6(){var _0x4538ad=['Phễu','function','Căn\x20phải','Sóng','Đường\x20nối\x20cong','Đĩa\x20từ','Vẽ\x20nguệch\x20ngoạc','Chú\x20thích\x20mũi\x20tên\x20xuống','Liền','Tô\x20bằng\x20mẫu','Mũi\x20tên\x20cong\x20phải','Tia\x20sét','Chú\x20thích\x20hình\x20chữ\x20nhật\x20bo\x20góc','Nút\x20hành\x20động:\x20Kết\x20thúc','Chú\x20thích\x20nhấn\x20mạnh\x202','Nét\x20đứt\x20dài','Nút\x20hành\x20động:\x20Trang\x20chủ','Tròn','Tô\x20màu\x20gradient','Bù\x20trừ\x20X','Văn\x20bản','Quyết\x20định','Chuẩn\x20bị','Màu\x20sắc','2206494yneSwR','Ruy\x20băng\x20lên','Sóng\x20đôi','Mở\x20bảng\x20hình\x20dạng','Mũi\x20tên\x20tròn\x20trái\x20phải','Không\x20tô','Danh\x20sách\x20có\x20thứ\x20tự','Tam\x20giác\x20vuông','Cùng\x20dòng\x20với\x20văn\x20bản','Nhỏ','Mũi\x20tên\x20lên','Chấm\x20tròn','Hợp\x20nhất','Kiểu\x20phác\x20thảo','Chú\x20thích\x20nhấn\x20mạnh\x203','Hình\x20chữ\x20L','Vát','Nút\x20hành\x20động:\x20Âm\x20thanh','Kiểu\x20nối\x20góc','Ngoặc\x20vuông\x20trái','Tài\x20liệu','Đường\x20thẳng\x20mũi\x20tên\x20hai\x20đầu','Độ\x20rộng','Sao\x205\x20cánh','Đối\x20chiếu','Tam\x20giác\x20cân','Kích\x20thước\x20mũi\x20tên\x20đầu','Không','Kiểu\x20mũi\x20tên\x20cuối','Trên','In\x20đậm','Căn\x20trái','Hình\x20thoi','Căn\x20giữa','UniverProShapeEditorUiViVN','Chèn\x20hình\x20dạng','Dấu\x20trừ','Chú\x20thích\x201','Ruy\x20băng\x20cong\x20lên','Điểm\x20nối\x20tổng','Tab\x20vuông','Bánh\x20răng\x209','Dấu\x20chia','amd','Đa\x20tài\x20liệu','Xoay\x2090\x20độ\x20ngược\x20chiều\x20kim\x20đồng\x20hồ','Chuyển\x20đổi\x20văn\x20bản\x20dọc','Hiển\x20thị','30542UNAceS','Mũi\x20tên\x20xuống','Phía\x20trước\x20văn\x20bản','Vuông','Đường\x20ngược','Tỷ\x20lệ\x20Y','Tab\x20biển\x20hiệu','Nút\x20hành\x20động:\x20Tài\x20liệu','Trích\x20xuất','Nút\x20hành\x20động:\x20Trở\x20lại','Căn\x20trên','Lớn','Đường\x20nối\x20khuỷu\x20mũi\x20tên\x20hai\x20đầu','Biểu\x20đồ\x20cộng','Nút\x20hành\x20động:\x20Thông\x20tin','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x202','Chú\x20thích\x20mũi\x20tên\x20lên\x20xuống','Nút\x20hành\x20động:\x20Bắt\x20đầu','Mũi\x20tên\x20quay\x20đầu','Chú\x20thích\x20đường\x20kẻ\x203','Hình\x20cơ\x20bản','Quy\x20trình\x20thay\x20thế','Đường\x20nối\x20khuỷu\x20có\x20mũi\x20tên','Kiểu\x20mũi\x20tên\x20đầu','Hình\x20giọt\x20nước','Căn\x20dưới','5031816UGqjfP','Ngũ\x20giác','Tô\x20màu\x20đặc','Đường\x20thẳng','Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20chéo','Mặt\x20cười','Lưu\x20trữ\x20ngoại\x20tuyến','Độ\x20trong\x20suốt','In\x20nghiêng','Mũi\x20tên\x20lên\x20xuống','Mũi\x20tên\x20sọc\x20phải','Gạch\x20ngang','Cuộn\x20dọc','Góc\x20thư\x20mục','Băng\x20từ','Tô\x20bằng\x20hình\x20ảnh\x20hoặc\x20kết\x20cấu','Đặt\x20lại\x20màu','Sao\x208\x20cánh','Trì\x20hoãn','Mũi\x20tên\x20đường\x20thẳng','Nút\x20hành\x20động:\x20Trống','Phía\x20sau\x20văn\x20bản','Lát\x20ảnh\x20làm\x20kết\x20cấu','Nét\x20đứt\x20dài\x20chấm','Chú\x20thích\x202','Đầu\x20nối\x20khác\x20trang','Mũi\x20tên\x20cong\x20lên','Chú\x20thích\x20đường\x20kẻ\x202','Hình\x20chữ\x20nhật\x20cắt\x20một\x20góc','Thẻ\x20đục\x20lỗ','Xoay\x2090\x20độ\x20theo\x20chiều\x20kim\x20đồng\x20hồ','Nét\x20đứt','Tiêu\x20đề\x203','Hình\x20ngũ\x20giác\x20(Home\x20Plate)','Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn\x20một\x20góc\x20cắt','Kiểu\x20hình\x20dạng','Mũi\x20tên\x20trái\x20phải\x20lên','Hình\x20trụ','Nút\x20hành\x20động:\x20Chuyển\x20tiếp\x20hoặc\x20Tiếp\x20theo','Xóa\x20hình\x20dạng','Khác','Khung\x20một\x20nửa','Miếng\x20bánh','Vừa','Mặt\x20trời','Căn\x20đều\x20hai\x20bên','Bán\x20kính\x20góc','Cong','Chú\x20thích\x203','Lục\x20giác','Tô\x20màu','Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20chéo','Trên\x20phải','Chú\x20thích\x20nhấn\x20mạnh\x201','Dấu\x20cộng','Sao\x20và\x20Biểu\x20ngữ','Mũi\x20tên\x20khía\x20phải','Sao\x204\x20cánh','Mũi\x20tên\x20cong\x20xuống','Hình\x20quạt','Trống\x20từ','Gạch\x20chân','Chèn...','Mở\x20rộng\x20thanh\x20công\x20cụ\x20hình\x20dạng','Bù\x20trừ\x20Y','Chú\x20thích\x20mũi\x20tên\x20trái','Mũi\x20tên\x20cong\x20trái','Chỉ\x20số\x20trên','Nhập\x20thủ\x20công','Trích\x20dẫn','Mũi\x20tên\x20tròn','Sao\x2010\x20cánh','Băng\x20đục\x20lỗ','Biểu\x20đồ\x20X','Nút\x20hành\x20động:\x20Quay\x20lại\x20hoặc\x20Trước','Ngoặc\x20nhọn\x20trái','Dưới\x20phải','Sao\x2016\x20cánh','Định\x20dạng\x20hình\x20dạng','Dấu\x20bằng','Nét\x20đứt\x20dài\x20hai\x20chấm','Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20cùng\x20phía','Kiểu\x20đầu\x20mút','Chú\x20thích\x20đường\x20kẻ\x201','Hình\x20dạng','Thập\x20nhị\x20giác','Chấm\x20vuông','Thao\x20tác\x20thủ\x20công','Trên\x20và\x20dưới','Vị\x20trí\x20hình\x20dạng','Giữa','42381jRRpLg','Không\x20có','Sao\x2032\x20cánh','Hình\x20vuông','Danh\x20sách\x20công\x20việc','Hoặc','Căn\x20chỉnh','Ẩn\x20bảng\x20hình\x20dạng','Hình\x20chữ\x20nhật','Mặt\x20trăng','Phẳng','Hình\x20thang\x20không\x20cân','Thu\x20gọn\x20thanh\x20công\x20cụ\x20hình\x20dạng','Kiểu\x20chữ','Chú\x20thích\x20đám\x20mây','Quy\x20trình','Tab\x20góc','Chuyển\x20đổi\x20lật\x20ngang','Lưu\x20đồ','Chú\x20thích\x20hình\x20chữ\x20nhật','Kết\x20thúc','Nhọn','Ruy\x20băng\x20xuống','Chỉ\x20số\x20dưới','8121768CQClLP','Kiểu\x20nét\x20đứt','Nút\x20hành\x20động:\x20Phim','Chú\x20thích\x20mũi\x20tên\x20bốn\x20chiều','Mũi\x20tên\x20cong','Tiêu\x20đề\x205','Hình\x20lập\x20phương','308gvvUBe','Hình\x20cung','Hình\x20bánh\x20rán','Đám\x20mây','Không\x20có\x20đường\x20viền','Đầu\x20nối','Khung','Cuộn\x20ngang','Mũi\x20tên\x20kim\x20cương','Dưới','Sao\x207\x20cánh','Dưới\x20trái','59YtsPGn','Tỷ\x20lệ\x20X','Khối\x20mã','Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn','Cặp\x20ngoặc\x20nhọn','4253860qNPBRF','Mũi\x20tên\x20phải','Nhập\x20văn\x20bản','Màu\x20chữ','Hình\x20chữ\x20V','Mũi\x20tên\x20hở','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x201','Đường\x20nối\x20cong\x20có\x20mũi\x20tên','Chú\x20thích\x20mũi\x20tên\x20lên','Dấu\x20nhân','Quy\x20trình\x20xác\x20định\x20trước','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x203','Màu\x20nền\x20văn\x20bản','Hộp\x20văn\x20bản\x20dọc','3765657cCyyDr','Nút\x20hành\x20động:\x20Trợ\x20giúp','Ruy\x20băng\x20cong\x20xuống','Ruy\x20băng\x20trái\x20phải'];_0x4ff6=function(){return _0x4538ad;};return _0x4ff6();}
|
package/lib/umd/locale/zh-CN.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function _0x1e00(_0x12073a,_0x20a652){_0x12073a=_0x12073a-0xc7;var _0x4d7eb2=_0x4d7e();var _0x1e00eb=_0x4d7eb2[_0x12073a];return _0x1e00eb;}(function(_0x19204c,_0x4bfde5){var _0x594715=_0x1e00,_0x1005d8=_0x19204c();while(!![]){try{var _0xecb276=-parseInt(_0x594715(0x169))/0x1+-parseInt(_0x594715(0xea))/0x2*(parseInt(_0x594715(0xcc))/0x3)+parseInt(_0x594715(0x167))/0x4+-parseInt(_0x594715(0x136))/0x5+parseInt(_0x594715(0x130))/0x6*(parseInt(_0x594715(0xf1))/0x7)+parseInt(_0x594715(0xcd))/0x8*(-parseInt(_0x594715(0x162))/0x9)+parseInt(_0x594715(0xc7))/0xa;if(_0xecb276===_0x4bfde5)break;else _0x1005d8['push'](_0x1005d8['shift']());}catch(_0x5d0cc2){_0x1005d8['push'](_0x1005d8['shift']());}}}(_0x4d7e,0xc57af),function(_0x5e6789,_0x4bdbbe){var _0x4adfb2=_0x1e00;typeof exports==_0x4adfb2(0x126)&&typeof module<'u'?module[_0x4adfb2(0x11f)]=_0x4bdbbe():typeof define==_0x4adfb2(0x123)&&define[_0x4adfb2(0x14d)]?define([],_0x4bdbbe):(_0x5e6789=typeof globalThis<'u'?globalThis:_0x5e6789||self,_0x5e6789['UniverProShapeEditorUiZhCN']=_0x4bdbbe());}(this,function(){var _0x2aa012=_0x1e00;return{'shape-editor-ui':{'title':'形状','insertShape':_0x2aa012(0x108),'openPanel':'打开形状面板','deleteShape':_0x2aa012(0x115),'hidePanel':_0x2aa012(0xca),'formatShape':_0x2aa012(0x143),'shapeStyle':_0x2aa012(0x181),'shapePosition':_0x2aa012(0x176),'toggleFlipH':_0x2aa012(0xeb),'toggleFlipV':'切换垂直翻转','rotateRight90':_0x2aa012(0x172),'rotateLeft90':_0x2aa012(0xd6),'toggleTextVertical':_0x2aa012(0xdd),'textEditor':{'paragraphType':{'normal':'正文','heading1':_0x2aa012(0x146),'heading2':'标题2','heading3':_0x2aa012(0x11d),'heading4':'标题4','heading5':_0x2aa012(0x13c),'orderedList':_0x2aa012(0x161),'bulletList':'无序列表','checkList':'任务列表','quote':'引用','code':'代码块','callout':_0x2aa012(0x14f)}},'fill':{'title':'填充','noFill':'无颜色','solidFill':'纯色','gradientFill':'渐变','pictureFill':'图片','patternFill':_0x2aa012(0x160),'color':'颜色','transparency':'透明度','picture':{'source':_0x2aa012(0x104),'insert':_0x2aa012(0xf0),'tileAsTexture':_0x2aa012(0x103),'offsetX':'偏移量\x20X','offsetY':_0x2aa012(0x180),'scaleX':_0x2aa012(0x15a),'scaleY':_0x2aa012(0x134),'alignment':'对齐方式','rotateWithShape':'与形状一起旋转','align':{'tl':_0x2aa012(0xe6),'t':_0x2aa012(0x100),'tr':'右上对齐','l':_0x2aa012(0x10a),'ctr':_0x2aa012(0x131),'r':'右对齐','bl':_0x2aa012(0x12a),'b':_0x2aa012(0x11c),'br':_0x2aa012(0x12b)}}},'line':{'title':'线条','noLine':_0x2aa012(0x17e),'solidLine':'实线','gradientLine':_0x2aa012(0x148),'color':'颜色','transparency':_0x2aa012(0x12d),'width':'宽度','cornerRadius':_0x2aa012(0xc8),'dashType':{'title':'短划线类型','solid':'实线','roundDot':'圆点','squareDot':'方点','dash':'短划线','dashDot':_0x2aa012(0x164),'longDash':_0x2aa012(0x15c),'longDashDot':_0x2aa012(0x113),'longDashDotDot':_0x2aa012(0x138)},'capType':{'title':_0x2aa012(0x17d),'flat':'平面','round':'圆形','square':'方形'},'joinType':{'title':_0x2aa012(0xdb),'miter':'斜接','round':'圆形','bevel':'斜面'},'beginArrowType':_0x2aa012(0x128),'beginArrowSize':_0x2aa012(0x127),'endArrowType':_0x2aa012(0x102),'endArrowSize':'终点箭头大小','arrowType':{'none':'无','arrow':'箭头','openArrow':_0x2aa012(0x179),'stealthArrow':_0x2aa012(0x109),'diamondArrow':_0x2aa012(0x153),'ovalArrow':_0x2aa012(0x116)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x2aa012(0x10c),'none':'无','curved':'弯曲','freehand':'手绘','handDrawn':'潦草'}},'shape':{'group':{'line':'线条','rectangle':'矩形','basicShape':_0x2aa012(0x156),'blockArrow':_0x2aa012(0x111),'equationShape':_0x2aa012(0x16f),'flowchart':_0x2aa012(0x15f),'starAndBanner':_0x2aa012(0x16b),'callout':'标注','other':'其他'},'type':{'line':'直线','straight-connector1':'直线箭头','straight-connector2':_0x2aa012(0xee),'bent-connector3':'折线','bent-connector3-arrow1':_0x2aa012(0x17c),'bent-connector3-arrow2':_0x2aa012(0xfd),'curved-connector3':'曲线','curved-connector3-arrow1':_0x2aa012(0x10f),'curved-connector3-arrow2':_0x2aa012(0xcf),'rect':'矩形','round-rect':'圆角矩形','snip1-rect':'剪去单角矩形','snip2-same-rect':_0x2aa012(0x16a),'snip2-diag-rect':_0x2aa012(0x177),'snip-round-rect':_0x2aa012(0x13f),'round1-rect':_0x2aa012(0x132),'round2-same-rect':'矩形:圆顶角','round2-diag-rect':_0x2aa012(0xe1),'rect-textbox-horizontal':'横向文本框','rect-textbox-vertical':_0x2aa012(0xfe),'ellipse':'椭圆','triangle':_0x2aa012(0x14e),'rt-triangle':_0x2aa012(0xe7),'parallelogram':_0x2aa012(0x119),'trapezoid':'梯形','non-isosceles-trapezoid':_0x2aa012(0x16d),'diamond':'菱形','pentagon':_0x2aa012(0x150),'hexagon':_0x2aa012(0x168),'heptagon':_0x2aa012(0x125),'octagon':'八边形','decagon':'十边形','dodecagon':_0x2aa012(0x112),'pie':_0x2aa012(0x12c),'chord':'弦形','teardrop':'泪滴形','frame':_0x2aa012(0x149),'half-frame':_0x2aa012(0xe3),'corner':'L形','diag-stripe':'斜纹','plus':'十字形','plaque':_0x2aa012(0xfb),'can':_0x2aa012(0x105),'cube':'立方体','bevel':'矩形:棱台','donut':'圆:空心','no-smoking':_0x2aa012(0x137),'block-arc':'空心弧','folder-corner':'矩形:折角','smiley-face':'笑脸','heart':'心形','lightning-bolt':_0x2aa012(0x141),'sun':_0x2aa012(0xd9),'moon':_0x2aa012(0xd5),'cloud':'云形','arc':'弧形','bracket-pair':_0x2aa012(0x157),'brace-pair':_0x2aa012(0xde),'left-bracket':'左中括号','right-bracket':_0x2aa012(0x140),'left-brace':_0x2aa012(0x139),'right-brace':_0x2aa012(0xe9),'right-arrow':_0x2aa012(0x15b),'left-arrow':_0x2aa012(0x11b),'up-arrow':_0x2aa012(0xe5),'down-arrow':_0x2aa012(0xd4),'left-right-arrow':_0x2aa012(0xda),'up-down-arrow':'箭头:上下','quad-arrow':'箭头:十字','left-right-up-arrow':_0x2aa012(0xf6),'bent-arrow':_0x2aa012(0x110),'uturn-arrow':_0x2aa012(0x151),'left-up-arrow':_0x2aa012(0xd1),'bent-up-arrow':'箭头:直角上','curved-right-arrow':'箭头:右弧形','curved-left-arrow':'箭头:左弧形','curved-up-arrow':_0x2aa012(0xed),'curved-down-arrow':_0x2aa012(0x152),'striped-right-arrow':'箭头:虚尾','notched-right-arrow':_0x2aa012(0x165),'home-plate':_0x2aa012(0x150),'chevron':'箭头:V型','right-arrow-callout':_0x2aa012(0xcb),'down-arrow-callout':'标注:下箭头','left-arrow-callout':_0x2aa012(0xef),'up-arrow-callout':_0x2aa012(0x17f),'left-right-arrow-callout':_0x2aa012(0xec),'quad-arrow-callout':'标注:十字箭头','circular-arrow':_0x2aa012(0x12e),'math-plus':'加号','math-minus':'减号','math-multiply':'乘号','math-divide':'除号','math-equal':'等号','math-not-equal':_0x2aa012(0x173),'flow-chart-process':_0x2aa012(0x14c),'flow-chart-alternate-process':'流程图:可选过程','flow-chart-decision':_0x2aa012(0xd7),'flow-chart-input-output':_0x2aa012(0xf9),'flow-chart-predefined-process':_0x2aa012(0x14b),'flow-chart-internal-storage':'流程图:内部贮存','flow-chart-document':_0x2aa012(0x171),'flow-chart-multidocument':_0x2aa012(0x117),'flow-chart-terminator':_0x2aa012(0x107),'flow-chart-preparation':_0x2aa012(0xe2),'flow-chart-manual-input':_0x2aa012(0x147),'flow-chart-manual-operation':_0x2aa012(0xf7),'flow-chart-connector':_0x2aa012(0x182),'flow-chart-offpage-connector':_0x2aa012(0xff),'flow-chart-punched-card':_0x2aa012(0x13e),'flow-chart-punched-tape':_0x2aa012(0x142),'flow-chart-summing-junction':'流程图:汇总连接','flow-chart-or':_0x2aa012(0x17a),'flow-chart-collate':_0x2aa012(0x144),'flow-chart-sort':_0x2aa012(0xf5),'flow-chart-extract':_0x2aa012(0x17b),'flow-chart-merge':_0x2aa012(0x163),'flow-chart-online-storage':_0x2aa012(0x10e),'flow-chart-delay':'流程图:延期','flow-chart-magnetic-tape':_0x2aa012(0x16e),'flow-chart-magnetic-disk':'流程图:磁盘','flow-chart-magnetic-drum':_0x2aa012(0x158),'flow-chart-display':_0x2aa012(0x114),'irregular-seal1':'爆炸形:8pt','irregular-seal2':_0x2aa012(0xc9),'star4':_0x2aa012(0xfa),'star5':_0x2aa012(0x14a),'star6':'星形:六角','star7':_0x2aa012(0xf2),'star8':_0x2aa012(0x106),'star10':_0x2aa012(0x12f),'star12':_0x2aa012(0xce),'star16':_0x2aa012(0xe8),'star24':'星形:二十四角','star32':_0x2aa012(0xf8),'ribbon2':_0x2aa012(0x13a),'ribbon':_0x2aa012(0x10b),'ellipse-ribbon2':'带形:上凸弯','ellipse-ribbon':'带形:前凸弯','vertical-scroll':_0x2aa012(0x178),'horizontal-scroll':'卷形:水平','wave':'波形','double-wave':'双波形','wedge-rect-callout':_0x2aa012(0xf3),'wedge-round-rect-callout':'对话气泡:圆角矩形','wedge-ellipse-callout':'对话气泡:圆形','cloud-callout':_0x2aa012(0xdf),'border-callout1':'标注:线形','border-callout2':'标注:弯曲线形','border-callout3':'标注:双弯曲线形','accent-callout1':_0x2aa012(0x154),'accent-callout2':'标注:弯曲线形(带强调线)','accent-callout3':_0x2aa012(0x15d),'callout1':_0x2aa012(0x11e),'callout2':'标注:弯曲线形(无边框)','callout3':'标注:双弯曲线形(无边框)','accent-border-callout1':_0x2aa012(0x13d),'accent-border-callout2':_0x2aa012(0x174),'accent-border-callout3':_0x2aa012(0x135),'left-circular-arrow':_0x2aa012(0x183),'left-right-circular-arrow':_0x2aa012(0xd3),'swoosh-arrow':_0x2aa012(0x133),'left-right-ribbon':'左右带形','pie-wedge':'饼形楔','funnel':'漏斗','gear6':_0x2aa012(0x124),'gear9':_0x2aa012(0x170),'corner-tabs':'角标','action-button-back-previous':'返回/上一个按钮','action-button-forward-next':'前进/下一个按钮','action-button-beginning':_0x2aa012(0x175),'action-button-end':_0x2aa012(0x166),'action-button-home':'主页按钮','action-button-information':_0x2aa012(0xfc),'action-button-return':_0x2aa012(0x121),'action-button-movie':'电影按钮','action-button-document':_0x2aa012(0xe0),'action-button-sound':_0x2aa012(0xd8),'action-button-help':'帮助按钮','action-button-blank':_0x2aa012(0xdc),'chart-plus':_0x2aa012(0xf4),'chart-star':'图表星号','chart-x':_0x2aa012(0x13b),'flow-chart-offline-storage':_0x2aa012(0x120),'line-inv':'线反向','plaque-tabs':_0x2aa012(0x118),'square-tabs':_0x2aa012(0xe4),'up-down-arrow-callout':_0x2aa012(0x15e)}},'toolbar':{'expandShapeToolbar':'展开形状工具栏','collapseShapeToolbar':_0x2aa012(0xd2),'alignLeft':_0x2aa012(0x10a),'alignCenter':'居中对齐','alignRight':_0x2aa012(0x129),'alignJustify':_0x2aa012(0x16c),'bold':'粗体','italic':'斜体','underline':'下划线','strikethrough':_0x2aa012(0x184),'subscript':_0x2aa012(0x122),'superscript':'Superscript','textColor':_0x2aa012(0x159),'textBackgroundColor':_0x2aa012(0x101),'fillColor':_0x2aa012(0x145),'resetColor':'重置颜色'},'align':{'top':_0x2aa012(0x100),'middle':_0x2aa012(0xd0),'bottom':_0x2aa012(0x11c)},'textWrap':{'inline':_0x2aa012(0x155),'square':_0x2aa012(0x10d),'topAndBottom':_0x2aa012(0x11a),'behindText':'衬于文字下方','inFrontText':'浮于文字上方'},'crop':{'shape':'裁剪为形状'}}};}));function _0x4d7e(){var _0x4c8db0=['箭头:丁字','流程图:手动操作','星形:三十二角','流程图:数据','星形:四角','缺角矩形','信息按钮','双箭头折线','纵向文本框','流程图:离页连接符','顶部对齐','文字背景颜色','终点箭头类型','将图片平铺为纹理','图片源','圆柱形','星形:八角','流程图:终止','插入形状','隐形箭头','左对齐','带形:前凸','草绘样式','四周型','流程图:存储数据','曲线:箭头','箭头:圆角右','箭头总汇','十二边形','长划线-点','流程图:显示','删除形状','椭圆箭头','流程图:多文档','牌匾标签','平行四边形','上下型','箭头:左','底部对齐','标题3','标注:线形(无边框)','exports','流程图:离线存储','返回按钮','Subscript','function','6齿齿轮','七边形','object','起点箭头大小','起点箭头类型','右对齐','左下对齐','右下对齐','不完整圆','透明度','箭头:环形','星形:十角','996888iDGDgW','居中对齐','矩形:单圆角','弯曲箭头','刻度\x20Y','标注:双弯曲线形(带边框和强调线)','7118875VQNxvr','禁止符','长划线-点-点','左大括号','带形:上凸','图表X','标题5','标注:线形(带边框和强调线)','流程图:卡片','矩形:一个圆顶角,剪去另一个顶角','右中括号','闪电形','流程图:资料带','格式化形状','流程图:对照','文本背景色','标题1','流程图:手动输入','渐变线','图文框','星形:五角','流程图:预定义过程','流程图:过程','amd','等腰三角形','高亮框','五边形','箭头:手杖形','箭头:下弧形','菱形箭头','标注:线形(带强调线)','嵌入型','基本形状','双括号','流程图:直接访问存储器','文本颜色','刻度\x20X','箭头:右','长划线','标注:双弯曲线形(带强调线)','上下箭头标注','流程图','图案填充','有序列表','4460409SOlXHM','流程图:合并','短划线-点','箭头:燕尾形','结束按钮','1981040QgoGfi','六边形','401486ZDCMet','矩形:剪去顶角','星与旗帜','两端对齐','非等腰梯形','流程图:顺序访问存储器','公式形状','9齿齿轮','流程图:文档','顺时针90度旋转','不等号','标注:弯曲线形(带边框和强调线)','开始按钮','形状位置','矩形:剪去对角','卷形:垂直','开放箭头','流程图:或者','流程图:摘录','折线:箭头','端点类型','无线条','标注:上箭头','偏移量\x20Y','形状样式','流程图:接点','左圆形箭头','删除线','28677020EnRjpi','拐角半径','爆炸形:14pt','隐藏形状面板','标注:右箭头','645XfcyvZ','8AQqxab','星形:十二角','双箭头曲线','垂直居中','箭头:直角双向','收起形状工具栏','左右圆形箭头','箭头:下','新月形','逆时针90度旋转','流程图:决策','声音按钮','太阳形','箭头:左右','联接类型','空白按钮','切换文本竖排','双大括号','气泡:云','文档按钮','矩形:对角圆角','流程图:准备','半闭框','方形标签','箭头:上','左上对齐','直角三角形','星形:十六角','右大括号','14534xvXcBj','切换水平翻转','标注:左右箭头','箭头:上弧形','双箭头直线','标注:左箭头','插入...','56rsKYUr','星形:七角','对话气泡:矩形','图表加号','流程图:排序'];_0x4d7e=function(){return _0x4c8db0;};return _0x4d7e();}
|
|
1
|
+
function _0x54cb(_0x4c4224,_0x727ece){_0x4c4224=_0x4c4224-0x14d;var _0x681e36=_0x681e();var _0x54cb5d=_0x681e36[_0x4c4224];return _0x54cb5d;}function _0x681e(){var _0x3215cc=['刻度\x20X','格式化形状','等腰三角形','线反向','流程图:显示','带形:上凸弯','矩形:圆顶角','起点箭头大小','流程图:终止','空白按钮','流程图:决策','平行四边形','6756115uHQPJh','右大括号','22jRSgVj','偏移量\x20X','箭头:直角双向','形状位置','箭头:燕尾形','方形标签','切换水平翻转','文本颜色','短划线-点','圆:空心','标注:弯曲线形(无边框)','下划线','联接类型','箭头:左弧形','箭头:环形','起点箭头类型','展开形状工具栏','草绘样式','卷形:水平','左中括号','与形状一起旋转','切换垂直翻转','短划线','折线:箭头','对话气泡:圆形','标题3','流程图:直接访问存储器','箭头:虚尾','重置颜色','标注:线形','星形:十六角','裁剪为形状','箭头:下弧形','开放箭头','爆炸形:14pt','右下对齐','9齿齿轮','流程图:手动输入','星形:五角','标题4','流程图:手动操作','图表X','双箭头直线','泪滴形','流程图:对照','插入形状','标注:上箭头','流程图:排序','顺时针90度旋转','标注:双弯曲线形','amd','标注:弯曲线形(带强调线)','圆柱形','标注:线形(带强调线)','流程图:合并','任务列表','右对齐','椭圆箭头','图文框','端点类型','前进/下一个按钮','五边形','十二边形','空心弧','流程图:可选过程','拐角半径','十边形','流程图:顺序访问存储器','标注:线形(无边框)','矩形:棱台','终点箭头大小','长划线-点-点','箭头:左右','无线条','长划线-点','顶部对齐','箭头:上弧形','横向文本框','图表星号','双箭头折线','浮于文字上方','箭头:丁字','矩形:对角圆角','星形:八角','短划线类型','流程图:预定义过程','无序列表','箭头:右','双括号','纵向文本框','流程图:延期','箭头总汇','465069QJONuo','对齐方式','底部对齐','返回/上一个按钮','流程图:离页连接符','透明度','四周型','5180764VYvDvr','立方体','左下对齐','流程图:文档','卷形:垂直','箭头:右弧形','流程图:数据','公式形状','UniverProShapeEditorUiZhCN','流程图:多文档','曲线:箭头','八边形','爆炸形:8pt','左对齐','直线箭头','不等号','左上对齐','箭头:上下','标注:双弯曲线形(无边框)','流程图:卡片','帮助按钮','16914224DQYekr','星形:十角','矩形:单圆角','请输入文字','矩形:剪去对角','exports','删除形状','圆角矩形','流程图:存储数据','刻度\x20Y','文档按钮','高亮框','右中括号','流程图:接点','隐藏形状面板','标注:双弯曲线形(带边框和强调线)','插入...','流程图:或者','对话气泡:矩形','电影按钮','标注:双弯曲线形(带强调线)','上下型','左圆形箭头','气泡:云','箭头:十字','文字背景颜色','六边形','声音按钮','矩形:剪去顶角','箭头:直角上','标题1','删除线','太阳形','非等腰梯形','双箭头曲线','返回按钮','弯曲箭头','带形:前凸弯','标注:右箭头','切换文本竖排','标注:下箭头','代码块','收起形状工具栏','打开形状面板','逆时针90度旋转','流程图:离线存储','剪去单角矩形','开始按钮','左右圆形箭头','带形:前凸','将图片平铺为纹理','object','图案填充','两端对齐','364476IRHPKy','标注:弯曲线形','标注:左箭头','基本形状','结束按钮','图表加号','6齿齿轮','渐变线','文本背景色','有序列表','饼形楔','终点箭头类型','流程图:汇总连接','带形:上凸','标注:线形(带边框和强调线)','居中对齐','信息按钮','星形:七角','流程图:过程','长划线','矩形:折角','右上对齐','function','1036974LUPdtQ','2638140HYDXiN','箭头:圆角右','流程图','主页按钮'];_0x681e=function(){return _0x3215cc;};return _0x681e();}(function(_0x5ce8d5,_0xee4769){var _0x16d77a=_0x54cb,_0x165531=_0x5ce8d5();while(!![]){try{var _0x368d38=parseInt(_0x16d77a(0x17a))/0x1+-parseInt(_0x16d77a(0x18d))/0x2*(parseInt(_0x16d77a(0x1e9))/0x3)+parseInt(_0x16d77a(0x1f0))/0x4+-parseInt(_0x16d77a(0x18b))/0x5+-parseInt(_0x16d77a(0x17b))/0x6+-parseInt(_0x16d77a(0x163))/0x7+parseInt(_0x16d77a(0x205))/0x8;if(_0x368d38===_0xee4769)break;else _0x165531['push'](_0x165531['shift']());}catch(_0x4d6419){_0x165531['push'](_0x165531['shift']());}}}(_0x681e,0xdb4a1),function(_0x12d783,_0x20a16d){var _0x2d8a88=_0x54cb;typeof exports==_0x2d8a88(0x160)&&typeof module<'u'?module[_0x2d8a88(0x20a)]=_0x20a16d():typeof define==_0x2d8a88(0x179)&&define[_0x2d8a88(0x1bf)]?define([],_0x20a16d):(_0x12d783=typeof globalThis<'u'?globalThis:_0x12d783||self,_0x12d783[_0x2d8a88(0x1f8)]=_0x20a16d());}(this,function(){var _0x6cd0ef=_0x54cb;return{'shape-editor-ui':{'title':'形状','insertShape':_0x6cd0ef(0x1ba),'openPanel':_0x6cd0ef(0x158),'deleteShape':_0x6cd0ef(0x20b),'hidePanel':_0x6cd0ef(0x213),'formatShape':_0x6cd0ef(0x180),'shapeStyle':'形状样式','shapePosition':_0x6cd0ef(0x190),'toggleFlipH':_0x6cd0ef(0x193),'toggleFlipV':_0x6cd0ef(0x1a2),'rotateRight90':_0x6cd0ef(0x1bd),'rotateLeft90':_0x6cd0ef(0x159),'toggleTextVertical':_0x6cd0ef(0x154),'textEditor':{'placeholder':_0x6cd0ef(0x208),'paragraphType':{'normal':'正文','heading1':_0x6cd0ef(0x223),'heading2':'标题2','heading3':_0x6cd0ef(0x1a6),'heading4':_0x6cd0ef(0x1b4),'heading5':'标题5','orderedList':_0x6cd0ef(0x16c),'bulletList':_0x6cd0ef(0x1e3),'checkList':_0x6cd0ef(0x1c4),'quote':'引用','code':_0x6cd0ef(0x156),'callout':_0x6cd0ef(0x210)}},'fill':{'title':'填充','noFill':'无颜色','solidFill':'纯色','gradientFill':'渐变','pictureFill':'图片','patternFill':_0x6cd0ef(0x161),'color':'颜色','transparency':_0x6cd0ef(0x1ee),'picture':{'source':'图片源','insert':_0x6cd0ef(0x215),'tileAsTexture':_0x6cd0ef(0x15f),'offsetX':_0x6cd0ef(0x18e),'offsetY':'偏移量\x20Y','scaleX':_0x6cd0ef(0x17f),'scaleY':_0x6cd0ef(0x20e),'alignment':_0x6cd0ef(0x1ea),'rotateWithShape':_0x6cd0ef(0x1a1),'align':{'tl':_0x6cd0ef(0x200),'t':'顶部对齐','tr':_0x6cd0ef(0x178),'l':_0x6cd0ef(0x1fd),'ctr':_0x6cd0ef(0x172),'r':_0x6cd0ef(0x1c5),'bl':_0x6cd0ef(0x1f2),'b':'底部对齐','br':_0x6cd0ef(0x1b0)}}},'line':{'title':'线条','noLine':_0x6cd0ef(0x1d6),'solidLine':'实线','gradientLine':_0x6cd0ef(0x16a),'color':'颜色','transparency':'透明度','width':'宽度','cornerRadius':_0x6cd0ef(0x1ce),'dashType':{'title':_0x6cd0ef(0x1e1),'solid':'实线','roundDot':'圆点','squareDot':'方点','dash':_0x6cd0ef(0x1a3),'dashDot':_0x6cd0ef(0x195),'longDash':_0x6cd0ef(0x176),'longDashDot':_0x6cd0ef(0x1d7),'longDashDotDot':_0x6cd0ef(0x1d4)},'capType':{'title':_0x6cd0ef(0x1c8),'flat':'平面','round':'圆形','square':'方形'},'joinType':{'title':_0x6cd0ef(0x199),'miter':'斜接','round':'圆形','bevel':'斜面'},'beginArrowType':_0x6cd0ef(0x19c),'beginArrowSize':_0x6cd0ef(0x186),'endArrowType':_0x6cd0ef(0x16e),'endArrowSize':_0x6cd0ef(0x1d3),'arrowType':{'none':'无','arrow':'箭头','openArrow':_0x6cd0ef(0x1ae),'stealthArrow':'隐形箭头','diamondArrow':'菱形箭头','ovalArrow':_0x6cd0ef(0x1c6)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x6cd0ef(0x19e),'none':'无','curved':'弯曲','freehand':'手绘','handDrawn':'潦草'}},'shape':{'group':{'line':'线条','rectangle':'矩形','basicShape':_0x6cd0ef(0x166),'blockArrow':_0x6cd0ef(0x1e8),'equationShape':_0x6cd0ef(0x1f7),'flowchart':_0x6cd0ef(0x17d),'starAndBanner':'星与旗帜','callout':'标注','other':'其他'},'type':{'line':'直线','straight-connector1':_0x6cd0ef(0x1fe),'straight-connector2':_0x6cd0ef(0x1b7),'bent-connector3':'折线','bent-connector3-arrow1':_0x6cd0ef(0x1a4),'bent-connector3-arrow2':_0x6cd0ef(0x1dc),'curved-connector3':'曲线','curved-connector3-arrow1':_0x6cd0ef(0x1fa),'curved-connector3-arrow2':_0x6cd0ef(0x14f),'rect':'矩形','round-rect':_0x6cd0ef(0x20c),'snip1-rect':_0x6cd0ef(0x15b),'snip2-same-rect':_0x6cd0ef(0x221),'snip2-diag-rect':_0x6cd0ef(0x209),'snip-round-rect':'矩形:一个圆顶角,剪去另一个顶角','round1-rect':_0x6cd0ef(0x207),'round2-same-rect':_0x6cd0ef(0x185),'round2-diag-rect':_0x6cd0ef(0x1df),'rect-textbox-horizontal':_0x6cd0ef(0x1da),'rect-textbox-vertical':_0x6cd0ef(0x1e6),'ellipse':'椭圆','triangle':_0x6cd0ef(0x181),'rt-triangle':'直角三角形','parallelogram':_0x6cd0ef(0x18a),'trapezoid':'梯形','non-isosceles-trapezoid':_0x6cd0ef(0x14e),'diamond':'菱形','pentagon':_0x6cd0ef(0x1ca),'hexagon':_0x6cd0ef(0x21f),'heptagon':'七边形','octagon':_0x6cd0ef(0x1fb),'decagon':_0x6cd0ef(0x1cf),'dodecagon':_0x6cd0ef(0x1cb),'pie':'不完整圆','chord':'弦形','teardrop':_0x6cd0ef(0x1b8),'frame':_0x6cd0ef(0x1c7),'half-frame':'半闭框','corner':'L形','diag-stripe':'斜纹','plus':'十字形','plaque':'缺角矩形','can':_0x6cd0ef(0x1c1),'cube':_0x6cd0ef(0x1f1),'bevel':_0x6cd0ef(0x1d2),'donut':_0x6cd0ef(0x196),'no-smoking':'禁止符','block-arc':_0x6cd0ef(0x1cc),'folder-corner':_0x6cd0ef(0x177),'smiley-face':'笑脸','heart':'心形','lightning-bolt':'闪电形','sun':_0x6cd0ef(0x14d),'moon':'新月形','cloud':'云形','arc':'弧形','bracket-pair':_0x6cd0ef(0x1e5),'brace-pair':'双大括号','left-bracket':_0x6cd0ef(0x1a0),'right-bracket':_0x6cd0ef(0x211),'left-brace':'左大括号','right-brace':_0x6cd0ef(0x18c),'right-arrow':_0x6cd0ef(0x1e4),'left-arrow':'箭头:左','up-arrow':'箭头:上','down-arrow':'箭头:下','left-right-arrow':_0x6cd0ef(0x1d5),'up-down-arrow':_0x6cd0ef(0x201),'quad-arrow':_0x6cd0ef(0x21d),'left-right-up-arrow':_0x6cd0ef(0x1de),'bent-arrow':_0x6cd0ef(0x17c),'uturn-arrow':'箭头:手杖形','left-up-arrow':_0x6cd0ef(0x18f),'bent-up-arrow':_0x6cd0ef(0x222),'curved-right-arrow':_0x6cd0ef(0x1f5),'curved-left-arrow':_0x6cd0ef(0x19a),'curved-up-arrow':_0x6cd0ef(0x1d9),'curved-down-arrow':_0x6cd0ef(0x1ad),'striped-right-arrow':_0x6cd0ef(0x1a8),'notched-right-arrow':_0x6cd0ef(0x191),'home-plate':_0x6cd0ef(0x1ca),'chevron':'箭头:V型','right-arrow-callout':_0x6cd0ef(0x153),'down-arrow-callout':_0x6cd0ef(0x155),'left-arrow-callout':_0x6cd0ef(0x165),'up-arrow-callout':_0x6cd0ef(0x1bb),'left-right-arrow-callout':'标注:左右箭头','quad-arrow-callout':'标注:十字箭头','circular-arrow':_0x6cd0ef(0x19b),'math-plus':'加号','math-minus':'减号','math-multiply':'乘号','math-divide':'除号','math-equal':'等号','math-not-equal':_0x6cd0ef(0x1ff),'flow-chart-process':_0x6cd0ef(0x175),'flow-chart-alternate-process':_0x6cd0ef(0x1cd),'flow-chart-decision':_0x6cd0ef(0x189),'flow-chart-input-output':_0x6cd0ef(0x1f6),'flow-chart-predefined-process':_0x6cd0ef(0x1e2),'flow-chart-internal-storage':'流程图:内部贮存','flow-chart-document':_0x6cd0ef(0x1f3),'flow-chart-multidocument':_0x6cd0ef(0x1f9),'flow-chart-terminator':_0x6cd0ef(0x187),'flow-chart-preparation':'流程图:准备','flow-chart-manual-input':_0x6cd0ef(0x1b2),'flow-chart-manual-operation':_0x6cd0ef(0x1b5),'flow-chart-connector':_0x6cd0ef(0x212),'flow-chart-offpage-connector':_0x6cd0ef(0x1ed),'flow-chart-punched-card':_0x6cd0ef(0x203),'flow-chart-punched-tape':'流程图:资料带','flow-chart-summing-junction':_0x6cd0ef(0x16f),'flow-chart-or':_0x6cd0ef(0x216),'flow-chart-collate':_0x6cd0ef(0x1b9),'flow-chart-sort':_0x6cd0ef(0x1bc),'flow-chart-extract':'流程图:摘录','flow-chart-merge':_0x6cd0ef(0x1c3),'flow-chart-online-storage':_0x6cd0ef(0x20d),'flow-chart-delay':_0x6cd0ef(0x1e7),'flow-chart-magnetic-tape':_0x6cd0ef(0x1d0),'flow-chart-magnetic-disk':'流程图:磁盘','flow-chart-magnetic-drum':_0x6cd0ef(0x1a7),'flow-chart-display':_0x6cd0ef(0x183),'irregular-seal1':_0x6cd0ef(0x1fc),'irregular-seal2':_0x6cd0ef(0x1af),'star4':'星形:四角','star5':_0x6cd0ef(0x1b3),'star6':'星形:六角','star7':_0x6cd0ef(0x174),'star8':_0x6cd0ef(0x1e0),'star10':_0x6cd0ef(0x206),'star12':'星形:十二角','star16':_0x6cd0ef(0x1ab),'star24':'星形:二十四角','star32':'星形:三十二角','ribbon2':_0x6cd0ef(0x170),'ribbon':_0x6cd0ef(0x15e),'ellipse-ribbon2':_0x6cd0ef(0x184),'ellipse-ribbon':_0x6cd0ef(0x152),'vertical-scroll':_0x6cd0ef(0x1f4),'horizontal-scroll':_0x6cd0ef(0x19f),'wave':'波形','double-wave':'双波形','wedge-rect-callout':_0x6cd0ef(0x217),'wedge-round-rect-callout':'对话气泡:圆角矩形','wedge-ellipse-callout':_0x6cd0ef(0x1a5),'cloud-callout':_0x6cd0ef(0x21c),'border-callout1':_0x6cd0ef(0x1aa),'border-callout2':_0x6cd0ef(0x164),'border-callout3':_0x6cd0ef(0x1be),'accent-callout1':_0x6cd0ef(0x1c2),'accent-callout2':_0x6cd0ef(0x1c0),'accent-callout3':_0x6cd0ef(0x219),'callout1':_0x6cd0ef(0x1d1),'callout2':_0x6cd0ef(0x197),'callout3':_0x6cd0ef(0x202),'accent-border-callout1':_0x6cd0ef(0x171),'accent-border-callout2':'标注:弯曲线形(带边框和强调线)','accent-border-callout3':_0x6cd0ef(0x214),'left-circular-arrow':_0x6cd0ef(0x21b),'left-right-circular-arrow':_0x6cd0ef(0x15d),'swoosh-arrow':_0x6cd0ef(0x151),'left-right-ribbon':'左右带形','pie-wedge':_0x6cd0ef(0x16d),'funnel':'漏斗','gear6':_0x6cd0ef(0x169),'gear9':_0x6cd0ef(0x1b1),'corner-tabs':'角标','action-button-back-previous':_0x6cd0ef(0x1ec),'action-button-forward-next':_0x6cd0ef(0x1c9),'action-button-beginning':_0x6cd0ef(0x15c),'action-button-end':_0x6cd0ef(0x167),'action-button-home':_0x6cd0ef(0x17e),'action-button-information':_0x6cd0ef(0x173),'action-button-return':_0x6cd0ef(0x150),'action-button-movie':_0x6cd0ef(0x218),'action-button-document':_0x6cd0ef(0x20f),'action-button-sound':_0x6cd0ef(0x220),'action-button-help':_0x6cd0ef(0x204),'action-button-blank':_0x6cd0ef(0x188),'chart-plus':_0x6cd0ef(0x168),'chart-star':_0x6cd0ef(0x1db),'chart-x':_0x6cd0ef(0x1b6),'flow-chart-offline-storage':_0x6cd0ef(0x15a),'line-inv':_0x6cd0ef(0x182),'plaque-tabs':'牌匾标签','square-tabs':_0x6cd0ef(0x192),'up-down-arrow-callout':'上下箭头标注'}},'toolbar':{'expandShapeToolbar':_0x6cd0ef(0x19d),'collapseShapeToolbar':_0x6cd0ef(0x157),'alignLeft':_0x6cd0ef(0x1fd),'alignCenter':_0x6cd0ef(0x172),'alignRight':'右对齐','alignJustify':_0x6cd0ef(0x162),'bold':'粗体','italic':'斜体','underline':_0x6cd0ef(0x198),'strikethrough':_0x6cd0ef(0x224),'subscript':'下标','superscript':'上标','textColor':_0x6cd0ef(0x194),'textBackgroundColor':_0x6cd0ef(0x21e),'fillColor':_0x6cd0ef(0x16b),'resetColor':_0x6cd0ef(0x1a9),'typography':'排版'},'align':{'top':_0x6cd0ef(0x1d8),'middle':'垂直居中','bottom':_0x6cd0ef(0x1eb)},'textWrap':{'inline':'嵌入型','square':_0x6cd0ef(0x1ef),'topAndBottom':_0x6cd0ef(0x21a),'behindText':'衬于文字下方','inFrontText':_0x6cd0ef(0x1dd)},'crop':{'shape':_0x6cd0ef(0x1ac)}}};}));
|
package/lib/umd/locale/zh-HK.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(_0x174be8,_0xe2eba5){var _0x3909e0=_0x50b2,_0xc6bae8=_0x174be8();while(!![]){try{var _0x2d8788=parseInt(_0x3909e0(0x200))/0x1+-parseInt(_0x3909e0(0x1f8))/0x2*(-parseInt(_0x3909e0(0x169))/0x3)+-parseInt(_0x3909e0(0x1c1))/0x4+parseInt(_0x3909e0(0x1a0))/0x5*(parseInt(_0x3909e0(0x188))/0x6)+parseInt(_0x3909e0(0x1d1))/0x7+-parseInt(_0x3909e0(0x1a4))/0x8*(parseInt(_0x3909e0(0x211))/0x9)+-parseInt(_0x3909e0(0x1d8))/0xa;if(_0x2d8788===_0xe2eba5)break;else _0xc6bae8['push'](_0xc6bae8['shift']());}catch(_0x57ceac){_0xc6bae8['push'](_0xc6bae8['shift']());}}}(_0x4588,0xdfc16),function(_0x2444c0,_0x4cc0b0){var _0x59c575=_0x50b2;typeof exports==_0x59c575(0x1c5)&&typeof module<'u'?module[_0x59c575(0x203)]=_0x4cc0b0():typeof define==_0x59c575(0x16e)&&define[_0x59c575(0x1a8)]?define([],_0x4cc0b0):(_0x2444c0=typeof globalThis<'u'?globalThis:_0x2444c0||self,_0x2444c0[_0x59c575(0x15f)]=_0x4cc0b0());}(this,function(){var _0x4a44f6=_0x50b2;return{'shape-editor-ui':{'title':'形狀','insertShape':'插入形狀','openPanel':'打開形狀面板','deleteShape':_0x4a44f6(0x1d9),'hidePanel':_0x4a44f6(0x1b3),'formatShape':'格式化形狀','shapeStyle':_0x4a44f6(0x18c),'shapePosition':'圖形位置','toggleFlipH':'切換水平翻轉','toggleFlipV':_0x4a44f6(0x18d),'rotateRight90':_0x4a44f6(0x1ea),'rotateLeft90':_0x4a44f6(0x1c3),'toggleTextVertical':'切換文本豎排','textEditor':{'paragraphType':{'normal':'正文','heading1':_0x4a44f6(0x198),'heading2':_0x4a44f6(0x19b),'heading3':_0x4a44f6(0x1e1),'heading4':_0x4a44f6(0x18b),'heading5':_0x4a44f6(0x16b),'orderedList':_0x4a44f6(0x1ce),'bulletList':_0x4a44f6(0x196),'checkList':'任務列表','quote':'引用','code':_0x4a44f6(0x208),'callout':'醒目提示框'}},'fill':{'title':'填充','noFill':_0x4a44f6(0x162),'solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':_0x4a44f6(0x175),'color':'顏色','transparency':_0x4a44f6(0x182),'picture':{'source':_0x4a44f6(0x15a),'insert':_0x4a44f6(0x190),'tileAsTexture':_0x4a44f6(0x1d5),'offsetX':'偏移量\x20X','offsetY':_0x4a44f6(0x1e9),'scaleX':'縮放\x20X','scaleY':'縮放\x20Y','alignment':_0x4a44f6(0x18a),'rotateWithShape':_0x4a44f6(0x1c8),'align':{'tl':_0x4a44f6(0x173),'t':_0x4a44f6(0x1f7),'tr':_0x4a44f6(0x155),'l':_0x4a44f6(0x16f),'ctr':_0x4a44f6(0x170),'r':_0x4a44f6(0x156),'bl':'左下對齊','b':_0x4a44f6(0x1d3),'br':_0x4a44f6(0x183)}}},'line':{'title':'線條','noLine':_0x4a44f6(0x1ac),'solidLine':'實線','gradientLine':_0x4a44f6(0x1d4),'color':'顏色','transparency':_0x4a44f6(0x182),'width':'寬度','cornerRadius':'拐角半徑','dashType':{'title':_0x4a44f6(0x191),'solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':_0x4a44f6(0x16d),'longDash':_0x4a44f6(0x1c2),'longDashDot':_0x4a44f6(0x17e),'longDashDotDot':_0x4a44f6(0x1a9)},'capType':{'title':_0x4a44f6(0x161),'flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':_0x4a44f6(0x1b8),'miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':_0x4a44f6(0x1a5),'beginArrowSize':_0x4a44f6(0x1fe),'endArrowType':_0x4a44f6(0x160),'endArrowSize':_0x4a44f6(0x213),'arrowType':{'none':'無','arrow':'箭頭','openArrow':_0x4a44f6(0x194),'stealthArrow':_0x4a44f6(0x1b4),'diamondArrow':'菱形箭頭','ovalArrow':_0x4a44f6(0x19f)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x4a44f6(0x174),'none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':_0x4a44f6(0x179),'blockArrow':_0x4a44f6(0x1f3),'equationShape':_0x4a44f6(0x1ad),'flowchart':_0x4a44f6(0x193),'starAndBanner':_0x4a44f6(0x1f9),'callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':'直線箭頭','straight-connector2':_0x4a44f6(0x152),'bent-connector3':'折線','bent-connector3-arrow1':_0x4a44f6(0x1cf),'bent-connector3-arrow2':'雙箭頭折線','curved-connector3':'曲線','curved-connector3-arrow1':_0x4a44f6(0x1a3),'curved-connector3-arrow2':_0x4a44f6(0x176),'rect':'矩形','round-rect':'圓角矩形','snip1-rect':'剪去單角矩形','snip2-same-rect':'矩形:剪去頂角','snip2-diag-rect':_0x4a44f6(0x19a),'snip-round-rect':_0x4a44f6(0x1f4),'round1-rect':'矩形:單圓角','round2-same-rect':_0x4a44f6(0x1d0),'round2-diag-rect':_0x4a44f6(0x171),'rect-textbox-horizontal':'橫向文字方塊','rect-textbox-vertical':_0x4a44f6(0x1d6),'ellipse':'橢圓','triangle':'等腰三角形','rt-triangle':'直角三角形','parallelogram':'平行四邊形','trapezoid':'梯形','non-isosceles-trapezoid':_0x4a44f6(0x1ec),'diamond':'菱形','pentagon':'五邊形','hexagon':_0x4a44f6(0x195),'heptagon':_0x4a44f6(0x181),'octagon':'八邊形','decagon':_0x4a44f6(0x19c),'dodecagon':_0x4a44f6(0x192),'pie':_0x4a44f6(0x1ee),'chord':'弦形','teardrop':_0x4a44f6(0x1be),'frame':_0x4a44f6(0x1dc),'half-frame':_0x4a44f6(0x1af),'corner':'L形','diag-stripe':'斜紋','plus':_0x4a44f6(0x204),'plaque':_0x4a44f6(0x207),'can':_0x4a44f6(0x212),'cube':_0x4a44f6(0x1b7),'bevel':_0x4a44f6(0x1ba),'donut':'圓:空心','no-smoking':_0x4a44f6(0x16a),'block-arc':_0x4a44f6(0x154),'folder-corner':_0x4a44f6(0x201),'smiley-face':'笑臉','heart':'心形','lightning-bolt':_0x4a44f6(0x15e),'sun':'太陽形','moon':_0x4a44f6(0x168),'cloud':'雲形','arc':'弧形','bracket-pair':'雙括號','brace-pair':_0x4a44f6(0x18f),'left-bracket':'左中括號','right-bracket':_0x4a44f6(0x1c6),'left-brace':'左大括號','right-brace':_0x4a44f6(0x1e7),'right-arrow':_0x4a44f6(0x1c9),'left-arrow':_0x4a44f6(0x16c),'up-arrow':_0x4a44f6(0x1ab),'down-arrow':'箭頭:下','left-right-arrow':_0x4a44f6(0x1b5),'up-down-arrow':'箭頭:上下','quad-arrow':_0x4a44f6(0x1b0),'left-right-up-arrow':'箭頭:丁字','bent-arrow':'箭頭:圓角右','uturn-arrow':'箭頭:手杖形','left-up-arrow':_0x4a44f6(0x1cb),'bent-up-arrow':'箭頭:直角上','curved-right-arrow':'箭頭:右弧形','curved-left-arrow':_0x4a44f6(0x15c),'curved-up-arrow':_0x4a44f6(0x197),'curved-down-arrow':_0x4a44f6(0x206),'striped-right-arrow':'箭頭:虛尾','notched-right-arrow':_0x4a44f6(0x1c7),'home-plate':_0x4a44f6(0x1fd),'chevron':_0x4a44f6(0x1ae),'right-arrow-callout':_0x4a44f6(0x1b1),'down-arrow-callout':_0x4a44f6(0x1fb),'left-arrow-callout':_0x4a44f6(0x209),'up-arrow-callout':'標註:上箭頭','left-right-arrow-callout':_0x4a44f6(0x20e),'quad-arrow-callout':'標註:十字箭頭','circular-arrow':_0x4a44f6(0x1bf),'math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':'不等號','flow-chart-process':'流程圖:過程','flow-chart-alternate-process':'流程圖:可選過程','flow-chart-decision':_0x4a44f6(0x159),'flow-chart-input-output':_0x4a44f6(0x1a2),'flow-chart-predefined-process':_0x4a44f6(0x17a),'flow-chart-internal-storage':_0x4a44f6(0x166),'flow-chart-document':_0x4a44f6(0x202),'flow-chart-multidocument':_0x4a44f6(0x15d),'flow-chart-terminator':'流程圖:終止','flow-chart-preparation':_0x4a44f6(0x210),'flow-chart-manual-input':_0x4a44f6(0x1e2),'flow-chart-manual-operation':_0x4a44f6(0x1ef),'flow-chart-connector':_0x4a44f6(0x1aa),'flow-chart-offpage-connector':'流程圖:離頁連接符','flow-chart-punched-card':_0x4a44f6(0x17d),'flow-chart-punched-tape':_0x4a44f6(0x18e),'flow-chart-summing-junction':'流程圖:匯總連接','flow-chart-or':_0x4a44f6(0x184),'flow-chart-collate':_0x4a44f6(0x1eb),'flow-chart-sort':_0x4a44f6(0x1de),'flow-chart-extract':_0x4a44f6(0x187),'flow-chart-merge':_0x4a44f6(0x1b2),'flow-chart-online-storage':_0x4a44f6(0x1d7),'flow-chart-delay':_0x4a44f6(0x180),'flow-chart-magnetic-tape':'流程圖:順序訪問存儲器','flow-chart-magnetic-disk':_0x4a44f6(0x1df),'flow-chart-magnetic-drum':_0x4a44f6(0x1a1),'flow-chart-display':_0x4a44f6(0x1e8),'irregular-seal1':'爆炸形:8pt','irregular-seal2':_0x4a44f6(0x172),'star4':'星形:四角','star5':'星形:五角','star6':'星形:六角','star7':_0x4a44f6(0x157),'star8':_0x4a44f6(0x1db),'star10':'星形:十角','star12':_0x4a44f6(0x153),'star16':_0x4a44f6(0x178),'star24':_0x4a44f6(0x19d),'star32':_0x4a44f6(0x1e0),'ribbon2':_0x4a44f6(0x19e),'ribbon':_0x4a44f6(0x1c4),'ellipse-ribbon2':_0x4a44f6(0x20a),'ellipse-ribbon':_0x4a44f6(0x1dd),'vertical-scroll':_0x4a44f6(0x163),'horizontal-scroll':_0x4a44f6(0x165),'wave':'波形','double-wave':_0x4a44f6(0x205),'wedge-rect-callout':_0x4a44f6(0x1a6),'wedge-round-rect-callout':_0x4a44f6(0x1cc),'wedge-ellipse-callout':_0x4a44f6(0x1fa),'cloud-callout':'氣泡:雲','border-callout1':_0x4a44f6(0x177),'border-callout2':'標註:彎曲線形','border-callout3':'標註:雙彎曲線形','accent-callout1':_0x4a44f6(0x186),'accent-callout2':_0x4a44f6(0x1a7),'accent-callout3':_0x4a44f6(0x1e6),'callout1':_0x4a44f6(0x1f6),'callout2':_0x4a44f6(0x17b),'callout3':_0x4a44f6(0x17f),'accent-border-callout1':_0x4a44f6(0x199),'accent-border-callout2':_0x4a44f6(0x15b),'accent-border-callout3':_0x4a44f6(0x20c),'left-circular-arrow':_0x4a44f6(0x185),'left-right-circular-arrow':_0x4a44f6(0x1fc),'swoosh-arrow':_0x4a44f6(0x167),'left-right-ribbon':'左右帶形','pie-wedge':_0x4a44f6(0x1e3),'funnel':'漏斗','gear6':'6齒齒輪','gear9':_0x4a44f6(0x1e4),'corner-tabs':'角標','action-button-back-previous':_0x4a44f6(0x1f5),'action-button-forward-next':_0x4a44f6(0x1f2),'action-button-beginning':'開始按鈕','action-button-end':_0x4a44f6(0x1e5),'action-button-home':_0x4a44f6(0x1ca),'action-button-information':'信息按鈕','action-button-return':_0x4a44f6(0x1da),'action-button-movie':_0x4a44f6(0x20f),'action-button-document':_0x4a44f6(0x20d),'action-button-sound':_0x4a44f6(0x1f1),'action-button-help':'幫助按鈕','action-button-blank':'空白按鈕','chart-plus':_0x4a44f6(0x1ff),'chart-star':'圖表星號','chart-x':'圖表X','flow-chart-offline-storage':_0x4a44f6(0x1bb),'line-inv':'線反向','plaque-tabs':_0x4a44f6(0x1d2),'square-tabs':_0x4a44f6(0x1c0),'up-down-arrow-callout':'上下箭頭標註'}},'toolbar':{'expandShapeToolbar':_0x4a44f6(0x20b),'collapseShapeToolbar':_0x4a44f6(0x1ed),'alignLeft':'左對齊','alignCenter':_0x4a44f6(0x1bc),'alignRight':_0x4a44f6(0x156),'alignJustify':_0x4a44f6(0x1f0),'bold':'粗體','italic':'斜體','underline':'底線','strikethrough':'刪除線','subscript':_0x4a44f6(0x164),'superscript':_0x4a44f6(0x1cd),'textColor':_0x4a44f6(0x1b6),'textBackgroundColor':_0x4a44f6(0x189),'fillColor':_0x4a44f6(0x1b9),'resetColor':_0x4a44f6(0x17c)},'align':{'top':_0x4a44f6(0x1f7),'middle':_0x4a44f6(0x1bd),'bottom':'底部對齊'},'textWrap':{'inline':'與文字排列','square':'矩形','topAndBottom':_0x4a44f6(0x158),'behindText':'文字在前','inFrontText':'文字在後'},'crop':{'shape':'裁切為形狀'}}};}));function _0x50b2(_0x3886ac,_0x33b32c){_0x3886ac=_0x3886ac-0x152;var _0x458855=_0x4588();var _0x50b2ba=_0x458855[_0x3886ac];return _0x50b2ba;}function _0x4588(){var _0x197cd7=['草繪樣式','圖案填充','雙箭頭曲線','標註:線形','星形:十六角','基本形狀','流程圖:預定義過程','標註:彎曲線形(無邊框)','重置顏色','流程圖:卡片','長虛線-點','標註:雙彎曲線形(無邊框)','流程圖:延期','七邊形','透明度','右下對齊','流程圖:或者','左圓形箭頭','標註:線形(帶強調線)','流程圖:摘錄','8203674KqgUnV','Text\x20Background\x20color','對齊方式','標題\x204','圖形樣式','切換垂直翻轉','流程圖:資料帶','雙大括號','插入...','虛線類型','十二邊形','流程圖','開放箭頭','六邊形','無序列表','箭頭:上弧形','標題\x201','標註:線形(帶邊框和強調線)','矩形:剪去對角','標題\x202','十邊形','星形:二十四角','帶形:上凸','橢圓箭頭','5uHZnvC','流程圖:直接訪問存儲器','流程圖:數據','曲線:箭頭','8IsOJWB','起點箭頭類型','對話氣泡:矩形','標註:彎曲線形(帶強調線)','amd','長虛線-點-點','流程圖:接點','箭頭:上','無線條','公式形狀','箭頭:V型','半閉框','箭頭:十字','標註:右箭頭','流程圖:合併','隱藏形狀面板','隱形箭頭','箭頭:左右','文字顏色','立方體','聯接類型','文字背景色','矩形:棱台','流程圖:離線存儲','居中對齊','垂直居中','淚滴形','箭頭:環形','方形標籤','2011596DRrVwz','長虛線','逆時針\x2090\x20度旋轉','帶形:前凸','object','右中括號','箭頭:燕尾形','隨形狀旋轉','箭頭:右','主頁按鈕','箭頭:直角雙向','對話氣泡:圓角矩形','Superscript','有序列表','折線:箭頭','矩形:圓頂角','6672183CPwZbJ','牌匾標籤','底部對齊','漸層線','將圖片平鋪為紋理','縱向文字方塊','流程圖:存儲數據','34441100ZSkhEg','刪除形狀','返回按鈕','星形:八角','圖文框','帶形:前凸彎','流程圖:排序','流程圖:磁盤','星形:三十二角','標題\x203','流程圖:手動輸入','餅形楔','9齒齒輪','結束按鈕','標註:雙彎曲線形(帶強調線)','右大括號','流程圖:顯示','偏移量\x20Y','順時針\x2090\x20度旋轉','流程圖:對照','非等腰梯形','收起形狀工具列','不完整圓','流程圖:手動操作','兩端對齊','聲音按鈕','前進/下一個按鈕','箭頭總匯','矩形:一個圓頂角,剪去另一個頂角','返回/上一個按鈕','標註:線形(無邊框)','頂部對齊','1130PWUnTb','星與旗幟','對話氣泡:圓形','標註:下箭頭','左右圓形箭頭','五邊形','起點箭頭大小','圖表加號','1145912zMKfjV','矩形:折角','流程圖:文檔','exports','十字形','雙波形','箭頭:下弧形','缺角矩形','程式碼區塊','標註:左箭頭','帶形:上凸彎','展開形狀工具列','標註:雙彎曲線形(帶邊框和強調線)','文檔按鈕','標註:左右箭頭','電影按鈕','流程圖:準備','2507751dWKWMi','圓柱形','終點箭頭大小','雙箭頭直線','星形:十二角','空心弧','右上對齊','右對齊','星形:七角','上及下','流程圖:決策','圖片來源','標註:彎曲線形(帶邊框和強調線)','箭頭:左弧形','流程圖:多文檔','閃電形','UniverProShapeEditorUiZhHK','終點箭頭類型','端點類型','無顏色','卷形:垂直','Subscript','卷形:水平','流程圖:內部貯存','彎曲箭頭','新月形','8898SLhQzt','禁止符','標題\x205','箭頭:左','虛線-點','function','左對齊','置中對齊','矩形:對角圓角','爆炸形:14pt','左上對齊'];_0x4588=function(){return _0x197cd7;};return _0x4588();}
|
|
1
|
+
function _0x388c(_0x3b8e1e,_0x1897e7){_0x3b8e1e=_0x3b8e1e-0x144;var _0x596d14=_0x596d();var _0x388c4f=_0x596d14[_0x3b8e1e];return _0x388c4f;}function _0x596d(){var _0xf9ccf=['右大括號','箭頭:上下','矩形:圓頂角','星形:十六角','圖案填充','七邊形','格式化形狀','返回按鈕','閃電形','請輸入文字','箭頭:右','箭頭:手杖形','直角三角形','草繪樣式','矩形:棱台','左對齊','1169985hEoEUA','空白按鈕','標題\x205','立方體','縮放\x20Y','缺角矩形','虛線-點','左中括號','帶形:上凸彎','流程圖:離頁連接符','流程圖:磁盤','矩形:單圓角','虛線類型','標註:右箭頭','牌匾標籤','右對齊','卷形:水平','刪除形狀','隨形狀旋轉','流程圖:延期','長虛線-點-點','爆炸形:14pt','矩形:對角圓角','星與旗幟','標註:線形','八邊形','橫向文字方塊','箭頭:左','箭頭:上弧形','標註:下箭頭','上下箭頭標註','切換垂直翻轉','裁切為形狀','162106fDdEyT','剪去單角矩形','橢圓箭頭','右下對齊','流程圖:接點','流程圖','彎曲箭頭','箭頭:V型','插入形狀','星形:八角','刪除線','淚滴形','箭頭:下弧形','透明度','十二邊形','幫助按鈕','流程圖:卡片','雙括號','流程圖:資料帶','雙箭頭曲線','聯接類型','雙箭頭直線','流程圖:多文檔','左上對齊','流程圖:過程','箭頭:右弧形','標註:彎曲線形(無邊框)','標註:雙彎曲線形(帶邊框和強調線)','隱形箭頭','流程圖:存儲數據','無序列表','新月形','標註:線形(無邊框)','文字在前','順時針\x2090\x20度旋轉','星形:七角','流程圖:或者','有序列表','五邊形','禁止符','長虛線-點','縱向文字方塊','流程圖:數據','箭頭:下','頂部對齊','2USLTqP','function','氣泡:雲','文字背景色','流程圖:顯示','星形:五角','帶形:上凸','折線:箭頭','起點箭頭大小','右上對齊','拐角半徑','左圓形箭頭','直線箭頭','對話氣泡:矩形','箭頭:燕尾形','流程圖:決策','流程圖:匯總連接','隱藏形狀面板','標註:左右箭頭','等腰三角形','流程圖:直接訪問存儲器','星形:十二角','菱形箭頭','對話氣泡:圓角矩形','方形標籤','標註:線形(帶邊框和強調線)','打開形狀面板','前進/下一個按鈕','箭頭:左弧形','起點箭頭類型','圓角矩形','結束按鈕','流程圖:內部貯存','圖表星號','流程圖:準備','流程圖:文檔','箭頭:丁字','矩形:剪去對角','縮放\x20X','端點類型','文字在後','23859627slcuAA','六邊形','收起形狀工具列','插入...','返回/上一個按鈕','開始按鈕','282ZOMiBA','圖形位置','將圖片平鋪為紋理','程式碼區塊','終點箭頭類型','星形:六角','5112268NfEkKv','8Hhypfk','圖文框','任務列表','標題\x202','流程圖:摘錄','主頁按鈕','標題\x201','兩端對齊','5SKBdtQ','矩形:折角','餅形楔','標註:雙彎曲線形(無邊框)','文檔按鈕','圖表X','對話氣泡:圓形','卷形:垂直','流程圖:手動操作','星形:十角','流程圖:對照','標題\x203','電影按鈕','醒目提示框','流程圖:終止','5061429OQvfuk','3197850TAvdIw','居中對齊','上及下','1711461zELnev','6齒齒輪','圖形樣式','星形:三十二角','UniverProShapeEditorUiZhHK','無線條','星形:四角','標註:彎曲線形','偏移量\x20X','切換文本豎排','雙大括號','箭頭:虛尾','標註:十字箭頭','箭頭:十字','標註:線形(帶強調線)','箭頭:上','雙箭頭折線','帶形:前凸彎','object','逆時針\x2090\x20度旋轉','圖表加號','文字背景顏色','右中括號','exports','終點箭頭大小','長虛線'];_0x596d=function(){return _0xf9ccf;};return _0x596d();}(function(_0x30ad9b,_0x40af7b){var _0x3a0815=_0x388c,_0x5f0757=_0x30ad9b();while(!![]){try{var _0x523ce4=parseInt(_0x3a0815(0x1ea))/0x1+parseInt(_0x3a0815(0x16f))/0x2*(parseInt(_0x3a0815(0x1c0))/0x3)+-parseInt(_0x3a0815(0x1a4))/0x4*(-parseInt(_0x3a0815(0x1ad))/0x5)+parseInt(_0x3a0815(0x19e))/0x6*(-parseInt(_0x3a0815(0x20b))/0x7)+parseInt(_0x3a0815(0x1a5))/0x8*(parseInt(_0x3a0815(0x1bc))/0x9)+parseInt(_0x3a0815(0x1bd))/0xa+-parseInt(_0x3a0815(0x198))/0xb;if(_0x523ce4===_0x40af7b)break;else _0x5f0757['push'](_0x5f0757['shift']());}catch(_0x4be7f1){_0x5f0757['push'](_0x5f0757['shift']());}}}(_0x596d,0x9d096),function(_0x3dac2e,_0x3a7209){var _0x476afe=_0x388c;typeof exports==_0x476afe(0x1d2)&&typeof module<'u'?module[_0x476afe(0x1d7)]=_0x3a7209():typeof define==_0x476afe(0x170)&&define['amd']?define([],_0x3a7209):(_0x3dac2e=typeof globalThis<'u'?globalThis:_0x3dac2e||self,_0x3dac2e[_0x476afe(0x1c4)]=_0x3a7209());}(this,function(){var _0xa66afa=_0x388c;return{'shape-editor-ui':{'title':'形狀','insertShape':_0xa66afa(0x14a),'openPanel':_0xa66afa(0x189),'deleteShape':_0xa66afa(0x1fb),'hidePanel':_0xa66afa(0x180),'formatShape':_0xa66afa(0x1e0),'shapeStyle':_0xa66afa(0x1c2),'shapePosition':_0xa66afa(0x19f),'toggleFlipH':'切換水平翻轉','toggleFlipV':_0xa66afa(0x209),'rotateRight90':_0xa66afa(0x164),'rotateLeft90':_0xa66afa(0x1d3),'toggleTextVertical':_0xa66afa(0x1c9),'textEditor':{'placeholder':_0xa66afa(0x1e3),'paragraphType':{'normal':'正文','heading1':_0xa66afa(0x1ab),'heading2':_0xa66afa(0x1a8),'heading3':_0xa66afa(0x1b8),'heading4':'標題\x204','heading5':_0xa66afa(0x1ec),'orderedList':_0xa66afa(0x167),'bulletList':_0xa66afa(0x160),'checkList':_0xa66afa(0x1a7),'quote':'引用','code':_0xa66afa(0x1a1),'callout':_0xa66afa(0x1ba)}},'fill':{'title':'填充','noFill':'無顏色','solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':_0xa66afa(0x1de),'color':'顏色','transparency':_0xa66afa(0x14f),'picture':{'source':'圖片來源','insert':_0xa66afa(0x19b),'tileAsTexture':_0xa66afa(0x1a0),'offsetX':_0xa66afa(0x1c8),'offsetY':'偏移量\x20Y','scaleX':_0xa66afa(0x195),'scaleY':_0xa66afa(0x1ee),'alignment':'對齊方式','rotateWithShape':_0xa66afa(0x1fc),'align':{'tl':_0xa66afa(0x159),'t':_0xa66afa(0x16e),'tr':_0xa66afa(0x178),'l':_0xa66afa(0x1e9),'ctr':'置中對齊','r':_0xa66afa(0x1f9),'bl':'左下對齊','b':'底部對齊','br':_0xa66afa(0x145)}}},'line':{'title':'線條','noLine':_0xa66afa(0x1c5),'solidLine':'實線','gradientLine':'漸層線','color':'顏色','transparency':_0xa66afa(0x14f),'width':'寬度','cornerRadius':_0xa66afa(0x179),'dashType':{'title':_0xa66afa(0x1f6),'solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':_0xa66afa(0x1f0),'longDash':_0xa66afa(0x1d9),'longDashDot':_0xa66afa(0x16a),'longDashDotDot':_0xa66afa(0x1fe)},'capType':{'title':_0xa66afa(0x196),'flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':_0xa66afa(0x156),'miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':_0xa66afa(0x18c),'beginArrowSize':_0xa66afa(0x177),'endArrowType':_0xa66afa(0x1a2),'endArrowSize':_0xa66afa(0x1d8),'arrowType':{'none':'無','arrow':'箭頭','openArrow':'開放箭頭','stealthArrow':_0xa66afa(0x15e),'diamondArrow':_0xa66afa(0x185),'ovalArrow':_0xa66afa(0x144)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0xa66afa(0x1e7),'none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':'基本形狀','blockArrow':'箭頭總匯','equationShape':'公式形狀','flowchart':_0xa66afa(0x147),'starAndBanner':_0xa66afa(0x201),'callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':_0xa66afa(0x17b),'straight-connector2':_0xa66afa(0x157),'bent-connector3':'折線','bent-connector3-arrow1':_0xa66afa(0x176),'bent-connector3-arrow2':_0xa66afa(0x1d0),'curved-connector3':'曲線','curved-connector3-arrow1':'曲線:箭頭','curved-connector3-arrow2':_0xa66afa(0x155),'rect':'矩形','round-rect':_0xa66afa(0x18d),'snip1-rect':_0xa66afa(0x20c),'snip2-same-rect':'矩形:剪去頂角','snip2-diag-rect':_0xa66afa(0x194),'snip-round-rect':'矩形:一個圓頂角,剪去另一個頂角','round1-rect':_0xa66afa(0x1f5),'round2-same-rect':_0xa66afa(0x1dc),'round2-diag-rect':_0xa66afa(0x200),'rect-textbox-horizontal':_0xa66afa(0x204),'rect-textbox-vertical':_0xa66afa(0x16b),'ellipse':'橢圓','triangle':_0xa66afa(0x182),'rt-triangle':_0xa66afa(0x1e6),'parallelogram':'平行四邊形','trapezoid':'梯形','non-isosceles-trapezoid':'非等腰梯形','diamond':'菱形','pentagon':_0xa66afa(0x168),'hexagon':_0xa66afa(0x199),'heptagon':_0xa66afa(0x1df),'octagon':_0xa66afa(0x203),'decagon':'十邊形','dodecagon':_0xa66afa(0x150),'pie':'不完整圓','chord':'弦形','teardrop':_0xa66afa(0x14d),'frame':_0xa66afa(0x1a6),'half-frame':'半閉框','corner':'L形','diag-stripe':'斜紋','plus':'十字形','plaque':_0xa66afa(0x1ef),'can':'圓柱形','cube':_0xa66afa(0x1ed),'bevel':_0xa66afa(0x1e8),'donut':'圓:空心','no-smoking':_0xa66afa(0x169),'block-arc':'空心弧','folder-corner':_0xa66afa(0x1ae),'smiley-face':'笑臉','heart':'心形','lightning-bolt':_0xa66afa(0x1e2),'sun':'太陽形','moon':_0xa66afa(0x161),'cloud':'雲形','arc':'弧形','bracket-pair':_0xa66afa(0x153),'brace-pair':_0xa66afa(0x1ca),'left-bracket':_0xa66afa(0x1f1),'right-bracket':_0xa66afa(0x1d6),'left-brace':'左大括號','right-brace':_0xa66afa(0x1da),'right-arrow':_0xa66afa(0x1e4),'left-arrow':_0xa66afa(0x205),'up-arrow':_0xa66afa(0x1cf),'down-arrow':_0xa66afa(0x16d),'left-right-arrow':'箭頭:左右','up-down-arrow':_0xa66afa(0x1db),'quad-arrow':_0xa66afa(0x1cd),'left-right-up-arrow':_0xa66afa(0x193),'bent-arrow':'箭頭:圓角右','uturn-arrow':_0xa66afa(0x1e5),'left-up-arrow':'箭頭:直角雙向','bent-up-arrow':'箭頭:直角上','curved-right-arrow':_0xa66afa(0x15b),'curved-left-arrow':_0xa66afa(0x18b),'curved-up-arrow':_0xa66afa(0x206),'curved-down-arrow':_0xa66afa(0x14e),'striped-right-arrow':_0xa66afa(0x1cb),'notched-right-arrow':_0xa66afa(0x17d),'home-plate':_0xa66afa(0x168),'chevron':_0xa66afa(0x149),'right-arrow-callout':_0xa66afa(0x1f7),'down-arrow-callout':_0xa66afa(0x207),'left-arrow-callout':'標註:左箭頭','up-arrow-callout':'標註:上箭頭','left-right-arrow-callout':_0xa66afa(0x181),'quad-arrow-callout':_0xa66afa(0x1cc),'circular-arrow':'箭頭:環形','math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':'不等號','flow-chart-process':_0xa66afa(0x15a),'flow-chart-alternate-process':'流程圖:可選過程','flow-chart-decision':_0xa66afa(0x17e),'flow-chart-input-output':_0xa66afa(0x16c),'flow-chart-predefined-process':'流程圖:預定義過程','flow-chart-internal-storage':_0xa66afa(0x18f),'flow-chart-document':_0xa66afa(0x192),'flow-chart-multidocument':_0xa66afa(0x158),'flow-chart-terminator':_0xa66afa(0x1bb),'flow-chart-preparation':_0xa66afa(0x191),'flow-chart-manual-input':'流程圖:手動輸入','flow-chart-manual-operation':_0xa66afa(0x1b5),'flow-chart-connector':_0xa66afa(0x146),'flow-chart-offpage-connector':_0xa66afa(0x1f3),'flow-chart-punched-card':_0xa66afa(0x152),'flow-chart-punched-tape':_0xa66afa(0x154),'flow-chart-summing-junction':_0xa66afa(0x17f),'flow-chart-or':_0xa66afa(0x166),'flow-chart-collate':_0xa66afa(0x1b7),'flow-chart-sort':'流程圖:排序','flow-chart-extract':_0xa66afa(0x1a9),'flow-chart-merge':'流程圖:合併','flow-chart-online-storage':_0xa66afa(0x15f),'flow-chart-delay':_0xa66afa(0x1fd),'flow-chart-magnetic-tape':'流程圖:順序訪問存儲器','flow-chart-magnetic-disk':_0xa66afa(0x1f4),'flow-chart-magnetic-drum':_0xa66afa(0x183),'flow-chart-display':_0xa66afa(0x173),'irregular-seal1':'爆炸形:8pt','irregular-seal2':_0xa66afa(0x1ff),'star4':_0xa66afa(0x1c6),'star5':_0xa66afa(0x174),'star6':_0xa66afa(0x1a3),'star7':_0xa66afa(0x165),'star8':_0xa66afa(0x14b),'star10':_0xa66afa(0x1b6),'star12':_0xa66afa(0x184),'star16':_0xa66afa(0x1dd),'star24':'星形:二十四角','star32':_0xa66afa(0x1c3),'ribbon2':_0xa66afa(0x175),'ribbon':'帶形:前凸','ellipse-ribbon2':_0xa66afa(0x1f2),'ellipse-ribbon':_0xa66afa(0x1d1),'vertical-scroll':_0xa66afa(0x1b4),'horizontal-scroll':_0xa66afa(0x1fa),'wave':'波形','double-wave':'雙波形','wedge-rect-callout':_0xa66afa(0x17c),'wedge-round-rect-callout':_0xa66afa(0x186),'wedge-ellipse-callout':_0xa66afa(0x1b3),'cloud-callout':_0xa66afa(0x171),'border-callout1':_0xa66afa(0x202),'border-callout2':_0xa66afa(0x1c7),'border-callout3':'標註:雙彎曲線形','accent-callout1':_0xa66afa(0x1ce),'accent-callout2':'標註:彎曲線形(帶強調線)','accent-callout3':'標註:雙彎曲線形(帶強調線)','callout1':_0xa66afa(0x162),'callout2':_0xa66afa(0x15c),'callout3':_0xa66afa(0x1b0),'accent-border-callout1':_0xa66afa(0x188),'accent-border-callout2':'標註:彎曲線形(帶邊框和強調線)','accent-border-callout3':_0xa66afa(0x15d),'left-circular-arrow':_0xa66afa(0x17a),'left-right-circular-arrow':'左右圓形箭頭','swoosh-arrow':_0xa66afa(0x148),'left-right-ribbon':'左右帶形','pie-wedge':_0xa66afa(0x1af),'funnel':'漏斗','gear6':_0xa66afa(0x1c1),'gear9':'9齒齒輪','corner-tabs':'角標','action-button-back-previous':_0xa66afa(0x19c),'action-button-forward-next':_0xa66afa(0x18a),'action-button-beginning':_0xa66afa(0x19d),'action-button-end':_0xa66afa(0x18e),'action-button-home':_0xa66afa(0x1aa),'action-button-information':'信息按鈕','action-button-return':_0xa66afa(0x1e1),'action-button-movie':_0xa66afa(0x1b9),'action-button-document':_0xa66afa(0x1b1),'action-button-sound':'聲音按鈕','action-button-help':_0xa66afa(0x151),'action-button-blank':_0xa66afa(0x1eb),'chart-plus':_0xa66afa(0x1d4),'chart-star':_0xa66afa(0x190),'chart-x':_0xa66afa(0x1b2),'flow-chart-offline-storage':'流程圖:離線存儲','line-inv':'線反向','plaque-tabs':_0xa66afa(0x1f8),'square-tabs':_0xa66afa(0x187),'up-down-arrow-callout':_0xa66afa(0x208)}},'toolbar':{'expandShapeToolbar':'展開形狀工具列','collapseShapeToolbar':_0xa66afa(0x19a),'alignLeft':_0xa66afa(0x1e9),'alignCenter':_0xa66afa(0x1be),'alignRight':_0xa66afa(0x1f9),'alignJustify':_0xa66afa(0x1ac),'bold':'粗體','italic':'斜體','underline':'底線','strikethrough':_0xa66afa(0x14c),'subscript':'下標','superscript':'上標','textColor':'文字顏色','textBackgroundColor':_0xa66afa(0x1d5),'fillColor':_0xa66afa(0x172),'resetColor':'重置顏色','typography':'排版'},'align':{'top':_0xa66afa(0x16e),'middle':'垂直居中','bottom':'底部對齊'},'textWrap':{'inline':'與文字排列','square':'矩形','topAndBottom':_0xa66afa(0x1bf),'behindText':_0xa66afa(0x163),'inFrontText':_0xa66afa(0x197)},'crop':{'shape':_0xa66afa(0x20a)}}};}));
|
package/lib/umd/locale/zh-TW.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function _0x488c(_0x142c82,_0x5dc12){_0x142c82=_0x142c82-0xb9;var _0x4c327f=_0x4c32();var _0x488c2b=_0x4c327f[_0x142c82];return _0x488c2b;}function _0x4c32(){var _0x3903f7=['曲線:箭頭','與文字排列','流程圖:對照','標註:上箭頭','十字形','標題\x203','星形:五角','標註:線形(帶邊框和強調線)','流程圖:手動輸入','箭頭:右弧形','星形:二十四角','虛線類型','標註:右箭頭','標註:彎曲線形(帶強調線)','矩形:一個圓頂角,剪去另一個頂角','矩形:對角圓角','虛線-點','標註:彎曲線形','有序列表','exports','箭頭:手杖形','170sZlulG','橫向文字方塊','流程圖:合併','右大括號','漸層線','上下箭頭標註','氣泡:雲','十二邊形','圖表星號','圓:空心','信息按鈕','隨形狀旋轉','帶形:前凸彎','箭頭:環形','圖文框','標註:左右箭頭','雙大括號','文字在後','直線箭頭','切換水平翻轉','箭頭:左右','無線條','起點箭頭類型','雙箭頭直線','流程圖:順序訪問存儲器','對話氣泡:矩形','插入形狀','長虛線-點','左對齊','牌匾標籤','標題\x201','箭頭:直角雙向','基本形狀','流程圖:顯示','底部對齊','不完整圓','流程圖:匯總連接','流程圖:內部貯存','打開形狀面板','1947344qIVnZx','星形:四角','流程圖:離線存儲','重置顏色','星形:十角','文檔按鈕','隱藏形狀面板','閃電形','十邊形','兩端對齊','半閉框','圖形樣式','八邊形','流程圖:手動操作','流程圖:文檔','20362990MPPhlz','長虛線-點-點','切換垂直翻轉','左上對齊','淚滴形','偏移量\x20Y','矩形:圓頂角','格式化形狀','標題\x204','箭頭:左弧形','收合形狀工具列','流程圖:或者','8900178rGDiZX','圓角矩形','餅形楔','標註:雙彎曲線形(無邊框)','標註:線形','箭頭:虛尾','刪除形狀','標註:雙彎曲線形(帶強調線)','左右圓形箭頭','右下對齊','右對齊','將圖片平鋪為紋理','空白按鈕','帶形:上凸','208yNDGRy','醒目提示框','縮放\x20X','流程圖:接點','流程圖:直接訪問存儲器','透明度','星形:八角','流程圖:準備','標註:線形(無邊框)','箭頭:圓角右','矩形:單圓角','置中對齊','偏移量\x20X','文字背景色','非等腰梯形','裁切為形狀','5627934CtGtxo','object','圖案填充','電影按鈕','空心弧','星形:十二角','缺角矩形','流程圖:多文檔','菱形箭頭','203004AsfiFE','插入...','Superscript','圖表X','卷形:水平','平行四邊形','爆炸形:14pt','剪去單角矩形','星形:七角','切換文本竖排','矩形:棱台','程式碼區塊','function','流程圖:磁盤','矩形:剪去頂角','箭頭:上弧形','標註:彎曲線形(無邊框)','箭頭:V型','開始按鈕','Text\x20Background\x20color','UniverProShapeEditorUiZhTW','69347bBxdOK','結束按鈕','折線:箭頭','文字在前','左大括號','六邊形','無顏色','垂直居中','對話氣泡:圓形','流程圖:終止','展開形狀工具列','雙括號','前進/下一個按鈕','流程圖:數據','8AByUeN','箭頭:下','聯接類型','流程圖:離頁連接符','標註:線形(帶強調線)','標註:彎曲線形(帶邊框和強調線)','文字顏色','流程圖:卡片','箭頭:燕尾形','不等號','右上對齊','圓柱形','36429SvdlLZ','流程圖','流程圖:排序','箭頭:十字','Subscript','直角三角形','開放箭頭','6齒齒輪','居中對齊','對話氣泡:圓角矩形','起點箭頭大小','雙箭頭曲線','箭頭總匯','爆炸形:8pt','箭頭:上','五邊形','卷形:垂直','流程圖:可選過程','流程圖:摘錄','箭頭:上下','方形標籤','端點類型','雙波形','流程圖:過程','流程圖:決策','標題\x205','箭頭:右','箭頭:下弧形','左右帶形','9齒齒輪','立方體','無序列表','標註:十字箭頭','隱形箭頭','頂部對齊','標註:雙彎曲線形','帶形:上凸彎','流程圖:存儲數據','終點箭頭類型','返回按鈕'];_0x4c32=function(){return _0x3903f7;};return _0x4c32();}(function(_0x1075a9,_0x4020f4){var _0x4a3d5e=_0x488c,_0x119d15=_0x1075a9();while(!![]){try{var _0x3f84cd=-parseInt(_0x4a3d5e(0x170))/0x1+parseInt(_0x4a3d5e(0x142))/0x2*(-parseInt(_0x4a3d5e(0x18a))/0x3)+parseInt(_0x4a3d5e(0x119))/0x4+parseInt(_0x4a3d5e(0xf2))/0x5*(-parseInt(_0x4a3d5e(0x15b))/0x6)+parseInt(_0x4a3d5e(0x134))/0x7+-parseInt(_0x4a3d5e(0x17e))/0x8*(parseInt(_0x4a3d5e(0x152))/0x9)+parseInt(_0x4a3d5e(0x128))/0xa;if(_0x3f84cd===_0x4020f4)break;else _0x119d15['push'](_0x119d15['shift']());}catch(_0x4a674e){_0x119d15['push'](_0x119d15['shift']());}}}(_0x4c32,0xa7a60),function(_0x4361bb,_0x11d210){var _0x394401=_0x488c;typeof exports==_0x394401(0x153)&&typeof module<'u'?module[_0x394401(0xf0)]=_0x11d210():typeof define==_0x394401(0x167)&&define['amd']?define([],_0x11d210):(_0x4361bb=typeof globalThis<'u'?globalThis:_0x4361bb||self,_0x4361bb[_0x394401(0x16f)]=_0x11d210());}(this,function(){var _0x53a636=_0x488c;return{'shape-editor-ui':{'title':'形狀','insertShape':_0x53a636(0x10c),'openPanel':_0x53a636(0x118),'deleteShape':_0x53a636(0x13a),'hidePanel':_0x53a636(0x11f),'formatShape':_0x53a636(0x12f),'shapeStyle':_0x53a636(0x124),'shapePosition':'圖形位置','toggleFlipH':_0x53a636(0x105),'toggleFlipV':_0x53a636(0x12a),'rotateRight90':'順時針\x2090\x20度旋轉','rotateLeft90':'逆時針\x2090\x20度旋轉','toggleTextVertical':_0x53a636(0x164),'textEditor':{'paragraphType':{'normal':'正文','heading1':_0x53a636(0x110),'heading2':'標題\x202','heading3':_0x53a636(0xe2),'heading4':_0x53a636(0x130),'heading5':_0x53a636(0xce),'orderedList':_0x53a636(0xef),'bulletList':_0x53a636(0xd4),'checkList':'任務列表','quote':'引用','code':_0x53a636(0x166),'callout':_0x53a636(0x143)}},'fill':{'title':'填充','noFill':_0x53a636(0x176),'solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':_0x53a636(0x154),'color':'顏色','transparency':_0x53a636(0x147),'picture':{'source':'圖片來源','insert':_0x53a636(0x15c),'tileAsTexture':_0x53a636(0x13f),'offsetX':_0x53a636(0x14e),'offsetY':_0x53a636(0x12d),'scaleX':_0x53a636(0x144),'scaleY':'縮放\x20Y','alignment':'對齊方式','rotateWithShape':_0x53a636(0xfd),'align':{'tl':_0x53a636(0x12b),'t':_0x53a636(0xd7),'tr':_0x53a636(0x188),'l':_0x53a636(0x10e),'ctr':_0x53a636(0x14d),'r':_0x53a636(0x13e),'bl':'左下對齊','b':_0x53a636(0x114),'br':_0x53a636(0x13d)}}},'line':{'title':'線條','noLine':_0x53a636(0x107),'solidLine':'實線','gradientLine':_0x53a636(0xf6),'color':'顏色','transparency':_0x53a636(0x147),'width':'寬度','cornerRadius':'拐角半徑','dashType':{'title':_0x53a636(0xe8),'solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':_0x53a636(0xed),'longDash':'長虛線','longDashDot':_0x53a636(0x10d),'longDashDotDot':_0x53a636(0x129)},'capType':{'title':_0x53a636(0xca),'flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':_0x53a636(0x180),'miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':_0x53a636(0x108),'beginArrowSize':_0x53a636(0xbf),'endArrowType':_0x53a636(0xdb),'endArrowSize':'終點箭頭大小','arrowType':{'none':'無','arrow':'箭頭','openArrow':_0x53a636(0xbb),'stealthArrow':_0x53a636(0xd6),'diamondArrow':_0x53a636(0x15a),'ovalArrow':'橢圓箭頭'},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':'草繪樣式','none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':_0x53a636(0x112),'blockArrow':_0x53a636(0xc1),'equationShape':'公式形狀','flowchart':_0x53a636(0x18b),'starAndBanner':'星與旗幟','callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':_0x53a636(0x104),'straight-connector2':_0x53a636(0x109),'bent-connector3':'折線','bent-connector3-arrow1':_0x53a636(0x172),'bent-connector3-arrow2':'雙箭頭折線','curved-connector3':'曲線','curved-connector3-arrow1':_0x53a636(0xdd),'curved-connector3-arrow2':_0x53a636(0xc0),'rect':'矩形','round-rect':_0x53a636(0x135),'snip1-rect':_0x53a636(0x162),'snip2-same-rect':_0x53a636(0x169),'snip2-diag-rect':'矩形:剪去對角','snip-round-rect':_0x53a636(0xeb),'round1-rect':_0x53a636(0x14c),'round2-same-rect':_0x53a636(0x12e),'round2-diag-rect':_0x53a636(0xec),'rect-textbox-horizontal':_0x53a636(0xf3),'rect-textbox-vertical':'縱向文字方塊','ellipse':'橢圓','triangle':'等腰三角形','rt-triangle':_0x53a636(0xba),'parallelogram':_0x53a636(0x160),'trapezoid':'梯形','non-isosceles-trapezoid':_0x53a636(0x150),'diamond':'菱形','pentagon':_0x53a636(0xc4),'hexagon':_0x53a636(0x175),'heptagon':'七邊形','octagon':_0x53a636(0x125),'decagon':_0x53a636(0x121),'dodecagon':_0x53a636(0xf9),'pie':_0x53a636(0x115),'chord':'弦形','teardrop':_0x53a636(0x12c),'frame':_0x53a636(0x100),'half-frame':_0x53a636(0x123),'corner':'L形','diag-stripe':'斜紋','plus':_0x53a636(0xe1),'plaque':_0x53a636(0x158),'can':_0x53a636(0x189),'cube':_0x53a636(0xd3),'bevel':_0x53a636(0x165),'donut':_0x53a636(0xfb),'no-smoking':'禁止符','block-arc':_0x53a636(0x156),'folder-corner':'矩形:折角','smiley-face':'笑臉','heart':'心形','lightning-bolt':_0x53a636(0x120),'sun':'太陽形','moon':'新月形','cloud':'雲形','arc':'弧形','bracket-pair':_0x53a636(0x17b),'brace-pair':_0x53a636(0x102),'left-bracket':'左中括號','right-bracket':'右中括號','left-brace':_0x53a636(0x174),'right-brace':_0x53a636(0xf5),'right-arrow':_0x53a636(0xcf),'left-arrow':'箭頭:左','up-arrow':_0x53a636(0xc3),'down-arrow':_0x53a636(0x17f),'left-right-arrow':_0x53a636(0x106),'up-down-arrow':_0x53a636(0xc8),'quad-arrow':_0x53a636(0x18d),'left-right-up-arrow':'箭頭:丁字','bent-arrow':_0x53a636(0x14b),'uturn-arrow':_0x53a636(0xf1),'left-up-arrow':_0x53a636(0x111),'bent-up-arrow':'箭頭:直角上','curved-right-arrow':_0x53a636(0xe6),'curved-left-arrow':_0x53a636(0x131),'curved-up-arrow':_0x53a636(0x16a),'curved-down-arrow':_0x53a636(0xd0),'striped-right-arrow':_0x53a636(0x139),'notched-right-arrow':_0x53a636(0x186),'home-plate':_0x53a636(0xc4),'chevron':_0x53a636(0x16c),'right-arrow-callout':_0x53a636(0xe9),'down-arrow-callout':'標註:下箭頭','left-arrow-callout':'標註:左箭頭','up-arrow-callout':_0x53a636(0xe0),'left-right-arrow-callout':_0x53a636(0x101),'quad-arrow-callout':_0x53a636(0xd5),'circular-arrow':_0x53a636(0xff),'math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':_0x53a636(0x187),'flow-chart-process':_0x53a636(0xcc),'flow-chart-alternate-process':_0x53a636(0xc6),'flow-chart-decision':_0x53a636(0xcd),'flow-chart-input-output':_0x53a636(0x17d),'flow-chart-predefined-process':'流程圖:預定義過程','flow-chart-internal-storage':_0x53a636(0x117),'flow-chart-document':_0x53a636(0x127),'flow-chart-multidocument':_0x53a636(0x159),'flow-chart-terminator':_0x53a636(0x179),'flow-chart-preparation':_0x53a636(0x149),'flow-chart-manual-input':_0x53a636(0xe5),'flow-chart-manual-operation':_0x53a636(0x126),'flow-chart-connector':_0x53a636(0x145),'flow-chart-offpage-connector':_0x53a636(0x181),'flow-chart-punched-card':_0x53a636(0x185),'flow-chart-punched-tape':'流程圖:資料帶','flow-chart-summing-junction':_0x53a636(0x116),'flow-chart-or':_0x53a636(0x133),'flow-chart-collate':_0x53a636(0xdf),'flow-chart-sort':_0x53a636(0x18c),'flow-chart-extract':_0x53a636(0xc7),'flow-chart-merge':_0x53a636(0xf4),'flow-chart-online-storage':_0x53a636(0xda),'flow-chart-delay':'流程圖:延期','flow-chart-magnetic-tape':_0x53a636(0x10a),'flow-chart-magnetic-disk':_0x53a636(0x168),'flow-chart-magnetic-drum':_0x53a636(0x146),'flow-chart-display':_0x53a636(0x113),'irregular-seal1':_0x53a636(0xc2),'irregular-seal2':_0x53a636(0x161),'star4':_0x53a636(0x11a),'star5':_0x53a636(0xe3),'star6':'星形:六角','star7':_0x53a636(0x163),'star8':_0x53a636(0x148),'star10':_0x53a636(0x11d),'star12':_0x53a636(0x157),'star16':'星形:十六角','star24':_0x53a636(0xe7),'star32':'星形:三十二角','ribbon2':_0x53a636(0x141),'ribbon':'帶形:前凸','ellipse-ribbon2':_0x53a636(0xd9),'ellipse-ribbon':_0x53a636(0xfe),'vertical-scroll':_0x53a636(0xc5),'horizontal-scroll':_0x53a636(0x15f),'wave':'波形','double-wave':_0x53a636(0xcb),'wedge-rect-callout':_0x53a636(0x10b),'wedge-round-rect-callout':_0x53a636(0xbe),'wedge-ellipse-callout':_0x53a636(0x178),'cloud-callout':_0x53a636(0xf8),'border-callout1':_0x53a636(0x138),'border-callout2':_0x53a636(0xee),'border-callout3':_0x53a636(0xd8),'accent-callout1':_0x53a636(0x182),'accent-callout2':_0x53a636(0xea),'accent-callout3':_0x53a636(0x13b),'callout1':_0x53a636(0x14a),'callout2':_0x53a636(0x16b),'callout3':_0x53a636(0x137),'accent-border-callout1':_0x53a636(0xe4),'accent-border-callout2':_0x53a636(0x183),'accent-border-callout3':'標註:雙彎曲線形(帶邊框和強調線)','left-circular-arrow':'左圓形箭頭','left-right-circular-arrow':_0x53a636(0x13c),'swoosh-arrow':'彎曲箭頭','left-right-ribbon':_0x53a636(0xd1),'pie-wedge':_0x53a636(0x136),'funnel':'漏斗','gear6':_0x53a636(0xbc),'gear9':_0x53a636(0xd2),'corner-tabs':'角標','action-button-back-previous':'返回/上一個按鈕','action-button-forward-next':_0x53a636(0x17c),'action-button-beginning':_0x53a636(0x16d),'action-button-end':_0x53a636(0x171),'action-button-home':'主頁按鈕','action-button-information':_0x53a636(0xfc),'action-button-return':_0x53a636(0xdc),'action-button-movie':_0x53a636(0x155),'action-button-document':_0x53a636(0x11e),'action-button-sound':'聲音按鈕','action-button-help':'幫助按鈕','action-button-blank':_0x53a636(0x140),'chart-plus':'圖表加號','chart-star':_0x53a636(0xfa),'chart-x':_0x53a636(0x15e),'flow-chart-offline-storage':_0x53a636(0x11b),'line-inv':'線反向','plaque-tabs':_0x53a636(0x10f),'square-tabs':_0x53a636(0xc9),'up-down-arrow-callout':_0x53a636(0xf7)}},'toolbar':{'expandShapeToolbar':_0x53a636(0x17a),'collapseShapeToolbar':_0x53a636(0x132),'alignLeft':_0x53a636(0x10e),'alignCenter':_0x53a636(0xbd),'alignRight':'右對齊','alignJustify':_0x53a636(0x122),'bold':'粗體','italic':'斜體','underline':'底線','strikethrough':'刪除線','subscript':_0x53a636(0xb9),'superscript':_0x53a636(0x15d),'textColor':_0x53a636(0x184),'textBackgroundColor':_0x53a636(0x16e),'fillColor':_0x53a636(0x14f),'resetColor':_0x53a636(0x11c)},'align':{'top':_0x53a636(0xd7),'middle':_0x53a636(0x177),'bottom':'底部對齊'},'textWrap':{'inline':_0x53a636(0xde),'square':'矩形','topAndBottom':'上及下','behindText':_0x53a636(0x173),'inFrontText':_0x53a636(0x103)},'crop':{'shape':_0x53a636(0x151)}}};}));
|
|
1
|
+
function _0x225f(_0x527bde,_0x224b34){_0x527bde=_0x527bde-0x177;var _0x2e088c=_0x2e08();var _0x225fbd=_0x2e088c[_0x527bde];return _0x225fbd;}(function(_0xa14bbc,_0x2041d1){var _0x4a2aa9=_0x225f,_0x4a4fcd=_0xa14bbc();while(!![]){try{var _0x9661d2=parseInt(_0x4a2aa9(0x1d9))/0x1*(-parseInt(_0x4a2aa9(0x230))/0x2)+-parseInt(_0x4a2aa9(0x1ce))/0x3*(-parseInt(_0x4a2aa9(0x1a0))/0x4)+parseInt(_0x4a2aa9(0x195))/0x5+-parseInt(_0x4a2aa9(0x1af))/0x6+parseInt(_0x4a2aa9(0x1d2))/0x7+parseInt(_0x4a2aa9(0x227))/0x8*(parseInt(_0x4a2aa9(0x206))/0x9)+-parseInt(_0x4a2aa9(0x232))/0xa;if(_0x9661d2===_0x2041d1)break;else _0x4a4fcd['push'](_0x4a4fcd['shift']());}catch(_0x4ad584){_0x4a4fcd['push'](_0x4a4fcd['shift']());}}}(_0x2e08,0xf000f),function(_0x254ea2,_0x2f2024){var _0x5b4867=_0x225f;typeof exports=='object'&&typeof module<'u'?module[_0x5b4867(0x1b8)]=_0x2f2024():typeof define==_0x5b4867(0x201)&&define[_0x5b4867(0x214)]?define([],_0x2f2024):(_0x254ea2=typeof globalThis<'u'?globalThis:_0x254ea2||self,_0x254ea2[_0x5b4867(0x1b5)]=_0x2f2024());}(this,function(){var _0x3cb3f0=_0x225f;return{'shape-editor-ui':{'title':'形狀','insertShape':_0x3cb3f0(0x207),'openPanel':_0x3cb3f0(0x18b),'deleteShape':_0x3cb3f0(0x237),'hidePanel':_0x3cb3f0(0x1e9),'formatShape':_0x3cb3f0(0x1d5),'shapeStyle':_0x3cb3f0(0x218),'shapePosition':_0x3cb3f0(0x200),'toggleFlipH':_0x3cb3f0(0x17b),'toggleFlipV':_0x3cb3f0(0x204),'rotateRight90':'順時針\x2090\x20度旋轉','rotateLeft90':'逆時針\x2090\x20度旋轉','toggleTextVertical':_0x3cb3f0(0x18c),'textEditor':{'placeholder':_0x3cb3f0(0x1ff),'paragraphType':{'normal':'正文','heading1':'標題\x201','heading2':'標題\x202','heading3':_0x3cb3f0(0x182),'heading4':_0x3cb3f0(0x19f),'heading5':_0x3cb3f0(0x22a),'orderedList':_0x3cb3f0(0x1ad),'bulletList':_0x3cb3f0(0x1cc),'checkList':_0x3cb3f0(0x236),'quote':'引用','code':_0x3cb3f0(0x1b1),'callout':_0x3cb3f0(0x1a2)}},'fill':{'title':'填充','noFill':_0x3cb3f0(0x196),'solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':'圖案填充','color':'顏色','transparency':_0x3cb3f0(0x224),'picture':{'source':_0x3cb3f0(0x1d0),'insert':_0x3cb3f0(0x18f),'tileAsTexture':_0x3cb3f0(0x1de),'offsetX':_0x3cb3f0(0x215),'offsetY':'偏移量\x20Y','scaleX':_0x3cb3f0(0x1c5),'scaleY':_0x3cb3f0(0x23f),'alignment':_0x3cb3f0(0x17c),'rotateWithShape':'隨形狀旋轉','align':{'tl':_0x3cb3f0(0x1ca),'t':_0x3cb3f0(0x189),'tr':_0x3cb3f0(0x1c3),'l':_0x3cb3f0(0x1f4),'ctr':_0x3cb3f0(0x225),'r':_0x3cb3f0(0x223),'bl':_0x3cb3f0(0x179),'b':_0x3cb3f0(0x1c9),'br':_0x3cb3f0(0x226)}}},'line':{'title':'線條','noLine':_0x3cb3f0(0x1c7),'solidLine':'實線','gradientLine':_0x3cb3f0(0x1c1),'color':'顏色','transparency':_0x3cb3f0(0x224),'width':'寬度','cornerRadius':_0x3cb3f0(0x1bf),'dashType':{'title':_0x3cb3f0(0x190),'solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':'虛線-點','longDash':_0x3cb3f0(0x1e2),'longDashDot':_0x3cb3f0(0x216),'longDashDotDot':_0x3cb3f0(0x1a6)},'capType':{'title':'端點類型','flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':_0x3cb3f0(0x17e),'miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':_0x3cb3f0(0x1d4),'beginArrowSize':_0x3cb3f0(0x238),'endArrowType':'終點箭頭類型','endArrowSize':_0x3cb3f0(0x18d),'arrowType':{'none':'無','arrow':'箭頭','openArrow':_0x3cb3f0(0x219),'stealthArrow':'隱形箭頭','diamondArrow':'菱形箭頭','ovalArrow':'橢圓箭頭'},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x3cb3f0(0x221),'none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':_0x3cb3f0(0x1fc),'blockArrow':_0x3cb3f0(0x210),'equationShape':_0x3cb3f0(0x192),'flowchart':_0x3cb3f0(0x1b7),'starAndBanner':_0x3cb3f0(0x231),'callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':_0x3cb3f0(0x1be),'straight-connector2':_0x3cb3f0(0x234),'bent-connector3':'折線','bent-connector3-arrow1':_0x3cb3f0(0x1cd),'bent-connector3-arrow2':_0x3cb3f0(0x1bd),'curved-connector3':'曲線','curved-connector3-arrow1':_0x3cb3f0(0x199),'curved-connector3-arrow2':_0x3cb3f0(0x1ee),'rect':'矩形','round-rect':_0x3cb3f0(0x1f1),'snip1-rect':'剪去單角矩形','snip2-same-rect':_0x3cb3f0(0x194),'snip2-diag-rect':_0x3cb3f0(0x21c),'snip-round-rect':_0x3cb3f0(0x18e),'round1-rect':'矩形:單圓角','round2-same-rect':_0x3cb3f0(0x23a),'round2-diag-rect':_0x3cb3f0(0x178),'rect-textbox-horizontal':_0x3cb3f0(0x20b),'rect-textbox-vertical':_0x3cb3f0(0x20e),'ellipse':'橢圓','triangle':_0x3cb3f0(0x22f),'rt-triangle':_0x3cb3f0(0x1e1),'parallelogram':_0x3cb3f0(0x1cf),'trapezoid':'梯形','non-isosceles-trapezoid':_0x3cb3f0(0x1eb),'diamond':'菱形','pentagon':'五邊形','hexagon':'六邊形','heptagon':_0x3cb3f0(0x1a4),'octagon':_0x3cb3f0(0x177),'decagon':'十邊形','dodecagon':_0x3cb3f0(0x1e0),'pie':_0x3cb3f0(0x1ae),'chord':'弦形','teardrop':_0x3cb3f0(0x1b9),'frame':_0x3cb3f0(0x22e),'half-frame':'半閉框','corner':'L形','diag-stripe':'斜紋','plus':_0x3cb3f0(0x1a1),'plaque':_0x3cb3f0(0x1b4),'can':_0x3cb3f0(0x22b),'cube':_0x3cb3f0(0x1a9),'bevel':'矩形:棱台','donut':_0x3cb3f0(0x235),'no-smoking':_0x3cb3f0(0x1db),'block-arc':_0x3cb3f0(0x228),'folder-corner':_0x3cb3f0(0x23d),'smiley-face':'笑臉','heart':'心形','lightning-bolt':_0x3cb3f0(0x233),'sun':_0x3cb3f0(0x1ec),'moon':'新月形','cloud':'雲形','arc':'弧形','bracket-pair':_0x3cb3f0(0x22d),'brace-pair':_0x3cb3f0(0x1f3),'left-bracket':'左中括號','right-bracket':'右中括號','left-brace':_0x3cb3f0(0x1a5),'right-brace':'右大括號','right-arrow':_0x3cb3f0(0x205),'left-arrow':_0x3cb3f0(0x1ed),'up-arrow':_0x3cb3f0(0x21a),'down-arrow':_0x3cb3f0(0x1d8),'left-right-arrow':'箭頭:左右','up-down-arrow':_0x3cb3f0(0x1d1),'quad-arrow':'箭頭:十字','left-right-up-arrow':_0x3cb3f0(0x1b0),'bent-arrow':_0x3cb3f0(0x1ab),'uturn-arrow':_0x3cb3f0(0x1d6),'left-up-arrow':'箭頭:直角雙向','bent-up-arrow':_0x3cb3f0(0x20d),'curved-right-arrow':_0x3cb3f0(0x1fb),'curved-left-arrow':'箭頭:左弧形','curved-up-arrow':_0x3cb3f0(0x181),'curved-down-arrow':'箭頭:下弧形','striped-right-arrow':'箭頭:虛尾','notched-right-arrow':_0x3cb3f0(0x198),'home-plate':_0x3cb3f0(0x1f8),'chevron':_0x3cb3f0(0x1c2),'right-arrow-callout':_0x3cb3f0(0x20a),'down-arrow-callout':'標註:下箭頭','left-arrow-callout':_0x3cb3f0(0x211),'up-arrow-callout':_0x3cb3f0(0x1b3),'left-right-arrow-callout':_0x3cb3f0(0x1f9),'quad-arrow-callout':_0x3cb3f0(0x1fa),'circular-arrow':'箭頭:環形','math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':_0x3cb3f0(0x184),'flow-chart-process':'流程圖:過程','flow-chart-alternate-process':_0x3cb3f0(0x1e7),'flow-chart-decision':'流程圖:決策','flow-chart-input-output':_0x3cb3f0(0x1bb),'flow-chart-predefined-process':_0x3cb3f0(0x21d),'flow-chart-internal-storage':'流程圖:內部貯存','flow-chart-document':'流程圖:文檔','flow-chart-multidocument':_0x3cb3f0(0x229),'flow-chart-terminator':_0x3cb3f0(0x1f6),'flow-chart-preparation':'流程圖:準備','flow-chart-manual-input':_0x3cb3f0(0x17d),'flow-chart-manual-operation':_0x3cb3f0(0x193),'flow-chart-connector':_0x3cb3f0(0x21e),'flow-chart-offpage-connector':_0x3cb3f0(0x1f2),'flow-chart-punched-card':_0x3cb3f0(0x180),'flow-chart-punched-tape':'流程圖:資料帶','flow-chart-summing-junction':_0x3cb3f0(0x21f),'flow-chart-or':'流程圖:或者','flow-chart-collate':_0x3cb3f0(0x1c6),'flow-chart-sort':'流程圖:排序','flow-chart-extract':_0x3cb3f0(0x1c8),'flow-chart-merge':_0x3cb3f0(0x220),'flow-chart-online-storage':'流程圖:存儲數據','flow-chart-delay':_0x3cb3f0(0x1dd),'flow-chart-magnetic-tape':_0x3cb3f0(0x20c),'flow-chart-magnetic-disk':_0x3cb3f0(0x1e4),'flow-chart-magnetic-drum':_0x3cb3f0(0x197),'flow-chart-display':_0x3cb3f0(0x1ac),'irregular-seal1':'爆炸形:8pt','irregular-seal2':_0x3cb3f0(0x183),'star4':_0x3cb3f0(0x1fe),'star5':_0x3cb3f0(0x20f),'star6':_0x3cb3f0(0x1df),'star7':_0x3cb3f0(0x1b2),'star8':_0x3cb3f0(0x1dc),'star10':'星形:十角','star12':_0x3cb3f0(0x23b),'star16':'星形:十六角','star24':_0x3cb3f0(0x1c4),'star32':'星形:三十二角','ribbon2':_0x3cb3f0(0x188),'ribbon':'帶形:前凸','ellipse-ribbon2':_0x3cb3f0(0x1a3),'ellipse-ribbon':'帶形:前凸彎','vertical-scroll':_0x3cb3f0(0x213),'horizontal-scroll':'卷形:水平','wave':'波形','double-wave':_0x3cb3f0(0x1d3),'wedge-rect-callout':_0x3cb3f0(0x209),'wedge-round-rect-callout':_0x3cb3f0(0x1fd),'wedge-ellipse-callout':_0x3cb3f0(0x185),'cloud-callout':_0x3cb3f0(0x19b),'border-callout1':'標註:線形','border-callout2':_0x3cb3f0(0x17a),'border-callout3':_0x3cb3f0(0x1a7),'accent-callout1':_0x3cb3f0(0x1e6),'accent-callout2':'標註:彎曲線形(帶強調線)','accent-callout3':_0x3cb3f0(0x22c),'callout1':_0x3cb3f0(0x1cb),'callout2':_0x3cb3f0(0x18a),'callout3':_0x3cb3f0(0x1c0),'accent-border-callout1':'標註:線形(帶邊框和強調線)','accent-border-callout2':_0x3cb3f0(0x1da),'accent-border-callout3':_0x3cb3f0(0x1f5),'left-circular-arrow':_0x3cb3f0(0x23e),'left-right-circular-arrow':_0x3cb3f0(0x187),'swoosh-arrow':_0x3cb3f0(0x1e3),'left-right-ribbon':_0x3cb3f0(0x203),'pie-wedge':_0x3cb3f0(0x1d7),'funnel':'漏斗','gear6':_0x3cb3f0(0x19e),'gear9':_0x3cb3f0(0x202),'corner-tabs':'角標','action-button-back-previous':_0x3cb3f0(0x212),'action-button-forward-next':_0x3cb3f0(0x208),'action-button-beginning':'開始按鈕','action-button-end':_0x3cb3f0(0x191),'action-button-home':_0x3cb3f0(0x19c),'action-button-information':_0x3cb3f0(0x186),'action-button-return':_0x3cb3f0(0x1ba),'action-button-movie':_0x3cb3f0(0x1e8),'action-button-document':_0x3cb3f0(0x1ef),'action-button-sound':_0x3cb3f0(0x21b),'action-button-help':_0x3cb3f0(0x19a),'action-button-blank':'空白按鈕','chart-plus':_0x3cb3f0(0x17f),'chart-star':'圖表星號','chart-x':_0x3cb3f0(0x1e5),'flow-chart-offline-storage':_0x3cb3f0(0x239),'line-inv':'線反向','plaque-tabs':_0x3cb3f0(0x1f0),'square-tabs':_0x3cb3f0(0x1a8),'up-down-arrow-callout':'上下箭頭標註'}},'toolbar':{'expandShapeToolbar':'展開形狀工具列','collapseShapeToolbar':_0x3cb3f0(0x1aa),'alignLeft':_0x3cb3f0(0x1f4),'alignCenter':_0x3cb3f0(0x222),'alignRight':'右對齊','alignJustify':_0x3cb3f0(0x23c),'bold':'粗體','italic':'斜體','underline':'底線','strikethrough':'刪除線','subscript':'下標','superscript':'上標','textColor':'文字顏色','textBackgroundColor':_0x3cb3f0(0x19d),'fillColor':'文字背景色','resetColor':_0x3cb3f0(0x1bc),'typography':'排版'},'align':{'top':_0x3cb3f0(0x189),'middle':_0x3cb3f0(0x1f7),'bottom':_0x3cb3f0(0x1c9)},'textWrap':{'inline':'與文字排列','square':'矩形','topAndBottom':'上及下','behindText':_0x3cb3f0(0x217),'inFrontText':_0x3cb3f0(0x1ea)},'crop':{'shape':_0x3cb3f0(0x1b6)}}};}));function _0x2e08(){var _0x44a33b=['不完整圓','4663878erQolZ','箭頭:丁字','程式碼區塊','星形:七角','標註:上箭頭','缺角矩形','UniverProShapeEditorUiZhTW','裁切為形狀','流程圖','exports','淚滴形','返回按鈕','流程圖:數據','重置顏色','雙箭頭折線','直線箭頭','拐角半徑','標註:雙彎曲線形(無邊框)','漸層線','箭頭:V型','右上對齊','星形:二十四角','縮放\x20X','流程圖:對照','無線條','流程圖:摘錄','底部對齊','左上對齊','標註:線形(無邊框)','無序列表','折線:箭頭','44418yrkHls','平行四邊形','圖片來源','箭頭:上下','6521319CijXQU','雙波形','起點箭頭類型','格式化形狀','箭頭:手杖形','餅形楔','箭頭:下','14LMxyLO','標註:彎曲線形(帶邊框和強調線)','禁止符','星形:八角','流程圖:延期','將圖片平鋪為紋理','星形:六角','十二邊形','直角三角形','長虛線','彎曲箭頭','流程圖:磁盤','圖表X','標註:線形(帶強調線)','流程圖:可選過程','電影按鈕','隱藏形狀面板','文字在後','非等腰梯形','太陽形','箭頭:左','雙箭頭曲線','文檔按鈕','牌匾標籤','圓角矩形','流程圖:離頁連接符','雙大括號','左對齊','標註:雙彎曲線形(帶邊框和強調線)','流程圖:終止','垂直居中','五邊形','標註:左右箭頭','標註:十字箭頭','箭頭:右弧形','基本形狀','對話氣泡:圓角矩形','星形:四角','請輸入文字','圖形位置','function','9齒齒輪','左右帶形','切換垂直翻轉','箭頭:右','16578dCTnrZ','插入形狀','前進/下一個按鈕','對話氣泡:矩形','標註:右箭頭','橫向文字方塊','流程圖:順序訪問存儲器','箭頭:直角上','縱向文字方塊','星形:五角','箭頭總匯','標註:左箭頭','返回/上一個按鈕','卷形:垂直','amd','偏移量\x20X','長虛線-點','文字在前','圖形樣式','開放箭頭','箭頭:上','聲音按鈕','矩形:剪去對角','流程圖:預定義過程','流程圖:接點','流程圖:匯總連接','流程圖:合併','草繪樣式','居中對齊','右對齊','透明度','置中對齊','右下對齊','248lPNNFh','空心弧','流程圖:多文檔','標題\x205','圓柱形','標註:雙彎曲線形(帶強調線)','雙括號','圖文框','等腰三角形','153238YhtlEi','星與旗幟','7139460MpUnRM','閃電形','雙箭頭直線','圓:空心','任務列表','刪除形狀','起點箭頭大小','流程圖:離線存儲','矩形:圓頂角','星形:十二角','兩端對齊','矩形:折角','左圓形箭頭','縮放\x20Y','八邊形','矩形:對角圓角','左下對齊','標註:彎曲線形','切換水平翻轉','對齊方式','流程圖:手動輸入','聯接類型','圖表加號','流程圖:卡片','箭頭:上弧形','標題\x203','爆炸形:14pt','不等號','對話氣泡:圓形','信息按鈕','左右圓形箭頭','帶形:上凸','頂部對齊','標註:彎曲線形(無邊框)','打開形狀面板','切換文本竖排','終點箭頭大小','矩形:一個圓頂角,剪去另一個頂角','插入...','虛線類型','結束按鈕','公式形狀','流程圖:手動操作','矩形:剪去頂角','5832485SQqJHt','無顏色','流程圖:直接訪問存儲器','箭頭:燕尾形','曲線:箭頭','幫助按鈕','氣泡:雲','主頁按鈕','文字背景顏色','6齒齒輪','標題\x204','376jAtCes','十字形','醒目提示框','帶形:上凸彎','七邊形','左大括號','長虛線-點-點','標註:雙彎曲線形','方形標籤','立方體','收合形狀工具列','箭頭:圓角右','流程圖:顯示','有序列表'];_0x2e08=function(){return _0x44a33b;};return _0x2e08();}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs-pro/shape-editor-ui",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Reusable shape editor UI building blocks for Univer Pro.",
|
|
6
6
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
@@ -56,24 +56,24 @@
|
|
|
56
56
|
"react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@univerjs/icons": "1.
|
|
60
|
-
"@univerjs-pro/engine-shape": "1.0.0-alpha.
|
|
61
|
-
"@univerjs/
|
|
62
|
-
"@univerjs/core": "1.0.0-alpha.
|
|
63
|
-
"@univerjs/docs": "1.0.0-alpha.
|
|
64
|
-
"@univerjs/
|
|
65
|
-
"@univerjs/drawing": "1.0.0-alpha.
|
|
66
|
-
"@univerjs/
|
|
67
|
-
"@univerjs/
|
|
59
|
+
"@univerjs/icons": "1.20.0",
|
|
60
|
+
"@univerjs-pro/engine-shape": "1.0.0-alpha.3",
|
|
61
|
+
"@univerjs/docs": "1.0.0-alpha.3",
|
|
62
|
+
"@univerjs/core": "1.0.0-alpha.3",
|
|
63
|
+
"@univerjs/docs-ui": "1.0.0-alpha.3",
|
|
64
|
+
"@univerjs/design": "1.0.0-alpha.3",
|
|
65
|
+
"@univerjs/drawing": "1.0.0-alpha.3",
|
|
66
|
+
"@univerjs/engine-render": "1.0.0-alpha.3",
|
|
67
|
+
"@univerjs/ui": "1.0.0-alpha.3"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"postcss": "^8.5.
|
|
70
|
+
"postcss": "^8.5.16",
|
|
71
71
|
"react": "18.3.1",
|
|
72
72
|
"rxjs": "7.8.2",
|
|
73
73
|
"tailwindcss": "3.4.17",
|
|
74
74
|
"typescript": "^6.0.3",
|
|
75
|
-
"vitest": "^4.1.
|
|
76
|
-
"@univerjs-infra/shared": "1.0.0-alpha.
|
|
75
|
+
"vitest": "^4.1.10",
|
|
76
|
+
"@univerjs-infra/shared": "1.0.0-alpha.3"
|
|
77
77
|
},
|
|
78
78
|
"scripts": {
|
|
79
79
|
"test": "vitest run",
|