@univerjs-pro/shape-editor-ui 1.0.0-alpha.2 → 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 +120 -18
- 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/index.d.ts +24 -22
- package/lib/types/locale/en-US.d.ts +2 -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 -6
- package/lib/types/views/shape-floating-toolbar/shape-floating-toolbar-utils.d.ts +2 -5
- package/lib/types/views/shape-picker/ShapePickerGrid.d.ts +2 -4
- package/lib/types/views/shape-picker/index.d.ts +2 -2
- 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 _0xbb74(){var _0x516c49=['Dấu\x20cộng','Nhỏ','17ISfpcZ','function','Đường\x20ngược','Chú\x20thích\x201','Khung\x20nổi\x20bật','Cuộn\x20ngang','UniverProShapeEditorUiViVN','Sao\x206\x20cánh','Ruy\x20băng\x20cong\x20lên','Ruy\x20băng\x20lên','Mũi\x20tên\x20trái\x20lên','Định\x20dạng\x20hình\x20dạng','Hình\x20nổ\x202','Tam\x20giác\x20cân','Hình\x20cung\x20khối','Cắt\x20theo\x20hình\x20dạng','Gạch\x20chân','Danh\x20sách\x20có\x20thứ\x20tự','Tô\x20màu\x20đặc','Subscript','In\x20nghiêng','Tia\x20sét','Xóa\x20hình\x20dạng','228291RbcoEa','Sọc\x20chéo','4760775yMbEKL','In\x20đậm','Ngoặc\x20vuông\x20phải','Đa\x20tài\x20liệu','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x201','object','Tiêu\x20đề\x204','Lục\x20giác','Quy\x20trình\x20xác\x20định\x20trước','Sao\x207\x20cánh','Tô\x20màu\x20gradient','Tam\x20giác\x20vuông','Vẽ\x20nguệch\x20ngoạc','Lưu\x20trữ\x20trực\x20tuyến','Lát\x20ảnh\x20làm\x20kết\x20cấu','Nút\x20hành\x20động:\x20Tài\x20liệu','Tỷ\x20lệ\x20Y','Chú\x20thích\x20đám\x20mây','Nhọn','Hình\x20cung','In\x20line\x20with\x20text','amd','Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20chéo','Miếng\x20bánh','Danh\x20sách\x20công\x20việc','Thẻ\x20đục\x20lỗ','Hình\x20chữ\x20nhật','Kích\x20thước\x20mũi\x20tên\x20cuối','Nút\x20hành\x20động:\x20Chuyển\x20tiếp\x20hoặc\x20Tiếp\x20theo','Sao\x2016\x20cánh','Mặt\x20cười','Liền','Mũi\x20tên','Hình\x20ngũ\x20giác\x20(Home\x20Plate)','Trái\x20tim','Nét\x20đứt\x20dài\x20chấm','Mũi\x20tên\x20lên\x20xuống','Xoay\x2090\x20độ\x20ngược\x20chiều\x20kim\x20đồng\x20hồ','Mở\x20rộng\x20thanh\x20công\x20cụ\x20hình\x20dạng','Nút\x20hành\x20động:\x20Quay\x20lại\x20hoặc\x20Trước','Mặt\x20trăng','Xoay\x2090\x20độ\x20theo\x20chiều\x20kim\x20đồng\x20hồ','Hình\x20chữ\x20nhật\x20cắt\x20một\x20góc','Bánh\x20răng\x206','Trống\x20từ','Danh\x20sách\x20không\x20thứ\x20tự','Mũi\x20tên\x20cong\x20trái','Hình\x20thang','Đường\x20viền\x20liền','Thu\x20gọn\x20thanh\x20công\x20cụ\x20hình\x20dạng','Tròn','Mở\x20bảng\x20hình\x20dạng','Mũi\x20tên\x20nhọn','Tỷ\x20lệ\x20X','Hình\x20elip','Tô\x20màu','Behind\x20text','Mũi\x20tên\x20trái\x20phải\x20lên','Mũi\x20tên\x20đường\x20thẳng','Tiêu\x20đề\x202','Chú\x20thích\x20hình\x20elip','Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20cùng\x20phía','Kết\x20thúc','Dấu\x20bằng','Mũi\x20tên\x20tròn\x20trái\x20phải','Nhập\x20thủ\x20công','Text\x20Background\x20color','Đường\x20nối\x20cong','Trên\x20phải','Hình\x20chữ\x20nhật\x20bo\x20góc','Lưu\x20đồ','Chú\x20thích\x20mũi\x20tên\x20lên\x20xuống','Sao\x20và\x20Biểu\x20ngữ','Phải','Tài\x20liệu','Nét\x20đứt\x20dài\x20hai\x20chấm','Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn','Màu\x20sắc','Mũi\x20tên\x20tròn\x20trái','Bù\x20trừ\x20X','Dấu\x20trừ','Hình\x20lập\x20phương','Ẩn\x20bảng\x20hình\x20dạng','Đám\x20mây','Nút\x20hành\x20động:\x20Trợ\x20giúp','Nút\x20hành\x20động:\x20Trống','Hình\x20công\x20thức','Biểu\x20đồ\x20X','Chuẩn\x20bị','Băng\x20đục\x20lỗ','Vát','Đường\x20nối\x20khuỷu\x20mũi\x20tên\x20hai\x20đầu','Chấm\x20tròn','Hình\x20chữ\x20nhật\x20một\x20góc\x20tròn\x20một\x20góc\x20cắt','Bát\x20giác','Cong','Không\x20có','Đường\x20kẻ','Hình\x20vát','Hình\x20cơ\x20bản','Dấu\x20khác','Kiểu\x20đầu\x20mút','Ngũ\x20giác','Chú\x20thích\x20hình\x20chữ\x20nhật\x20bo\x20góc','Ruy\x20băng\x20trái\x20phải','Kiểu\x20hình\x20dạng','Chú\x20thích\x20mũi\x20tên\x20lên','Chú\x20thích\x20đường\x20kẻ\x202','3638364RxxLhM','Hình\x20chữ\x20V','Nút\x20hành\x20động:\x20Trang\x20chủ','Hình\x20thoi','Vị\x20trí\x20hình\x20dạng','Nút\x20hành\x20động:\x20Phim','Bật/tắt\x20lật\x20dọc','Đường\x20nối\x20cong\x20có\x20mũi\x20tên','Không\x20có\x20đường\x20viền','Gạch\x20ngang','Chú\x20thích\x20mũi\x20tên\x20xuống','Hợp\x20nhất','Ngoặc\x20nhọn\x20phải','Mũi\x20tên\x20khối','Trên','Tiêu\x20đề\x203','Sao\x2012\x20cánh','Trích\x20dẫn','Kiểu\x20nối\x20góc','Khác','Căn\x20giữa\x20theo\x20chiều\x20dọc','Mũi\x20tên\x20hình\x20bầu\x20dục','Kích\x20thước\x20mũi\x20tên\x20đầu','707001Chahrg','1575092eTctHb','Lưu\x20trữ\x20ngoại\x20tuyến','Chú\x20thích\x20đường\x20kẻ\x201','Đầu\x20nối','Mũi\x20tên\x20xuống','Đường\x20viền','Không\x20tô','Mũi\x20tên\x20trái','Thập\x20giác','Chú\x20thích\x203','Mũi\x20tên\x20cong\x20lên','Mũi\x20tên\x20hở','Top\x20and\x20Bottom','Mũi\x20tên\x20phải','Phẳng','Độ\x20trong\x20suốt','Khung\x20một\x20nửa','Nút\x20hành\x20động:\x20Thông\x20tin','Mũi\x20tên\x20bốn\x20chiều','Dấu\x20chia','105598GhnTNU','Chú\x20thích\x20mũi\x20tên\x20phải','Chèn...','Hộp\x20văn\x20bản\x20ngang','Vuông','Sao\x2010\x20cánh','Không','Chú\x20thích\x20nhấn\x20mạnh\x202','Chuyển\x20đổi\x20văn\x20bản\x20dọc','Nét\x20đứt\x20dài','Square','Biểu\x20đồ\x20cộng','Chú\x20thích\x20mũi\x20tên\x20trái\x20phải','Thập\x20nhị\x20giác','Căn\x20dưới','Tô\x20bằng\x20hình\x20ảnh\x20hoặc\x20kết\x20cấu','Sóng\x20đôi','Sao\x205\x20cánh','Căn\x20trên','Ngoặc\x20nhọn\x20trái','Góc\x20thư\x20mục','Mũi\x20tên\x20lên','Đường\x20thẳng','Chú\x20thích\x202','Chú\x20thích\x20mũi\x20tên\x20bốn\x20chiều','Hình\x20trụ','Thất\x20giác','Trái','Chú\x20thích\x20hình\x20chữ\x20nhật','Mũi\x20tên\x20quay\x20đầu','Đối\x20chiếu','Mũi\x20tên\x20sọc\x20phải','Căn\x20giữa','Kiểu\x20mũi\x20tên\x20đầu','Sóng','Tiêu\x20đề\x205','Hình\x20biển\x20hiệu','Đường\x20nối\x20khuỷu\x20có\x20mũi\x20tên','exports','Superscript','Dưới\x20trái','Hình\x20chữ\x20L','In\x20front\x20of\x20text','Chú\x20thích\x20viền\x20nhấn\x20mạnh\x203','Dấu\x20nhân','Vẽ\x20tay','Hình\x20bình\x20hành','Căn\x20đều\x20hai\x20bên','Thao\x20tác\x20thủ\x20công','Hình\x20dạng','Mũi\x20tên\x20cong\x20phải','Trì\x20hoãn','Căn\x20phải','Tab\x20biển\x20hiệu','Bù\x20trừ\x20Y','Hình\x20bánh\x20rán','Biển\x20cấm\x20hút\x20thuốc','4849864lcXvoP','Quyết\x20định','Đường\x20thẳng\x20mũi\x20tên\x20hai\x20đầu','Chèn\x20hình\x20dạng','Tab\x20góc','Màu\x20nền\x20văn\x20bản','Kiểu\x20phác\x20thảo','Chú\x20thích\x20nhấn\x20mạnh\x203','Độ\x20rộng','Khung','Đường\x20nối\x20cong\x20mũi\x20tên\x20hai\x20đầu','Hoặc','Khối\x20mã'];_0xbb74=function(){return _0x516c49;};return _0xbb74();}function _0x29a2(_0x30c80b,_0x551379){_0x30c80b=_0x30c80b-0x8f;var _0xbb74b7=_0xbb74();var _0x29a29c=_0xbb74b7[_0x30c80b];return _0x29a29c;}(function(_0x19885e,_0x12d173){var _0x4b4641=_0x29a2,_0x3064f0=_0x19885e();while(!![]){try{var _0x16156e=-parseInt(_0x4b4641(0xf7))/0x1*(-parseInt(_0x4b4641(0xaf))/0x2)+parseInt(_0x4b4641(0x9a))/0x3+parseInt(_0x4b4641(0x9b))/0x4+-parseInt(_0x4b4641(0x110))/0x5+-parseInt(_0x4b4641(0x17c))/0x6+-parseInt(_0x4b4641(0x10e))/0x7+parseInt(_0x4b4641(0xe8))/0x8;if(_0x16156e===_0x12d173)break;else _0x3064f0['push'](_0x3064f0['shift']());}catch(_0x5cee56){_0x3064f0['push'](_0x3064f0['shift']());}}}(_0xbb74,0x8458e),function(_0x4e4e2d,_0x166b55){var _0x4656a2=_0x29a2;typeof exports==_0x4656a2(0x115)&&typeof module<'u'?module[_0x4656a2(0xd5)]=_0x166b55():typeof define==_0x4656a2(0xf8)&&define[_0x4656a2(0x125)]?define([],_0x166b55):(_0x4e4e2d=typeof globalThis<'u'?globalThis:_0x4e4e2d||self,_0x4e4e2d[_0x4656a2(0xfd)]=_0x166b55());}(this,function(){var _0x4255ec=_0x29a2;return{'shape-editor-ui':{'title':_0x4255ec(0xe0),'insertShape':_0x4255ec(0xeb),'openPanel':_0x4255ec(0x143),'deleteShape':_0x4255ec(0x10d),'hidePanel':_0x4255ec(0x162),'formatShape':_0x4255ec(0x102),'shapeStyle':_0x4255ec(0x179),'shapePosition':_0x4255ec(0x180),'toggleFlipH':'Chuyển\x20đổi\x20lật\x20ngang','toggleFlipV':_0x4255ec(0x182),'rotateRight90':_0x4255ec(0x139),'rotateLeft90':_0x4255ec(0x135),'toggleTextVertical':_0x4255ec(0xb7),'textEditor':{'paragraphType':{'normal':'Văn\x20bản','heading1':'Tiêu\x20đề\x201','heading2':_0x4255ec(0x14b),'heading3':_0x4255ec(0x92),'heading4':_0x4255ec(0x116),'heading5':_0x4255ec(0xd2),'orderedList':_0x4255ec(0x108),'bulletList':_0x4255ec(0x13d),'checkList':_0x4255ec(0x128),'quote':_0x4255ec(0x94),'code':_0x4255ec(0xf4),'callout':_0x4255ec(0xfb)}},'fill':{'title':_0x4255ec(0x147),'noFill':_0x4255ec(0xa1),'solidFill':_0x4255ec(0x109),'gradientFill':_0x4255ec(0x11a),'pictureFill':_0x4255ec(0xbe),'patternFill':'Tô\x20bằng\x20mẫu','color':_0x4255ec(0x15d),'transparency':'Độ\x20trong\x20suốt','picture':{'source':'Nguồn\x20ảnh','insert':_0x4255ec(0xb1),'tileAsTexture':_0x4255ec(0x11e),'offsetX':_0x4255ec(0x15f),'offsetY':_0x4255ec(0xe5),'scaleX':_0x4255ec(0x145),'scaleY':_0x4255ec(0x120),'alignment':'Căn\x20chỉnh','rotateWithShape':'Xoay\x20cùng\x20hình\x20dạng','align':{'tl':'Trên\x20trái','t':_0x4255ec(0x91),'tr':_0x4255ec(0x154),'l':_0x4255ec(0xca),'ctr':'Giữa','r':_0x4255ec(0x159),'bl':_0x4255ec(0xd7),'b':'Dưới','br':'Dưới\x20phải'}}},'line':{'title':_0x4255ec(0xa0),'noLine':_0x4255ec(0x184),'solidLine':_0x4255ec(0x140),'gradientLine':'Đường\x20viền\x20gradient','color':_0x4255ec(0x15d),'transparency':_0x4255ec(0xaa),'width':_0x4255ec(0xf0),'cornerRadius':'Bán\x20kính\x20góc','dashType':{'title':'Kiểu\x20nét\x20đứt','solid':_0x4255ec(0x12f),'roundDot':_0x4255ec(0x16c),'squareDot':'Chấm\x20vuông','dash':'Nét\x20đứt','dashDot':'Nét\x20đứt\x20chấm','longDash':_0x4255ec(0xb8),'longDashDot':_0x4255ec(0x133),'longDashDotDot':_0x4255ec(0x15b)},'capType':{'title':_0x4255ec(0x175),'flat':_0x4255ec(0xa9),'round':_0x4255ec(0x142),'square':_0x4255ec(0xb3)},'joinType':{'title':_0x4255ec(0x95),'miter':_0x4255ec(0x122),'round':'Tròn','bevel':_0x4255ec(0x16a)},'beginArrowType':_0x4255ec(0xd0),'beginArrowSize':_0x4255ec(0x99),'endArrowType':'Kiểu\x20mũi\x20tên\x20cuối','endArrowSize':_0x4255ec(0x12b),'arrowType':{'none':_0x4255ec(0x170),'arrow':_0x4255ec(0x130),'openArrow':_0x4255ec(0xa6),'stealthArrow':_0x4255ec(0x144),'diamondArrow':'Mũi\x20tên\x20kim\x20cương','ovalArrow':_0x4255ec(0x98)},'arrowSize':{'small':_0x4255ec(0xf6),'medium':'Vừa','large':'Lớn'},'sketchType':{'title':_0x4255ec(0xee),'none':_0x4255ec(0xb5),'curved':_0x4255ec(0x16f),'freehand':_0x4255ec(0xdc),'handDrawn':_0x4255ec(0x11c)}},'shape':{'group':{'line':_0x4255ec(0x171),'rectangle':_0x4255ec(0x12a),'basicShape':_0x4255ec(0x173),'blockArrow':_0x4255ec(0x90),'equationShape':_0x4255ec(0x166),'flowchart':_0x4255ec(0x156),'starAndBanner':_0x4255ec(0x158),'callout':'Chú\x20thích','other':_0x4255ec(0x96)},'type':{'line':_0x4255ec(0xc5),'straight-connector1':_0x4255ec(0x14a),'straight-connector2':_0x4255ec(0xea),'bent-connector3':'Đường\x20nối\x20khuỷu','bent-connector3-arrow1':_0x4255ec(0xd4),'bent-connector3-arrow2':_0x4255ec(0x16b),'curved-connector3':_0x4255ec(0x153),'curved-connector3-arrow1':_0x4255ec(0x183),'curved-connector3-arrow2':_0x4255ec(0xf2),'rect':_0x4255ec(0x12a),'round-rect':_0x4255ec(0x155),'snip1-rect':_0x4255ec(0x13a),'snip2-same-rect':_0x4255ec(0x14d),'snip2-diag-rect':'Hình\x20chữ\x20nhật\x20cắt\x20hai\x20góc\x20chéo','snip-round-rect':_0x4255ec(0x16d),'round1-rect':_0x4255ec(0x15c),'round2-same-rect':'Hình\x20chữ\x20nhật\x20hai\x20góc\x20tròn\x20cùng\x20phía','round2-diag-rect':_0x4255ec(0x126),'rect-textbox-horizontal':_0x4255ec(0xb2),'rect-textbox-vertical':'Hộp\x20văn\x20bản\x20dọc','ellipse':_0x4255ec(0x146),'triangle':_0x4255ec(0x104),'rt-triangle':_0x4255ec(0x11b),'parallelogram':_0x4255ec(0xdd),'trapezoid':_0x4255ec(0x13f),'non-isosceles-trapezoid':'Hình\x20thang\x20không\x20cân','diamond':_0x4255ec(0x17f),'pentagon':_0x4255ec(0x176),'hexagon':_0x4255ec(0x117),'heptagon':_0x4255ec(0xc9),'octagon':_0x4255ec(0x16e),'decagon':_0x4255ec(0xa3),'dodecagon':_0x4255ec(0xbc),'pie':'Hình\x20quạt','chord':_0x4255ec(0x123),'teardrop':'Hình\x20giọt\x20nước','frame':_0x4255ec(0xf1),'half-frame':_0x4255ec(0xab),'corner':_0x4255ec(0xd8),'diag-stripe':_0x4255ec(0x10f),'plus':_0x4255ec(0xf5),'plaque':_0x4255ec(0xd3),'can':_0x4255ec(0xc8),'cube':_0x4255ec(0x161),'bevel':_0x4255ec(0x172),'donut':_0x4255ec(0xe6),'no-smoking':_0x4255ec(0xe7),'block-arc':_0x4255ec(0x105),'folder-corner':_0x4255ec(0xc3),'smiley-face':_0x4255ec(0x12e),'heart':_0x4255ec(0x132),'lightning-bolt':_0x4255ec(0x10c),'sun':'Mặt\x20trời','moon':_0x4255ec(0x138),'cloud':_0x4255ec(0x163),'arc':_0x4255ec(0x123),'bracket-pair':'Cặp\x20ngoặc\x20vuông','brace-pair':'Cặp\x20ngoặc\x20nhọn','left-bracket':'Ngoặc\x20vuông\x20trái','right-bracket':_0x4255ec(0x112),'left-brace':_0x4255ec(0xc2),'right-brace':_0x4255ec(0x8f),'right-arrow':_0x4255ec(0xa8),'left-arrow':_0x4255ec(0xa2),'up-arrow':_0x4255ec(0xc4),'down-arrow':_0x4255ec(0x9f),'left-right-arrow':'Mũi\x20tên\x20trái\x20phải','up-down-arrow':_0x4255ec(0x134),'quad-arrow':_0x4255ec(0xad),'left-right-up-arrow':_0x4255ec(0x149),'bent-arrow':'Mũi\x20tên\x20cong','uturn-arrow':_0x4255ec(0xcc),'left-up-arrow':_0x4255ec(0x101),'bent-up-arrow':'Mũi\x20tên\x20cong\x20lên','curved-right-arrow':_0x4255ec(0xe1),'curved-left-arrow':_0x4255ec(0x13e),'curved-up-arrow':_0x4255ec(0xa5),'curved-down-arrow':'Mũi\x20tên\x20cong\x20xuống','striped-right-arrow':_0x4255ec(0xce),'notched-right-arrow':'Mũi\x20tên\x20khía\x20phải','home-plate':_0x4255ec(0x131),'chevron':_0x4255ec(0x17d),'right-arrow-callout':_0x4255ec(0xb0),'down-arrow-callout':_0x4255ec(0x186),'left-arrow-callout':'Chú\x20thích\x20mũi\x20tên\x20trái','up-arrow-callout':_0x4255ec(0x17a),'left-right-arrow-callout':_0x4255ec(0xbb),'quad-arrow-callout':_0x4255ec(0xc7),'circular-arrow':'Mũi\x20tên\x20tròn','math-plus':_0x4255ec(0xf5),'math-minus':_0x4255ec(0x160),'math-multiply':_0x4255ec(0xdb),'math-divide':_0x4255ec(0xae),'math-equal':_0x4255ec(0x14f),'math-not-equal':_0x4255ec(0x174),'flow-chart-process':'Quy\x20trình','flow-chart-alternate-process':'Quy\x20trình\x20thay\x20thế','flow-chart-decision':_0x4255ec(0xe9),'flow-chart-input-output':'Dữ\x20liệu','flow-chart-predefined-process':_0x4255ec(0x118),'flow-chart-internal-storage':'Lưu\x20trữ\x20nội\x20bộ','flow-chart-document':_0x4255ec(0x15a),'flow-chart-multidocument':_0x4255ec(0x113),'flow-chart-terminator':_0x4255ec(0x14e),'flow-chart-preparation':_0x4255ec(0x168),'flow-chart-manual-input':_0x4255ec(0x151),'flow-chart-manual-operation':_0x4255ec(0xdf),'flow-chart-connector':_0x4255ec(0x9e),'flow-chart-offpage-connector':'Đầu\x20nối\x20khác\x20trang','flow-chart-punched-card':_0x4255ec(0x129),'flow-chart-punched-tape':_0x4255ec(0x169),'flow-chart-summing-junction':'Điểm\x20nối\x20tổng','flow-chart-or':_0x4255ec(0xf3),'flow-chart-collate':_0x4255ec(0xcd),'flow-chart-sort':'Sắp\x20xếp','flow-chart-extract':'Trích\x20xuất','flow-chart-merge':_0x4255ec(0x187),'flow-chart-online-storage':_0x4255ec(0x11d),'flow-chart-delay':_0x4255ec(0xe2),'flow-chart-magnetic-tape':'Băng\x20từ','flow-chart-magnetic-disk':'Đĩa\x20từ','flow-chart-magnetic-drum':_0x4255ec(0x13c),'flow-chart-display':'Hiển\x20thị','irregular-seal1':'Hình\x20nổ\x201','irregular-seal2':_0x4255ec(0x103),'star4':'Sao\x204\x20cánh','star5':_0x4255ec(0xc0),'star6':_0x4255ec(0xfe),'star7':_0x4255ec(0x119),'star8':'Sao\x208\x20cánh','star10':_0x4255ec(0xb4),'star12':_0x4255ec(0x93),'star16':_0x4255ec(0x12d),'star24':'Sao\x2024\x20cánh','star32':'Sao\x2032\x20cánh','ribbon2':_0x4255ec(0x100),'ribbon':'Ruy\x20băng\x20xuống','ellipse-ribbon2':_0x4255ec(0xff),'ellipse-ribbon':'Ruy\x20băng\x20cong\x20xuống','vertical-scroll':'Cuộn\x20dọc','horizontal-scroll':_0x4255ec(0xfc),'wave':_0x4255ec(0xd1),'double-wave':_0x4255ec(0xbf),'wedge-rect-callout':_0x4255ec(0xcb),'wedge-round-rect-callout':_0x4255ec(0x177),'wedge-ellipse-callout':_0x4255ec(0x14c),'cloud-callout':_0x4255ec(0x121),'border-callout1':_0x4255ec(0x9d),'border-callout2':_0x4255ec(0x17b),'border-callout3':'Chú\x20thích\x20đường\x20kẻ\x203','accent-callout1':'Chú\x20thích\x20nhấn\x20mạnh\x201','accent-callout2':_0x4255ec(0xb6),'accent-callout3':_0x4255ec(0xef),'callout1':_0x4255ec(0xfa),'callout2':_0x4255ec(0xc6),'callout3':_0x4255ec(0xa4),'accent-border-callout1':_0x4255ec(0x114),'accent-border-callout2':'Chú\x20thích\x20viền\x20nhấn\x20mạnh\x202','accent-border-callout3':_0x4255ec(0xda),'left-circular-arrow':_0x4255ec(0x15e),'left-right-circular-arrow':_0x4255ec(0x150),'swoosh-arrow':'Mũi\x20tên\x20lướt','left-right-ribbon':_0x4255ec(0x178),'pie-wedge':_0x4255ec(0x127),'funnel':'Phễu','gear6':_0x4255ec(0x13b),'gear9':'Bánh\x20răng\x209','corner-tabs':_0x4255ec(0xec),'action-button-back-previous':_0x4255ec(0x137),'action-button-forward-next':_0x4255ec(0x12c),'action-button-beginning':'Nút\x20hành\x20động:\x20Bắt\x20đầu','action-button-end':'Nút\x20hành\x20động:\x20Kết\x20thúc','action-button-home':_0x4255ec(0x17e),'action-button-information':_0x4255ec(0xac),'action-button-return':'Nút\x20hành\x20động:\x20Trở\x20lại','action-button-movie':_0x4255ec(0x181),'action-button-document':_0x4255ec(0x11f),'action-button-sound':'Nút\x20hành\x20động:\x20Âm\x20thanh','action-button-help':_0x4255ec(0x164),'action-button-blank':_0x4255ec(0x165),'chart-plus':_0x4255ec(0xba),'chart-star':'Biểu\x20đồ\x20sao','chart-x':_0x4255ec(0x167),'flow-chart-offline-storage':_0x4255ec(0x9c),'line-inv':_0x4255ec(0xf9),'plaque-tabs':_0x4255ec(0xe4),'square-tabs':'Tab\x20vuông','up-down-arrow-callout':_0x4255ec(0x157)}},'toolbar':{'expandShapeToolbar':_0x4255ec(0x136),'collapseShapeToolbar':_0x4255ec(0x141),'alignLeft':'Căn\x20trái','alignCenter':_0x4255ec(0xcf),'alignRight':_0x4255ec(0xe3),'alignJustify':_0x4255ec(0xde),'bold':_0x4255ec(0x111),'italic':_0x4255ec(0x10b),'underline':_0x4255ec(0x107),'strikethrough':_0x4255ec(0x185),'subscript':_0x4255ec(0x10a),'superscript':_0x4255ec(0xd6),'textColor':'Màu\x20chữ','textBackgroundColor':_0x4255ec(0x152),'fillColor':_0x4255ec(0xed),'resetColor':'Reset\x20color'},'align':{'top':_0x4255ec(0xc1),'middle':_0x4255ec(0x97),'bottom':_0x4255ec(0xbd)},'textWrap':{'inline':_0x4255ec(0x124),'square':_0x4255ec(0xb9),'topAndBottom':_0x4255ec(0xa7),'behindText':_0x4255ec(0x148),'inFrontText':_0x4255ec(0xd9)},'crop':{'shape':_0x4255ec(0x106)}}};}));
|
|
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 _0xaa92(){var _0x244dcd=['居中对齐','流程图:过程','终点箭头类型','双箭头曲线','不完整圆','新月形','气泡:云','双括号','删除线','9齿齿轮','左对齐','无序列表','箭头:手杖形','开放箭头','终点箭头大小','矩形:棱台','长划线-点-点','长划线','箭头:直角双向','浮于文字上方','太阳形','532296ANTAQq','箭头:环形','不等号','拐角半径','平行四边形','标注:弯曲线形(无边框)','双大括号','箭头:左','标注:弯曲线形','363143KHTVmu','图片源','任务列表','底部对齐','箭头总汇','纵向文本框','圆角矩形','星形:七角','流程图:预定义过程','流程图:或者','左中括号','矩形:对角圆角','矩形:剪去对角','文字背景颜色','折线:箭头','矩形:一个圆顶角,剪去另一个顶角','7406048cWYXVz','星形:十六角','偏移量\x20X','流程图:汇总连接','流程图:卡片','菱形箭头','空白按钮','右大括号','插入形状','卷形:水平','直线箭头','右上对齐','9725NaFTzI','草绘样式','标注:双弯曲线形(无边框)','圆:空心','上下箭头标注','6齿齿轮','矩形:剪去顶角','箭头:燕尾形','星形:八角','卷形:垂直','对话气泡:矩形','隐藏形状面板','箭头:下','隐形箭头','箭头:圆角右','流程图:磁盘','流程图:对照','切换垂直翻转','六边形','十二边形','Superscript','八边形','流程图:排序','十边形','牌匾标签','星形:六角','星形:十二角','标注:右箭头','返回/上一个按钮','箭头:虚尾','双箭头直线','箭头:下弧形','流程图:手动操作','标注:下箭头','箭头:V型','七边形','立方体','标注:双弯曲线形(带边框和强调线)','文本颜色','横向文本框','1269768zvkcQq','结束按钮','垂直居中','310IOJWhf','object','剪去单角矩形','弯曲箭头','直角三角形','标注:线形(带强调线)','短划线类型','切换水平翻转','矩形:折角','箭头:十字','文本背景色','标题1','exports','将图片平铺为纹理','右下对齐','格式化形状','左右圆形箭头','图表加号','流程图:手动输入','标注:双弯曲线形','标注:线形(带边框和强调线)','五边形','标题5','星形:五角','图表星号','标注:十字箭头','形状位置','上下型','删除形状','813094lHYeAF','非等腰梯形','帮助按钮','禁止符','主页按钮','刻度\x20Y','箭头:上','标注:双弯曲线形(带强调线)','双波形','流程图:显示','amd','6sKvKkN','顶部对齐','收起形状工具栏','公式形状','下划线','短划线-点','带形:前凸','十字形','缺角矩形','1884xUjYLO','箭头:右','流程图:准备','箭头:上弧形','矩形:单圆角','星形:二十四角','信息按钮','流程图:顺序访问存储器','偏移量\x20Y','箭头:丁字','流程图:接点','展开形状工具栏','箭头:直角上','流程图','图表X','前进/下一个按钮','标注:上箭头','泪滴形','流程图:直接访问存储器','7EHCimK','箭头:左弧形','端点类型','图案填充','四周型','左右带形','打开形状面板','透明度','4586508AGeQfG','带形:前凸弯','左上对齐','代码块','文档按钮','带形:上凸','标注:线形(无边框)','基本形状','闪电形','逆时针90度旋转','标题4','流程图:终止','椭圆箭头','声音按钮','与形状一起旋转','标注:弯曲线形(带边框和强调线)','空心弧','标注:左箭头','星形:十角','对话气泡:圆角矩形','切换文本竖排','爆炸形:8pt','饼形楔','流程图:多文档'];_0xaa92=function(){return _0x244dcd;};return _0xaa92();}function _0x1f61(_0x307c6a,_0x391d1e){_0x307c6a=_0x307c6a-0xca;var _0xaa92b5=_0xaa92();var _0x1f61d3=_0xaa92b5[_0x307c6a];return _0x1f61d3;}(function(_0xe3cb33,_0x36f11b){var _0x371388=_0x1f61,_0x4bd324=_0xe3cb33();while(!![]){try{var _0x5be0d5=parseInt(_0x371388(0x139))/0x1+parseInt(_0x371388(0x159))/0x2*(parseInt(_0x371388(0x164))/0x3)+parseInt(_0x371388(0x16d))/0x4*(-parseInt(_0x371388(0x111))/0x5)+-parseInt(_0x371388(0xec))/0x6*(parseInt(_0x371388(0x180))/0x7)+-parseInt(_0x371388(0x105))/0x8+-parseInt(_0x371388(0x188))/0x9+parseInt(_0x371388(0x13c))/0xa*(parseInt(_0x371388(0xf5))/0xb);if(_0x5be0d5===_0x36f11b)break;else _0x4bd324['push'](_0x4bd324['shift']());}catch(_0x5ed17c){_0x4bd324['push'](_0x4bd324['shift']());}}}(_0xaa92,0xa29e6),function(_0x22a98f,_0x550ca2){var _0x48e1e5=_0x1f61;typeof exports==_0x48e1e5(0x13d)&&typeof module<'u'?module[_0x48e1e5(0x148)]=_0x550ca2():typeof define=='function'&&define[_0x48e1e5(0x163)]?define([],_0x550ca2):(_0x22a98f=typeof globalThis<'u'?globalThis:_0x22a98f||self,_0x22a98f['UniverProShapeEditorUiZhCN']=_0x550ca2());}(this,function(){var _0x345f49=_0x1f61;return{'shape-editor-ui':{'title':'形状','insertShape':_0x345f49(0x10d),'openPanel':_0x345f49(0x186),'deleteShape':_0x345f49(0x158),'hidePanel':_0x345f49(0x11c),'formatShape':_0x345f49(0x14b),'shapeStyle':'形状样式','shapePosition':_0x345f49(0x156),'toggleFlipH':_0x345f49(0x143),'toggleFlipV':_0x345f49(0x122),'rotateRight90':'顺时针90度旋转','rotateLeft90':_0x345f49(0x191),'toggleTextVertical':_0x345f49(0xd3),'textEditor':{'paragraphType':{'normal':'正文','heading1':_0x345f49(0x147),'heading2':'标题2','heading3':'标题3','heading4':_0x345f49(0x192),'heading5':_0x345f49(0x152),'orderedList':'有序列表','bulletList':_0x345f49(0xe2),'checkList':_0x345f49(0xf7),'quote':'引用','code':_0x345f49(0x18b),'callout':'高亮框'}},'fill':{'title':'填充','noFill':'无颜色','solidFill':'纯色','gradientFill':'渐变','pictureFill':'图片','patternFill':_0x345f49(0x183),'color':'颜色','transparency':'透明度','picture':{'source':_0x345f49(0xf6),'insert':'插入...','tileAsTexture':_0x345f49(0x149),'offsetX':_0x345f49(0x107),'offsetY':_0x345f49(0x175),'scaleX':'刻度\x20X','scaleY':_0x345f49(0x15e),'alignment':'对齐方式','rotateWithShape':_0x345f49(0xcd),'align':{'tl':_0x345f49(0x18a),'t':_0x345f49(0x165),'tr':_0x345f49(0x110),'l':'左对齐','ctr':_0x345f49(0xd7),'r':'右对齐','bl':'左下对齐','b':_0x345f49(0xf8),'br':_0x345f49(0x14a)}}},'line':{'title':'线条','noLine':'无线条','solidLine':'实线','gradientLine':'渐变线','color':'颜色','transparency':_0x345f49(0x187),'width':'宽度','cornerRadius':_0x345f49(0xef),'dashType':{'title':_0x345f49(0x142),'solid':'实线','roundDot':'圆点','squareDot':'方点','dash':'短划线','dashDot':_0x345f49(0x169),'longDash':_0x345f49(0xe8),'longDashDot':'长划线-点','longDashDotDot':_0x345f49(0xe7)},'capType':{'title':_0x345f49(0x182),'flat':'平面','round':'圆形','square':'方形'},'joinType':{'title':'联接类型','miter':'斜接','round':'圆形','bevel':'斜面'},'beginArrowType':'起点箭头类型','beginArrowSize':'起点箭头大小','endArrowType':_0x345f49(0xd9),'endArrowSize':_0x345f49(0xe5),'arrowType':{'none':'无','arrow':'箭头','openArrow':_0x345f49(0xe4),'stealthArrow':_0x345f49(0x11e),'diamondArrow':_0x345f49(0x10a),'ovalArrow':_0x345f49(0xcb)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x345f49(0x112),'none':'无','curved':'弯曲','freehand':'手绘','handDrawn':'潦草'}},'shape':{'group':{'line':'线条','rectangle':'矩形','basicShape':_0x345f49(0x18f),'blockArrow':_0x345f49(0xf9),'equationShape':_0x345f49(0x167),'flowchart':_0x345f49(0x17a),'starAndBanner':'星与旗帜','callout':'标注','other':'其他'},'type':{'line':'直线','straight-connector1':_0x345f49(0x10f),'straight-connector2':_0x345f49(0x12f),'bent-connector3':'折线','bent-connector3-arrow1':_0x345f49(0x103),'bent-connector3-arrow2':'双箭头折线','curved-connector3':'曲线','curved-connector3-arrow1':'曲线:箭头','curved-connector3-arrow2':_0x345f49(0xda),'rect':'矩形','round-rect':_0x345f49(0xfb),'snip1-rect':_0x345f49(0x13e),'snip2-same-rect':_0x345f49(0x117),'snip2-diag-rect':_0x345f49(0x101),'snip-round-rect':_0x345f49(0x104),'round1-rect':_0x345f49(0x171),'round2-same-rect':'矩形:圆顶角','round2-diag-rect':_0x345f49(0x100),'rect-textbox-horizontal':_0x345f49(0x138),'rect-textbox-vertical':_0x345f49(0xfa),'ellipse':'椭圆','triangle':'等腰三角形','rt-triangle':_0x345f49(0x140),'parallelogram':_0x345f49(0xf0),'trapezoid':'梯形','non-isosceles-trapezoid':_0x345f49(0x15a),'diamond':'菱形','pentagon':_0x345f49(0x151),'hexagon':_0x345f49(0x123),'heptagon':_0x345f49(0x134),'octagon':_0x345f49(0x126),'decagon':_0x345f49(0x128),'dodecagon':_0x345f49(0x124),'pie':_0x345f49(0xdb),'chord':'弦形','teardrop':_0x345f49(0x17e),'frame':'图文框','half-frame':'半闭框','corner':'L形','diag-stripe':'斜纹','plus':_0x345f49(0x16b),'plaque':_0x345f49(0x16c),'can':'圆柱形','cube':_0x345f49(0x135),'bevel':_0x345f49(0xe6),'donut':_0x345f49(0x114),'no-smoking':_0x345f49(0x15c),'block-arc':_0x345f49(0xcf),'folder-corner':_0x345f49(0x144),'smiley-face':'笑脸','heart':'心形','lightning-bolt':_0x345f49(0x190),'sun':_0x345f49(0xeb),'moon':_0x345f49(0xdc),'cloud':'云形','arc':'弧形','bracket-pair':_0x345f49(0xde),'brace-pair':_0x345f49(0xf2),'left-bracket':_0x345f49(0xff),'right-bracket':'右中括号','left-brace':'左大括号','right-brace':_0x345f49(0x10c),'right-arrow':_0x345f49(0x16e),'left-arrow':_0x345f49(0xf3),'up-arrow':_0x345f49(0x15f),'down-arrow':_0x345f49(0x11d),'left-right-arrow':'箭头:左右','up-down-arrow':'箭头:上下','quad-arrow':_0x345f49(0x145),'left-right-up-arrow':_0x345f49(0x176),'bent-arrow':_0x345f49(0x11f),'uturn-arrow':_0x345f49(0xe3),'left-up-arrow':_0x345f49(0xe9),'bent-up-arrow':_0x345f49(0x179),'curved-right-arrow':'箭头:右弧形','curved-left-arrow':_0x345f49(0x181),'curved-up-arrow':_0x345f49(0x170),'curved-down-arrow':_0x345f49(0x130),'striped-right-arrow':_0x345f49(0x12e),'notched-right-arrow':_0x345f49(0x118),'home-plate':_0x345f49(0x151),'chevron':_0x345f49(0x133),'right-arrow-callout':_0x345f49(0x12c),'down-arrow-callout':_0x345f49(0x132),'left-arrow-callout':_0x345f49(0xd0),'up-arrow-callout':_0x345f49(0x17d),'left-right-arrow-callout':'标注:左右箭头','quad-arrow-callout':_0x345f49(0x155),'circular-arrow':_0x345f49(0xed),'math-plus':'加号','math-minus':'减号','math-multiply':'乘号','math-divide':'除号','math-equal':'等号','math-not-equal':_0x345f49(0xee),'flow-chart-process':_0x345f49(0xd8),'flow-chart-alternate-process':'流程图:可选过程','flow-chart-decision':'流程图:决策','flow-chart-input-output':'流程图:数据','flow-chart-predefined-process':_0x345f49(0xfd),'flow-chart-internal-storage':'流程图:内部贮存','flow-chart-document':'流程图:文档','flow-chart-multidocument':_0x345f49(0xd6),'flow-chart-terminator':_0x345f49(0xca),'flow-chart-preparation':_0x345f49(0x16f),'flow-chart-manual-input':_0x345f49(0x14e),'flow-chart-manual-operation':_0x345f49(0x131),'flow-chart-connector':_0x345f49(0x177),'flow-chart-offpage-connector':'流程图:离页连接符','flow-chart-punched-card':_0x345f49(0x109),'flow-chart-punched-tape':'流程图:资料带','flow-chart-summing-junction':_0x345f49(0x108),'flow-chart-or':_0x345f49(0xfe),'flow-chart-collate':_0x345f49(0x121),'flow-chart-sort':_0x345f49(0x127),'flow-chart-extract':'流程图:摘录','flow-chart-merge':'流程图:合并','flow-chart-online-storage':'流程图:存储数据','flow-chart-delay':'流程图:延期','flow-chart-magnetic-tape':_0x345f49(0x174),'flow-chart-magnetic-disk':_0x345f49(0x120),'flow-chart-magnetic-drum':_0x345f49(0x17f),'flow-chart-display':_0x345f49(0x162),'irregular-seal1':_0x345f49(0xd4),'irregular-seal2':'爆炸形:14pt','star4':'星形:四角','star5':_0x345f49(0x153),'star6':_0x345f49(0x12a),'star7':_0x345f49(0xfc),'star8':_0x345f49(0x119),'star10':_0x345f49(0xd1),'star12':_0x345f49(0x12b),'star16':_0x345f49(0x106),'star24':_0x345f49(0x172),'star32':'星形:三十二角','ribbon2':_0x345f49(0x18d),'ribbon':_0x345f49(0x16a),'ellipse-ribbon2':'带形:上凸弯','ellipse-ribbon':_0x345f49(0x189),'vertical-scroll':_0x345f49(0x11a),'horizontal-scroll':_0x345f49(0x10e),'wave':'波形','double-wave':_0x345f49(0x161),'wedge-rect-callout':_0x345f49(0x11b),'wedge-round-rect-callout':_0x345f49(0xd2),'wedge-ellipse-callout':'对话气泡:圆形','cloud-callout':_0x345f49(0xdd),'border-callout1':'标注:线形','border-callout2':_0x345f49(0xf4),'border-callout3':_0x345f49(0x14f),'accent-callout1':_0x345f49(0x141),'accent-callout2':'标注:弯曲线形(带强调线)','accent-callout3':_0x345f49(0x160),'callout1':_0x345f49(0x18e),'callout2':_0x345f49(0xf1),'callout3':_0x345f49(0x113),'accent-border-callout1':_0x345f49(0x150),'accent-border-callout2':_0x345f49(0xce),'accent-border-callout3':_0x345f49(0x136),'left-circular-arrow':'左圆形箭头','left-right-circular-arrow':_0x345f49(0x14c),'swoosh-arrow':_0x345f49(0x13f),'left-right-ribbon':_0x345f49(0x185),'pie-wedge':_0x345f49(0xd5),'funnel':'漏斗','gear6':_0x345f49(0x116),'gear9':_0x345f49(0xe0),'corner-tabs':'角标','action-button-back-previous':_0x345f49(0x12d),'action-button-forward-next':_0x345f49(0x17c),'action-button-beginning':'开始按钮','action-button-end':_0x345f49(0x13a),'action-button-home':_0x345f49(0x15d),'action-button-information':_0x345f49(0x173),'action-button-return':'返回按钮','action-button-movie':'电影按钮','action-button-document':_0x345f49(0x18c),'action-button-sound':_0x345f49(0xcc),'action-button-help':_0x345f49(0x15b),'action-button-blank':_0x345f49(0x10b),'chart-plus':_0x345f49(0x14d),'chart-star':_0x345f49(0x154),'chart-x':_0x345f49(0x17b),'flow-chart-offline-storage':'流程图:离线存储','line-inv':'线反向','plaque-tabs':_0x345f49(0x129),'square-tabs':'方形标签','up-down-arrow-callout':_0x345f49(0x115)}},'toolbar':{'expandShapeToolbar':_0x345f49(0x178),'collapseShapeToolbar':_0x345f49(0x166),'alignLeft':_0x345f49(0xe1),'alignCenter':'居中对齐','alignRight':'右对齐','alignJustify':'两端对齐','bold':'粗体','italic':'斜体','underline':_0x345f49(0x168),'strikethrough':_0x345f49(0xdf),'subscript':'Subscript','superscript':_0x345f49(0x125),'textColor':_0x345f49(0x137),'textBackgroundColor':_0x345f49(0x102),'fillColor':_0x345f49(0x146),'resetColor':'重置颜色'},'align':{'top':_0x345f49(0x165),'middle':_0x345f49(0x13b),'bottom':_0x345f49(0xf8)},'textWrap':{'inline':'嵌入型','square':_0x345f49(0x184),'topAndBottom':_0x345f49(0x157),'behindText':'衬于文字下方','inFrontText':_0x345f49(0xea)},'crop':{'shape':'裁剪为形状'}}};}));
|
|
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(_0x2ec93e,_0x265711){var _0x3f3e70=_0x5a8a,_0x2715b6=_0x2ec93e();while(!![]){try{var _0x20a619=-parseInt(_0x3f3e70(0x10d))/0x1+-parseInt(_0x3f3e70(0x196))/0x2+-parseInt(_0x3f3e70(0x137))/0x3+parseInt(_0x3f3e70(0x191))/0x4*(parseInt(_0x3f3e70(0x1be))/0x5)+parseInt(_0x3f3e70(0x138))/0x6+-parseInt(_0x3f3e70(0x15d))/0x7*(parseInt(_0x3f3e70(0x18d))/0x8)+parseInt(_0x3f3e70(0x1a4))/0x9*(parseInt(_0x3f3e70(0x1bc))/0xa);if(_0x20a619===_0x265711)break;else _0x2715b6['push'](_0x2715b6['shift']());}catch(_0xc873d6){_0x2715b6['push'](_0x2715b6['shift']());}}}(_0x4d69,0xbf89a),function(_0x3225e1,_0x5d2a2b){var _0x55dffa=_0x5a8a;typeof exports==_0x55dffa(0x148)&&typeof module<'u'?module['exports']=_0x5d2a2b():typeof define==_0x55dffa(0x181)&&define[_0x55dffa(0x19b)]?define([],_0x5d2a2b):(_0x3225e1=typeof globalThis<'u'?globalThis:_0x3225e1||self,_0x3225e1[_0x55dffa(0x134)]=_0x5d2a2b());}(this,function(){var _0x81dfa1=_0x5a8a;return{'shape-editor-ui':{'title':'形狀','insertShape':_0x81dfa1(0x194),'openPanel':_0x81dfa1(0x19e),'deleteShape':_0x81dfa1(0x130),'hidePanel':_0x81dfa1(0x185),'formatShape':_0x81dfa1(0x11e),'shapeStyle':_0x81dfa1(0x186),'shapePosition':_0x81dfa1(0x164),'toggleFlipH':'切換水平翻轉','toggleFlipV':_0x81dfa1(0x133),'rotateRight90':'順時針\x2090\x20度旋轉','rotateLeft90':'逆時針\x2090\x20度旋轉','toggleTextVertical':_0x81dfa1(0x1a5),'textEditor':{'paragraphType':{'normal':'正文','heading1':_0x81dfa1(0x140),'heading2':'標題\x202','heading3':'標題\x203','heading4':'標題\x204','heading5':_0x81dfa1(0x19f),'orderedList':_0x81dfa1(0x10e),'bulletList':_0x81dfa1(0x163),'checkList':_0x81dfa1(0x18c),'quote':'引用','code':'程式碼區塊','callout':_0x81dfa1(0x1bf)}},'fill':{'title':'填充','noFill':_0x81dfa1(0x157),'solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':'圖案填充','color':'顏色','transparency':_0x81dfa1(0x120),'picture':{'source':_0x81dfa1(0x105),'insert':_0x81dfa1(0x178),'tileAsTexture':_0x81dfa1(0x123),'offsetX':_0x81dfa1(0x144),'offsetY':'偏移量\x20Y','scaleX':_0x81dfa1(0x18e),'scaleY':_0x81dfa1(0x172),'alignment':_0x81dfa1(0x16a),'rotateWithShape':_0x81dfa1(0x1a1),'align':{'tl':'左上對齊','t':'頂部對齊','tr':_0x81dfa1(0x14d),'l':_0x81dfa1(0x18b),'ctr':_0x81dfa1(0x16e),'r':_0x81dfa1(0x128),'bl':_0x81dfa1(0x108),'b':_0x81dfa1(0x19c),'br':'右下對齊'}}},'line':{'title':'線條','noLine':_0x81dfa1(0x173),'solidLine':'實線','gradientLine':'漸層線','color':'顏色','transparency':_0x81dfa1(0x120),'width':'寬度','cornerRadius':_0x81dfa1(0x184),'dashType':{'title':'虛線類型','solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':_0x81dfa1(0x180),'longDash':_0x81dfa1(0x154),'longDashDot':_0x81dfa1(0x14c),'longDashDotDot':'長虛線-點-點'},'capType':{'title':_0x81dfa1(0x1b0),'flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':'聯接類型','miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':'起點箭頭類型','beginArrowSize':_0x81dfa1(0x190),'endArrowType':'終點箭頭類型','endArrowSize':_0x81dfa1(0x122),'arrowType':{'none':'無','arrow':'箭頭','openArrow':_0x81dfa1(0x129),'stealthArrow':'隱形箭頭','diamondArrow':_0x81dfa1(0x15b),'ovalArrow':_0x81dfa1(0x1a9)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':'草繪樣式','none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':_0x81dfa1(0x131),'blockArrow':_0x81dfa1(0x111),'equationShape':_0x81dfa1(0x12f),'flowchart':_0x81dfa1(0x132),'starAndBanner':_0x81dfa1(0x10a),'callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':'直線箭頭','straight-connector2':'雙箭頭直線','bent-connector3':'折線','bent-connector3-arrow1':_0x81dfa1(0x12b),'bent-connector3-arrow2':_0x81dfa1(0x1ad),'curved-connector3':'曲線','curved-connector3-arrow1':_0x81dfa1(0x17a),'curved-connector3-arrow2':'雙箭頭曲線','rect':'矩形','round-rect':_0x81dfa1(0x11b),'snip1-rect':_0x81dfa1(0x112),'snip2-same-rect':_0x81dfa1(0x159),'snip2-diag-rect':_0x81dfa1(0x1b6),'snip-round-rect':_0x81dfa1(0x192),'round1-rect':_0x81dfa1(0x119),'round2-same-rect':_0x81dfa1(0x174),'round2-diag-rect':_0x81dfa1(0x1af),'rect-textbox-horizontal':_0x81dfa1(0x12a),'rect-textbox-vertical':_0x81dfa1(0x170),'ellipse':'橢圓','triangle':_0x81dfa1(0x14f),'rt-triangle':_0x81dfa1(0x11f),'parallelogram':'平行四邊形','trapezoid':'梯形','non-isosceles-trapezoid':'非等腰梯形','diamond':'菱形','pentagon':_0x81dfa1(0x109),'hexagon':_0x81dfa1(0x12e),'heptagon':_0x81dfa1(0x198),'octagon':_0x81dfa1(0x10b),'decagon':_0x81dfa1(0x15a),'dodecagon':'十二邊形','pie':_0x81dfa1(0x17e),'chord':'弦形','teardrop':'淚滴形','frame':'圖文框','half-frame':_0x81dfa1(0x1b5),'corner':'L形','diag-stripe':'斜紋','plus':_0x81dfa1(0x1a0),'plaque':_0x81dfa1(0x125),'can':'圓柱形','cube':_0x81dfa1(0x10f),'bevel':_0x81dfa1(0x15e),'donut':'圓:空心','no-smoking':_0x81dfa1(0x165),'block-arc':_0x81dfa1(0x1ba),'folder-corner':'矩形:折角','smiley-face':'笑臉','heart':'心形','lightning-bolt':_0x81dfa1(0x1aa),'sun':_0x81dfa1(0x1ae),'moon':'新月形','cloud':'雲形','arc':'弧形','bracket-pair':'雙括號','brace-pair':'雙大括號','left-bracket':_0x81dfa1(0x107),'right-bracket':_0x81dfa1(0x1b3),'left-brace':_0x81dfa1(0x16f),'right-brace':_0x81dfa1(0x153),'right-arrow':_0x81dfa1(0x195),'left-arrow':_0x81dfa1(0x121),'up-arrow':_0x81dfa1(0x102),'down-arrow':_0x81dfa1(0x12d),'left-right-arrow':'箭頭:左右','up-down-arrow':_0x81dfa1(0x187),'quad-arrow':_0x81dfa1(0x14a),'left-right-up-arrow':_0x81dfa1(0x169),'bent-arrow':_0x81dfa1(0x16b),'uturn-arrow':'箭頭:手杖形','left-up-arrow':_0x81dfa1(0x171),'bent-up-arrow':_0x81dfa1(0x15c),'curved-right-arrow':_0x81dfa1(0x115),'curved-left-arrow':'箭頭:左弧形','curved-up-arrow':_0x81dfa1(0x1b8),'curved-down-arrow':_0x81dfa1(0x1c0),'striped-right-arrow':'箭頭:虛尾','notched-right-arrow':'箭頭:燕尾形','home-plate':'五邊形','chevron':_0x81dfa1(0x116),'right-arrow-callout':_0x81dfa1(0x106),'down-arrow-callout':_0x81dfa1(0x176),'left-arrow-callout':_0x81dfa1(0x124),'up-arrow-callout':'標註:上箭頭','left-right-arrow-callout':'標註:左右箭頭','quad-arrow-callout':_0x81dfa1(0x145),'circular-arrow':_0x81dfa1(0x11a),'math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':_0x81dfa1(0x156),'flow-chart-process':'流程圖:過程','flow-chart-alternate-process':_0x81dfa1(0x11d),'flow-chart-decision':_0x81dfa1(0x1b1),'flow-chart-input-output':_0x81dfa1(0x13f),'flow-chart-predefined-process':_0x81dfa1(0x150),'flow-chart-internal-storage':'流程圖:內部貯存','flow-chart-document':'流程圖:文檔','flow-chart-multidocument':_0x81dfa1(0x110),'flow-chart-terminator':_0x81dfa1(0x18f),'flow-chart-preparation':_0x81dfa1(0x189),'flow-chart-manual-input':_0x81dfa1(0x162),'flow-chart-manual-operation':_0x81dfa1(0x17d),'flow-chart-connector':'流程圖:接點','flow-chart-offpage-connector':'流程圖:離頁連接符','flow-chart-punched-card':'流程圖:卡片','flow-chart-punched-tape':_0x81dfa1(0x146),'flow-chart-summing-junction':_0x81dfa1(0x1b4),'flow-chart-or':_0x81dfa1(0x1a2),'flow-chart-collate':_0x81dfa1(0x13c),'flow-chart-sort':_0x81dfa1(0x13d),'flow-chart-extract':'流程圖:摘錄','flow-chart-merge':_0x81dfa1(0x1c1),'flow-chart-online-storage':_0x81dfa1(0x1c4),'flow-chart-delay':_0x81dfa1(0x177),'flow-chart-magnetic-tape':_0x81dfa1(0x149),'flow-chart-magnetic-disk':_0x81dfa1(0x13a),'flow-chart-magnetic-drum':'流程圖:直接訪問存儲器','flow-chart-display':_0x81dfa1(0x104),'irregular-seal1':_0x81dfa1(0x175),'irregular-seal2':_0x81dfa1(0x151),'star4':_0x81dfa1(0x1ab),'star5':'星形:五角','star6':'星形:六角','star7':_0x81dfa1(0x16c),'star8':_0x81dfa1(0x147),'star10':_0x81dfa1(0x1a8),'star12':'星形:十二角','star16':_0x81dfa1(0x1a3),'star24':_0x81dfa1(0x15f),'star32':_0x81dfa1(0x19d),'ribbon2':_0x81dfa1(0x152),'ribbon':_0x81dfa1(0x167),'ellipse-ribbon2':_0x81dfa1(0x1b2),'ellipse-ribbon':_0x81dfa1(0x1a7),'vertical-scroll':'卷形:垂直','horizontal-scroll':_0x81dfa1(0x143),'wave':'波形','double-wave':_0x81dfa1(0x197),'wedge-rect-callout':'對話氣泡:矩形','wedge-round-rect-callout':_0x81dfa1(0x17c),'wedge-ellipse-callout':_0x81dfa1(0x166),'cloud-callout':_0x81dfa1(0x127),'border-callout1':_0x81dfa1(0x1c5),'border-callout2':_0x81dfa1(0x135),'border-callout3':'標註:雙彎曲線形','accent-callout1':_0x81dfa1(0x114),'accent-callout2':_0x81dfa1(0x117),'accent-callout3':_0x81dfa1(0x161),'callout1':'標註:線形(無邊框)','callout2':'標註:彎曲線形(無邊框)','callout3':_0x81dfa1(0x160),'accent-border-callout1':_0x81dfa1(0x18a),'accent-border-callout2':_0x81dfa1(0x19a),'accent-border-callout3':_0x81dfa1(0x13b),'left-circular-arrow':_0x81dfa1(0x155),'left-right-circular-arrow':_0x81dfa1(0x113),'swoosh-arrow':'彎曲箭頭','left-right-ribbon':_0x81dfa1(0x11c),'pie-wedge':_0x81dfa1(0x136),'funnel':'漏斗','gear6':_0x81dfa1(0x13e),'gear9':_0x81dfa1(0x199),'corner-tabs':'角標','action-button-back-previous':_0x81dfa1(0x1c3),'action-button-forward-next':_0x81dfa1(0x10c),'action-button-beginning':_0x81dfa1(0x17f),'action-button-end':_0x81dfa1(0x103),'action-button-home':_0x81dfa1(0x1c2),'action-button-information':_0x81dfa1(0x193),'action-button-return':_0x81dfa1(0x1a6),'action-button-movie':_0x81dfa1(0x141),'action-button-document':'文檔按鈕','action-button-sound':_0x81dfa1(0x12c),'action-button-help':_0x81dfa1(0x183),'action-button-blank':_0x81dfa1(0x1ac),'chart-plus':_0x81dfa1(0x14b),'chart-star':'圖表星號','chart-x':_0x81dfa1(0x142),'flow-chart-offline-storage':'流程圖:離線存儲','line-inv':'線反向','plaque-tabs':_0x81dfa1(0x1b7),'square-tabs':_0x81dfa1(0x139),'up-down-arrow-callout':_0x81dfa1(0x126)}},'toolbar':{'expandShapeToolbar':_0x81dfa1(0x14e),'collapseShapeToolbar':'收起形狀工具列','alignLeft':_0x81dfa1(0x18b),'alignCenter':_0x81dfa1(0x158),'alignRight':_0x81dfa1(0x128),'alignJustify':_0x81dfa1(0x182),'bold':'粗體','italic':'斜體','underline':'底線','strikethrough':'刪除線','subscript':_0x81dfa1(0x17b),'superscript':'Superscript','textColor':_0x81dfa1(0x1bb),'textBackgroundColor':'Text\x20Background\x20color','fillColor':_0x81dfa1(0x1b9),'resetColor':_0x81dfa1(0x1bd)},'align':{'top':_0x81dfa1(0x168),'middle':_0x81dfa1(0x188),'bottom':'底部對齊'},'textWrap':{'inline':_0x81dfa1(0x179),'square':'矩形','topAndBottom':'上及下','behindText':'文字在前','inFrontText':_0x81dfa1(0x118)},'crop':{'shape':_0x81dfa1(0x16d)}}};}));function _0x5a8a(_0x3b2dc7,_0x19ba59){_0x3b2dc7=_0x3b2dc7-0x102;var _0x4d6959=_0x4d69();var _0x5a8aba=_0x4d6959[_0x3b2dc7];return _0x5a8aba;}function _0x4d69(){var _0x12f548=['流程圖:順序訪問存儲器','箭頭:十字','圖表加號','長虛線-點','右上對齊','展開形狀工具列','等腰三角形','流程圖:預定義過程','爆炸形:14pt','帶形:上凸','右大括號','長虛線','左圓形箭頭','不等號','無顏色','居中對齊','矩形:剪去頂角','十邊形','菱形箭頭','箭頭:直角上','28DEHcMk','矩形:棱台','星形:二十四角','標註:雙彎曲線形(無邊框)','標註:雙彎曲線形(帶強調線)','流程圖:手動輸入','無序列表','圖形位置','禁止符','對話氣泡:圓形','帶形:前凸','頂部對齊','箭頭:丁字','對齊方式','箭頭:圓角右','星形:七角','裁切為形狀','置中對齊','左大括號','縱向文字方塊','箭頭:直角雙向','縮放\x20Y','無線條','矩形:圓頂角','爆炸形:8pt','標註:下箭頭','流程圖:延期','插入...','與文字排列','曲線:箭頭','Subscript','對話氣泡:圓角矩形','流程圖:手動操作','不完整圓','開始按鈕','虛線-點','function','兩端對齊','幫助按鈕','拐角半徑','隱藏形狀面板','圖形樣式','箭頭:上下','垂直居中','流程圖:準備','標註:線形(帶邊框和強調線)','左對齊','任務列表','1827312ztPGxg','縮放\x20X','流程圖:終止','起點箭頭大小','4GigCrb','矩形:一個圓頂角,剪去另一個頂角','信息按鈕','插入形狀','箭頭:右','2080850lmSjKD','雙波形','七邊形','9齒齒輪','標註:彎曲線形(帶邊框和強調線)','amd','底部對齊','星形:三十二角','打開形狀面板','標題\x205','十字形','隨形狀旋轉','流程圖:或者','星形:十六角','304371TirIqv','切換文本豎排','返回按鈕','帶形:前凸彎','星形:十角','橢圓箭頭','閃電形','星形:四角','空白按鈕','雙箭頭折線','太陽形','矩形:對角圓角','端點類型','流程圖:決策','帶形:上凸彎','右中括號','流程圖:匯總連接','半閉框','矩形:剪去對角','牌匾標籤','箭頭:上弧形','文字背景色','空心弧','文字顏色','1310PurxOq','重置顏色','1961745lRhCDU','醒目提示框','箭頭:下弧形','流程圖:合併','主頁按鈕','返回/上一個按鈕','流程圖:存儲數據','標註:線形','箭頭:上','結束按鈕','流程圖:顯示','圖片來源','標註:右箭頭','左中括號','左下對齊','五邊形','星與旗幟','八邊形','前進/下一個按鈕','1554558jcCOhS','有序列表','立方體','流程圖:多文檔','箭頭總匯','剪去單角矩形','左右圓形箭頭','標註:線形(帶強調線)','箭頭:右弧形','箭頭:V型','標註:彎曲線形(帶強調線)','文字在後','矩形:單圓角','箭頭:環形','圓角矩形','左右帶形','流程圖:可選過程','格式化形狀','直角三角形','透明度','箭頭:左','終點箭頭大小','將圖片平鋪為紋理','標註:左箭頭','缺角矩形','上下箭頭標註','氣泡:雲','右對齊','開放箭頭','橫向文字方塊','折線:箭頭','聲音按鈕','箭頭:下','六邊形','公式形狀','刪除形狀','基本形狀','流程圖','切換垂直翻轉','UniverProShapeEditorUiZhHK','標註:彎曲線形','餅形楔','3540957zeEByo','3905148TxwxBW','方形標籤','流程圖:磁盤','標註:雙彎曲線形(帶邊框和強調線)','流程圖:對照','流程圖:排序','6齒齒輪','流程圖:數據','標題\x201','電影按鈕','圖表X','卷形:水平','偏移量\x20X','標註:十字箭頭','流程圖:資料帶','星形:八角','object'];_0x4d69=function(){return _0x12f548;};return _0x4d69();}
|
|
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 _0x485e(_0x44830b,_0x18ea9d){_0x44830b=_0x44830b-0xe7;var _0xa37e4f=_0xa37e();var _0x485e5c=_0xa37e4f[_0x44830b];return _0x485e5c;}function _0xa37e(){var _0x13bfa9=['逆時針\x2090\x20度旋轉','標題\x202','端點類型','箭頭:丁字','帶形:前凸彎','基本形狀','左上對齊','星形:十角','聲音按鈕','星形:七角','星形:四角','草繪樣式','3306989oGPaNL','1416903kAEmkR','箭頭:下','順時針\x2090\x20度旋轉','終點箭頭類型','星形:五角','禁止符','function','左右圓形箭頭','展開形狀工具列','右下對齊','電影按鈕','公式形狀','開始按鈕','菱形箭頭','隱形箭頭','流程圖:對照','圖表星號','上下箭頭標註','9491992voRXRo','文字在前','頂部對齊','星與旗幟','6齒齒輪','圓柱形','八邊形','流程圖:過程','箭頭:右弧形','星形:六角','箭頭:圓角右','縱向文字方塊','標題\x205','切換文本竖排','垂直居中','橢圓箭頭','五邊形','2043552BuexLL','主頁按鈕','星形:二十四角','標註:線形(帶邊框和強調線)','圖表加號','偏移量\x20X','流程圖:內部貯存','十邊形','標註:線形','上及下','流程圖:離線存儲','等腰三角形','爆炸形:8pt','不等號','縮放\x20Y','透明度','長虛線-點','箭頭:環形','UniverProShapeEditorUiZhTW','圖形樣式','矩形:對角圓角','434183qEQJHZ','隨形狀旋轉','流程圖:匯總連接','長虛線-點-點','標註:右箭頭','左中括號','流程圖:磁盤','起點箭頭大小','流程圖:接點','圓:空心','箭頭:上下','星形:三十二角','圖片來源','結束按鈕','流程圖:資料帶','流程圖','折線:箭頭','平行四邊形','箭頭:燕尾形','箭頭:左弧形','8KBMeqm','箭頭總匯','流程圖:排序','流程圖:摘錄','流程圖:文檔','矩形:圓頂角','將圖片平鋪為紋理','對齊方式','矩形:剪去頂角','卷形:垂直','372732LzvZYB','流程圖:預定義過程','切換垂直翻轉','返回按鈕','箭頭:十字','插入形狀','流程圖:或者','格式化形狀','左對齊','星形:八角','標註:雙彎曲線形(帶強調線)','居中對齊','標註:彎曲線形(無邊框)','左大括號','右對齊','流程圖:多文檔','刪除線','非等腰梯形','箭頭:右','56345dpdYtm','右上對齊','標註:左箭頭','流程圖:顯示','返回/上一個按鈕','標註:左右箭頭','左圓形箭頭','七邊形','程式碼區塊','標註:彎曲線形(帶邊框和強調線)','插入...','流程圖:準備','隱藏形狀面板','矩形:折角','剪去單角矩形','矩形:一個圓頂角,剪去另一個頂角','方形標籤','雙箭頭直線','圖文框','十二邊形','標註:雙彎曲線形(無邊框)','雙箭頭折線','刪除形狀','文字在後','流程圖:離頁連接符','閃電形','矩形:剪去對角','星形:十六角','十字形','矩形:棱台','標註:線形(無邊框)','缺角矩形','雙波形','拐角半徑','有序列表','Superscript','底部對齊','流程圖:手動操作','帶形:上凸彎','對話氣泡:圓角矩形','直線箭頭','流程圖:卡片','標題\x201','文檔按鈕','箭頭:直角上','虛線類型','雙大括號','空心弧','箭頭:左','彎曲箭頭','淚滴形','對話氣泡:圓形','起點箭頭類型','流程圖:合併','縮放\x20X','流程圖:可選過程','箭頭:上弧形','前進/下一個按鈕','置中對齊','打開形狀面板','重置顏色','箭頭:下弧形','開放箭頭','標註:十字箭頭','半閉框','流程圖:直接訪問存儲器','左右帶形','空白按鈕','直角三角形','虛線-點','新月形','聯接類型','標註:彎曲線形','流程圖:手動輸入','星形:十二角','object'];_0xa37e=function(){return _0x13bfa9;};return _0xa37e();}(function(_0x532adc,_0x3d1268){var _0x5f3e8f=_0x485e,_0x283659=_0x532adc();while(!![]){try{var _0x1b4113=-parseInt(_0x5f3e8f(0x174))/0x1+-parseInt(_0x5f3e8f(0x192))/0x2+parseInt(_0x5f3e8f(0x13c))/0x3+parseInt(_0x5f3e8f(0x188))/0x4*(parseInt(_0x5f3e8f(0x1a5))/0x5)+-parseInt(_0x5f3e8f(0x15f))/0x6+-parseInt(_0x5f3e8f(0x13b))/0x7+parseInt(_0x5f3e8f(0x14e))/0x8;if(_0x1b4113===_0x3d1268)break;else _0x283659['push'](_0x283659['shift']());}catch(_0x567b2c){_0x283659['push'](_0x283659['shift']());}}}(_0xa37e,0x3c7da),function(_0xb064a7,_0x4691bb){var _0x31fab1=_0x485e;typeof exports==_0x31fab1(0x12e)&&typeof module<'u'?module['exports']=_0x4691bb():typeof define==_0x31fab1(0x142)&&define['amd']?define([],_0x4691bb):(_0xb064a7=typeof globalThis<'u'?globalThis:_0xb064a7||self,_0xb064a7[_0x31fab1(0x171)]=_0x4691bb());}(this,function(){var _0x26e6ee=_0x485e;return{'shape-editor-ui':{'title':'形狀','insertShape':_0x26e6ee(0x197),'openPanel':_0x26e6ee(0x11e),'deleteShape':_0x26e6ee(0xf9),'hidePanel':_0x26e6ee(0xef),'formatShape':_0x26e6ee(0x199),'shapeStyle':_0x26e6ee(0x172),'shapePosition':'圖形位置','toggleFlipH':'切換水平翻轉','toggleFlipV':_0x26e6ee(0x194),'rotateRight90':_0x26e6ee(0x13e),'rotateLeft90':_0x26e6ee(0x12f),'toggleTextVertical':_0x26e6ee(0x15b),'textEditor':{'paragraphType':{'normal':'正文','heading1':_0x26e6ee(0x10d),'heading2':_0x26e6ee(0x130),'heading3':'標題\x203','heading4':'標題\x204','heading5':_0x26e6ee(0x15a),'orderedList':_0x26e6ee(0x105),'bulletList':'無序列表','checkList':'任務列表','quote':'引用','code':_0x26e6ee(0xeb),'callout':'醒目提示框'}},'fill':{'title':'填充','noFill':'無顏色','solidFill':'純色','gradientFill':'漸層','pictureFill':'圖片','patternFill':'圖案填充','color':'顏色','transparency':_0x26e6ee(0x16e),'picture':{'source':_0x26e6ee(0x180),'insert':_0x26e6ee(0xed),'tileAsTexture':_0x26e6ee(0x18e),'offsetX':_0x26e6ee(0x164),'offsetY':'偏移量\x20Y','scaleX':_0x26e6ee(0x119),'scaleY':_0x26e6ee(0x16d),'alignment':_0x26e6ee(0x18f),'rotateWithShape':_0x26e6ee(0x175),'align':{'tl':_0x26e6ee(0x135),'t':_0x26e6ee(0x150),'tr':_0x26e6ee(0x1a6),'l':'左對齊','ctr':_0x26e6ee(0x11d),'r':_0x26e6ee(0x1a0),'bl':'左下對齊','b':_0x26e6ee(0x107),'br':_0x26e6ee(0x145)}}},'line':{'title':'線條','noLine':'無線條','solidLine':'實線','gradientLine':'漸層線','color':'顏色','transparency':_0x26e6ee(0x16e),'width':'寬度','cornerRadius':_0x26e6ee(0x104),'dashType':{'title':_0x26e6ee(0x110),'solid':'實線','roundDot':'圓點','squareDot':'方點','dash':'虛線','dashDot':_0x26e6ee(0x128),'longDash':'長虛線','longDashDot':_0x26e6ee(0x16f),'longDashDotDot':_0x26e6ee(0x177)},'capType':{'title':_0x26e6ee(0x131),'flat':'平面','round':'圓形','square':'方形'},'joinType':{'title':_0x26e6ee(0x12a),'miter':'斜接','round':'圓形','bevel':'斜面'},'beginArrowType':_0x26e6ee(0x117),'beginArrowSize':_0x26e6ee(0x17b),'endArrowType':_0x26e6ee(0x13f),'endArrowSize':'終點箭頭大小','arrowType':{'none':'無','arrow':'箭頭','openArrow':_0x26e6ee(0x121),'stealthArrow':_0x26e6ee(0x14a),'diamondArrow':_0x26e6ee(0x149),'ovalArrow':_0x26e6ee(0x15d)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x26e6ee(0x13a),'none':'無','curved':'彎曲','freehand':'手繪','handDrawn':'潦草'}},'shape':{'group':{'line':'線條','rectangle':'矩形','basicShape':_0x26e6ee(0x134),'blockArrow':_0x26e6ee(0x189),'equationShape':_0x26e6ee(0x147),'flowchart':_0x26e6ee(0x183),'starAndBanner':_0x26e6ee(0x151),'callout':'標註','other':'其他'},'type':{'line':'直線','straight-connector1':_0x26e6ee(0x10b),'straight-connector2':_0x26e6ee(0xf4),'bent-connector3':'折線','bent-connector3-arrow1':_0x26e6ee(0x184),'bent-connector3-arrow2':_0x26e6ee(0xf8),'curved-connector3':'曲線','curved-connector3-arrow1':'曲線:箭頭','curved-connector3-arrow2':'雙箭頭曲線','rect':'矩形','round-rect':'圓角矩形','snip1-rect':_0x26e6ee(0xf1),'snip2-same-rect':_0x26e6ee(0x190),'snip2-diag-rect':_0x26e6ee(0xfd),'snip-round-rect':_0x26e6ee(0xf2),'round1-rect':'矩形:單圓角','round2-same-rect':_0x26e6ee(0x18d),'round2-diag-rect':_0x26e6ee(0x173),'rect-textbox-horizontal':'橫向文字方塊','rect-textbox-vertical':_0x26e6ee(0x159),'ellipse':'橢圓','triangle':_0x26e6ee(0x16a),'rt-triangle':_0x26e6ee(0x127),'parallelogram':_0x26e6ee(0x185),'trapezoid':'梯形','non-isosceles-trapezoid':_0x26e6ee(0x1a3),'diamond':'菱形','pentagon':_0x26e6ee(0x15e),'hexagon':'六邊形','heptagon':_0x26e6ee(0xea),'octagon':_0x26e6ee(0x154),'decagon':_0x26e6ee(0x166),'dodecagon':_0x26e6ee(0xf6),'pie':'不完整圓','chord':'弦形','teardrop':_0x26e6ee(0x115),'frame':_0x26e6ee(0xf5),'half-frame':_0x26e6ee(0x123),'corner':'L形','diag-stripe':'斜紋','plus':_0x26e6ee(0xff),'plaque':_0x26e6ee(0x102),'can':_0x26e6ee(0x153),'cube':'立方體','bevel':_0x26e6ee(0x100),'donut':_0x26e6ee(0x17d),'no-smoking':_0x26e6ee(0x141),'block-arc':_0x26e6ee(0x112),'folder-corner':_0x26e6ee(0xf0),'smiley-face':'笑臉','heart':'心形','lightning-bolt':_0x26e6ee(0xfc),'sun':'太陽形','moon':_0x26e6ee(0x129),'cloud':'雲形','arc':'弧形','bracket-pair':'雙括號','brace-pair':_0x26e6ee(0x111),'left-bracket':_0x26e6ee(0x179),'right-bracket':'右中括號','left-brace':_0x26e6ee(0x19f),'right-brace':'右大括號','right-arrow':_0x26e6ee(0x1a4),'left-arrow':_0x26e6ee(0x113),'up-arrow':'箭頭:上','down-arrow':_0x26e6ee(0x13d),'left-right-arrow':'箭頭:左右','up-down-arrow':_0x26e6ee(0x17e),'quad-arrow':_0x26e6ee(0x196),'left-right-up-arrow':_0x26e6ee(0x132),'bent-arrow':_0x26e6ee(0x158),'uturn-arrow':'箭頭:手杖形','left-up-arrow':'箭頭:直角雙向','bent-up-arrow':_0x26e6ee(0x10f),'curved-right-arrow':_0x26e6ee(0x156),'curved-left-arrow':_0x26e6ee(0x187),'curved-up-arrow':_0x26e6ee(0x11b),'curved-down-arrow':_0x26e6ee(0x120),'striped-right-arrow':'箭頭:虛尾','notched-right-arrow':_0x26e6ee(0x186),'home-plate':_0x26e6ee(0x15e),'chevron':'箭頭:V型','right-arrow-callout':_0x26e6ee(0x178),'down-arrow-callout':'標註:下箭頭','left-arrow-callout':_0x26e6ee(0x1a7),'up-arrow-callout':'標註:上箭頭','left-right-arrow-callout':_0x26e6ee(0xe8),'quad-arrow-callout':_0x26e6ee(0x122),'circular-arrow':_0x26e6ee(0x170),'math-plus':'加號','math-minus':'減號','math-multiply':'乘號','math-divide':'除號','math-equal':'等號','math-not-equal':_0x26e6ee(0x16c),'flow-chart-process':_0x26e6ee(0x155),'flow-chart-alternate-process':_0x26e6ee(0x11a),'flow-chart-decision':'流程圖:決策','flow-chart-input-output':'流程圖:數據','flow-chart-predefined-process':_0x26e6ee(0x193),'flow-chart-internal-storage':_0x26e6ee(0x165),'flow-chart-document':_0x26e6ee(0x18c),'flow-chart-multidocument':_0x26e6ee(0x1a1),'flow-chart-terminator':'流程圖:終止','flow-chart-preparation':_0x26e6ee(0xee),'flow-chart-manual-input':_0x26e6ee(0x12c),'flow-chart-manual-operation':_0x26e6ee(0x108),'flow-chart-connector':_0x26e6ee(0x17c),'flow-chart-offpage-connector':_0x26e6ee(0xfb),'flow-chart-punched-card':_0x26e6ee(0x10c),'flow-chart-punched-tape':_0x26e6ee(0x182),'flow-chart-summing-junction':_0x26e6ee(0x176),'flow-chart-or':_0x26e6ee(0x198),'flow-chart-collate':_0x26e6ee(0x14b),'flow-chart-sort':_0x26e6ee(0x18a),'flow-chart-extract':_0x26e6ee(0x18b),'flow-chart-merge':_0x26e6ee(0x118),'flow-chart-online-storage':'流程圖:存儲數據','flow-chart-delay':'流程圖:延期','flow-chart-magnetic-tape':'流程圖:順序訪問存儲器','flow-chart-magnetic-disk':_0x26e6ee(0x17a),'flow-chart-magnetic-drum':_0x26e6ee(0x124),'flow-chart-display':_0x26e6ee(0x1a8),'irregular-seal1':_0x26e6ee(0x16b),'irregular-seal2':'爆炸形:14pt','star4':_0x26e6ee(0x139),'star5':_0x26e6ee(0x140),'star6':_0x26e6ee(0x157),'star7':_0x26e6ee(0x138),'star8':_0x26e6ee(0x19b),'star10':_0x26e6ee(0x136),'star12':_0x26e6ee(0x12d),'star16':_0x26e6ee(0xfe),'star24':_0x26e6ee(0x161),'star32':_0x26e6ee(0x17f),'ribbon2':'帶形:上凸','ribbon':'帶形:前凸','ellipse-ribbon2':_0x26e6ee(0x109),'ellipse-ribbon':_0x26e6ee(0x133),'vertical-scroll':_0x26e6ee(0x191),'horizontal-scroll':'卷形:水平','wave':'波形','double-wave':_0x26e6ee(0x103),'wedge-rect-callout':'對話氣泡:矩形','wedge-round-rect-callout':_0x26e6ee(0x10a),'wedge-ellipse-callout':_0x26e6ee(0x116),'cloud-callout':'氣泡:雲','border-callout1':_0x26e6ee(0x167),'border-callout2':_0x26e6ee(0x12b),'border-callout3':'標註:雙彎曲線形','accent-callout1':'標註:線形(帶強調線)','accent-callout2':'標註:彎曲線形(帶強調線)','accent-callout3':_0x26e6ee(0x19c),'callout1':_0x26e6ee(0x101),'callout2':_0x26e6ee(0x19e),'callout3':_0x26e6ee(0xf7),'accent-border-callout1':_0x26e6ee(0x162),'accent-border-callout2':_0x26e6ee(0xec),'accent-border-callout3':'標註:雙彎曲線形(帶邊框和強調線)','left-circular-arrow':_0x26e6ee(0xe9),'left-right-circular-arrow':_0x26e6ee(0x143),'swoosh-arrow':_0x26e6ee(0x114),'left-right-ribbon':_0x26e6ee(0x125),'pie-wedge':'餅形楔','funnel':'漏斗','gear6':_0x26e6ee(0x152),'gear9':'9齒齒輪','corner-tabs':'角標','action-button-back-previous':_0x26e6ee(0xe7),'action-button-forward-next':_0x26e6ee(0x11c),'action-button-beginning':_0x26e6ee(0x148),'action-button-end':_0x26e6ee(0x181),'action-button-home':_0x26e6ee(0x160),'action-button-information':'信息按鈕','action-button-return':_0x26e6ee(0x195),'action-button-movie':_0x26e6ee(0x146),'action-button-document':_0x26e6ee(0x10e),'action-button-sound':_0x26e6ee(0x137),'action-button-help':'幫助按鈕','action-button-blank':_0x26e6ee(0x126),'chart-plus':_0x26e6ee(0x163),'chart-star':_0x26e6ee(0x14c),'chart-x':'圖表X','flow-chart-offline-storage':_0x26e6ee(0x169),'line-inv':'線反向','plaque-tabs':'牌匾標籤','square-tabs':_0x26e6ee(0xf3),'up-down-arrow-callout':_0x26e6ee(0x14d)}},'toolbar':{'expandShapeToolbar':_0x26e6ee(0x144),'collapseShapeToolbar':'收合形狀工具列','alignLeft':_0x26e6ee(0x19a),'alignCenter':_0x26e6ee(0x19d),'alignRight':_0x26e6ee(0x1a0),'alignJustify':'兩端對齊','bold':'粗體','italic':'斜體','underline':'底線','strikethrough':_0x26e6ee(0x1a2),'subscript':'Subscript','superscript':_0x26e6ee(0x106),'textColor':'文字顏色','textBackgroundColor':'Text\x20Background\x20color','fillColor':'文字背景色','resetColor':_0x26e6ee(0x11f)},'align':{'top':_0x26e6ee(0x150),'middle':_0x26e6ee(0x15c),'bottom':_0x26e6ee(0x107)},'textWrap':{'inline':'與文字排列','square':'矩形','topAndBottom':_0x26e6ee(0x168),'behindText':_0x26e6ee(0x14f),'inFrontText':_0x26e6ee(0xfa)},'crop':{'shape':'裁切為形狀'}}};}));
|
|
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/
|
|
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/engine-render": "1.0.0-alpha.
|
|
67
|
-
"@univerjs/ui": "1.0.0-alpha.
|
|
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",
|