@univerjs-pro/shape-editor-ui 1.0.0-alpha.1 → 1.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -2
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/locale/ar-SA.js +1 -1
- package/lib/cjs/locale/ca-ES.js +1 -1
- package/lib/cjs/locale/de-DE.js +1 -1
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/es-ES.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/fr-FR.js +1 -1
- package/lib/cjs/locale/id-ID.js +1 -1
- package/lib/cjs/locale/it-IT.js +1 -1
- package/lib/cjs/locale/ja-JP.js +1 -1
- package/lib/cjs/locale/ko-KR.js +1 -1
- package/lib/cjs/locale/pl-PL.js +1 -1
- package/lib/cjs/locale/pt-BR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/sk-SK.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-HK.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/es/locale/ar-SA.js +1 -1
- package/lib/es/locale/ca-ES.js +1 -1
- package/lib/es/locale/de-DE.js +1 -1
- package/lib/es/locale/en-US.js +1 -1
- package/lib/es/locale/es-ES.js +1 -1
- package/lib/es/locale/fa-IR.js +1 -1
- package/lib/es/locale/fr-FR.js +1 -1
- package/lib/es/locale/id-ID.js +1 -1
- package/lib/es/locale/it-IT.js +1 -1
- package/lib/es/locale/ja-JP.js +1 -1
- package/lib/es/locale/ko-KR.js +1 -1
- package/lib/es/locale/pl-PL.js +1 -1
- package/lib/es/locale/pt-BR.js +1 -1
- package/lib/es/locale/ru-RU.js +1 -1
- package/lib/es/locale/sk-SK.js +1 -1
- package/lib/es/locale/vi-VN.js +1 -1
- package/lib/es/locale/zh-CN.js +1 -1
- package/lib/es/locale/zh-HK.js +1 -1
- package/lib/es/locale/zh-TW.js +1 -1
- package/lib/index.css +159 -12
- package/lib/index.js +1 -1
- package/lib/locale/ar-SA.js +1 -1
- package/lib/locale/ca-ES.js +1 -1
- package/lib/locale/de-DE.js +1 -1
- package/lib/locale/en-US.js +1 -1
- package/lib/locale/es-ES.js +1 -1
- package/lib/locale/fa-IR.js +1 -1
- package/lib/locale/fr-FR.js +1 -1
- package/lib/locale/id-ID.js +1 -1
- package/lib/locale/it-IT.js +1 -1
- package/lib/locale/ja-JP.js +1 -1
- package/lib/locale/ko-KR.js +1 -1
- package/lib/locale/pl-PL.js +1 -1
- package/lib/locale/pt-BR.js +1 -1
- package/lib/locale/ru-RU.js +1 -1
- package/lib/locale/sk-SK.js +1 -1
- package/lib/locale/vi-VN.js +1 -1
- package/lib/locale/zh-CN.js +1 -1
- package/lib/locale/zh-HK.js +1 -1
- package/lib/locale/zh-TW.js +1 -1
- package/lib/types/components/fill-style-tabs-editor/FillStyleTabsEditor.d.ts +2 -1
- package/lib/types/config/config.d.ts +5 -0
- package/lib/types/controllers/components.controller.d.ts +7 -0
- package/lib/types/index.d.ts +25 -20
- package/lib/types/locale/en-US.d.ts +2 -0
- package/lib/types/plugin.d.ts +13 -0
- package/lib/types/utils/activate-drawing-object.d.ts +23 -0
- package/lib/types/utils/shape-floating-toolbar-config.d.ts +5 -0
- package/lib/types/utils/shape-transformer-config.d.ts +31 -0
- package/lib/types/views/shape-floating-toolbar/ShapeFloatingToolbar.d.ts +131 -10
- package/lib/types/views/shape-floating-toolbar/shape-floating-toolbar-utils.d.ts +2 -5
- package/lib/types/views/shape-picker/ShapePickerGrid.d.ts +22 -0
- package/lib/types/views/shape-picker/index.d.ts +4 -0
- package/lib/types/views/shape-picker/shapes.d.ts +25 -0
- package/lib/types/views/shape-text-editor/ShapeTextEditor.d.ts +105 -9
- package/lib/types/views/shape-text-editor/ShapeTextEditorContainer.d.ts +2 -2
- package/lib/types/views/shape-text-editor/ShapeTextPositionWrapper.d.ts +29 -0
- package/lib/types/views/shape-text-editor/hooks/use-shape-position.d.ts +3 -1
- package/lib/types/views/shape-text-editor/shape-text-behavior.d.ts +15 -0
- package/lib/types/views/shape-text-editor/shape-text-document.d.ts +8 -3
- package/lib/types/views/shape-text-editor/shape-text-editor-commands.d.ts +4 -0
- package/lib/types/views/shape-text-editor/shape-text-layout.d.ts +24 -0
- package/lib/types/views/shape-text-editor/shape-text-no-wrap-layout.d.ts +24 -0
- package/lib/types/views/shape-text-editor/shape-text-placeholder.d.ts +8 -0
- package/lib/types/views/shape-text-editor/shape-text-resize-policy.d.ts +17 -0
- package/lib/types/views/shape-text-editor/types.d.ts +25 -6
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/ar-SA.js +1 -1
- package/lib/umd/locale/ca-ES.js +1 -1
- package/lib/umd/locale/de-DE.js +1 -1
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/es-ES.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/fr-FR.js +1 -1
- package/lib/umd/locale/id-ID.js +1 -1
- package/lib/umd/locale/it-IT.js +1 -1
- package/lib/umd/locale/ja-JP.js +1 -1
- package/lib/umd/locale/ko-KR.js +1 -1
- package/lib/umd/locale/pl-PL.js +1 -1
- package/lib/umd/locale/pt-BR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/sk-SK.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-HK.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +13 -13
package/lib/umd/locale/fa-IR.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function _0x2cb8(_0x48352e,_0x1fcec6){_0x48352e=_0x48352e-0x1b7;var _0x36f4ac=_0x36f4();var _0x2cb8f5=_0x36f4ac[_0x48352e];return _0x2cb8f5;}function _0x36f4(){var _0x48105b=['مورب','شورون','پررنگ','کادر\x20توضیحی\x20تأکیدی\x20با\x20حاشیه\x20۲','کادر\x20توضیحی\x20فلش\x20راست','ایتالیک','روبان\x20پایین','کراپ\x20به\x20شکل','ابر','دهضلعی','اشکال\x20معادله','تراز\x20بالا','دکمه\x20عمل:\x20فیلم','کمان','عنوان\x201','اتصال\x20منحنی\x20دو\x20فلشه','براکت\x20دوتایی','خط\x20چین-نقطه','نمودار\x20مثبت','گوشه\x20تا\x20شده','آکولاد\x20راست','سبک\x20طرح','پایاندهنده','چندسندی','420UWclYa','کادر\x20توضیحی\x20خطی\x20۱','کادر\x20توضیحی\x20تأکیدی\x20۲','نمایشگر','پر\x20کردن\x20یکدست','دکمه\x20عمل:\x20صدا','فلشهای\x20بلوکی','دکمه\x20عمل:\x20بازگشت\x20یا\x20قبلی','جابجایی\x20Y','تراز\x20راست','طومار\x20افقی','2007924Nnpjme','عنوان\x205','فلش\x20منحنی\x20بالا','مقایسه','Subscript','خطدار','خط\x20چین\x20بلند','عنوان\x203','تغییر\x20وضعیت\x20متن\x20عمودی','دکمه\x20عمل:\x20ابتدا','کادر\x20متن\x20عمودی','راست','25541MkHmPe','94167Korvky','مثلث\x20متساویالساقین','دسترسی\x20ترتیبی','روبان\x20بالا','سیگار\x20کشیدن\x20ممنوع','عنوان\x202','گرد','درج...','موقعیت\x20شکل','نقطه\x20مربعی','Superscript','دکمه\x20عمل:\x20خالی','فلش','هشتضلعی','یکدست','فلش\x20چپ-راست-بالا','مستطیلها','نوع\x20انتها','بدون\x20پر\x20کردن','منحنی','ذخیرهسازی\x20آفلاین','چرخش\x20۹۰\x20درجه\x20به\x20چپ','سایر','دستکش','شکل','نوع\x20فلش\x20انتها','سبک\x20شکل','ستاره\x20۵\x20پر','در\x20یک\x20خط\x20با\x20متن','کمان\x20بلوکی','اتصال\x20منحنی\x20فلشدار','تصمیم','مقیاس\x20Y','صورتک\x20خندان','فلش\x20بیضی','356925OGllsf','22iEIugb','ستاره\x20۷\x20پر','دیسک\x20مغناطیسی','مربع','موج','تفریق','کوچک','مستطیل','فلش\x20خمیده\x20بالا','کادر\x20توضیحی\x20ابر','کادر\x20توضیحی\x20۱','گره\x20جمع','موج\x20دوتایی','چرخش\x20با\x20شکل','شعاع\x20گوشه','کادر\x20توضیحی\x20تأکیدی\x20۱','عنوان\x204','کادر\x20توضیحی\x20بیضی','پنجضلعی','تقسیم','کادرهای\x20توضیحی','آکولاد\x20دوتایی','نمودار\x20ایکس','function','دکمه\x20عمل:\x20بازگشت','1846088kigOml','فلش\x20خمیده','جمع\x20کردن\x20نوار\x20ابزار\x20شکل','ذخیرهسازی\x20داخلی','ادغام','کادر\x20متن\x20افقی','فلش\x20باز','کادر\x20برجسته','قلب','پشت\x20متن','پایین\x20راست','قاب','فلش\x20لوزی','بالا\x20و\x20پایین','برگههای\x20گوشهای','تراز\x20وسط','دکمه\x20عمل:\x20راهنما','1458744eTwzQM','چرخش\x20۹۰\x20درجه\x20به\x20راست','فرآیند\x20از\x20پیش\x20تعریفشده','فلش\x20بالا','کارت','هفتضلعی','خطکشی','اتصال\x20منحنی','خط\x20فلشدار','دکمه\x20عمل:\x20جلو\x20یا\x20بعدی','فلش\x20دور\x20برگردان','پر\x20کردن','باز\x20کردن\x20پنل\x20شکلها','مساوی','کادر\x20توضیحی\x20۳','داده\x20ذخیرهشده','اندازه\x20فلش\x20ابتدا','ماه','متوسط','استوانه','تراز\x20پایین','دکمه\x20عمل:\x20خانه','فلش\x20پایین','Text\x20Background\x20color','تأخیر','نیمقاب','خط\x20دو\x20فلشه','بالا\x20راست','341244AAcOKB','متن\x20عادی','نقطه\x20گرد','رنگ\x20متن','حذف\x20شکل','دونات','فلش\x20راست','منبع\x20تصویر','انفجار\x20۱','درج\x20شکل','ششضلعی','تغییر\x20وضعیت\x20چرخش\x20عمودی','قالببندی\x20شکل','چرخدنده\x20۹','شفافیت','فلش\x20بالا-پایین','خطوط','پایین','دکمه\x20عمل:\x20انتها','مستطیل\x20گوشه\x20بریده\x20دو\x20طرف\x20همسان','مقیاس\x20X','ذوزنقه','بیضی','کادر\x20توضیحی\x20فلش\x20چهارطرفه','داده','فلش\x20دایرهای','UniverProShapeEditorUiFaIR','ستاره\x20۱۰\x20پر','ورودی\x20دستی','تراز\x20چپ','گسترش\x20نوار\x20ابزار\x20شکل','12lrxgXy','فلش\x20چپ-راست','اتصال\x20خمیده\x20دو\x20فلشه','ستاره\x20۱۲\x20پر','دوازدهضلعی','تغییر\x20وضعیت\x20چرخش\x20افقی','سند','عرض','مستطیل\x20گرد','نقل\x20قول','مخفی\x20کردن\x20پنل\x20شکلها','فلش\x20منحنی\x20چپ','اندازه\x20فلش\x20انتها','جلوی\x20متن','ستاره\x20۴\x20پر','استخراج','لیست\x20بدون\x20شماره','کادر\x20توضیحی\x20تأکیدی\x20با\x20حاشیه\x20۳','فلش\x20دایرهای\x20چپ','پر\x20کردن\x20الگو','کادر\x20توضیحی\x20تأکیدی\x20۳','ستاره\x20۶\x20پر','نوع\x20فلش\x20ابتدا','ستاره\x20۸\x20پر','پر\x20کردن\x20تصویر\x20یا\x20بافت','برگههای\x20مربعی','Reset\x20color','خط\x20چین','ستاره\x20۱۶\x20پر','روبان\x20چپ-راست','بدون\x20خط','مرکز','برگههای\x20نشان','نمودار\x20ستاره','خورشید','فلش\x20چپ','کادر\x20توضیحی\x20فلش\x20بالا','3MnXNmb','مستطیل\x20گوشه\x20بریده\x20یک\x20طرف','مستطیل\x20گوشه\x20گرد\x20قطری','الشکل','نوار\x20مورب','کادر\x20توضیحی\x20فلش\x20پایین','بول','روبان\x20منحنی\x20پایین','528cwEpCV','کادر\x20توضیحی\x20فلش\x20چپ-راست','رنگ','فرآیند','توجیه','مثلث\x20قائمالزاویه','متوازیالاضلاع','فلش\x20دندانهدار\x20راست','مستطیل\x20گوشه\x20گرد\x20یک\x20طرف','کادر\x20توضیحی\x20فلش\x20بالا-پایین','کادر\x20توضیحی\x20خطی\x20۲','تراز','دکمه\x20عمل:\x20اطلاعات','صاف','اتصالدهنده\x20خارج\x20صفحه','amd'];_0x36f4=function(){return _0x48105b;};return _0x36f4();}(function(_0x5a786f,_0x19c34b){var _0x153fbe=_0x2cb8,_0x39dbc7=_0x5a786f();while(!![]){try{var _0x4d2bdb=-parseInt(_0x153fbe(0x278))/0x1*(parseInt(_0x153fbe(0x29d))/0x2)+-parseInt(_0x153fbe(0x231))/0x3*(parseInt(_0x153fbe(0x26c))/0x4)+parseInt(_0x153fbe(0x29c))/0x5*(parseInt(_0x153fbe(0x20c))/0x6)+parseInt(_0x153fbe(0x1d1))/0x7+-parseInt(_0x153fbe(0x1c0))/0x8+parseInt(_0x153fbe(0x279))/0x9*(-parseInt(_0x153fbe(0x261))/0xa)+parseInt(_0x153fbe(0x239))/0xb*(parseInt(_0x153fbe(0x1ed))/0xc);if(_0x4d2bdb===_0x19c34b)break;else _0x39dbc7['push'](_0x39dbc7['shift']());}catch(_0x309465){_0x39dbc7['push'](_0x39dbc7['shift']());}}}(_0x36f4,0x40357),function(_0x53b8c1,_0x4b2680){var _0x420d1e=_0x2cb8;typeof exports=='object'&&typeof module<'u'?module['exports']=_0x4b2680():typeof define==_0x420d1e(0x1be)&&define[_0x420d1e(0x248)]?define([],_0x4b2680):(_0x53b8c1=typeof globalThis<'u'?globalThis:_0x53b8c1||self,_0x53b8c1[_0x420d1e(0x207)]=_0x4b2680());}(this,function(){var _0x3e84b8=_0x2cb8;return{'shape-editor-ui':{'title':_0x3e84b8(0x291),'insertShape':_0x3e84b8(0x1f6),'openPanel':_0x3e84b8(0x1dd),'deleteShape':_0x3e84b8(0x1f1),'hidePanel':_0x3e84b8(0x216),'formatShape':_0x3e84b8(0x1f9),'shapeStyle':_0x3e84b8(0x293),'shapePosition':_0x3e84b8(0x281),'toggleFlipH':_0x3e84b8(0x211),'toggleFlipV':_0x3e84b8(0x1f8),'rotateRight90':_0x3e84b8(0x1d2),'rotateLeft90':_0x3e84b8(0x28e),'toggleTextVertical':_0x3e84b8(0x274),'textEditor':{'paragraphType':{'normal':_0x3e84b8(0x1ee),'heading1':_0x3e84b8(0x257),'heading2':_0x3e84b8(0x27e),'heading3':_0x3e84b8(0x273),'heading4':_0x3e84b8(0x1b7),'heading5':_0x3e84b8(0x26d),'orderedList':'لیست\x20شمارهدار','bulletList':_0x3e84b8(0x21c),'checkList':'لیست\x20وظیفه','quote':_0x3e84b8(0x215),'code':'بلوک\x20کد','callout':_0x3e84b8(0x1c7)}},'fill':{'title':_0x3e84b8(0x1dc),'noFill':_0x3e84b8(0x28b),'solidFill':_0x3e84b8(0x265),'gradientFill':'پر\x20کردن\x20گرادیان','pictureFill':_0x3e84b8(0x224),'patternFill':_0x3e84b8(0x21f),'color':'رنگ','transparency':'شفافیت','picture':{'source':_0x3e84b8(0x1f4),'insert':_0x3e84b8(0x280),'tileAsTexture':'کاشیکاری\x20تصویر\x20به\x20عنوان\x20بافت','offsetX':'جابجایی\x20X','offsetY':_0x3e84b8(0x269),'scaleX':_0x3e84b8(0x201),'scaleY':_0x3e84b8(0x299),'alignment':_0x3e84b8(0x244),'rotateWithShape':_0x3e84b8(0x2aa),'align':{'tl':'بالا\x20چپ','t':'بالا','tr':_0x3e84b8(0x1ec),'l':'چپ','ctr':_0x3e84b8(0x22b),'r':_0x3e84b8(0x277),'bl':'پایین\x20چپ','b':_0x3e84b8(0x1fe),'br':_0x3e84b8(0x1ca)}}},'line':{'title':'خط','noLine':_0x3e84b8(0x22a),'solidLine':'خط\x20یکدست','gradientLine':'خط\x20گرادیان','color':_0x3e84b8(0x23b),'transparency':_0x3e84b8(0x1fb),'width':_0x3e84b8(0x213),'cornerRadius':_0x3e84b8(0x2ab),'dashType':{'title':'نوع\x20خط\x20چین','solid':_0x3e84b8(0x287),'roundDot':_0x3e84b8(0x1ef),'squareDot':_0x3e84b8(0x282),'dash':_0x3e84b8(0x227),'dashDot':_0x3e84b8(0x25a),'longDash':_0x3e84b8(0x272),'longDashDot':'خط\x20چین\x20بلند-نقطه','longDashDotDot':'خط\x20چین\x20بلند-نقطه-نقطه'},'capType':{'title':_0x3e84b8(0x28a),'flat':_0x3e84b8(0x246),'round':_0x3e84b8(0x27f),'square':'مربعی'},'joinType':{'title':'نوع\x20اتصال','miter':_0x3e84b8(0x249),'round':_0x3e84b8(0x27f),'bevel':_0x3e84b8(0x237)},'beginArrowType':_0x3e84b8(0x222),'beginArrowSize':_0x3e84b8(0x1e1),'endArrowType':_0x3e84b8(0x292),'endArrowSize':_0x3e84b8(0x218),'arrowType':{'none':'هیچ','arrow':_0x3e84b8(0x285),'openArrow':_0x3e84b8(0x1c6),'stealthArrow':'فلش\x20مخفی','diamondArrow':_0x3e84b8(0x1cc),'ovalArrow':_0x3e84b8(0x29b)},'arrowSize':{'small':_0x3e84b8(0x2a3),'medium':_0x3e84b8(0x1e3),'large':'بزرگ'},'sketchType':{'title':_0x3e84b8(0x25e),'none':'هیچ','curved':_0x3e84b8(0x28c),'freehand':'آزاد','handDrawn':_0x3e84b8(0x290)}},'shape':{'group':{'line':_0x3e84b8(0x1fd),'rectangle':_0x3e84b8(0x289),'basicShape':'اشکال\x20پایه','blockArrow':_0x3e84b8(0x267),'equationShape':_0x3e84b8(0x253),'flowchart':'نمودار\x20جریان','starAndBanner':'ستارهها\x20و\x20بنرها','callout':_0x3e84b8(0x1bb),'other':_0x3e84b8(0x28f)},'type':{'line':'خط','straight-connector1':_0x3e84b8(0x1d9),'straight-connector2':_0x3e84b8(0x1eb),'bent-connector3':'اتصال\x20خمیده','bent-connector3-arrow1':'اتصال\x20خمیده\x20فلشدار','bent-connector3-arrow2':_0x3e84b8(0x20e),'curved-connector3':_0x3e84b8(0x1d8),'curved-connector3-arrow1':_0x3e84b8(0x297),'curved-connector3-arrow2':_0x3e84b8(0x258),'rect':_0x3e84b8(0x2a4),'round-rect':_0x3e84b8(0x214),'snip1-rect':_0x3e84b8(0x232),'snip2-same-rect':_0x3e84b8(0x200),'snip2-diag-rect':'مستطیل\x20گوشه\x20بریده\x20قطری','snip-round-rect':'مستطیل\x20گوشه\x20بریده\x20و\x20گرد','round1-rect':_0x3e84b8(0x241),'round2-same-rect':'مستطیل\x20گوشه\x20گرد\x20دو\x20طرف\x20همسان','round2-diag-rect':_0x3e84b8(0x233),'rect-textbox-horizontal':_0x3e84b8(0x1c5),'rect-textbox-vertical':_0x3e84b8(0x276),'ellipse':_0x3e84b8(0x203),'triangle':_0x3e84b8(0x27a),'rt-triangle':_0x3e84b8(0x23e),'parallelogram':_0x3e84b8(0x23f),'trapezoid':_0x3e84b8(0x202),'non-isosceles-trapezoid':'ذوزنقه\x20نامتساویالساقین','diamond':'لوزی','pentagon':_0x3e84b8(0x1b9),'hexagon':_0x3e84b8(0x1f7),'heptagon':_0x3e84b8(0x1d6),'octagon':_0x3e84b8(0x286),'decagon':_0x3e84b8(0x252),'dodecagon':_0x3e84b8(0x210),'pie':'دایرهای','chord':'وتر','teardrop':'اشک','frame':_0x3e84b8(0x1cb),'half-frame':_0x3e84b8(0x1ea),'corner':_0x3e84b8(0x234),'diag-stripe':_0x3e84b8(0x235),'plus':'ضربدر','plaque':'نشان','can':_0x3e84b8(0x1e4),'cube':'مکعب','bevel':_0x3e84b8(0x237),'donut':_0x3e84b8(0x1f2),'no-smoking':_0x3e84b8(0x27d),'block-arc':_0x3e84b8(0x296),'folder-corner':_0x3e84b8(0x25c),'smiley-face':_0x3e84b8(0x29a),'heart':_0x3e84b8(0x1c8),'lightning-bolt':'صاعقه','sun':_0x3e84b8(0x22e),'moon':_0x3e84b8(0x1e2),'cloud':_0x3e84b8(0x251),'arc':_0x3e84b8(0x256),'bracket-pair':_0x3e84b8(0x259),'brace-pair':_0x3e84b8(0x1bc),'left-bracket':'براکت\x20چپ','right-bracket':'براکت\x20راست','left-brace':'آکولاد\x20چپ','right-brace':_0x3e84b8(0x25d),'right-arrow':_0x3e84b8(0x1f3),'left-arrow':_0x3e84b8(0x22f),'up-arrow':_0x3e84b8(0x1d4),'down-arrow':_0x3e84b8(0x1e7),'left-right-arrow':_0x3e84b8(0x20d),'up-down-arrow':_0x3e84b8(0x1fc),'quad-arrow':'فلش\x20چهارطرفه','left-right-up-arrow':_0x3e84b8(0x288),'bent-arrow':_0x3e84b8(0x1c1),'uturn-arrow':_0x3e84b8(0x1db),'left-up-arrow':'فلش\x20چپ-بالا','bent-up-arrow':_0x3e84b8(0x2a5),'curved-right-arrow':'فلش\x20منحنی\x20راست','curved-left-arrow':_0x3e84b8(0x217),'curved-up-arrow':_0x3e84b8(0x26e),'curved-down-arrow':'فلش\x20منحنی\x20پایین','striped-right-arrow':'فلش\x20راهراه\x20راست','notched-right-arrow':_0x3e84b8(0x240),'home-plate':_0x3e84b8(0x1b9),'chevron':_0x3e84b8(0x24a),'right-arrow-callout':_0x3e84b8(0x24d),'down-arrow-callout':_0x3e84b8(0x236),'left-arrow-callout':'کادر\x20توضیحی\x20فلش\x20چپ','up-arrow-callout':_0x3e84b8(0x230),'left-right-arrow-callout':_0x3e84b8(0x23a),'quad-arrow-callout':_0x3e84b8(0x204),'circular-arrow':_0x3e84b8(0x206),'math-plus':'جمع','math-minus':_0x3e84b8(0x2a2),'math-multiply':'ضرب','math-divide':_0x3e84b8(0x1ba),'math-equal':_0x3e84b8(0x1de),'math-not-equal':'نامساوی','flow-chart-process':_0x3e84b8(0x23c),'flow-chart-alternate-process':'فرآیند\x20جایگزین','flow-chart-decision':_0x3e84b8(0x298),'flow-chart-input-output':_0x3e84b8(0x205),'flow-chart-predefined-process':_0x3e84b8(0x1d3),'flow-chart-internal-storage':_0x3e84b8(0x1c3),'flow-chart-document':_0x3e84b8(0x212),'flow-chart-multidocument':_0x3e84b8(0x260),'flow-chart-terminator':_0x3e84b8(0x25f),'flow-chart-preparation':'آمادهسازی','flow-chart-manual-input':_0x3e84b8(0x209),'flow-chart-manual-operation':'عملیات\x20دستی','flow-chart-connector':'اتصالدهنده','flow-chart-offpage-connector':_0x3e84b8(0x247),'flow-chart-punched-card':_0x3e84b8(0x1d5),'flow-chart-punched-tape':'نوار\x20سوراخدار','flow-chart-summing-junction':_0x3e84b8(0x2a8),'flow-chart-or':'یا','flow-chart-collate':_0x3e84b8(0x26f),'flow-chart-sort':'مرتبسازی','flow-chart-extract':_0x3e84b8(0x21b),'flow-chart-merge':_0x3e84b8(0x1c4),'flow-chart-online-storage':_0x3e84b8(0x1e0),'flow-chart-delay':_0x3e84b8(0x1e9),'flow-chart-magnetic-tape':_0x3e84b8(0x27b),'flow-chart-magnetic-disk':_0x3e84b8(0x29f),'flow-chart-magnetic-drum':'ذخیرهسازی\x20دسترسی\x20مستقیم','flow-chart-display':_0x3e84b8(0x264),'irregular-seal1':_0x3e84b8(0x1f5),'irregular-seal2':'انفجار\x20۲','star4':_0x3e84b8(0x21a),'star5':_0x3e84b8(0x294),'star6':_0x3e84b8(0x221),'star7':_0x3e84b8(0x29e),'star8':_0x3e84b8(0x223),'star10':_0x3e84b8(0x208),'star12':_0x3e84b8(0x20f),'star16':_0x3e84b8(0x228),'star24':'ستاره\x20۲۴\x20پر','star32':'ستاره\x20۳۲\x20پر','ribbon2':_0x3e84b8(0x27c),'ribbon':_0x3e84b8(0x24f),'ellipse-ribbon2':'روبان\x20منحنی\x20بالا','ellipse-ribbon':_0x3e84b8(0x238),'vertical-scroll':'طومار\x20عمودی','horizontal-scroll':_0x3e84b8(0x26b),'wave':_0x3e84b8(0x2a1),'double-wave':_0x3e84b8(0x2a9),'wedge-rect-callout':'کادر\x20توضیحی\x20مستطیلی','wedge-round-rect-callout':'کادر\x20توضیحی\x20مستطیلی\x20گرد','wedge-ellipse-callout':_0x3e84b8(0x1b8),'cloud-callout':_0x3e84b8(0x2a6),'border-callout1':_0x3e84b8(0x262),'border-callout2':_0x3e84b8(0x243),'border-callout3':'کادر\x20توضیحی\x20خطی\x20۳','accent-callout1':_0x3e84b8(0x2ac),'accent-callout2':_0x3e84b8(0x263),'accent-callout3':_0x3e84b8(0x220),'callout1':_0x3e84b8(0x2a7),'callout2':'کادر\x20توضیحی\x20۲','callout3':_0x3e84b8(0x1df),'accent-border-callout1':'کادر\x20توضیحی\x20تأکیدی\x20با\x20حاشیه\x20۱','accent-border-callout2':_0x3e84b8(0x24c),'accent-border-callout3':_0x3e84b8(0x21d),'left-circular-arrow':_0x3e84b8(0x21e),'left-right-circular-arrow':'فلش\x20دایرهای\x20چپ-راست','swoosh-arrow':'فلش\x20سووش','left-right-ribbon':_0x3e84b8(0x229),'pie-wedge':'گوه\x20دایرهای','funnel':'قیف','gear6':'چرخدنده\x20۶','gear9':_0x3e84b8(0x1fa),'corner-tabs':_0x3e84b8(0x1ce),'action-button-back-previous':_0x3e84b8(0x268),'action-button-forward-next':_0x3e84b8(0x1da),'action-button-beginning':_0x3e84b8(0x275),'action-button-end':_0x3e84b8(0x1ff),'action-button-home':_0x3e84b8(0x1e6),'action-button-information':_0x3e84b8(0x245),'action-button-return':_0x3e84b8(0x1bf),'action-button-movie':_0x3e84b8(0x255),'action-button-document':'دکمه\x20عمل:\x20سند','action-button-sound':_0x3e84b8(0x266),'action-button-help':_0x3e84b8(0x1d0),'action-button-blank':_0x3e84b8(0x284),'chart-plus':_0x3e84b8(0x25b),'chart-star':_0x3e84b8(0x22d),'chart-x':_0x3e84b8(0x1bd),'flow-chart-offline-storage':_0x3e84b8(0x28d),'line-inv':'خط\x20معکوس','plaque-tabs':_0x3e84b8(0x22c),'square-tabs':_0x3e84b8(0x225),'up-down-arrow-callout':_0x3e84b8(0x242)}},'toolbar':{'expandShapeToolbar':_0x3e84b8(0x20b),'collapseShapeToolbar':_0x3e84b8(0x1c2),'alignLeft':_0x3e84b8(0x20a),'alignCenter':'تراز\x20وسط','alignRight':_0x3e84b8(0x26a),'alignJustify':_0x3e84b8(0x23d),'bold':_0x3e84b8(0x24b),'italic':_0x3e84b8(0x24e),'underline':_0x3e84b8(0x1d7),'strikethrough':_0x3e84b8(0x271),'subscript':_0x3e84b8(0x270),'superscript':_0x3e84b8(0x283),'textColor':_0x3e84b8(0x1f0),'textBackgroundColor':_0x3e84b8(0x1e8),'fillColor':'رنگ\x20پسزمینه\x20متن','resetColor':_0x3e84b8(0x226)},'align':{'top':_0x3e84b8(0x254),'middle':_0x3e84b8(0x1cf),'bottom':_0x3e84b8(0x1e5)},'textWrap':{'inline':_0x3e84b8(0x295),'square':_0x3e84b8(0x2a0),'topAndBottom':_0x3e84b8(0x1cd),'behindText':_0x3e84b8(0x1c9),'inFrontText':_0x3e84b8(0x219)},'crop':{'shape':_0x3e84b8(0x250)}}};}));
|
|
1
|
+
(function(_0x316597,_0x5f2c39){var _0x1946a1=_0x48f7,_0x47f350=_0x316597();while(!![]){try{var _0x5deb4a=parseInt(_0x1946a1(0x235))/0x1*(parseInt(_0x1946a1(0x24b))/0x2)+-parseInt(_0x1946a1(0x15c))/0x3+-parseInt(_0x1946a1(0x20b))/0x4*(-parseInt(_0x1946a1(0x1ca))/0x5)+-parseInt(_0x1946a1(0x1a8))/0x6*(parseInt(_0x1946a1(0x1ed))/0x7)+-parseInt(_0x1946a1(0x1bc))/0x8+parseInt(_0x1946a1(0x168))/0x9+parseInt(_0x1946a1(0x1c2))/0xa*(-parseInt(_0x1946a1(0x1c9))/0xb);if(_0x5deb4a===_0x5f2c39)break;else _0x47f350['push'](_0x47f350['shift']());}catch(_0x27b9d3){_0x47f350['push'](_0x47f350['shift']());}}}(_0x2238,0x941b5),function(_0x3640b4,_0x55bcf4){var _0x1faa2e=_0x48f7;typeof exports==_0x1faa2e(0x24d)&&typeof module<'u'?module[_0x1faa2e(0x249)]=_0x55bcf4():typeof define==_0x1faa2e(0x18e)&&define['amd']?define([],_0x55bcf4):(_0x3640b4=typeof globalThis<'u'?globalThis:_0x3640b4||self,_0x3640b4[_0x1faa2e(0x1a3)]=_0x55bcf4());}(this,function(){var _0x32d6bb=_0x48f7;return{'shape-editor-ui':{'title':_0x32d6bb(0x202),'insertShape':'درج\x20شکل','openPanel':'باز\x20کردن\x20پنل\x20شکلها','deleteShape':_0x32d6bb(0x1d0),'hidePanel':_0x32d6bb(0x1e9),'formatShape':_0x32d6bb(0x1c7),'shapeStyle':_0x32d6bb(0x1de),'shapePosition':_0x32d6bb(0x229),'toggleFlipH':_0x32d6bb(0x1f3),'toggleFlipV':_0x32d6bb(0x201),'rotateRight90':_0x32d6bb(0x16c),'rotateLeft90':_0x32d6bb(0x17f),'toggleTextVertical':_0x32d6bb(0x1ab),'textEditor':{'placeholder':_0x32d6bb(0x23b),'paragraphType':{'normal':_0x32d6bb(0x22f),'heading1':_0x32d6bb(0x184),'heading2':_0x32d6bb(0x174),'heading3':_0x32d6bb(0x158),'heading4':_0x32d6bb(0x1e5),'heading5':_0x32d6bb(0x1c4),'orderedList':'لیست\x20شمارهدار','bulletList':'لیست\x20بدون\x20شماره','checkList':_0x32d6bb(0x1bf),'quote':_0x32d6bb(0x19b),'code':_0x32d6bb(0x1be),'callout':_0x32d6bb(0x242)}},'fill':{'title':_0x32d6bb(0x1d1),'noFill':_0x32d6bb(0x1fe),'solidFill':'پر\x20کردن\x20یکدست','gradientFill':_0x32d6bb(0x20f),'pictureFill':_0x32d6bb(0x1a9),'patternFill':_0x32d6bb(0x1af),'color':_0x32d6bb(0x21b),'transparency':_0x32d6bb(0x17d),'picture':{'source':_0x32d6bb(0x1f4),'insert':'درج...','tileAsTexture':'کاشیکاری\x20تصویر\x20به\x20عنوان\x20بافت','offsetX':_0x32d6bb(0x1b9),'offsetY':_0x32d6bb(0x1f1),'scaleX':'مقیاس\x20X','scaleY':_0x32d6bb(0x23f),'alignment':_0x32d6bb(0x191),'rotateWithShape':_0x32d6bb(0x160),'align':{'tl':_0x32d6bb(0x1aa),'t':'بالا','tr':_0x32d6bb(0x244),'l':'چپ','ctr':'مرکز','r':_0x32d6bb(0x1ee),'bl':_0x32d6bb(0x1df),'b':'پایین','br':_0x32d6bb(0x24e)}}},'line':{'title':'خط','noLine':_0x32d6bb(0x231),'solidLine':'خط\x20یکدست','gradientLine':_0x32d6bb(0x167),'color':_0x32d6bb(0x21b),'transparency':_0x32d6bb(0x17d),'width':'عرض','cornerRadius':_0x32d6bb(0x177),'dashType':{'title':'نوع\x20خط\x20چین','solid':_0x32d6bb(0x1a2),'roundDot':_0x32d6bb(0x194),'squareDot':_0x32d6bb(0x1e4),'dash':_0x32d6bb(0x240),'dashDot':'خط\x20چین-نقطه','longDash':_0x32d6bb(0x23c),'longDashDot':_0x32d6bb(0x1e3),'longDashDotDot':_0x32d6bb(0x16a)},'capType':{'title':_0x32d6bb(0x15a),'flat':_0x32d6bb(0x220),'round':_0x32d6bb(0x1c0),'square':_0x32d6bb(0x1ae)},'joinType':{'title':_0x32d6bb(0x1ec),'miter':_0x32d6bb(0x22b),'round':_0x32d6bb(0x1c0),'bevel':_0x32d6bb(0x245)},'beginArrowType':_0x32d6bb(0x1b5),'beginArrowSize':_0x32d6bb(0x197),'endArrowType':'نوع\x20فلش\x20انتها','endArrowSize':_0x32d6bb(0x20c),'arrowType':{'none':_0x32d6bb(0x198),'arrow':_0x32d6bb(0x152),'openArrow':_0x32d6bb(0x200),'stealthArrow':_0x32d6bb(0x214),'diamondArrow':_0x32d6bb(0x1f6),'ovalArrow':_0x32d6bb(0x180)},'arrowSize':{'small':'کوچک','medium':_0x32d6bb(0x1ff),'large':_0x32d6bb(0x16e)},'sketchType':{'title':_0x32d6bb(0x21e),'none':'هیچ','curved':_0x32d6bb(0x1fb),'freehand':_0x32d6bb(0x243),'handDrawn':_0x32d6bb(0x1e2)}},'shape':{'group':{'line':_0x32d6bb(0x239),'rectangle':_0x32d6bb(0x1f2),'basicShape':_0x32d6bb(0x1cd),'blockArrow':_0x32d6bb(0x204),'equationShape':_0x32d6bb(0x1da),'flowchart':_0x32d6bb(0x165),'starAndBanner':_0x32d6bb(0x186),'callout':_0x32d6bb(0x20a),'other':_0x32d6bb(0x1db)},'type':{'line':'خط','straight-connector1':_0x32d6bb(0x19d),'straight-connector2':_0x32d6bb(0x156),'bent-connector3':'اتصال\x20خمیده','bent-connector3-arrow1':_0x32d6bb(0x199),'bent-connector3-arrow2':_0x32d6bb(0x1f0),'curved-connector3':_0x32d6bb(0x18f),'curved-connector3-arrow1':'اتصال\x20منحنی\x20فلشدار','curved-connector3-arrow2':_0x32d6bb(0x1ea),'rect':_0x32d6bb(0x162),'round-rect':_0x32d6bb(0x1a6),'snip1-rect':_0x32d6bb(0x1ad),'snip2-same-rect':_0x32d6bb(0x248),'snip2-diag-rect':'مستطیل\x20گوشه\x20بریده\x20قطری','snip-round-rect':'مستطیل\x20گوشه\x20بریده\x20و\x20گرد','round1-rect':_0x32d6bb(0x24c),'round2-same-rect':_0x32d6bb(0x181),'round2-diag-rect':_0x32d6bb(0x1b4),'rect-textbox-horizontal':_0x32d6bb(0x16d),'rect-textbox-vertical':_0x32d6bb(0x169),'ellipse':_0x32d6bb(0x217),'triangle':_0x32d6bb(0x1f9),'rt-triangle':'مثلث\x20قائمالزاویه','parallelogram':'متوازیالاضلاع','trapezoid':_0x32d6bb(0x1bb),'non-isosceles-trapezoid':'ذوزنقه\x20نامتساویالساقین','diamond':_0x32d6bb(0x1ce),'pentagon':_0x32d6bb(0x1e6),'hexagon':_0x32d6bb(0x1f7),'heptagon':_0x32d6bb(0x238),'octagon':_0x32d6bb(0x227),'decagon':'دهضلعی','dodecagon':_0x32d6bb(0x173),'pie':'دایرهای','chord':_0x32d6bb(0x22a),'teardrop':_0x32d6bb(0x21c),'frame':_0x32d6bb(0x1d3),'half-frame':_0x32d6bb(0x19a),'corner':_0x32d6bb(0x157),'diag-stripe':_0x32d6bb(0x1f8),'plus':_0x32d6bb(0x1d2),'plaque':_0x32d6bb(0x209),'can':_0x32d6bb(0x193),'cube':_0x32d6bb(0x188),'bevel':'بول','donut':_0x32d6bb(0x189),'no-smoking':_0x32d6bb(0x1cc),'block-arc':_0x32d6bb(0x172),'folder-corner':'گوشه\x20تا\x20شده','smiley-face':_0x32d6bb(0x196),'heart':_0x32d6bb(0x17c),'lightning-bolt':_0x32d6bb(0x222),'sun':_0x32d6bb(0x15f),'moon':'ماه','cloud':_0x32d6bb(0x225),'arc':_0x32d6bb(0x183),'bracket-pair':'براکت\x20دوتایی','brace-pair':_0x32d6bb(0x207),'left-bracket':_0x32d6bb(0x1b6),'right-bracket':_0x32d6bb(0x1d4),'left-brace':'آکولاد\x20چپ','right-brace':_0x32d6bb(0x166),'right-arrow':'فلش\x20راست','left-arrow':_0x32d6bb(0x1dc),'up-arrow':_0x32d6bb(0x206),'down-arrow':_0x32d6bb(0x205),'left-right-arrow':_0x32d6bb(0x15d),'up-down-arrow':'فلش\x20بالا-پایین','quad-arrow':_0x32d6bb(0x19c),'left-right-up-arrow':'فلش\x20چپ-راست-بالا','bent-arrow':'فلش\x20خمیده','uturn-arrow':_0x32d6bb(0x1c8),'left-up-arrow':_0x32d6bb(0x1cf),'bent-up-arrow':'فلش\x20خمیده\x20بالا','curved-right-arrow':_0x32d6bb(0x20d),'curved-left-arrow':_0x32d6bb(0x1a4),'curved-up-arrow':_0x32d6bb(0x163),'curved-down-arrow':_0x32d6bb(0x1e0),'striped-right-arrow':_0x32d6bb(0x161),'notched-right-arrow':_0x32d6bb(0x1fa),'home-plate':_0x32d6bb(0x1e6),'chevron':_0x32d6bb(0x212),'right-arrow-callout':_0x32d6bb(0x187),'down-arrow-callout':_0x32d6bb(0x215),'left-arrow-callout':_0x32d6bb(0x19f),'up-arrow-callout':_0x32d6bb(0x18a),'left-right-arrow-callout':_0x32d6bb(0x154),'quad-arrow-callout':_0x32d6bb(0x21a),'circular-arrow':'فلش\x20دایرهای','math-plus':_0x32d6bb(0x178),'math-minus':'تفریق','math-multiply':_0x32d6bb(0x18b),'math-divide':'تقسیم','math-equal':'مساوی','math-not-equal':_0x32d6bb(0x195),'flow-chart-process':'فرآیند','flow-chart-alternate-process':_0x32d6bb(0x23d),'flow-chart-decision':'تصمیم','flow-chart-input-output':_0x32d6bb(0x176),'flow-chart-predefined-process':_0x32d6bb(0x203),'flow-chart-internal-storage':_0x32d6bb(0x1d5),'flow-chart-document':'سند','flow-chart-multidocument':_0x32d6bb(0x1fc),'flow-chart-terminator':_0x32d6bb(0x1a5),'flow-chart-preparation':_0x32d6bb(0x16f),'flow-chart-manual-input':_0x32d6bb(0x24a),'flow-chart-manual-operation':_0x32d6bb(0x1f5),'flow-chart-connector':_0x32d6bb(0x164),'flow-chart-offpage-connector':_0x32d6bb(0x1d7),'flow-chart-punched-card':_0x32d6bb(0x17b),'flow-chart-punched-tape':_0x32d6bb(0x1a0),'flow-chart-summing-junction':_0x32d6bb(0x179),'flow-chart-or':'یا','flow-chart-collate':'مقایسه','flow-chart-sort':_0x32d6bb(0x18d),'flow-chart-extract':_0x32d6bb(0x1b3),'flow-chart-merge':_0x32d6bb(0x1a7),'flow-chart-online-storage':_0x32d6bb(0x23a),'flow-chart-delay':'تأخیر','flow-chart-magnetic-tape':_0x32d6bb(0x234),'flow-chart-magnetic-disk':_0x32d6bb(0x17e),'flow-chart-magnetic-drum':_0x32d6bb(0x1bd),'flow-chart-display':_0x32d6bb(0x153),'irregular-seal1':'انفجار\x20۱','irregular-seal2':'انفجار\x20۲','star4':'ستاره\x20۴\x20پر','star5':'ستاره\x20۵\x20پر','star6':_0x32d6bb(0x190),'star7':_0x32d6bb(0x171),'star8':_0x32d6bb(0x1c3),'star10':'ستاره\x20۱۰\x20پر','star12':_0x32d6bb(0x1eb),'star16':_0x32d6bb(0x16b),'star24':_0x32d6bb(0x1e8),'star32':_0x32d6bb(0x223),'ribbon2':_0x32d6bb(0x1e7),'ribbon':_0x32d6bb(0x1a1),'ellipse-ribbon2':_0x32d6bb(0x208),'ellipse-ribbon':_0x32d6bb(0x1ef),'vertical-scroll':'طومار\x20عمودی','horizontal-scroll':_0x32d6bb(0x182),'wave':_0x32d6bb(0x1ac),'double-wave':_0x32d6bb(0x175),'wedge-rect-callout':'کادر\x20توضیحی\x20مستطیلی','wedge-round-rect-callout':_0x32d6bb(0x237),'wedge-ellipse-callout':_0x32d6bb(0x221),'cloud-callout':_0x32d6bb(0x1b1),'border-callout1':_0x32d6bb(0x15b),'border-callout2':_0x32d6bb(0x233),'border-callout3':'کادر\x20توضیحی\x20خطی\x20۳','accent-callout1':'کادر\x20توضیحی\x20تأکیدی\x20۱','accent-callout2':_0x32d6bb(0x228),'accent-callout3':'کادر\x20توضیحی\x20تأکیدی\x20۳','callout1':_0x32d6bb(0x22e),'callout2':_0x32d6bb(0x230),'callout3':_0x32d6bb(0x185),'accent-border-callout1':'کادر\x20توضیحی\x20تأکیدی\x20با\x20حاشیه\x20۱','accent-border-callout2':_0x32d6bb(0x216),'accent-border-callout3':_0x32d6bb(0x1b2),'left-circular-arrow':_0x32d6bb(0x219),'left-right-circular-arrow':_0x32d6bb(0x1dd),'swoosh-arrow':'فلش\x20سووش','left-right-ribbon':_0x32d6bb(0x213),'pie-wedge':'گوه\x20دایرهای','funnel':_0x32d6bb(0x247),'gear6':'چرخدنده\x20۶','gear9':_0x32d6bb(0x21f),'corner-tabs':_0x32d6bb(0x236),'action-button-back-previous':_0x32d6bb(0x17a),'action-button-forward-next':_0x32d6bb(0x210),'action-button-beginning':_0x32d6bb(0x1fd),'action-button-end':_0x32d6bb(0x241),'action-button-home':'دکمه\x20عمل:\x20خانه','action-button-information':_0x32d6bb(0x1c5),'action-button-return':_0x32d6bb(0x23e),'action-button-movie':_0x32d6bb(0x1b8),'action-button-document':'دکمه\x20عمل:\x20سند','action-button-sound':_0x32d6bb(0x211),'action-button-help':_0x32d6bb(0x1e1),'action-button-blank':_0x32d6bb(0x159),'chart-plus':_0x32d6bb(0x15e),'chart-star':_0x32d6bb(0x170),'chart-x':_0x32d6bb(0x232),'flow-chart-offline-storage':_0x32d6bb(0x21d),'line-inv':_0x32d6bb(0x19e),'plaque-tabs':'برگههای\x20نشان','square-tabs':_0x32d6bb(0x1d6),'up-down-arrow-callout':_0x32d6bb(0x1b0)}},'toolbar':{'expandShapeToolbar':'گسترش\x20نوار\x20ابزار\x20شکل','collapseShapeToolbar':_0x32d6bb(0x1d9),'alignLeft':'تراز\x20چپ','alignCenter':_0x32d6bb(0x155),'alignRight':'تراز\x20راست','alignJustify':_0x32d6bb(0x218),'bold':'پررنگ','italic':_0x32d6bb(0x1d8),'underline':'خطکشی','strikethrough':_0x32d6bb(0x22d),'subscript':_0x32d6bb(0x18c),'superscript':_0x32d6bb(0x246),'textColor':_0x32d6bb(0x20e),'textBackgroundColor':'رنگ\x20پسزمینه\x20متن','fillColor':_0x32d6bb(0x1cb),'resetColor':_0x32d6bb(0x1c1),'typography':_0x32d6bb(0x224)},'align':{'top':_0x32d6bb(0x22c),'middle':'تراز\x20وسط','bottom':_0x32d6bb(0x1c6)},'textWrap':{'inline':'در\x20یک\x20خط\x20با\x20متن','square':_0x32d6bb(0x1b7),'topAndBottom':_0x32d6bb(0x226),'behindText':'پشت\x20متن','inFrontText':_0x32d6bb(0x1ba)},'crop':{'shape':_0x32d6bb(0x192)}}};}));function _0x48f7(_0x17312a,_0x4b284e){_0x17312a=_0x17312a-0x152;var _0x2238b5=_0x2238();var _0x48f710=_0x2238b5[_0x17312a];return _0x48f710;}function _0x2238(){var _0x11bd9b=['فلش\x20منحنی\x20پایین','دکمه\x20عمل:\x20راهنما','دستکش','خط\x20چین\x20بلند-نقطه','نقطه\x20مربعی','عنوان\x204','پنجضلعی','روبان\x20بالا','ستاره\x20۲۴\x20پر','مخفی\x20کردن\x20پنل\x20شکلها','اتصال\x20منحنی\x20دو\x20فلشه','ستاره\x20۱۲\x20پر','نوع\x20اتصال','49vaqnQG','راست','روبان\x20منحنی\x20پایین','اتصال\x20خمیده\x20دو\x20فلشه','جابجایی\x20Y','مستطیلها','تغییر\x20وضعیت\x20چرخش\x20افقی','منبع\x20تصویر','عملیات\x20دستی','فلش\x20لوزی','ششضلعی','نوار\x20مورب','مثلث\x20متساویالساقین','فلش\x20دندانهدار\x20راست','منحنی','چندسندی','دکمه\x20عمل:\x20ابتدا','بدون\x20پر\x20کردن','متوسط','فلش\x20باز','تغییر\x20وضعیت\x20چرخش\x20عمودی','شکل','فرآیند\x20از\x20پیش\x20تعریفشده','فلشهای\x20بلوکی','فلش\x20پایین','فلش\x20بالا','آکولاد\x20دوتایی','روبان\x20منحنی\x20بالا','نشان','کادرهای\x20توضیحی','228tUvDVp','اندازه\x20فلش\x20انتها','فلش\x20منحنی\x20راست','رنگ\x20متن','پر\x20کردن\x20گرادیان','دکمه\x20عمل:\x20جلو\x20یا\x20بعدی','دکمه\x20عمل:\x20صدا','شورون','روبان\x20چپ-راست','فلش\x20مخفی','کادر\x20توضیحی\x20فلش\x20پایین','کادر\x20توضیحی\x20تأکیدی\x20با\x20حاشیه\x20۲','بیضی','توجیه','فلش\x20دایرهای\x20چپ','کادر\x20توضیحی\x20فلش\x20چهارطرفه','رنگ','اشک','ذخیرهسازی\x20آفلاین','سبک\x20طرح','چرخدنده\x20۹','صاف','کادر\x20توضیحی\x20بیضی','صاعقه','ستاره\x20۳۲\x20پر','تایپوگرافی','ابر','بالا\x20و\x20پایین','هشتضلعی','کادر\x20توضیحی\x20تأکیدی\x20۲','موقعیت\x20شکل','وتر','مورب','تراز\x20بالا','خطدار','کادر\x20توضیحی\x20۱','متن\x20عادی','کادر\x20توضیحی\x20۲','بدون\x20خط','نمودار\x20ایکس','کادر\x20توضیحی\x20خطی\x20۲','دسترسی\x20ترتیبی','4NYBoeW','برگههای\x20گوشهای','کادر\x20توضیحی\x20مستطیلی\x20گرد','هفتضلعی','خطوط','داده\x20ذخیرهشده','متن\x20را\x20وارد\x20کنید','خط\x20چین\x20بلند','فرآیند\x20جایگزین','دکمه\x20عمل:\x20بازگشت','مقیاس\x20Y','خط\x20چین','دکمه\x20عمل:\x20انتها','کادر\x20برجسته','آزاد','بالا\x20راست','بول','بالانویس','قیف','مستطیل\x20گوشه\x20بریده\x20دو\x20طرف\x20همسان','exports','ورودی\x20دستی','487174MCnAUH','مستطیل\x20گوشه\x20گرد\x20یک\x20طرف','object','پایین\x20راست','فلش','نمایشگر','کادر\x20توضیحی\x20فلش\x20چپ-راست','تراز\x20وسط','خط\x20دو\x20فلشه','الشکل','عنوان\x203','دکمه\x20عمل:\x20خالی','نوع\x20انتها','کادر\x20توضیحی\x20خطی\x20۱','513237SqoafP','فلش\x20چپ-راست','نمودار\x20مثبت','خورشید','چرخش\x20با\x20شکل','فلش\x20راهراه\x20راست','مستطیل','فلش\x20منحنی\x20بالا','اتصالدهنده','نمودار\x20جریان','آکولاد\x20راست','خط\x20گرادیان','9728055cvbWKj','کادر\x20متن\x20عمودی','خط\x20چین\x20بلند-نقطه-نقطه','ستاره\x20۱۶\x20پر','چرخش\x20۹۰\x20درجه\x20به\x20راست','کادر\x20متن\x20افقی','بزرگ','آمادهسازی','نمودار\x20ستاره','ستاره\x20۷\x20پر','کمان\x20بلوکی','دوازدهضلعی','عنوان\x202','موج\x20دوتایی','داده','شعاع\x20گوشه','جمع','گره\x20جمع','دکمه\x20عمل:\x20بازگشت\x20یا\x20قبلی','کارت','قلب','شفافیت','دیسک\x20مغناطیسی','چرخش\x20۹۰\x20درجه\x20به\x20چپ','فلش\x20بیضی','مستطیل\x20گوشه\x20گرد\x20دو\x20طرف\x20همسان','طومار\x20افقی','کمان','عنوان\x201','کادر\x20توضیحی\x20۳','ستارهها\x20و\x20بنرها','کادر\x20توضیحی\x20فلش\x20راست','مکعب','دونات','کادر\x20توضیحی\x20فلش\x20بالا','ضرب','زیرنویس','مرتبسازی','function','اتصال\x20منحنی','ستاره\x20۶\x20پر','تراز','کراپ\x20به\x20شکل','استوانه','نقطه\x20گرد','نامساوی','صورتک\x20خندان','اندازه\x20فلش\x20ابتدا','هیچ','اتصال\x20خمیده\x20فلشدار','نیمقاب','نقل\x20قول','فلش\x20چهارطرفه','خط\x20فلشدار','خط\x20معکوس','کادر\x20توضیحی\x20فلش\x20چپ','نوار\x20سوراخدار','روبان\x20پایین','یکدست','UniverProShapeEditorUiFaIR','فلش\x20منحنی\x20چپ','پایاندهنده','مستطیل\x20گرد','ادغام','633942qOtush','پر\x20کردن\x20تصویر\x20یا\x20بافت','بالا\x20چپ','تغییر\x20وضعیت\x20متن\x20عمودی','موج','مستطیل\x20گوشه\x20بریده\x20یک\x20طرف','مربعی','پر\x20کردن\x20الگو','کادر\x20توضیحی\x20فلش\x20بالا-پایین','کادر\x20توضیحی\x20ابر','کادر\x20توضیحی\x20تأکیدی\x20با\x20حاشیه\x20۳','استخراج','مستطیل\x20گوشه\x20گرد\x20قطری','نوع\x20فلش\x20ابتدا','براکت\x20چپ','مربع','دکمه\x20عمل:\x20فیلم','جابجایی\x20X','جلوی\x20متن','ذوزنقه','902840elkqLV','ذخیرهسازی\x20دسترسی\x20مستقیم','بلوک\x20کد','لیست\x20وظیفه','گرد','بازنشانی\x20رنگ','6608090CAhFZm','ستاره\x20۸\x20پر','عنوان\x205','دکمه\x20عمل:\x20اطلاعات','تراز\x20پایین','قالببندی\x20شکل','فلش\x20دور\x20برگردان','22IVOImS','78645RYDreQ','رنگ\x20پسزمینه\x20متن','سیگار\x20کشیدن\x20ممنوع','اشکال\x20پایه','لوزی','فلش\x20چپ-بالا','حذف\x20شکل','پر\x20کردن','ضربدر','قاب','براکت\x20راست','ذخیرهسازی\x20داخلی','برگههای\x20مربعی','اتصالدهنده\x20خارج\x20صفحه','ایتالیک','جمع\x20کردن\x20نوار\x20ابزار\x20شکل','اشکال\x20معادله','سایر','فلش\x20چپ','فلش\x20دایرهای\x20چپ-راست','سبک\x20شکل','پایین\x20چپ'];_0x2238=function(){return _0x11bd9b;};return _0x2238();}
|
package/lib/umd/locale/fr-FR.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function _0x57f3(){var _0x3a7d0b=['Légende\x20rectangulaire','Taille\x20de\x20flèche\x20de\x20début','Anneau','Flèche\x20quadruple','Style\x20de\x20la\x20forme','361550TObfWh','Citation','Flèche\x20bas','Flèche\x20circulaire\x20gauche-droite','Trapèze\x20non\x20isocèle','Extraire','Ligne\x20fléchée','Légende\x20ligne\x202','Remplissage','Pivoter\x20à\x20droite\x20de\x2090°','Bas\x20droite','Italique','Retard','129443XCSCBA','Zone\x20de\x20texte\x20verticale','Aligner\x20en\x20bas','Flèche\x20swoosh','Rectangle','Légende\x20flèche\x20bas','1412672GqkEic','Éclair','Rectangle\x20à\x20un\x20coin\x20coupé','Légende\x201','110634frEGAP','Interdiction\x20de\x20fumer','Double\x20vague','Assembler','Parallélogramme','Aligner\x20au\x20milieu','Ligne\x20inverse','Type\x20de\x20flèche\x20de\x20début','Flèche\x20circulaire\x20gauche','Flèche\x20droite','Bouton\x20d\x27action\x20:\x20Son','Légende\x20flèche\x20haut-bas','Cube','Décagone','Titre\x204','Transparence','Affichage','Biseau','Rogner\x20à\x20la\x20forme','Bouton\x20d\x27action\x20:\x20Retour\x20ou\x20Précédent','Zone\x20de\x20texte\x20horizontale','Données\x20stockées','Position\x20de\x20la\x20forme','Losange','Style\x20d\x27esquisse','exports','70BjZyHx','Saisie\x20manuelle','Masquer\x20le\x20panneau\x20des\x20formes','Processus','Étoile\x20à\x2012\x20branches','Pivoter\x20à\x20gauche\x20de\x2090°','Taille\x20de\x20flèche\x20de\x20fin','Triangle\x20rectangle','Flèches\x20en\x20bloc','Légende\x20ligne\x203','Ligne\x20double\x20fléchée','Hexagone','Larme','Rouleau\x20vertical','Carte','Connecteur\x20coudé\x20double\x20fléché','Basculer\x20le\x20retournement\x20vertical','Décision','Souligné','Liste\x20non\x20ordonnée','Égal','Haut\x20gauche','object','Cylindre','Stockage\x20hors\x20ligne','Onglets\x20carrés','Aucun\x20remplissage','Plus','Multidocument','Onglets\x20plaque','Haut','Rectangle\x20à\x20un\x20coin\x20arrondi','Bouton\x20d\x27action\x20:\x20Vide','Triangle\x20isocèle','Aucune\x20ligne','Moins','Flèche\x20losange','Normal','Subscript','Remplissage\x20uni','Bouton\x20d\x27action\x20:\x20Avancer\x20ou\x20Suivant','Forme\x20en\x20L','Légende\x20flèche\x20gauche','Flèche\x20haut','Ruban\x20vers\x20le\x20haut','Smiley','Flèche\x20haut-bas','Flèche\x20circulaire','Opération\x20manuelle','Étoile\x20à\x2024\x20branches','Remplissage\x20dégradé','Dessiné\x20à\x20la\x20main','Superscript','Bouton\x20d\x27action\x20:\x20Début','Bloc\x20de\x20code','Légende\x20bordure\x20accent\x203','Jonction\x20de\x20sommation','Fusionner','Bouton\x20d\x27action\x20:\x20Document','Bouton\x20d\x27action\x20:\x20Accueil','Octogone','Étoile\x20à\x205\x20branches','Couleur','Flèche\x20ovale','Couleur\x20de\x20fond\x20du\x20texte','Décalage\x20X','Tiret\x20long-point','Légende\x20flèche\x20quadruple','Stockage\x20à\x20accès\x20direct','Document','Pentagone','Titre\x201','Diviser','Liste\x20de\x20tâches','Légende\x20flèche\x20haut','Flèche\x20courbe\x20droite','Rayure\x20diagonale','Trapèze','Flèche\x20courbe\x20bas','Étoile\x20à\x206\x20branches','Accès\x20séquentiel','Échelle\x20X','Mosaïque\x20d\x27image\x20comme\x20texture','Courbé','Forme','Graphique\x20Étoile','Soleil','8xeKWfJ','Accolade\x20droite','Insérer\x20une\x20forme','Heptagone','Alignement','Type\x20de\x20tiret','Légende\x203','Explosion\x202','3BuUVgj','Légende\x20nuage','Demi-cadre','Pivoter\x20avec\x20la\x20forme','Bouton\x20d\x27action\x20:\x20Film','Étoile\x20à\x204\x20branches','Text\x20Background\x20color','Bas\x20gauche','Liste\x20ordonnée','Derrière\x20le\x20texte','Engrenage\x209','Terminaison','Différent','Petite','Connecteur\x20courbe','Flèche\x20gauche','Ouvrir\x20le\x20panneau\x20des\x20formes','Étoile\x20à\x2032\x20branches','Aligné\x20avec\x20le\x20texte','Insérer...','Légende\x20ovale','Graphique\x20Plus','Carré','Formes\x20d\x27équation','Crochet\x20gauche','Dodécagone','Titre\x202','function','Légende\x20bordure\x20accent\x201','Cœur','Moyenne','Corde','Légende\x20accent\x201','Bouton\x20d\x27action\x20:\x20Fin','Grande','Décalage\x20Y','Crochet\x20droit','Rectangle\x20à\x20coins\x20coupés\x20même\x20côté','Tiret','Vague','Connecteur\x20courbe\x20double\x20fléché','Légende\x20flèche\x20gauche-droite','Entonnoir','Largeur','Tiret\x20long','Ruban\x20gauche-droite','Aucune','Onglet','Flèche\x20gauche-haut','Type\x20de\x20jointure','Ligne','Légende\x20rectangulaire\x20arrondie','Formes\x20de\x20base','Étoile\x20à\x208\x20branches','Coin\x20plié','Remplissage\x20motif','Ruban\x20vers\x20le\x20bas','Flèche\x20coudée','Titre\x203','Ligne\x20continue','Plat','Réduire\x20la\x20barre\x20d\x27outils\x20de\x20forme','Flèche\x20ouverte','Processus\x20prédéfini','Légendes','1491381pQVEWr','Légende\x20ligne\x201','Étoile\x20à\x2016\x20branches','Format\x20de\x20la\x20forme','Plaque','Rectangles','Aligner\x20à\x20gauche','4386960FRNYTl','Tiret-point','Justifier','Secteur\x20circulaire','Multiplier','Graphique\x20X','Connecteur\x20coudé','Rectangle\x20à\x20coins\x20coupés\x20diagonaux','Bouton\x20d\x27action\x20:\x20Aide','Double\x20accolade','Rouleau\x20horizontal','Rond','Processus\x20alternatif','Étoile\x20à\x2010\x20branches','Reset\x20color','Connecteur\x20hors\x20page','Aligner\x20à\x20droite','Autres','Légende\x20flèche\x20droite','Flèche\x20courbe\x20haut','Point\x20rond','Rayon\x20d\x27angle','Haut\x20droite','Barré','Devant\x20le\x20texte','Titre\x205','Connecteur\x20coudé\x20fléché','Croix','2krpPPD','Nuage','5295257bhEpMr','Aucun','Double\x20crochet','Arc\x20en\x20bloc','Gras','Droite','Ruban\x20courbe\x20vers\x20le\x20haut'];_0x57f3=function(){return _0x3a7d0b;};return _0x57f3();}function _0x1e67(_0x49734d,_0x3c4cfd){_0x49734d=_0x49734d-0x17c;var _0x57f36e=_0x57f3();var _0x1e67e6=_0x57f36e[_0x49734d];return _0x1e67e6;}(function(_0x1d10ff,_0x4835b5){var _0x3b63eb=_0x1e67,_0x4d790e=_0x1d10ff();while(!![]){try{var _0x23f5c8=parseInt(_0x3b63eb(0x1af))/0x1*(-parseInt(_0x3b63eb(0x194))/0x2)+-parseInt(_0x3b63eb(0x232))/0x3*(parseInt(_0x3b63eb(0x1b5))/0x4)+parseInt(_0x3b63eb(0x1a2))/0x5+parseInt(_0x3b63eb(0x1b9))/0x6*(-parseInt(_0x3b63eb(0x1d3))/0x7)+-parseInt(_0x3b63eb(0x22a))/0x8*(-parseInt(_0x3b63eb(0x273))/0x9)+parseInt(_0x3b63eb(0x27a))/0xa+parseInt(_0x3b63eb(0x196))/0xb;if(_0x23f5c8===_0x4835b5)break;else _0x4d790e['push'](_0x4d790e['shift']());}catch(_0x38e487){_0x4d790e['push'](_0x4d790e['shift']());}}}(_0x57f3,0x77e5d),function(_0x2a662f,_0x1a3e63){var _0x52e160=_0x1e67;typeof exports==_0x52e160(0x1e9)&&typeof module<'u'?module[_0x52e160(0x1d2)]=_0x1a3e63():typeof define==_0x52e160(0x24d)&&define['amd']?define([],_0x1a3e63):(_0x2a662f=typeof globalThis<'u'?globalThis:_0x2a662f||self,_0x2a662f['UniverProShapeEditorUiFrFR']=_0x1a3e63());}(this,function(){var _0x2910fe=_0x1e67;return{'shape-editor-ui':{'title':_0x2910fe(0x227),'insertShape':_0x2910fe(0x22c),'openPanel':_0x2910fe(0x242),'deleteShape':'Supprimer\x20la\x20forme','hidePanel':_0x2910fe(0x1d5),'formatShape':_0x2910fe(0x276),'shapeStyle':_0x2910fe(0x1a1),'shapePosition':_0x2910fe(0x1cf),'toggleFlipH':'Basculer\x20le\x20retournement\x20horizontal','toggleFlipV':_0x2910fe(0x1e3),'rotateRight90':_0x2910fe(0x1ab),'rotateLeft90':_0x2910fe(0x1d8),'toggleTextVertical':'Basculer\x20le\x20texte\x20vertical','textEditor':{'paragraphType':{'normal':_0x2910fe(0x1f8),'heading1':_0x2910fe(0x21a),'heading2':_0x2910fe(0x24c),'heading3':_0x2910fe(0x26c),'heading4':_0x2910fe(0x1c7),'heading5':_0x2910fe(0x191),'orderedList':_0x2910fe(0x23a),'bulletList':_0x2910fe(0x1e6),'checkList':_0x2910fe(0x21c),'quote':_0x2910fe(0x1a3),'code':_0x2910fe(0x209),'callout':'Encadré'}},'fill':{'title':_0x2910fe(0x1aa),'noFill':_0x2910fe(0x1ed),'solidFill':_0x2910fe(0x1fa),'gradientFill':_0x2910fe(0x205),'pictureFill':'Remplissage\x20image\x20ou\x20texture','patternFill':_0x2910fe(0x269),'color':_0x2910fe(0x211),'transparency':_0x2910fe(0x1c8),'picture':{'source':'Source\x20de\x20l\x27image','insert':_0x2910fe(0x245),'tileAsTexture':_0x2910fe(0x225),'offsetX':_0x2910fe(0x214),'offsetY':_0x2910fe(0x255),'scaleX':_0x2910fe(0x224),'scaleY':'Échelle\x20Y','alignment':_0x2910fe(0x22e),'rotateWithShape':_0x2910fe(0x235),'align':{'tl':_0x2910fe(0x1e8),'t':_0x2910fe(0x1f1),'tr':_0x2910fe(0x18e),'l':'Gauche','ctr':'Centre','r':_0x2910fe(0x19b),'bl':_0x2910fe(0x239),'b':'Bas','br':_0x2910fe(0x1ac)}}},'line':{'title':_0x2910fe(0x264),'noLine':_0x2910fe(0x1f5),'solidLine':_0x2910fe(0x26d),'gradientLine':'Ligne\x20dégradée','color':_0x2910fe(0x211),'transparency':'Transparence','width':_0x2910fe(0x25d),'cornerRadius':_0x2910fe(0x18d),'dashType':{'title':_0x2910fe(0x22f),'solid':'Continue','roundDot':_0x2910fe(0x18c),'squareDot':'Point\x20carré','dash':_0x2910fe(0x258),'dashDot':_0x2910fe(0x27b),'longDash':_0x2910fe(0x25e),'longDashDot':_0x2910fe(0x215),'longDashDotDot':'Tiret\x20long-point-point'},'capType':{'title':'Type\x20de\x20terminaison','flat':_0x2910fe(0x26e),'round':_0x2910fe(0x183),'square':_0x2910fe(0x248)},'joinType':{'title':_0x2910fe(0x263),'miter':_0x2910fe(0x261),'round':_0x2910fe(0x183),'bevel':'Biseauté'},'beginArrowType':_0x2910fe(0x1c0),'beginArrowSize':_0x2910fe(0x19e),'endArrowType':'Type\x20de\x20flèche\x20de\x20fin','endArrowSize':_0x2910fe(0x1d9),'arrowType':{'none':_0x2910fe(0x260),'arrow':'Flèche','openArrow':_0x2910fe(0x270),'stealthArrow':'Flèche\x20furtive','diamondArrow':_0x2910fe(0x1f7),'ovalArrow':_0x2910fe(0x212)},'arrowSize':{'small':_0x2910fe(0x23f),'medium':_0x2910fe(0x250),'large':_0x2910fe(0x254)},'sketchType':{'title':_0x2910fe(0x1d1),'none':_0x2910fe(0x197),'curved':_0x2910fe(0x226),'freehand':'Main\x20levée','handDrawn':_0x2910fe(0x206)}},'shape':{'group':{'line':'Lignes','rectangle':_0x2910fe(0x278),'basicShape':_0x2910fe(0x266),'blockArrow':_0x2910fe(0x1db),'equationShape':_0x2910fe(0x249),'flowchart':'Organigramme','starAndBanner':'Étoiles\x20et\x20bannières','callout':_0x2910fe(0x272),'other':_0x2910fe(0x189)},'type':{'line':'Ligne','straight-connector1':_0x2910fe(0x1a8),'straight-connector2':_0x2910fe(0x1dd),'bent-connector3':_0x2910fe(0x17e),'bent-connector3-arrow1':_0x2910fe(0x192),'bent-connector3-arrow2':_0x2910fe(0x1e2),'curved-connector3':_0x2910fe(0x240),'curved-connector3-arrow1':'Connecteur\x20courbe\x20fléché','curved-connector3-arrow2':_0x2910fe(0x25a),'rect':_0x2910fe(0x1b3),'round-rect':'Rectangle\x20arrondi','snip1-rect':_0x2910fe(0x1b7),'snip2-same-rect':_0x2910fe(0x257),'snip2-diag-rect':_0x2910fe(0x17f),'snip-round-rect':'Rectangle\x20à\x20un\x20coin\x20coupé\x20et\x20un\x20arrondi','round1-rect':_0x2910fe(0x1f2),'round2-same-rect':'Rectangle\x20à\x20coins\x20arrondis\x20même\x20côté','round2-diag-rect':'Rectangle\x20à\x20coins\x20arrondis\x20diagonaux','rect-textbox-horizontal':_0x2910fe(0x1cd),'rect-textbox-vertical':_0x2910fe(0x1b0),'ellipse':'Ovale','triangle':_0x2910fe(0x1f4),'rt-triangle':_0x2910fe(0x1da),'parallelogram':_0x2910fe(0x1bd),'trapezoid':_0x2910fe(0x220),'non-isosceles-trapezoid':_0x2910fe(0x1a6),'diamond':_0x2910fe(0x1d0),'pentagon':_0x2910fe(0x219),'hexagon':_0x2910fe(0x1de),'heptagon':_0x2910fe(0x22d),'octagon':_0x2910fe(0x20f),'decagon':_0x2910fe(0x1c6),'dodecagon':_0x2910fe(0x24b),'pie':'Secteur','chord':_0x2910fe(0x251),'teardrop':_0x2910fe(0x1df),'frame':'Cadre','half-frame':_0x2910fe(0x234),'corner':_0x2910fe(0x1fc),'diag-stripe':_0x2910fe(0x21f),'plus':_0x2910fe(0x193),'plaque':_0x2910fe(0x277),'can':_0x2910fe(0x1ea),'cube':_0x2910fe(0x1c5),'bevel':_0x2910fe(0x1ca),'donut':_0x2910fe(0x19f),'no-smoking':_0x2910fe(0x1ba),'block-arc':_0x2910fe(0x199),'folder-corner':_0x2910fe(0x268),'smiley-face':_0x2910fe(0x200),'heart':_0x2910fe(0x24f),'lightning-bolt':_0x2910fe(0x1b6),'sun':_0x2910fe(0x229),'moon':'Lune','cloud':_0x2910fe(0x195),'arc':'Arc','bracket-pair':_0x2910fe(0x198),'brace-pair':_0x2910fe(0x181),'left-bracket':_0x2910fe(0x24a),'right-bracket':_0x2910fe(0x256),'left-brace':'Accolade\x20gauche','right-brace':_0x2910fe(0x22b),'right-arrow':_0x2910fe(0x1c2),'left-arrow':_0x2910fe(0x241),'up-arrow':_0x2910fe(0x1fe),'down-arrow':_0x2910fe(0x1a4),'left-right-arrow':'Flèche\x20gauche-droite','up-down-arrow':_0x2910fe(0x201),'quad-arrow':_0x2910fe(0x1a0),'left-right-up-arrow':'Flèche\x20gauche-droite-haut','bent-arrow':_0x2910fe(0x26b),'uturn-arrow':'Flèche\x20demi-tour','left-up-arrow':_0x2910fe(0x262),'bent-up-arrow':'Flèche\x20coudée\x20vers\x20le\x20haut','curved-right-arrow':_0x2910fe(0x21e),'curved-left-arrow':'Flèche\x20courbe\x20gauche','curved-up-arrow':_0x2910fe(0x18b),'curved-down-arrow':_0x2910fe(0x221),'striped-right-arrow':'Flèche\x20droite\x20rayée','notched-right-arrow':'Flèche\x20droite\x20entaillée','home-plate':'Pentagone','chevron':'Chevron','right-arrow-callout':_0x2910fe(0x18a),'down-arrow-callout':_0x2910fe(0x1b4),'left-arrow-callout':_0x2910fe(0x1fd),'up-arrow-callout':_0x2910fe(0x21d),'left-right-arrow-callout':_0x2910fe(0x25b),'quad-arrow-callout':_0x2910fe(0x216),'circular-arrow':_0x2910fe(0x202),'math-plus':_0x2910fe(0x1ee),'math-minus':_0x2910fe(0x1f6),'math-multiply':_0x2910fe(0x17c),'math-divide':_0x2910fe(0x21b),'math-equal':_0x2910fe(0x1e7),'math-not-equal':_0x2910fe(0x23e),'flow-chart-process':_0x2910fe(0x1d6),'flow-chart-alternate-process':_0x2910fe(0x184),'flow-chart-decision':_0x2910fe(0x1e4),'flow-chart-input-output':'Données','flow-chart-predefined-process':_0x2910fe(0x271),'flow-chart-internal-storage':'Stockage\x20interne','flow-chart-document':_0x2910fe(0x218),'flow-chart-multidocument':_0x2910fe(0x1ef),'flow-chart-terminator':_0x2910fe(0x23d),'flow-chart-preparation':'Préparation','flow-chart-manual-input':_0x2910fe(0x1d4),'flow-chart-manual-operation':_0x2910fe(0x203),'flow-chart-connector':'Connecteur','flow-chart-offpage-connector':_0x2910fe(0x187),'flow-chart-punched-card':_0x2910fe(0x1e1),'flow-chart-punched-tape':'Bande\x20perforée','flow-chart-summing-junction':_0x2910fe(0x20b),'flow-chart-or':'Ou','flow-chart-collate':_0x2910fe(0x1bc),'flow-chart-sort':'Trier','flow-chart-extract':_0x2910fe(0x1a7),'flow-chart-merge':_0x2910fe(0x20c),'flow-chart-online-storage':_0x2910fe(0x1ce),'flow-chart-delay':_0x2910fe(0x1ae),'flow-chart-magnetic-tape':_0x2910fe(0x223),'flow-chart-magnetic-disk':'Disque\x20magnétique','flow-chart-magnetic-drum':_0x2910fe(0x217),'flow-chart-display':_0x2910fe(0x1c9),'irregular-seal1':'Explosion\x201','irregular-seal2':_0x2910fe(0x231),'star4':_0x2910fe(0x237),'star5':_0x2910fe(0x210),'star6':_0x2910fe(0x222),'star7':'Étoile\x20à\x207\x20branches','star8':_0x2910fe(0x267),'star10':_0x2910fe(0x185),'star12':_0x2910fe(0x1d7),'star16':_0x2910fe(0x275),'star24':_0x2910fe(0x204),'star32':_0x2910fe(0x243),'ribbon2':_0x2910fe(0x1ff),'ribbon':_0x2910fe(0x26a),'ellipse-ribbon2':_0x2910fe(0x19c),'ellipse-ribbon':'Ruban\x20courbe\x20vers\x20le\x20bas','vertical-scroll':_0x2910fe(0x1e0),'horizontal-scroll':_0x2910fe(0x182),'wave':_0x2910fe(0x259),'double-wave':_0x2910fe(0x1bb),'wedge-rect-callout':_0x2910fe(0x19d),'wedge-round-rect-callout':_0x2910fe(0x265),'wedge-ellipse-callout':_0x2910fe(0x246),'cloud-callout':_0x2910fe(0x233),'border-callout1':_0x2910fe(0x274),'border-callout2':_0x2910fe(0x1a9),'border-callout3':_0x2910fe(0x1dc),'accent-callout1':_0x2910fe(0x252),'accent-callout2':'Légende\x20accent\x202','accent-callout3':'Légende\x20accent\x203','callout1':_0x2910fe(0x1b8),'callout2':'Légende\x202','callout3':_0x2910fe(0x230),'accent-border-callout1':_0x2910fe(0x24e),'accent-border-callout2':'Légende\x20bordure\x20accent\x202','accent-border-callout3':_0x2910fe(0x20a),'left-circular-arrow':_0x2910fe(0x1c1),'left-right-circular-arrow':_0x2910fe(0x1a5),'swoosh-arrow':_0x2910fe(0x1b2),'left-right-ribbon':_0x2910fe(0x25f),'pie-wedge':_0x2910fe(0x27d),'funnel':_0x2910fe(0x25c),'gear6':'Engrenage\x206','gear9':_0x2910fe(0x23c),'corner-tabs':'Onglets\x20d\x27angle','action-button-back-previous':_0x2910fe(0x1cc),'action-button-forward-next':_0x2910fe(0x1fb),'action-button-beginning':_0x2910fe(0x208),'action-button-end':_0x2910fe(0x253),'action-button-home':_0x2910fe(0x20e),'action-button-information':'Bouton\x20d\x27action\x20:\x20Information','action-button-return':'Bouton\x20d\x27action\x20:\x20Retour','action-button-movie':_0x2910fe(0x236),'action-button-document':_0x2910fe(0x20d),'action-button-sound':_0x2910fe(0x1c3),'action-button-help':_0x2910fe(0x180),'action-button-blank':_0x2910fe(0x1f3),'chart-plus':_0x2910fe(0x247),'chart-star':_0x2910fe(0x228),'chart-x':_0x2910fe(0x17d),'flow-chart-offline-storage':_0x2910fe(0x1eb),'line-inv':_0x2910fe(0x1bf),'plaque-tabs':_0x2910fe(0x1f0),'square-tabs':_0x2910fe(0x1ec),'up-down-arrow-callout':_0x2910fe(0x1c4)}},'toolbar':{'expandShapeToolbar':'Développer\x20la\x20barre\x20d\x27outils\x20de\x20forme','collapseShapeToolbar':_0x2910fe(0x26f),'alignLeft':_0x2910fe(0x279),'alignCenter':'Aligner\x20au\x20centre','alignRight':_0x2910fe(0x188),'alignJustify':_0x2910fe(0x27c),'bold':_0x2910fe(0x19a),'italic':_0x2910fe(0x1ad),'underline':_0x2910fe(0x1e5),'strikethrough':_0x2910fe(0x18f),'subscript':_0x2910fe(0x1f9),'superscript':_0x2910fe(0x207),'textColor':'Couleur\x20du\x20texte','textBackgroundColor':_0x2910fe(0x238),'fillColor':_0x2910fe(0x213),'resetColor':_0x2910fe(0x186)},'align':{'top':'Aligner\x20en\x20haut','middle':_0x2910fe(0x1be),'bottom':_0x2910fe(0x1b1)},'textWrap':{'inline':_0x2910fe(0x244),'square':_0x2910fe(0x248),'topAndBottom':'Haut\x20et\x20bas','behindText':_0x2910fe(0x23b),'inFrontText':_0x2910fe(0x190)},'crop':{'shape':_0x2910fe(0x1cb)}}};}));
|
|
1
|
+
function _0x3f46(){var _0x17bd1e=['Connecteur','Légende\x20flèche\x20haut','Centre','Chevron','Rectangle\x20à\x20coins\x20coupés\x20même\x20côté','Opération\x20manuelle','Décagone','Bouton\x20d\x27action\x20:\x20Information','Étoile\x20à\x2016\x20branches','1225216zZwKau','Liste\x20ordonnée','Larme','Secteur\x20circulaire','Stockage\x20interne','Étoile\x20à\x206\x20branches','Stockage\x20hors\x20ligne','Flèche\x20demi-tour','Engrenage\x209','Flèches\x20en\x20bloc','Flèche\x20courbe\x20droite','Losange','Légende\x20flèche\x20gauche','Type\x20de\x20terminaison','Zone\x20de\x20texte\x20horizontale','Connecteur\x20coudé','Point\x20rond','Développer\x20la\x20barre\x20d\x27outils\x20de\x20forme','Flèche\x20haut','Forme\x20en\x20L','1075203gWSJHw','Haut\x20et\x20bas','Type\x20de\x20jointure','Légende\x20flèche\x20haut-bas','Flèche\x20courbe\x20haut','Flèche\x20droite','Titre\x204','958944HtGmgF','Double\x20crochet','Légende\x20accent\x203','Anneau','Transparence','Réduire\x20la\x20barre\x20d\x27outils\x20de\x20forme','Biseauté','Flèche\x20circulaire','Titre\x201','Accolade\x20droite','Flèche\x20ovale','2449431TxxSvo','Barré','Insérer\x20une\x20forme','Flèche\x20droite\x20entaillée','Rectangle\x20à\x20un\x20coin\x20arrondi','Ouvrir\x20le\x20panneau\x20des\x20formes','Terminaison','Rectangle\x20à\x20un\x20coin\x20coupé\x20et\x20un\x20arrondi','Flèche\x20circulaire\x20gauche-droite','Main\x20levée','Triangle\x20isocèle','Rogner\x20à\x20la\x20forme','Plus','Hexagone','Zone\x20de\x20texte\x20verticale','object','Aucune','Aucun','Étoile\x20à\x208\x20branches','Légende\x20bordure\x20accent\x202','Parallélogramme','Rectangle\x20à\x20un\x20coin\x20coupé','Légende\x20ligne\x201','Onglet','Cylindre','Connecteur\x20coudé\x20double\x20fléché','Flèche\x20courbe\x20bas','Basculer\x20le\x20retournement\x20vertical','Dessiné\x20à\x20la\x20main','Aucun\x20remplissage','Crochet\x20gauche','Moyenne','Pivoter\x20avec\x20la\x20forme','Tiret-point','Flèche\x20coudée','Rectangle\x20à\x20coins\x20coupés\x20diagonaux','Point\x20carré','Bas\x20droite','Secteur','Arc\x20en\x20bloc','Remplissage\x20uni','Graphique\x20Étoile','Pivoter\x20à\x20droite\x20de\x2090°','Trier','Processus\x20prédéfini','Explosion\x202','Légende\x20ligne\x202','Bas\x20gauche','Titre\x205','Cube','Arc','Carré','Tiret\x20long-point-point','2HwxQcy','Diviser','6188472gJFjVw','Plaque','Entonnoir','Mosaïque\x20d\x27image\x20comme\x20texture','Décalage\x20X','Éclair','Gauche','Lignes','Couleur','Organigramme','Format\x20de\x20la\x20forme','Légende\x202','Processus\x20alternatif','function','Fusionner','Crochet\x20droit','Rayure\x20diagonale','Carte','Double\x20vague','Rayon\x20d\x27angle','Étoile\x20à\x2010\x20branches','Forme','Remplissage\x20motif','Masquer\x20le\x20panneau\x20des\x20formes','Bouton\x20d\x27action\x20:\x20Début','Ligne\x20continue','Stockage\x20à\x20accès\x20direct','Bouton\x20d\x27action\x20:\x20Film','Heptagone','Ruban\x20vers\x20le\x20bas','Exposant','Connecteur\x20coudé\x20fléché','Multidocument','Style\x20de\x20la\x20forme','Ligne','8905554dvtMMu','Bouton\x20d\x27action\x20:\x20Avancer\x20ou\x20Suivant','Flèche','Légende\x20bordure\x20accent\x203','Lune','Graphique\x20Plus','Légende\x20flèche\x20bas','Alignement','Flèche\x20losange','Ligne\x20inverse','Petite','106315ITxQaJ','Remplissage\x20dégradé','Type\x20de\x20flèche\x20de\x20début','Cadre','Légende\x20ovale','Légende\x20rectangulaire','Rectangle\x20à\x20coins\x20arrondis\x20diagonaux','Grande','Citation','Gras','Légende\x20bordure\x20accent\x201','Bouton\x20d\x27action\x20:\x20Fin','Couleur\x20de\x20fond\x20du\x20texte','Document','Rectangle\x20à\x20coins\x20arrondis\x20même\x20côté','Nuage','Couleur\x20du\x20texte','Pentagone','Étoile\x20à\x2012\x20branches','Type\x20de\x20tiret','Flèche\x20coudée\x20vers\x20le\x20haut','Rectangles','Processus','Liste\x20de\x20tâches','Légende\x20flèche\x20quadruple','Corde','Haut\x20droite','Basculer\x20le\x20texte\x20vertical','Cœur','Insérer...','Basculer\x20le\x20retournement\x20horizontal','Rectangle\x20arrondi','Graphique\x20X','Flèche\x20courbe\x20gauche','Extraire','Jonction\x20de\x20sommation','Onglets\x20carrés','Italique','Légende\x20accent\x202','Bouton\x20d\x27action\x20:\x20Retour','Encadré','Retard','Tiret','Explosion\x201','Connecteur\x20courbe','Moins','Aligner\x20en\x20haut','Onglets\x20d\x27angle','Bouton\x20d\x27action\x20:\x20Retour\x20ou\x20Précédent','Légende\x20ligne\x203','Multiplier','Étoiles\x20et\x20bannières','Plat','Type\x20de\x20flèche\x20de\x20fin','Position\x20de\x20la\x20forme','Triangle\x20rectangle','Supprimer\x20la\x20forme','Bande\x20perforée','Bloc\x20de\x20code','Connecteur\x20courbe\x20double\x20fléché','Ligne\x20dégradée','Flèche\x20droite\x20rayée','Souligné','Accolade\x20gauche','Aligner\x20à\x20droite','Trapèze','exports','4yCwZXP','Légendes','Devant\x20le\x20texte','Étoile\x20à\x2032\x20branches','Légende\x203','Justifier','Octogone','Aucune\x20ligne','Tiret\x20long','Source\x20de\x20l\x27image','Biseau','Légende\x201','Remplissage\x20image\x20ou\x20texture','Indice','Flèche\x20gauche','Remplissage','Connecteur\x20hors\x20page','Taille\x20de\x20flèche\x20de\x20début','Ruban\x20courbe\x20vers\x20le\x20bas','Trapèze\x20non\x20isocèle','Données\x20stockées','Saisie\x20manuelle','Aligner\x20au\x20centre','Décision','Flèche\x20gauche-droite','Réinitialiser\x20la\x20couleur','Ovale'];_0x3f46=function(){return _0x17bd1e;};return _0x3f46();}function _0x245c(_0x26aa55,_0x53d65e){_0x26aa55=_0x26aa55-0xb3;var _0x3f4645=_0x3f46();var _0x245cff=_0x3f4645[_0x26aa55];return _0x245cff;}(function(_0x21af44,_0x33e6e7){var _0x5d7980=_0x245c,_0x3b3727=_0x21af44();while(!![]){try{var _0x48ed6e=parseInt(_0x5d7980(0xe7))/0x1*(parseInt(_0x5d7980(0x142))/0x2)+parseInt(_0x5d7980(0xfb))/0x3+-parseInt(_0x5d7980(0xc3))/0x4*(-parseInt(_0x5d7980(0x172))/0x5)+parseInt(_0x5d7980(0x144))/0x6+-parseInt(_0x5d7980(0x167))/0x7+-parseInt(_0x5d7980(0x102))/0x8+-parseInt(_0x5d7980(0x10d))/0x9;if(_0x48ed6e===_0x33e6e7)break;else _0x3b3727['push'](_0x3b3727['shift']());}catch(_0x10ae8f){_0x3b3727['push'](_0x3b3727['shift']());}}}(_0x3f46,0xed50b),function(_0x5f3d21,_0x439a8f){var _0x4b970d=_0x245c;typeof exports==_0x4b970d(0x11c)&&typeof module<'u'?module[_0x4b970d(0xc2)]=_0x439a8f():typeof define==_0x4b970d(0x151)&&define['amd']?define([],_0x439a8f):(_0x5f3d21=typeof globalThis<'u'?globalThis:_0x5f3d21||self,_0x5f3d21['UniverProShapeEditorUiFrFR']=_0x439a8f());}(this,function(){var _0x1265d5=_0x245c;return{'shape-editor-ui':{'title':_0x1265d5(0x159),'insertShape':_0x1265d5(0x10f),'openPanel':_0x1265d5(0x112),'deleteShape':_0x1265d5(0xb8),'hidePanel':_0x1265d5(0x15b),'formatShape':_0x1265d5(0x14e),'shapeStyle':_0x1265d5(0x165),'shapePosition':_0x1265d5(0xb6),'toggleFlipH':_0x1265d5(0x190),'toggleFlipV':_0x1265d5(0x128),'rotateRight90':_0x1265d5(0x137),'rotateLeft90':'Pivoter\x20à\x20gauche\x20de\x2090°','toggleTextVertical':_0x1265d5(0x18d),'textEditor':{'placeholder':'Saisissez\x20du\x20texte','paragraphType':{'normal':'Normal','heading1':_0x1265d5(0x10a),'heading2':'Titre\x202','heading3':'Titre\x203','heading4':_0x1265d5(0x101),'heading5':_0x1265d5(0x13d),'orderedList':_0x1265d5(0xe8),'bulletList':'Liste\x20non\x20ordonnée','checkList':_0x1265d5(0x189),'quote':_0x1265d5(0x17a),'code':_0x1265d5(0xba),'callout':_0x1265d5(0x19a)}},'fill':{'title':_0x1265d5(0xd2),'noFill':_0x1265d5(0x12a),'solidFill':_0x1265d5(0x135),'gradientFill':_0x1265d5(0x173),'pictureFill':_0x1265d5(0xcf),'patternFill':_0x1265d5(0x15a),'color':'Couleur','transparency':_0x1265d5(0x106),'picture':{'source':_0x1265d5(0xcc),'insert':_0x1265d5(0x18f),'tileAsTexture':_0x1265d5(0x147),'offsetX':_0x1265d5(0x148),'offsetY':'Décalage\x20Y','scaleX':'Échelle\x20X','scaleY':'Échelle\x20Y','alignment':_0x1265d5(0x16e),'rotateWithShape':_0x1265d5(0x12d),'align':{'tl':'Haut\x20gauche','t':'Haut','tr':_0x1265d5(0x18c),'l':_0x1265d5(0x14a),'ctr':_0x1265d5(0xe0),'r':'Droite','bl':_0x1265d5(0x13c),'b':'Bas','br':_0x1265d5(0x132)}}},'line':{'title':_0x1265d5(0x166),'noLine':_0x1265d5(0xca),'solidLine':_0x1265d5(0x15d),'gradientLine':_0x1265d5(0xbc),'color':_0x1265d5(0x14c),'transparency':_0x1265d5(0x106),'width':'Largeur','cornerRadius':_0x1265d5(0x157),'dashType':{'title':_0x1265d5(0x185),'solid':'Continue','roundDot':_0x1265d5(0xf7),'squareDot':_0x1265d5(0x131),'dash':_0x1265d5(0x19c),'dashDot':_0x1265d5(0x12e),'longDash':_0x1265d5(0xcb),'longDashDot':'Tiret\x20long-point','longDashDotDot':_0x1265d5(0x141)},'capType':{'title':_0x1265d5(0xf4),'flat':_0x1265d5(0xb4),'round':'Rond','square':_0x1265d5(0x140)},'joinType':{'title':_0x1265d5(0xfd),'miter':_0x1265d5(0x124),'round':'Rond','bevel':_0x1265d5(0x108)},'beginArrowType':_0x1265d5(0x174),'beginArrowSize':_0x1265d5(0xd4),'endArrowType':_0x1265d5(0xb5),'endArrowSize':'Taille\x20de\x20flèche\x20de\x20fin','arrowType':{'none':_0x1265d5(0x11d),'arrow':_0x1265d5(0x169),'openArrow':'Flèche\x20ouverte','stealthArrow':'Flèche\x20furtive','diamondArrow':_0x1265d5(0x16f),'ovalArrow':_0x1265d5(0x10c)},'arrowSize':{'small':_0x1265d5(0x171),'medium':_0x1265d5(0x12c),'large':_0x1265d5(0x179)},'sketchType':{'title':'Style\x20d\x27esquisse','none':_0x1265d5(0x11e),'curved':'Courbé','freehand':_0x1265d5(0x116),'handDrawn':_0x1265d5(0x129)}},'shape':{'group':{'line':_0x1265d5(0x14b),'rectangle':_0x1265d5(0x187),'basicShape':'Formes\x20de\x20base','blockArrow':_0x1265d5(0xf0),'equationShape':'Formes\x20d\x27équation','flowchart':_0x1265d5(0x14d),'starAndBanner':_0x1265d5(0xb3),'callout':_0x1265d5(0xc4),'other':'Autres'},'type':{'line':_0x1265d5(0x166),'straight-connector1':'Ligne\x20fléchée','straight-connector2':'Ligne\x20double\x20fléchée','bent-connector3':_0x1265d5(0xf6),'bent-connector3-arrow1':_0x1265d5(0x163),'bent-connector3-arrow2':_0x1265d5(0x126),'curved-connector3':_0x1265d5(0x19e),'curved-connector3-arrow1':'Connecteur\x20courbe\x20fléché','curved-connector3-arrow2':_0x1265d5(0xbb),'rect':'Rectangle','round-rect':_0x1265d5(0x191),'snip1-rect':_0x1265d5(0x122),'snip2-same-rect':_0x1265d5(0xe2),'snip2-diag-rect':_0x1265d5(0x130),'snip-round-rect':_0x1265d5(0x114),'round1-rect':_0x1265d5(0x111),'round2-same-rect':_0x1265d5(0x180),'round2-diag-rect':_0x1265d5(0x178),'rect-textbox-horizontal':_0x1265d5(0xf5),'rect-textbox-vertical':_0x1265d5(0x11b),'ellipse':_0x1265d5(0xdd),'triangle':_0x1265d5(0x117),'rt-triangle':_0x1265d5(0xb7),'parallelogram':_0x1265d5(0x121),'trapezoid':_0x1265d5(0xc1),'non-isosceles-trapezoid':_0x1265d5(0xd6),'diamond':_0x1265d5(0xf2),'pentagon':_0x1265d5(0x183),'hexagon':_0x1265d5(0x11a),'heptagon':_0x1265d5(0x160),'octagon':_0x1265d5(0xc9),'decagon':_0x1265d5(0xe4),'dodecagon':'Dodécagone','pie':_0x1265d5(0x133),'chord':_0x1265d5(0x18b),'teardrop':_0x1265d5(0xe9),'frame':_0x1265d5(0x175),'half-frame':'Demi-cadre','corner':_0x1265d5(0xfa),'diag-stripe':_0x1265d5(0x154),'plus':'Croix','plaque':_0x1265d5(0x145),'can':_0x1265d5(0x125),'cube':_0x1265d5(0x13e),'bevel':_0x1265d5(0xcd),'donut':_0x1265d5(0x105),'no-smoking':'Interdiction\x20de\x20fumer','block-arc':_0x1265d5(0x134),'folder-corner':'Coin\x20plié','smiley-face':'Smiley','heart':_0x1265d5(0x18e),'lightning-bolt':_0x1265d5(0x149),'sun':'Soleil','moon':_0x1265d5(0x16b),'cloud':_0x1265d5(0x181),'arc':_0x1265d5(0x13f),'bracket-pair':_0x1265d5(0x103),'brace-pair':'Double\x20accolade','left-bracket':_0x1265d5(0x12b),'right-bracket':_0x1265d5(0x153),'left-brace':_0x1265d5(0xbf),'right-brace':_0x1265d5(0x10b),'right-arrow':_0x1265d5(0x100),'left-arrow':_0x1265d5(0xd1),'up-arrow':_0x1265d5(0xf9),'down-arrow':'Flèche\x20bas','left-right-arrow':_0x1265d5(0xdb),'up-down-arrow':'Flèche\x20haut-bas','quad-arrow':'Flèche\x20quadruple','left-right-up-arrow':'Flèche\x20gauche-droite-haut','bent-arrow':_0x1265d5(0x12f),'uturn-arrow':_0x1265d5(0xee),'left-up-arrow':'Flèche\x20gauche-haut','bent-up-arrow':_0x1265d5(0x186),'curved-right-arrow':_0x1265d5(0xf1),'curved-left-arrow':_0x1265d5(0x193),'curved-up-arrow':_0x1265d5(0xff),'curved-down-arrow':_0x1265d5(0x127),'striped-right-arrow':_0x1265d5(0xbd),'notched-right-arrow':_0x1265d5(0x110),'home-plate':_0x1265d5(0x183),'chevron':_0x1265d5(0xe1),'right-arrow-callout':'Légende\x20flèche\x20droite','down-arrow-callout':_0x1265d5(0x16d),'left-arrow-callout':_0x1265d5(0xf3),'up-arrow-callout':_0x1265d5(0xdf),'left-right-arrow-callout':'Légende\x20flèche\x20gauche-droite','quad-arrow-callout':_0x1265d5(0x18a),'circular-arrow':_0x1265d5(0x109),'math-plus':_0x1265d5(0x119),'math-minus':_0x1265d5(0x19f),'math-multiply':_0x1265d5(0x1a4),'math-divide':_0x1265d5(0x143),'math-equal':'Égal','math-not-equal':'Différent','flow-chart-process':_0x1265d5(0x188),'flow-chart-alternate-process':_0x1265d5(0x150),'flow-chart-decision':_0x1265d5(0xda),'flow-chart-input-output':'Données','flow-chart-predefined-process':_0x1265d5(0x139),'flow-chart-internal-storage':_0x1265d5(0xeb),'flow-chart-document':_0x1265d5(0x17f),'flow-chart-multidocument':_0x1265d5(0x164),'flow-chart-terminator':_0x1265d5(0x113),'flow-chart-preparation':'Préparation','flow-chart-manual-input':_0x1265d5(0xd8),'flow-chart-manual-operation':_0x1265d5(0xe3),'flow-chart-connector':_0x1265d5(0xde),'flow-chart-offpage-connector':_0x1265d5(0xd3),'flow-chart-punched-card':_0x1265d5(0x155),'flow-chart-punched-tape':_0x1265d5(0xb9),'flow-chart-summing-junction':_0x1265d5(0x195),'flow-chart-or':'Ou','flow-chart-collate':'Assembler','flow-chart-sort':_0x1265d5(0x138),'flow-chart-extract':_0x1265d5(0x194),'flow-chart-merge':_0x1265d5(0x152),'flow-chart-online-storage':_0x1265d5(0xd7),'flow-chart-delay':_0x1265d5(0x19b),'flow-chart-magnetic-tape':'Accès\x20séquentiel','flow-chart-magnetic-disk':'Disque\x20magnétique','flow-chart-magnetic-drum':_0x1265d5(0x15e),'flow-chart-display':'Affichage','irregular-seal1':_0x1265d5(0x19d),'irregular-seal2':_0x1265d5(0x13a),'star4':'Étoile\x20à\x204\x20branches','star5':'Étoile\x20à\x205\x20branches','star6':_0x1265d5(0xec),'star7':'Étoile\x20à\x207\x20branches','star8':_0x1265d5(0x11f),'star10':_0x1265d5(0x158),'star12':_0x1265d5(0x184),'star16':_0x1265d5(0xe6),'star24':'Étoile\x20à\x2024\x20branches','star32':_0x1265d5(0xc6),'ribbon2':'Ruban\x20vers\x20le\x20haut','ribbon':_0x1265d5(0x161),'ellipse-ribbon2':'Ruban\x20courbe\x20vers\x20le\x20haut','ellipse-ribbon':_0x1265d5(0xd5),'vertical-scroll':'Rouleau\x20vertical','horizontal-scroll':'Rouleau\x20horizontal','wave':'Vague','double-wave':_0x1265d5(0x156),'wedge-rect-callout':_0x1265d5(0x177),'wedge-round-rect-callout':'Légende\x20rectangulaire\x20arrondie','wedge-ellipse-callout':_0x1265d5(0x176),'cloud-callout':'Légende\x20nuage','border-callout1':_0x1265d5(0x123),'border-callout2':_0x1265d5(0x13b),'border-callout3':_0x1265d5(0x1a3),'accent-callout1':'Légende\x20accent\x201','accent-callout2':_0x1265d5(0x198),'accent-callout3':_0x1265d5(0x104),'callout1':_0x1265d5(0xce),'callout2':_0x1265d5(0x14f),'callout3':_0x1265d5(0xc7),'accent-border-callout1':_0x1265d5(0x17c),'accent-border-callout2':_0x1265d5(0x120),'accent-border-callout3':_0x1265d5(0x16a),'left-circular-arrow':'Flèche\x20circulaire\x20gauche','left-right-circular-arrow':_0x1265d5(0x115),'swoosh-arrow':'Flèche\x20swoosh','left-right-ribbon':'Ruban\x20gauche-droite','pie-wedge':_0x1265d5(0xea),'funnel':_0x1265d5(0x146),'gear6':'Engrenage\x206','gear9':_0x1265d5(0xef),'corner-tabs':_0x1265d5(0x1a1),'action-button-back-previous':_0x1265d5(0x1a2),'action-button-forward-next':_0x1265d5(0x168),'action-button-beginning':_0x1265d5(0x15c),'action-button-end':_0x1265d5(0x17d),'action-button-home':'Bouton\x20d\x27action\x20:\x20Accueil','action-button-information':_0x1265d5(0xe5),'action-button-return':_0x1265d5(0x199),'action-button-movie':_0x1265d5(0x15f),'action-button-document':'Bouton\x20d\x27action\x20:\x20Document','action-button-sound':'Bouton\x20d\x27action\x20:\x20Son','action-button-help':'Bouton\x20d\x27action\x20:\x20Aide','action-button-blank':'Bouton\x20d\x27action\x20:\x20Vide','chart-plus':_0x1265d5(0x16c),'chart-star':_0x1265d5(0x136),'chart-x':_0x1265d5(0x192),'flow-chart-offline-storage':_0x1265d5(0xed),'line-inv':_0x1265d5(0x170),'plaque-tabs':'Onglets\x20plaque','square-tabs':_0x1265d5(0x196),'up-down-arrow-callout':_0x1265d5(0xfe)}},'toolbar':{'expandShapeToolbar':_0x1265d5(0xf8),'collapseShapeToolbar':_0x1265d5(0x107),'alignLeft':'Aligner\x20à\x20gauche','alignCenter':_0x1265d5(0xd9),'alignRight':_0x1265d5(0xc0),'alignJustify':_0x1265d5(0xc8),'bold':_0x1265d5(0x17b),'italic':_0x1265d5(0x197),'underline':_0x1265d5(0xbe),'strikethrough':_0x1265d5(0x10e),'subscript':_0x1265d5(0xd0),'superscript':_0x1265d5(0x162),'textColor':_0x1265d5(0x182),'textBackgroundColor':_0x1265d5(0x17e),'fillColor':'Couleur\x20de\x20fond\x20du\x20texte','resetColor':_0x1265d5(0xdc),'typography':'Typographie'},'align':{'top':_0x1265d5(0x1a0),'middle':'Aligner\x20au\x20milieu','bottom':'Aligner\x20en\x20bas'},'textWrap':{'inline':'Aligné\x20avec\x20le\x20texte','square':'Carré','topAndBottom':_0x1265d5(0xfc),'behindText':'Derrière\x20le\x20texte','inFrontText':_0x1265d5(0xc5)},'crop':{'shape':_0x1265d5(0x118)}}};}));
|
package/lib/umd/locale/id-ID.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(_0x8ef466,_0x1d8626){var _0x3cfe09=_0x18db,_0x6bca39=_0x8ef466();while(!![]){try{var _0x30ba50=-parseInt(_0x3cfe09(0x1c5))/0x1*(-parseInt(_0x3cfe09(0x1a8))/0x2)+-parseInt(_0x3cfe09(0x1ae))/0x3*(parseInt(_0x3cfe09(0x1a3))/0x4)+-parseInt(_0x3cfe09(0x1a9))/0x5+parseInt(_0x3cfe09(0xeb))/0x6*(parseInt(_0x3cfe09(0x135))/0x7)+parseInt(_0x3cfe09(0x175))/0x8+parseInt(_0x3cfe09(0xf7))/0x9*(-parseInt(_0x3cfe09(0x193))/0xa)+parseInt(_0x3cfe09(0x1bb))/0xb*(parseInt(_0x3cfe09(0x16f))/0xc);if(_0x30ba50===_0x1d8626)break;else _0x6bca39['push'](_0x6bca39['shift']());}catch(_0x520c64){_0x6bca39['push'](_0x6bca39['shift']());}}}(_0x4c2f,0x68ef4),function(_0xa98c46,_0x11ceba){var _0x333b33=_0x18db;typeof exports=='object'&&typeof module<'u'?module[_0x333b33(0x195)]=_0x11ceba():typeof define==_0x333b33(0x121)&&define['amd']?define([],_0x11ceba):(_0xa98c46=typeof globalThis<'u'?globalThis:_0xa98c46||self,_0xa98c46['UniverProShapeEditorUiIdID']=_0x11ceba());}(this,function(){var _0x1c4ed9=_0x18db;return{'shape-editor-ui':{'title':_0x1c4ed9(0x122),'insertShape':'Sisipkan\x20Bentuk','openPanel':_0x1c4ed9(0x1cc),'deleteShape':_0x1c4ed9(0x1a4),'hidePanel':_0x1c4ed9(0x1c1),'formatShape':_0x1c4ed9(0x15a),'shapeStyle':'Gaya\x20Bentuk','shapePosition':'Posisi\x20Bentuk','toggleFlipH':_0x1c4ed9(0x19f),'toggleFlipV':_0x1c4ed9(0x1c4),'rotateRight90':_0x1c4ed9(0x15d),'rotateLeft90':_0x1c4ed9(0x140),'toggleTextVertical':'Ubah\x20Teks\x20Vertikal','textEditor':{'paragraphType':{'normal':_0x1c4ed9(0x178),'heading1':_0x1c4ed9(0x1d1),'heading2':_0x1c4ed9(0x15f),'heading3':_0x1c4ed9(0x127),'heading4':'Judul\x204','heading5':_0x1c4ed9(0x108),'orderedList':_0x1c4ed9(0x191),'bulletList':_0x1c4ed9(0x141),'checkList':'Daftar\x20tugas','quote':_0x1c4ed9(0x1bc),'code':_0x1c4ed9(0x17c),'callout':_0x1c4ed9(0x192)}},'fill':{'title':'Isian','noFill':_0x1c4ed9(0x1ba),'solidFill':_0x1c4ed9(0x12c),'gradientFill':'Isian\x20gradien','pictureFill':_0x1c4ed9(0x187),'patternFill':'Isian\x20pola','color':'Warna','transparency':_0x1c4ed9(0x1af),'picture':{'source':_0x1c4ed9(0x11e),'insert':'Sisipkan...','tileAsTexture':_0x1c4ed9(0x154),'offsetX':'Offset\x20X','offsetY':_0x1c4ed9(0x1ca),'scaleX':'Skala\x20X','scaleY':_0x1c4ed9(0x1b3),'alignment':_0x1c4ed9(0x100),'rotateWithShape':_0x1c4ed9(0x142),'align':{'tl':_0x1c4ed9(0x16d),'t':_0x1c4ed9(0xf0),'tr':_0x1c4ed9(0x1d3),'l':_0x1c4ed9(0xf6),'ctr':'Tengah','r':'Kanan','bl':_0x1c4ed9(0x145),'b':'Bawah','br':_0x1c4ed9(0x15b)}}},'line':{'title':'Garis','noLine':_0x1c4ed9(0x12e),'solidLine':_0x1c4ed9(0xf1),'gradientLine':_0x1c4ed9(0x1cf),'color':'Warna','transparency':_0x1c4ed9(0x1af),'width':_0x1c4ed9(0x138),'cornerRadius':'Radius\x20sudut','dashType':{'title':'Jenis\x20putus-putus','solid':'Solid','roundDot':_0x1c4ed9(0x14c),'squareDot':_0x1c4ed9(0x11a),'dash':_0x1c4ed9(0x11f),'dashDot':'Putus-Titik','longDash':_0x1c4ed9(0x152),'longDashDot':_0x1c4ed9(0x12f),'longDashDotDot':_0x1c4ed9(0xf4)},'capType':{'title':_0x1c4ed9(0x119),'flat':_0x1c4ed9(0x1b7),'round':'Bulat','square':_0x1c4ed9(0x1c2)},'joinType':{'title':'Jenis\x20sambungan','miter':_0x1c4ed9(0x14f),'round':_0x1c4ed9(0x14b),'bevel':_0x1c4ed9(0x156)},'beginArrowType':_0x1c4ed9(0x1a5),'beginArrowSize':_0x1c4ed9(0x186),'endArrowType':_0x1c4ed9(0x11b),'endArrowSize':_0x1c4ed9(0x1ab),'arrowType':{'none':_0x1c4ed9(0x19b),'arrow':_0x1c4ed9(0xf9),'openArrow':_0x1c4ed9(0x179),'stealthArrow':_0x1c4ed9(0xe8),'diamondArrow':'Panah\x20Berlian','ovalArrow':_0x1c4ed9(0x113)},'arrowSize':{'small':_0x1c4ed9(0x10e),'medium':'Sedang','large':'Besar'},'sketchType':{'title':_0x1c4ed9(0x18c),'none':_0x1c4ed9(0x19b),'curved':_0x1c4ed9(0x169),'freehand':_0x1c4ed9(0x163),'handDrawn':_0x1c4ed9(0x18d)}},'shape':{'group':{'line':_0x1c4ed9(0x101),'rectangle':_0x1c4ed9(0x17b),'basicShape':'Bentuk\x20Dasar','blockArrow':_0x1c4ed9(0x13b),'equationShape':_0x1c4ed9(0x1a0),'flowchart':'Diagram\x20Alir','starAndBanner':_0x1c4ed9(0x12b),'callout':_0x1c4ed9(0x19c),'other':_0x1c4ed9(0x17a)},'type':{'line':'Garis','straight-connector1':_0x1c4ed9(0x1d4),'straight-connector2':'Garis\x20Panah\x20Ganda','bent-connector3':_0x1c4ed9(0x132),'bent-connector3-arrow1':_0x1c4ed9(0x111),'bent-connector3-arrow2':_0x1c4ed9(0x125),'curved-connector3':'Penyambung\x20Melengkung','curved-connector3-arrow1':_0x1c4ed9(0x10d),'curved-connector3-arrow2':'Penyambung\x20Melengkung\x20Panah\x20Ganda','rect':_0x1c4ed9(0x17b),'round-rect':_0x1c4ed9(0x1c8),'snip1-rect':_0x1c4ed9(0x1c3),'snip2-same-rect':_0x1c4ed9(0x128),'snip2-diag-rect':_0x1c4ed9(0x1cd),'snip-round-rect':_0x1c4ed9(0x19d),'round1-rect':_0x1c4ed9(0x160),'round2-same-rect':'Persegi\x20Panjang\x20Sudut\x20Membulat\x20Sisi\x20Sama','round2-diag-rect':'Persegi\x20Panjang\x20Sudut\x20Membulat\x20Diagonal','rect-textbox-horizontal':'Kotak\x20Teks\x20Horizontal','rect-textbox-vertical':_0x1c4ed9(0xfc),'ellipse':'Oval','triangle':_0x1c4ed9(0x14e),'rt-triangle':'Segitiga\x20Siku-Siku','parallelogram':_0x1c4ed9(0x17e),'trapezoid':_0x1c4ed9(0x1c6),'non-isosceles-trapezoid':_0x1c4ed9(0x10a),'diamond':_0x1c4ed9(0x1a6),'pentagon':_0x1c4ed9(0x1d6),'hexagon':_0x1c4ed9(0x1a7),'heptagon':_0x1c4ed9(0x1b8),'octagon':_0x1c4ed9(0x1ac),'decagon':_0x1c4ed9(0xf5),'dodecagon':_0x1c4ed9(0x185),'pie':_0x1c4ed9(0x103),'chord':_0x1c4ed9(0x150),'teardrop':_0x1c4ed9(0x159),'frame':_0x1c4ed9(0x10c),'half-frame':_0x1c4ed9(0xf2),'corner':'Bentuk-L','diag-stripe':_0x1c4ed9(0x180),'plus':'Silang','plaque':_0x1c4ed9(0x107),'can':_0x1c4ed9(0x112),'cube':'Kubus','bevel':'Bevel','donut':'Donat','no-smoking':_0x1c4ed9(0x181),'block-arc':_0x1c4ed9(0x102),'folder-corner':_0x1c4ed9(0x172),'smiley-face':_0x1c4ed9(0x198),'heart':_0x1c4ed9(0x120),'lightning-bolt':_0x1c4ed9(0x177),'sun':'Matahari','moon':_0x1c4ed9(0x148),'cloud':'Awan','arc':_0x1c4ed9(0x199),'bracket-pair':_0x1c4ed9(0x1b5),'brace-pair':_0x1c4ed9(0x18f),'left-bracket':_0x1c4ed9(0x147),'right-bracket':_0x1c4ed9(0x1c9),'left-brace':_0x1c4ed9(0xfa),'right-brace':_0x1c4ed9(0x110),'right-arrow':_0x1c4ed9(0x116),'left-arrow':_0x1c4ed9(0x146),'up-arrow':'Panah\x20Atas','down-arrow':_0x1c4ed9(0x129),'left-right-arrow':'Panah\x20Kiri-Kanan','up-down-arrow':'Panah\x20Atas-Bawah','quad-arrow':'Panah\x20Empat\x20Arah','left-right-up-arrow':_0x1c4ed9(0xfe),'bent-arrow':_0x1c4ed9(0x136),'uturn-arrow':_0x1c4ed9(0x188),'left-up-arrow':'Panah\x20Kiri-Atas','bent-up-arrow':_0x1c4ed9(0xfb),'curved-right-arrow':_0x1c4ed9(0x182),'curved-left-arrow':'Panah\x20Melengkung\x20Kiri','curved-up-arrow':_0x1c4ed9(0x130),'curved-down-arrow':_0x1c4ed9(0x149),'striped-right-arrow':_0x1c4ed9(0x151),'notched-right-arrow':_0x1c4ed9(0x1b2),'home-plate':'Pentagon','chevron':_0x1c4ed9(0x168),'right-arrow-callout':_0x1c4ed9(0x13e),'down-arrow-callout':'Tanda\x20Panggilan\x20Panah\x20Bawah','left-arrow-callout':'Tanda\x20Panggilan\x20Panah\x20Kiri','up-arrow-callout':'Tanda\x20Panggilan\x20Panah\x20Atas','left-right-arrow-callout':_0x1c4ed9(0xf8),'quad-arrow-callout':_0x1c4ed9(0x1b4),'circular-arrow':'Panah\x20Melingkar','math-plus':_0x1c4ed9(0x131),'math-minus':_0x1c4ed9(0x1c0),'math-multiply':_0x1c4ed9(0x104),'math-divide':_0x1c4ed9(0x17d),'math-equal':_0x1c4ed9(0xe9),'math-not-equal':_0x1c4ed9(0x105),'flow-chart-process':_0x1c4ed9(0x1ad),'flow-chart-alternate-process':_0x1c4ed9(0x13f),'flow-chart-decision':_0x1c4ed9(0x1b9),'flow-chart-input-output':_0x1c4ed9(0x14a),'flow-chart-predefined-process':'Proses\x20Terdefinisi','flow-chart-internal-storage':_0x1c4ed9(0x16e),'flow-chart-document':_0x1c4ed9(0x1b6),'flow-chart-multidocument':_0x1c4ed9(0x13c),'flow-chart-terminator':_0x1c4ed9(0x19a),'flow-chart-preparation':_0x1c4ed9(0x17f),'flow-chart-manual-input':_0x1c4ed9(0x10f),'flow-chart-manual-operation':_0x1c4ed9(0x114),'flow-chart-connector':'Penyambung','flow-chart-offpage-connector':_0x1c4ed9(0x1be),'flow-chart-punched-card':_0x1c4ed9(0x137),'flow-chart-punched-tape':_0x1c4ed9(0x1d9),'flow-chart-summing-junction':_0x1c4ed9(0x123),'flow-chart-or':_0x1c4ed9(0x11d),'flow-chart-collate':_0x1c4ed9(0x144),'flow-chart-sort':_0x1c4ed9(0x133),'flow-chart-extract':_0x1c4ed9(0x1bf),'flow-chart-merge':'Gabungkan','flow-chart-online-storage':'Data\x20Tersimpan','flow-chart-delay':_0x1c4ed9(0x1d7),'flow-chart-magnetic-tape':'Penyimpanan\x20Akses\x20Sekuensial','flow-chart-magnetic-disk':_0x1c4ed9(0x157),'flow-chart-magnetic-drum':_0x1c4ed9(0x1cb),'flow-chart-display':'Tampilan','irregular-seal1':_0x1c4ed9(0x155),'irregular-seal2':_0x1c4ed9(0x196),'star4':'Bintang\x204\x20Sudut','star5':_0x1c4ed9(0x183),'star6':'Bintang\x206\x20Sudut','star7':_0x1c4ed9(0x158),'star8':_0x1c4ed9(0x173),'star10':'Bintang\x2010\x20Sudut','star12':_0x1c4ed9(0x126),'star16':_0x1c4ed9(0x15e),'star24':_0x1c4ed9(0x1d0),'star32':'Bintang\x2032\x20Sudut','ribbon2':_0x1c4ed9(0x15c),'ribbon':'Pita\x20Bawah','ellipse-ribbon2':_0x1c4ed9(0x16c),'ellipse-ribbon':_0x1c4ed9(0xec),'vertical-scroll':_0x1c4ed9(0x167),'horizontal-scroll':_0x1c4ed9(0x171),'wave':_0x1c4ed9(0x1a2),'double-wave':_0x1c4ed9(0x1c7),'wedge-rect-callout':_0x1c4ed9(0x176),'wedge-round-rect-callout':_0x1c4ed9(0x1ce),'wedge-ellipse-callout':_0x1c4ed9(0x18e),'cloud-callout':'Tanda\x20Panggilan\x20Awan','border-callout1':_0x1c4ed9(0x189),'border-callout2':_0x1c4ed9(0xef),'border-callout3':_0x1c4ed9(0x115),'accent-callout1':_0x1c4ed9(0xfd),'accent-callout2':_0x1c4ed9(0x124),'accent-callout3':_0x1c4ed9(0x13d),'callout1':'Tanda\x20Panggilan\x201','callout2':_0x1c4ed9(0x184),'callout3':_0x1c4ed9(0x134),'accent-border-callout1':_0x1c4ed9(0x153),'accent-border-callout2':'Tanda\x20Panggilan\x20Batas\x20Aksen\x202','accent-border-callout3':_0x1c4ed9(0x162),'left-circular-arrow':_0x1c4ed9(0x1d5),'left-right-circular-arrow':_0x1c4ed9(0x117),'swoosh-arrow':_0x1c4ed9(0x12a),'left-right-ribbon':_0x1c4ed9(0xea),'pie-wedge':_0x1c4ed9(0x19e),'funnel':_0x1c4ed9(0x1d8),'gear6':'Gigi\x206','gear9':'Gigi\x209','corner-tabs':_0x1c4ed9(0x143),'action-button-back-previous':_0x1c4ed9(0x14d),'action-button-forward-next':_0x1c4ed9(0x1bd),'action-button-beginning':'Tombol\x20Aksi:\x20Awal','action-button-end':_0x1c4ed9(0xff),'action-button-home':'Tombol\x20Aksi:\x20Beranda','action-button-information':_0x1c4ed9(0x106),'action-button-return':_0x1c4ed9(0x10b),'action-button-movie':_0x1c4ed9(0x174),'action-button-document':_0x1c4ed9(0x18a),'action-button-sound':'Tombol\x20Aksi:\x20Suara','action-button-help':'Tombol\x20Aksi:\x20Bantuan','action-button-blank':_0x1c4ed9(0x118),'chart-plus':_0x1c4ed9(0x16b),'chart-star':_0x1c4ed9(0x1d2),'chart-x':_0x1c4ed9(0x166),'flow-chart-offline-storage':_0x1c4ed9(0x18b),'line-inv':_0x1c4ed9(0x12d),'plaque-tabs':_0x1c4ed9(0x197),'square-tabs':_0x1c4ed9(0x170),'up-down-arrow-callout':_0x1c4ed9(0x13a)}},'toolbar':{'expandShapeToolbar':'Perluas\x20toolbar\x20bentuk','collapseShapeToolbar':'Ciutkan\x20toolbar\x20bentuk','alignLeft':_0x1c4ed9(0x164),'alignCenter':_0x1c4ed9(0x190),'alignRight':'Rata\x20Kanan','alignJustify':'Rata\x20Kanan\x20Kiri','bold':_0x1c4ed9(0x1b0),'italic':_0x1c4ed9(0x139),'underline':_0x1c4ed9(0x1b1),'strikethrough':_0x1c4ed9(0x1aa),'subscript':'Subscript','superscript':_0x1c4ed9(0x161),'textColor':_0x1c4ed9(0xed),'textBackgroundColor':_0x1c4ed9(0x1a1),'fillColor':'Warna\x20latar\x20teks','resetColor':'Reset\x20color'},'align':{'top':_0x1c4ed9(0x165),'middle':_0x1c4ed9(0x190),'bottom':'Rata\x20Bawah'},'textWrap':{'inline':_0x1c4ed9(0x109),'square':_0x1c4ed9(0x11c),'topAndBottom':_0x1c4ed9(0xee),'behindText':_0x1c4ed9(0x16a),'inFrontText':_0x1c4ed9(0x194)},'crop':{'shape':_0x1c4ed9(0xf3)}}};}));function _0x18db(_0xb306e,_0x55b5db){_0xb306e=_0xb306e-0xe8;var _0x4c2f55=_0x4c2f();var _0x18db70=_0x4c2f55[_0xb306e];return _0x18db70;}function _0x4c2f(){var _0x2143bd=['Penyimpanan\x20Akses\x20Langsung','Buka\x20Panel\x20Bentuk','Persegi\x20Panjang\x20Sudut\x20Potong\x20Diagonal','Tanda\x20Panggilan\x20Persegi\x20Panjang\x20Membulat','Garis\x20gradien','Bintang\x2024\x20Sudut','Judul\x201','Grafik\x20Bintang','Kanan\x20Atas','Garis\x20Panah','Panah\x20Melingkar\x20Kiri','Pentagon','Tunda','Corong','Pita\x20Tertinju','Panah\x20Siluman','Sama\x20Dengan','Pita\x20Kiri-Kanan','206058BNIKCn','Pita\x20Melengkung\x20Bawah','Warna\x20teks','Atas\x20dan\x20Bawah','Tanda\x20Panggilan\x20Garis\x202','Atas','Garis\x20solid','Setengah\x20Bingkai','Pangkas\x20ke\x20Bentuk','Putus\x20Panjang\x20Titik\x20Titik','Dekagon','Kiri','45IBCEBB','Tanda\x20Panggilan\x20Panah\x20Kiri-Kanan','Panah','Kurung\x20Kurawal\x20Kiri','Panah\x20Bengkok\x20Atas','Kotak\x20Teks\x20Vertikal','Tanda\x20Panggilan\x20Aksen\x201','Panah\x20Kiri-Kanan-Atas','Tombol\x20Aksi:\x20Akhir','Perataan','Garis','Busur\x20Blok','Pie','Kali','Tidak\x20Sama\x20Dengan','Tombol\x20Aksi:\x20Informasi','Plakat','Judul\x205','Sejajar\x20dengan\x20teks','Trapesium\x20Tidak\x20Sama\x20Kaki','Tombol\x20Aksi:\x20Kembali','Bingkai','Penyambung\x20Melengkung\x20Panah','Kecil','Input\x20Manual','Kurung\x20Kurawal\x20Kanan','Penyambung\x20Siku\x20Panah','Silinder','Panah\x20Oval','Operasi\x20Manual','Tanda\x20Panggilan\x20Garis\x203','Panah\x20Kanan','Panah\x20Melingkar\x20Kiri-Kanan','Tombol\x20Aksi:\x20Kosong','Jenis\x20ujung','Titik\x20Persegi','Jenis\x20panah\x20akhir','Kotak','Atau','Sumber\x20gambar','Putus','Hati','function','Bentuk','Persimpangan\x20Penjumlahan','Tanda\x20Panggilan\x20Aksen\x202','Penyambung\x20Siku\x20Panah\x20Ganda','Bintang\x2012\x20Sudut','Judul\x203','Persegi\x20Panjang\x20Sudut\x20Potong\x20Sisi\x20Sama','Panah\x20Bawah','Panah\x20Swoosh','Bintang\x20dan\x20Spanduk','Isian\x20solid','Garis\x20Terbalik','Tanpa\x20garis','Putus\x20Panjang\x20Titik','Panah\x20Melengkung\x20Atas','Tambah','Penyambung\x20Siku','Urutkan','Tanda\x20Panggilan\x203','154OornYb','Panah\x20Bengkok','Kartu','Lebar','Miring','Tanda\x20Panggilan\x20Panah\x20Atas-Bawah','Panah\x20Blok','Multi\x20Dokumen','Tanda\x20Panggilan\x20Aksen\x203','Tanda\x20Panggilan\x20Panah\x20Kanan','Proses\x20Alternatif','Putar\x20Kiri\x2090°','Daftar\x20poin','Putar\x20dengan\x20bentuk','Tab\x20Sudut','Kolasi','Kiri\x20Bawah','Panah\x20Kiri','Kurung\x20Kiri','Bulan','Panah\x20Melengkung\x20Bawah','Data','Bulat','Titik\x20Bulat','Tombol\x20Aksi:\x20Kembali\x20atau\x20Sebelumnya','Segitiga\x20Sama\x20Kaki','Miter','Tali\x20Busur','Panah\x20Kanan\x20Bergaris','Putus\x20Panjang','Tanda\x20Panggilan\x20Batas\x20Aksen\x201','Ulangi\x20gambar\x20sebagai\x20tekstur','Ledakan\x201','Bevel','Disk\x20Magnetik','Bintang\x207\x20Sudut','Tetesan\x20Air','Format\x20Bentuk','Kanan\x20Bawah','Pita\x20Atas','Putar\x20Kanan\x2090°','Bintang\x2016\x20Sudut','Judul\x202','Persegi\x20Panjang\x20Sudut\x20Membulat\x20Tunggal','Superscript','Tanda\x20Panggilan\x20Batas\x20Aksen\x203','Tangan\x20bebas','Rata\x20Kiri','Rata\x20Atas','Grafik\x20X','Gulir\x20Vertikal','Chevron','Melengkung','Di\x20belakang\x20teks','Grafik\x20Plus','Pita\x20Melengkung\x20Atas','Kiri\x20Atas','Penyimpanan\x20Internal','214836rJDVFU','Tab\x20Persegi','Gulir\x20Horizontal','Sudut\x20Dilipat','Bintang\x208\x20Sudut','Tombol\x20Aksi:\x20Film','607048QFronT','Tanda\x20Panggilan\x20Persegi\x20Panjang','Petir','Normal','Panah\x20Terbuka','Lainnya','Persegi\x20Panjang','Blok\x20kode','Bagi','Jajar\x20Genjang','Persiapan','Garis\x20Diagonal','Dilarang\x20Merokok','Panah\x20Melengkung\x20Kanan','Bintang\x205\x20Sudut','Tanda\x20Panggilan\x202','Dodekagon','Ukuran\x20panah\x20awal','Isian\x20gambar\x20atau\x20tekstur','Panah\x20Putar\x20Balik','Tanda\x20Panggilan\x20Garis\x201','Tombol\x20Aksi:\x20Dokumen','Penyimpanan\x20Offline','Gaya\x20sketsa','Gambar\x20tangan','Tanda\x20Panggilan\x20Oval','Kurung\x20Kurawal\x20Ganda','Rata\x20Tengah','Daftar\x20berurut','Kotak\x20sorotan','1208030hRYWdz','Di\x20depan\x20teks','exports','Ledakan\x202','Tab\x20Plakat','Wajah\x20Senyum','Busur','Terminasi','Tidak\x20ada','Tanda\x20Panggilan','Persegi\x20Panjang\x20Sudut\x20Potong\x20dan\x20Membulat\x20Tunggal','Irisan\x20Pie','Balik\x20Horizontal','Bentuk\x20Persamaan','Text\x20Background\x20color','Gelombang','1373924BqZfnn','Hapus\x20Bentuk','Jenis\x20panah\x20awal','Berlian','Heksagon','3774HUMUDF','3309365qGMIzE','Coret','Ukuran\x20panah\x20akhir','Oktagon','Proses','3dCazra','Transparansi','Tebal','Garis\x20bawah','Panah\x20Kanan\x20Berlekuk','Skala\x20Y','Tanda\x20Panggilan\x20Panah\x20Empat\x20Arah','Kurung\x20Ganda','Dokumen','Datar','Heptagon','Keputusan','Tanpa\x20isian','407QPdBIs','Kutipan','Tombol\x20Aksi:\x20Maju\x20atau\x20Berikutnya','Penyambung\x20Halaman\x20Lain','Ekstrak','Kurang','Sembunyikan\x20Panel\x20Bentuk','Persegi','Persegi\x20Panjang\x20Sudut\x20Potong\x20Tunggal','Balik\x20Vertikal','289VdkcBs','Trapesium','Gelombang\x20Ganda','Persegi\x20Panjang\x20Membulat','Kurung\x20Kanan','Offset\x20Y'];_0x4c2f=function(){return _0x2143bd;};return _0x4c2f();}
|
|
1
|
+
function _0x4b3b(_0x4ec7c5,_0x347b3c){_0x4ec7c5=_0x4ec7c5-0x182;var _0x4825bd=_0x4825();var _0x4b3b88=_0x4825bd[_0x4ec7c5];return _0x4b3b88;}function _0x4825(){var _0x4746f0=['Panah\x20Berlian','Sisipkan\x20Bentuk','Bentuk\x20Persamaan','Judul\x205','Awan','Kurung\x20Ganda','Gambar\x20tangan','Bintang\x2016\x20Sudut','Bingkai','Panah\x20Kiri-Kanan','Panah\x20Terbuka','Warna\x20teks','exports','Skala\x20Y','Grafik\x20Bintang','function','Buka\x20Panel\x20Bentuk','Bintang\x204\x20Sudut','Persegi','Putar\x20Kiri\x2090°','Pita\x20Kiri-Kanan','Data\x20Tersimpan','Kurung\x20Kurawal\x20Ganda','Tombol\x20Aksi:\x20Film','Garis\x20Panah\x20Ganda','Superskrip','Gabungkan','Panah\x20Swoosh','Warna','Posisi\x20Bentuk','Heptagon','Daftar\x20poin','Pita\x20Melengkung\x20Atas','Dekagon','Tanda\x20Panggilan\x20Panah\x20Kiri','Persegi\x20Panjang\x20Sudut\x20Potong\x20Sisi\x20Sama','2268400VwEufb','Tanda\x20Panggilan\x20Awan','Panah\x20Melengkung\x20Kiri','Tab\x20Persegi','Masukkan\x20teks','Putar\x20Kanan\x2090°','Input\x20Manual','Di\x20depan\x20teks','Panah\x20Atas-Bawah','Bulat','Kutipan','Gigi\x206','Sembunyikan\x20Panel\x20Bentuk','Persegi\x20Panjang\x20Sudut\x20Potong\x20Tunggal','Panah\x20Kiri-Atas','Bintang\x207\x20Sudut','Tengah','1389900tFtxze','Tanda\x20Panggilan\x20Batas\x20Aksen\x203','Offset\x20Y','Tali\x20Busur','Tanda\x20Panggilan\x20Panah\x20Kiri-Kanan','Ledakan\x202','Heksagon','Hati','Blok\x20kode','Segitiga\x20Sama\x20Kaki','Perataan','Tanpa\x20garis','Panah\x20Kanan\x20Berlekuk','Dodekagon','Tanda\x20Panggilan\x20Aksen\x201','Diagram\x20Alir','Operasi\x20Manual','Urutkan','Isian','Tombol\x20Aksi:\x20Bantuan','Persiapan','5XnGrbS','Putus','Panah\x20Blok','Tangan\x20bebas','Tombol\x20Aksi:\x20Beranda','Oktagon','Putus\x20Panjang\x20Titik\x20Titik','Kurung\x20Kurawal\x20Kiri','Kurung\x20Kiri','Panah\x20Kiri-Kanan-Atas','Garis\x20gradien','Tanda\x20Panggilan\x20Aksen\x202','Kurung\x20Kanan','Bentuk','Persegi\x20Panjang\x20Membulat','Putus\x20Panjang','Tanda\x20Panggilan\x20Panah\x20Empat\x20Arah','Tanpa\x20isian','Bawah','Isian\x20solid','Tanda\x20Panggilan\x20Panah\x20Bawah','Pita\x20Melengkung\x20Bawah','Trapesium','Rata\x20Bawah','Sumber\x20gambar','Kanan\x20Atas','Transparansi','Penyimpanan\x20Akses\x20Langsung','Bevel','Persegi\x20Panjang\x20Sudut\x20Membulat\x20Tunggal','Proses\x20Alternatif','Pangkas\x20ke\x20Bentuk','Jenis\x20ujung','Putus-Titik','Sama\x20Dengan','Silinder','Persegi\x20Panjang\x20Sudut\x20Potong\x20dan\x20Membulat\x20Tunggal','Tanda\x20Panggilan\x20Persegi\x20Panjang','Panah\x20Atas','Penyambung\x20Melengkung\x20Panah\x20Ganda','Titik\x20Bulat','Tanda\x20Panggilan\x20Persegi\x20Panjang\x20Membulat','Isian\x20gambar\x20atau\x20tekstur','Corong','Hapus\x20Bentuk','Penyambung\x20Melengkung','743612fPsdbg','Bintang\x2032\x20Sudut','Tanda\x20Panggilan\x20Panah\x20Atas-Bawah','Panah\x20Melengkung\x20Atas','Jenis\x20putus-putus','Kubus','Ekstrak','Lebar','Kiri\x20Atas','Panah\x20Oval','Persegi\x20Panjang\x20Sudut\x20Potong\x20Diagonal','Melengkung','Penyimpanan\x20Internal','Rata\x20Kiri','Skala\x20X','Ubah\x20Teks\x20Vertikal','Perluas\x20toolbar\x20bentuk','Tebal','Persegi\x20Panjang\x20Sudut\x20Membulat\x20Sisi\x20Sama','Kiri','Wajah\x20Senyum','Panah\x20Putar\x20Balik','Titik\x20Persegi','Panah\x20Melengkung\x20Kanan','Kolasi','Panah\x20Melingkar','Pentagon','Rata\x20Kanan\x20Kiri','Putar\x20dengan\x20bentuk','Pita\x20Tertinju','Multi\x20Dokumen','Garis\x20Diagonal','Gigi\x209','Tipografi','Proses','Pita\x20Bawah','Judul\x203','Normal','Offset\x20X','Penyambung\x20Melengkung\x20Panah','Penyambung\x20Siku\x20Panah\x20Ganda','Tanda\x20Panggilan\x202','Garis\x20bawah','1473143SOFueX','Judul\x201','Bintang\x205\x20Sudut','Oval','Garis','Busur','Panah\x20Bengkok','Bintang\x2024\x20Sudut','Warna\x20latar\x20teks','Sisipkan...','Panah\x20Kiri','Dilarang\x20Merokok','Ulangi\x20gambar\x20sebagai\x20tekstur','Bulan','Atas\x20dan\x20Bawah','Segitiga\x20Siku-Siku','Tombol\x20Aksi:\x20Kembali\x20atau\x20Sebelumnya','Panah\x20Melingkar\x20Kiri-Kanan','Judul\x204','Tombol\x20Aksi:\x20Kosong','Tampilan','2012058vIXAdM','3694ASZnaL','Donat','Sedang','Data','Kali','Pie','Panah\x20Melingkar\x20Kiri','Tab\x20Plakat','Bintang\x208\x20Sudut','Isian\x20gradien','Panah\x20Bawah','Disk\x20Magnetik','Berlian','Grafik\x20X','Daftar\x20berurut','Kanan','Tombol\x20Aksi:\x20Akhir','Tanda\x20Panggilan\x20Batas\x20Aksen\x201','Atas','Tombol\x20Aksi:\x20Maju\x20atau\x20Berikutnya','Panah\x20Kanan','Tidak\x20Sama\x20Dengan','Petir','Persimpangan\x20Penjumlahan','Kurung\x20Kurawal\x20Kanan','Jenis\x20panah\x20awal','45mZyfhF','Tanda\x20Panggilan\x203','Gulir\x20Horizontal','object','Dokumen','Bintang\x206\x20Sudut','Persegi\x20Panjang\x20Sudut\x20Membulat\x20Diagonal','Matahari','Jenis\x20panah\x20akhir','Penyambung\x20Siku\x20Panah','Rata\x20Atas','Kecil','Tidak\x20ada','Tombol\x20Aksi:\x20Dokumen','Tanda\x20Panggilan\x20Oval','Gaya\x20sketsa','Gulir\x20Vertikal','Rata\x20Tengah','Besar','Kiri\x20Bawah','157mcQjbV','Ukuran\x20panah\x20awal','Irisan\x20Pie','Gelombang\x20Ganda','267616ItAZGv','Trapesium\x20Tidak\x20Sama\x20Kaki','Bagi','Proses\x20Terdefinisi','amd','Kartu','Persegi\x20Panjang','Atau','Panah\x20Empat\x20Arah','Bintang\x2012\x20Sudut','Tanda\x20Panggilan\x20Garis\x203','Gelombang','Ukuran\x20panah\x20akhir','Coret','Tanda\x20Panggilan\x20Aksen\x203','Penyimpanan\x20Akses\x20Sekuensial','Di\x20belakang\x20teks','Kotak\x20Teks\x20Vertikal','Tombol\x20Aksi:\x20Suara','Datar','Tanda\x20Panggilan\x20Batas\x20Aksen\x202'];_0x4825=function(){return _0x4746f0;};return _0x4825();}(function(_0x3bb0b9,_0x431500){var _0x348d08=_0x4b3b,_0x71580a=_0x3bb0b9();while(!![]){try{var _0x424fe3=parseInt(_0x348d08(0x1f2))/0x1*(-parseInt(_0x348d08(0x1c4))/0x2)+-parseInt(_0x348d08(0x240))/0x3+parseInt(_0x348d08(0x183))/0x4*(parseInt(_0x348d08(0x255))/0x5)+parseInt(_0x348d08(0x1c3))/0x6+parseInt(_0x348d08(0x1ae))/0x7+parseInt(_0x348d08(0x1f6))/0x8*(parseInt(_0x348d08(0x1de))/0x9)+parseInt(_0x348d08(0x22f))/0xa;if(_0x424fe3===_0x431500)break;else _0x71580a['push'](_0x71580a['shift']());}catch(_0x8b237b){_0x71580a['push'](_0x71580a['shift']());}}}(_0x4825,0x5af24),function(_0x18b358,_0x57d2e0){var _0x137e0c=_0x4b3b;typeof exports==_0x137e0c(0x1e1)&&typeof module<'u'?module[_0x137e0c(0x217)]=_0x57d2e0():typeof define==_0x137e0c(0x21a)&&define[_0x137e0c(0x1fa)]?define([],_0x57d2e0):(_0x18b358=typeof globalThis<'u'?globalThis:_0x18b358||self,_0x18b358['UniverProShapeEditorUiIdID']=_0x57d2e0());}(this,function(){var _0x33746d=_0x4b3b;return{'shape-editor-ui':{'title':_0x33746d(0x262),'insertShape':_0x33746d(0x20c),'openPanel':_0x33746d(0x21b),'deleteShape':_0x33746d(0x281),'hidePanel':_0x33746d(0x23b),'formatShape':'Format\x20Bentuk','shapeStyle':'Gaya\x20Bentuk','shapePosition':_0x33746d(0x228),'toggleFlipH':'Balik\x20Horizontal','toggleFlipV':'Balik\x20Vertikal','rotateRight90':_0x33746d(0x234),'rotateLeft90':_0x33746d(0x21e),'toggleTextVertical':_0x33746d(0x192),'textEditor':{'placeholder':_0x33746d(0x233),'paragraphType':{'normal':_0x33746d(0x1a8),'heading1':_0x33746d(0x1af),'heading2':'Judul\x202','heading3':_0x33746d(0x1a7),'heading4':_0x33746d(0x1c0),'heading5':_0x33746d(0x20e),'orderedList':_0x33746d(0x1d2),'bulletList':_0x33746d(0x22a),'checkList':'Daftar\x20tugas','quote':_0x33746d(0x239),'code':_0x33746d(0x248),'callout':'Kotak\x20sorotan'}},'fill':{'title':_0x33746d(0x252),'noFill':_0x33746d(0x266),'solidFill':_0x33746d(0x268),'gradientFill':_0x33746d(0x1cd),'pictureFill':_0x33746d(0x27f),'patternFill':'Isian\x20pola','color':_0x33746d(0x227),'transparency':'Transparansi','picture':{'source':_0x33746d(0x26d),'insert':_0x33746d(0x1b7),'tileAsTexture':_0x33746d(0x1ba),'offsetX':_0x33746d(0x1a9),'offsetY':_0x33746d(0x242),'scaleX':_0x33746d(0x191),'scaleY':_0x33746d(0x218),'alignment':_0x33746d(0x24a),'rotateWithShape':_0x33746d(0x19f),'align':{'tl':_0x33746d(0x18b),'t':_0x33746d(0x1d6),'tr':_0x33746d(0x26e),'l':_0x33746d(0x196),'ctr':_0x33746d(0x23f),'r':_0x33746d(0x1d3),'bl':_0x33746d(0x1f1),'b':_0x33746d(0x267),'br':'Kanan\x20Bawah'}}},'line':{'title':_0x33746d(0x1b2),'noLine':_0x33746d(0x24b),'solidLine':'Garis\x20solid','gradientLine':_0x33746d(0x25f),'color':_0x33746d(0x227),'transparency':_0x33746d(0x26f),'width':_0x33746d(0x18a),'cornerRadius':'Radius\x20sudut','dashType':{'title':_0x33746d(0x187),'solid':'Solid','roundDot':_0x33746d(0x27d),'squareDot':_0x33746d(0x199),'dash':_0x33746d(0x256),'dashDot':_0x33746d(0x276),'longDash':_0x33746d(0x264),'longDashDot':'Putus\x20Panjang\x20Titik','longDashDotDot':_0x33746d(0x25b)},'capType':{'title':_0x33746d(0x275),'flat':_0x33746d(0x209),'round':_0x33746d(0x238),'square':_0x33746d(0x21d)},'joinType':{'title':'Jenis\x20sambungan','miter':'Miter','round':_0x33746d(0x238),'bevel':_0x33746d(0x271)},'beginArrowType':_0x33746d(0x1dd),'beginArrowSize':_0x33746d(0x1f3),'endArrowType':_0x33746d(0x1e6),'endArrowSize':_0x33746d(0x202),'arrowType':{'none':'Tidak\x20ada','arrow':'Panah','openArrow':_0x33746d(0x215),'stealthArrow':'Panah\x20Siluman','diamondArrow':_0x33746d(0x20b),'ovalArrow':_0x33746d(0x18c)},'arrowSize':{'small':_0x33746d(0x1e9),'medium':_0x33746d(0x1c6),'large':_0x33746d(0x1f0)},'sketchType':{'title':_0x33746d(0x1ed),'none':_0x33746d(0x1ea),'curved':_0x33746d(0x18e),'freehand':_0x33746d(0x258),'handDrawn':_0x33746d(0x211)}},'shape':{'group':{'line':_0x33746d(0x1b2),'rectangle':'Persegi\x20Panjang','basicShape':'Bentuk\x20Dasar','blockArrow':_0x33746d(0x257),'equationShape':_0x33746d(0x20d),'flowchart':_0x33746d(0x24f),'starAndBanner':'Bintang\x20dan\x20Spanduk','callout':'Tanda\x20Panggilan','other':'Lainnya'},'type':{'line':_0x33746d(0x1b2),'straight-connector1':'Garis\x20Panah','straight-connector2':_0x33746d(0x223),'bent-connector3':'Penyambung\x20Siku','bent-connector3-arrow1':_0x33746d(0x1e7),'bent-connector3-arrow2':_0x33746d(0x1ab),'curved-connector3':_0x33746d(0x182),'curved-connector3-arrow1':_0x33746d(0x1aa),'curved-connector3-arrow2':_0x33746d(0x27c),'rect':_0x33746d(0x1fc),'round-rect':_0x33746d(0x263),'snip1-rect':_0x33746d(0x23c),'snip2-same-rect':_0x33746d(0x22e),'snip2-diag-rect':_0x33746d(0x18d),'snip-round-rect':_0x33746d(0x279),'round1-rect':_0x33746d(0x272),'round2-same-rect':_0x33746d(0x195),'round2-diag-rect':_0x33746d(0x1e4),'rect-textbox-horizontal':'Kotak\x20Teks\x20Horizontal','rect-textbox-vertical':_0x33746d(0x207),'ellipse':_0x33746d(0x1b1),'triangle':_0x33746d(0x249),'rt-triangle':_0x33746d(0x1bd),'parallelogram':'Jajar\x20Genjang','trapezoid':_0x33746d(0x26b),'non-isosceles-trapezoid':_0x33746d(0x1f7),'diamond':_0x33746d(0x1d0),'pentagon':_0x33746d(0x19d),'hexagon':_0x33746d(0x246),'heptagon':_0x33746d(0x229),'octagon':_0x33746d(0x25a),'decagon':_0x33746d(0x22c),'dodecagon':_0x33746d(0x24d),'pie':_0x33746d(0x1c9),'chord':_0x33746d(0x243),'teardrop':'Tetesan\x20Air','frame':_0x33746d(0x213),'half-frame':'Setengah\x20Bingkai','corner':'Bentuk-L','diag-stripe':_0x33746d(0x1a2),'plus':'Silang','plaque':'Plakat','can':_0x33746d(0x278),'cube':_0x33746d(0x188),'bevel':_0x33746d(0x271),'donut':_0x33746d(0x1c5),'no-smoking':_0x33746d(0x1b9),'block-arc':'Busur\x20Blok','folder-corner':'Sudut\x20Dilipat','smiley-face':_0x33746d(0x197),'heart':_0x33746d(0x247),'lightning-bolt':_0x33746d(0x1da),'sun':_0x33746d(0x1e5),'moon':_0x33746d(0x1bb),'cloud':_0x33746d(0x20f),'arc':_0x33746d(0x1b3),'bracket-pair':_0x33746d(0x210),'brace-pair':_0x33746d(0x221),'left-bracket':_0x33746d(0x25d),'right-bracket':_0x33746d(0x261),'left-brace':_0x33746d(0x25c),'right-brace':_0x33746d(0x1dc),'right-arrow':_0x33746d(0x1d8),'left-arrow':_0x33746d(0x1b8),'up-arrow':_0x33746d(0x27b),'down-arrow':_0x33746d(0x1ce),'left-right-arrow':_0x33746d(0x214),'up-down-arrow':_0x33746d(0x237),'quad-arrow':_0x33746d(0x1fe),'left-right-up-arrow':_0x33746d(0x25e),'bent-arrow':_0x33746d(0x1b4),'uturn-arrow':_0x33746d(0x198),'left-up-arrow':_0x33746d(0x23d),'bent-up-arrow':'Panah\x20Bengkok\x20Atas','curved-right-arrow':_0x33746d(0x19a),'curved-left-arrow':_0x33746d(0x231),'curved-up-arrow':_0x33746d(0x186),'curved-down-arrow':'Panah\x20Melengkung\x20Bawah','striped-right-arrow':'Panah\x20Kanan\x20Bergaris','notched-right-arrow':_0x33746d(0x24c),'home-plate':_0x33746d(0x19d),'chevron':'Chevron','right-arrow-callout':'Tanda\x20Panggilan\x20Panah\x20Kanan','down-arrow-callout':_0x33746d(0x269),'left-arrow-callout':_0x33746d(0x22d),'up-arrow-callout':'Tanda\x20Panggilan\x20Panah\x20Atas','left-right-arrow-callout':_0x33746d(0x244),'quad-arrow-callout':_0x33746d(0x265),'circular-arrow':_0x33746d(0x19c),'math-plus':'Tambah','math-minus':'Kurang','math-multiply':_0x33746d(0x1c8),'math-divide':_0x33746d(0x1f8),'math-equal':_0x33746d(0x277),'math-not-equal':_0x33746d(0x1d9),'flow-chart-process':_0x33746d(0x1a5),'flow-chart-alternate-process':_0x33746d(0x273),'flow-chart-decision':'Keputusan','flow-chart-input-output':_0x33746d(0x1c7),'flow-chart-predefined-process':_0x33746d(0x1f9),'flow-chart-internal-storage':_0x33746d(0x18f),'flow-chart-document':_0x33746d(0x1e2),'flow-chart-multidocument':_0x33746d(0x1a1),'flow-chart-terminator':'Terminasi','flow-chart-preparation':_0x33746d(0x254),'flow-chart-manual-input':_0x33746d(0x235),'flow-chart-manual-operation':_0x33746d(0x250),'flow-chart-connector':'Penyambung','flow-chart-offpage-connector':'Penyambung\x20Halaman\x20Lain','flow-chart-punched-card':_0x33746d(0x1fb),'flow-chart-punched-tape':_0x33746d(0x1a0),'flow-chart-summing-junction':_0x33746d(0x1db),'flow-chart-or':_0x33746d(0x1fd),'flow-chart-collate':_0x33746d(0x19b),'flow-chart-sort':_0x33746d(0x251),'flow-chart-extract':_0x33746d(0x189),'flow-chart-merge':_0x33746d(0x225),'flow-chart-online-storage':_0x33746d(0x220),'flow-chart-delay':'Tunda','flow-chart-magnetic-tape':_0x33746d(0x205),'flow-chart-magnetic-disk':_0x33746d(0x1cf),'flow-chart-magnetic-drum':_0x33746d(0x270),'flow-chart-display':_0x33746d(0x1c2),'irregular-seal1':'Ledakan\x201','irregular-seal2':_0x33746d(0x245),'star4':_0x33746d(0x21c),'star5':_0x33746d(0x1b0),'star6':_0x33746d(0x1e3),'star7':_0x33746d(0x23e),'star8':_0x33746d(0x1cc),'star10':'Bintang\x2010\x20Sudut','star12':_0x33746d(0x1ff),'star16':_0x33746d(0x212),'star24':_0x33746d(0x1b5),'star32':_0x33746d(0x184),'ribbon2':'Pita\x20Atas','ribbon':_0x33746d(0x1a6),'ellipse-ribbon2':_0x33746d(0x22b),'ellipse-ribbon':_0x33746d(0x26a),'vertical-scroll':_0x33746d(0x1ee),'horizontal-scroll':_0x33746d(0x1e0),'wave':_0x33746d(0x201),'double-wave':_0x33746d(0x1f5),'wedge-rect-callout':_0x33746d(0x27a),'wedge-round-rect-callout':_0x33746d(0x27e),'wedge-ellipse-callout':_0x33746d(0x1ec),'cloud-callout':_0x33746d(0x230),'border-callout1':'Tanda\x20Panggilan\x20Garis\x201','border-callout2':'Tanda\x20Panggilan\x20Garis\x202','border-callout3':_0x33746d(0x200),'accent-callout1':_0x33746d(0x24e),'accent-callout2':_0x33746d(0x260),'accent-callout3':_0x33746d(0x204),'callout1':'Tanda\x20Panggilan\x201','callout2':_0x33746d(0x1ac),'callout3':_0x33746d(0x1df),'accent-border-callout1':_0x33746d(0x1d5),'accent-border-callout2':_0x33746d(0x20a),'accent-border-callout3':_0x33746d(0x241),'left-circular-arrow':_0x33746d(0x1ca),'left-right-circular-arrow':_0x33746d(0x1bf),'swoosh-arrow':_0x33746d(0x226),'left-right-ribbon':_0x33746d(0x21f),'pie-wedge':_0x33746d(0x1f4),'funnel':_0x33746d(0x280),'gear6':_0x33746d(0x23a),'gear9':_0x33746d(0x1a3),'corner-tabs':'Tab\x20Sudut','action-button-back-previous':_0x33746d(0x1be),'action-button-forward-next':_0x33746d(0x1d7),'action-button-beginning':'Tombol\x20Aksi:\x20Awal','action-button-end':_0x33746d(0x1d4),'action-button-home':_0x33746d(0x259),'action-button-information':'Tombol\x20Aksi:\x20Informasi','action-button-return':'Tombol\x20Aksi:\x20Kembali','action-button-movie':_0x33746d(0x222),'action-button-document':_0x33746d(0x1eb),'action-button-sound':_0x33746d(0x208),'action-button-help':_0x33746d(0x253),'action-button-blank':_0x33746d(0x1c1),'chart-plus':'Grafik\x20Plus','chart-star':_0x33746d(0x219),'chart-x':_0x33746d(0x1d1),'flow-chart-offline-storage':'Penyimpanan\x20Offline','line-inv':'Garis\x20Terbalik','plaque-tabs':_0x33746d(0x1cb),'square-tabs':_0x33746d(0x232),'up-down-arrow-callout':_0x33746d(0x185)}},'toolbar':{'expandShapeToolbar':_0x33746d(0x193),'collapseShapeToolbar':'Ciutkan\x20toolbar\x20bentuk','alignLeft':_0x33746d(0x190),'alignCenter':_0x33746d(0x1ef),'alignRight':'Rata\x20Kanan','alignJustify':_0x33746d(0x19e),'bold':_0x33746d(0x194),'italic':'Miring','underline':_0x33746d(0x1ad),'strikethrough':_0x33746d(0x203),'subscript':'Subskrip','superscript':_0x33746d(0x224),'textColor':_0x33746d(0x216),'textBackgroundColor':_0x33746d(0x1b6),'fillColor':_0x33746d(0x1b6),'resetColor':'Atur\x20ulang\x20warna','typography':_0x33746d(0x1a4)},'align':{'top':_0x33746d(0x1e8),'middle':_0x33746d(0x1ef),'bottom':_0x33746d(0x26c)},'textWrap':{'inline':'Sejajar\x20dengan\x20teks','square':'Kotak','topAndBottom':_0x33746d(0x1bc),'behindText':_0x33746d(0x206),'inFrontText':_0x33746d(0x236)},'crop':{'shape':_0x33746d(0x274)}}};}));
|
package/lib/umd/locale/it-IT.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function _0x423e(_0x3aa73d,_0x4254db){_0x3aa73d=_0x3aa73d-0x155;var _0x238d85=_0x238d();var _0x423e65=_0x238d85[_0x3aa73d];return _0x423e65;}(function(_0xc5306e,_0x510a30){var _0x5de301=_0x423e,_0x32c761=_0xc5306e();while(!![]){try{var _0x5d9076=-parseInt(_0x5de301(0x249))/0x1+parseInt(_0x5de301(0x205))/0x2+-parseInt(_0x5de301(0x228))/0x3+-parseInt(_0x5de301(0x219))/0x4*(-parseInt(_0x5de301(0x1b3))/0x5)+-parseInt(_0x5de301(0x1e7))/0x6+parseInt(_0x5de301(0x24a))/0x7*(parseInt(_0x5de301(0x1c9))/0x8)+-parseInt(_0x5de301(0x176))/0x9;if(_0x5d9076===_0x510a30)break;else _0x32c761['push'](_0x32c761['shift']());}catch(_0x2a1b6e){_0x32c761['push'](_0x32c761['shift']());}}}(_0x238d,0x6c224),function(_0x4e7e94,_0x4d2d7e){var _0x184bba=_0x423e;typeof exports==_0x184bba(0x16f)&&typeof module<'u'?module[_0x184bba(0x206)]=_0x4d2d7e():typeof define==_0x184bba(0x22d)&&define[_0x184bba(0x1e1)]?define([],_0x4d2d7e):(_0x4e7e94=typeof globalThis<'u'?globalThis:_0x4e7e94||self,_0x4e7e94['UniverProShapeEditorUiItIT']=_0x4d2d7e());}(this,function(){var _0x3c30c0=_0x423e;return{'shape-editor-ui':{'title':_0x3c30c0(0x1de),'insertShape':_0x3c30c0(0x202),'openPanel':_0x3c30c0(0x245),'deleteShape':'Elimina\x20forma','hidePanel':_0x3c30c0(0x1cf),'formatShape':_0x3c30c0(0x1e9),'shapeStyle':'Stile\x20forma','shapePosition':'Posizione\x20forma','toggleFlipH':_0x3c30c0(0x197),'toggleFlipV':_0x3c30c0(0x247),'rotateRight90':_0x3c30c0(0x1ea),'rotateLeft90':_0x3c30c0(0x238),'toggleTextVertical':_0x3c30c0(0x1f4),'textEditor':{'paragraphType':{'normal':'Normale','heading1':'Intestazione\x201','heading2':'Intestazione\x202','heading3':_0x3c30c0(0x18e),'heading4':_0x3c30c0(0x21d),'heading5':_0x3c30c0(0x158),'orderedList':_0x3c30c0(0x1f0),'bulletList':_0x3c30c0(0x1d7),'checkList':_0x3c30c0(0x1d4),'quote':_0x3c30c0(0x22e),'code':_0x3c30c0(0x248),'callout':_0x3c30c0(0x162)}},'fill':{'title':_0x3c30c0(0x217),'noFill':_0x3c30c0(0x184),'solidFill':_0x3c30c0(0x173),'gradientFill':'Riempimento\x20gradiente','pictureFill':_0x3c30c0(0x1b2),'patternFill':_0x3c30c0(0x1ef),'color':'Colore','transparency':_0x3c30c0(0x1e0),'picture':{'source':_0x3c30c0(0x194),'insert':'Inserisci...','tileAsTexture':'Affianca\x20immagine\x20come\x20texture','offsetX':'Offset\x20X','offsetY':'Offset\x20Y','scaleX':_0x3c30c0(0x19f),'scaleY':_0x3c30c0(0x17d),'alignment':_0x3c30c0(0x17e),'rotateWithShape':'Ruota\x20con\x20forma','align':{'tl':_0x3c30c0(0x165),'t':_0x3c30c0(0x21f),'tr':'In\x20alto\x20a\x20destra','l':'Sinistra','ctr':_0x3c30c0(0x17a),'r':_0x3c30c0(0x218),'bl':_0x3c30c0(0x1eb),'b':'In\x20basso','br':_0x3c30c0(0x244)}}},'line':{'title':_0x3c30c0(0x1ff),'noLine':_0x3c30c0(0x177),'solidLine':_0x3c30c0(0x1e2),'gradientLine':_0x3c30c0(0x1b0),'color':'Colore','transparency':_0x3c30c0(0x1e0),'width':_0x3c30c0(0x223),'cornerRadius':'Raggio\x20angolo','dashType':{'title':_0x3c30c0(0x1f5),'solid':_0x3c30c0(0x1aa),'roundDot':'Punto\x20rotondo','squareDot':_0x3c30c0(0x1ad),'dash':_0x3c30c0(0x1ec),'dashDot':_0x3c30c0(0x221),'longDash':_0x3c30c0(0x1f2),'longDashDot':'Tratto\x20lungo-punto','longDashDotDot':'Tratto\x20lungo-punto-punto'},'capType':{'title':_0x3c30c0(0x1a4),'flat':_0x3c30c0(0x214),'round':_0x3c30c0(0x246),'square':'Quadrata'},'joinType':{'title':_0x3c30c0(0x169),'miter':_0x3c30c0(0x1af),'round':_0x3c30c0(0x246),'bevel':_0x3c30c0(0x1b5)},'beginArrowType':_0x3c30c0(0x233),'beginArrowSize':_0x3c30c0(0x19d),'endArrowType':'Tipo\x20freccia\x20finale','endArrowSize':_0x3c30c0(0x1fa),'arrowType':{'none':_0x3c30c0(0x181),'arrow':_0x3c30c0(0x239),'openArrow':_0x3c30c0(0x157),'stealthArrow':_0x3c30c0(0x1a0),'diamondArrow':'Freccia\x20diamante','ovalArrow':_0x3c30c0(0x1ee)},'arrowSize':{'small':_0x3c30c0(0x1ac),'medium':_0x3c30c0(0x235),'large':_0x3c30c0(0x209)},'sketchType':{'title':_0x3c30c0(0x1b7),'none':'Nessuno','curved':_0x3c30c0(0x155),'freehand':_0x3c30c0(0x18c),'handDrawn':_0x3c30c0(0x1c6)}},'shape':{'group':{'line':_0x3c30c0(0x16c),'rectangle':_0x3c30c0(0x191),'basicShape':_0x3c30c0(0x186),'blockArrow':'Frecce\x20a\x20blocco','equationShape':'Forme\x20equazione','flowchart':_0x3c30c0(0x1bd),'starAndBanner':'Stelle\x20e\x20banner','callout':_0x3c30c0(0x1bb),'other':_0x3c30c0(0x1fb)},'type':{'line':_0x3c30c0(0x1ff),'straight-connector1':'Freccia\x20linea','straight-connector2':_0x3c30c0(0x180),'bent-connector3':_0x3c30c0(0x198),'bent-connector3-arrow1':'Connettore\x20a\x20gomito\x20freccia','bent-connector3-arrow2':_0x3c30c0(0x189),'curved-connector3':'Connettore\x20curvo','curved-connector3-arrow1':_0x3c30c0(0x22b),'curved-connector3-arrow2':'Connettore\x20curvo\x20doppia\x20freccia','rect':'Rettangolo','round-rect':'Rettangolo\x20arrotondato','snip1-rect':_0x3c30c0(0x164),'snip2-same-rect':'Rettangolo\x20con\x20angoli\x20tagliati\x20sullo\x20stesso\x20lato','snip2-diag-rect':_0x3c30c0(0x1b8),'snip-round-rect':_0x3c30c0(0x1ab),'round1-rect':_0x3c30c0(0x1db),'round2-same-rect':_0x3c30c0(0x242),'round2-diag-rect':_0x3c30c0(0x192),'rect-textbox-horizontal':_0x3c30c0(0x1f1),'rect-textbox-vertical':_0x3c30c0(0x1fd),'ellipse':'Ovale','triangle':_0x3c30c0(0x1c5),'rt-triangle':_0x3c30c0(0x160),'parallelogram':_0x3c30c0(0x156),'trapezoid':_0x3c30c0(0x24b),'non-isosceles-trapezoid':_0x3c30c0(0x1a5),'diamond':_0x3c30c0(0x193),'pentagon':_0x3c30c0(0x1f6),'hexagon':_0x3c30c0(0x1e4),'heptagon':'Ettagono','octagon':_0x3c30c0(0x161),'decagon':_0x3c30c0(0x234),'dodecagon':'Dodecagono','pie':'Torta','chord':_0x3c30c0(0x1bc),'teardrop':_0x3c30c0(0x230),'frame':_0x3c30c0(0x1c2),'half-frame':_0x3c30c0(0x17c),'corner':_0x3c30c0(0x1e3),'diag-stripe':'Striscia\x20diagonale','plus':_0x3c30c0(0x190),'plaque':_0x3c30c0(0x23a),'can':_0x3c30c0(0x23d),'cube':_0x3c30c0(0x1c0),'bevel':_0x3c30c0(0x1d2),'donut':_0x3c30c0(0x1fc),'no-smoking':_0x3c30c0(0x207),'block-arc':_0x3c30c0(0x1a8),'folder-corner':_0x3c30c0(0x19a),'smiley-face':_0x3c30c0(0x208),'heart':_0x3c30c0(0x1c3),'lightning-bolt':_0x3c30c0(0x182),'sun':_0x3c30c0(0x226),'moon':'Luna','cloud':_0x3c30c0(0x1cd),'arc':_0x3c30c0(0x237),'bracket-pair':_0x3c30c0(0x1ae),'brace-pair':_0x3c30c0(0x232),'left-bracket':_0x3c30c0(0x20e),'right-bracket':'Parentesi\x20quadra\x20destra','left-brace':'Parentesi\x20graffa\x20sinistra','right-brace':'Parentesi\x20graffa\x20destra','right-arrow':_0x3c30c0(0x17b),'left-arrow':_0x3c30c0(0x1e5),'up-arrow':_0x3c30c0(0x20d),'down-arrow':_0x3c30c0(0x199),'left-right-arrow':_0x3c30c0(0x1a9),'up-down-arrow':_0x3c30c0(0x16e),'quad-arrow':_0x3c30c0(0x225),'left-right-up-arrow':'Freccia\x20sinistra-destra-su','bent-arrow':_0x3c30c0(0x172),'uturn-arrow':_0x3c30c0(0x22f),'left-up-arrow':_0x3c30c0(0x1e6),'bent-up-arrow':_0x3c30c0(0x15b),'curved-right-arrow':_0x3c30c0(0x1d5),'curved-left-arrow':_0x3c30c0(0x21b),'curved-up-arrow':'Freccia\x20curva\x20su','curved-down-arrow':'Freccia\x20curva\x20giù','striped-right-arrow':_0x3c30c0(0x175),'notched-right-arrow':'Freccia\x20dentellata\x20destra','home-plate':_0x3c30c0(0x1f6),'chevron':_0x3c30c0(0x15a),'right-arrow-callout':_0x3c30c0(0x185),'down-arrow-callout':_0x3c30c0(0x1ca),'left-arrow-callout':'Didascalia\x20freccia\x20sinistra','up-arrow-callout':_0x3c30c0(0x1f7),'left-right-arrow-callout':_0x3c30c0(0x203),'quad-arrow-callout':_0x3c30c0(0x1ed),'circular-arrow':_0x3c30c0(0x1be),'math-plus':_0x3c30c0(0x1b6),'math-minus':_0x3c30c0(0x1f3),'math-multiply':_0x3c30c0(0x1cb),'math-divide':_0x3c30c0(0x167),'math-equal':'Uguale','math-not-equal':'Diverso','flow-chart-process':_0x3c30c0(0x1df),'flow-chart-alternate-process':_0x3c30c0(0x1c4),'flow-chart-decision':_0x3c30c0(0x1b1),'flow-chart-input-output':_0x3c30c0(0x20c),'flow-chart-predefined-process':_0x3c30c0(0x1b9),'flow-chart-internal-storage':_0x3c30c0(0x1d3),'flow-chart-document':_0x3c30c0(0x220),'flow-chart-multidocument':_0x3c30c0(0x183),'flow-chart-terminator':'Terminatore','flow-chart-preparation':_0x3c30c0(0x16b),'flow-chart-manual-input':_0x3c30c0(0x231),'flow-chart-manual-operation':_0x3c30c0(0x23e),'flow-chart-connector':_0x3c30c0(0x21a),'flow-chart-offpage-connector':'Connettore\x20fuori\x20pagina','flow-chart-punched-card':_0x3c30c0(0x1f9),'flow-chart-punched-tape':'Nastro\x20perforato','flow-chart-summing-junction':_0x3c30c0(0x227),'flow-chart-or':'O','flow-chart-collate':_0x3c30c0(0x23f),'flow-chart-sort':_0x3c30c0(0x1a1),'flow-chart-extract':_0x3c30c0(0x21e),'flow-chart-merge':_0x3c30c0(0x18b),'flow-chart-online-storage':_0x3c30c0(0x168),'flow-chart-delay':_0x3c30c0(0x1ce),'flow-chart-magnetic-tape':_0x3c30c0(0x20f),'flow-chart-magnetic-disk':_0x3c30c0(0x1da),'flow-chart-magnetic-drum':_0x3c30c0(0x201),'flow-chart-display':_0x3c30c0(0x1d6),'irregular-seal1':_0x3c30c0(0x1d9),'irregular-seal2':_0x3c30c0(0x159),'star4':_0x3c30c0(0x1f8),'star5':_0x3c30c0(0x1a3),'star6':_0x3c30c0(0x178),'star7':'Stella\x20a\x207\x20punte','star8':_0x3c30c0(0x19b),'star10':_0x3c30c0(0x1a7),'star12':_0x3c30c0(0x174),'star16':_0x3c30c0(0x210),'star24':_0x3c30c0(0x224),'star32':_0x3c30c0(0x17f),'ribbon2':_0x3c30c0(0x1c1),'ribbon':_0x3c30c0(0x1a6),'ellipse-ribbon2':'Nastro\x20curvo\x20su','ellipse-ribbon':'Nastro\x20curvo\x20giù','vertical-scroll':'Pergamena\x20verticale','horizontal-scroll':_0x3c30c0(0x18f),'wave':_0x3c30c0(0x21c),'double-wave':_0x3c30c0(0x18a),'wedge-rect-callout':_0x3c30c0(0x22a),'wedge-round-rect-callout':_0x3c30c0(0x15c),'wedge-ellipse-callout':_0x3c30c0(0x213),'cloud-callout':_0x3c30c0(0x1cc),'border-callout1':'Didascalia\x20linea\x201','border-callout2':_0x3c30c0(0x171),'border-callout3':_0x3c30c0(0x240),'accent-callout1':'Didascalia\x20accento\x201','accent-callout2':_0x3c30c0(0x166),'accent-callout3':_0x3c30c0(0x1dc),'callout1':'Didascalia\x201','callout2':_0x3c30c0(0x16d),'callout3':_0x3c30c0(0x1d1),'accent-border-callout1':_0x3c30c0(0x22c),'accent-border-callout2':_0x3c30c0(0x1d8),'accent-border-callout3':_0x3c30c0(0x1fe),'left-circular-arrow':_0x3c30c0(0x212),'left-right-circular-arrow':_0x3c30c0(0x23b),'swoosh-arrow':_0x3c30c0(0x20a),'left-right-ribbon':_0x3c30c0(0x196),'pie-wedge':_0x3c30c0(0x1b4),'funnel':_0x3c30c0(0x241),'gear6':_0x3c30c0(0x211),'gear9':_0x3c30c0(0x222),'corner-tabs':_0x3c30c0(0x163),'action-button-back-previous':_0x3c30c0(0x1dd),'action-button-forward-next':'Pulsante\x20azione:\x20avanti\x20o\x20successivo','action-button-beginning':_0x3c30c0(0x19c),'action-button-end':_0x3c30c0(0x204),'action-button-home':_0x3c30c0(0x1e8),'action-button-information':_0x3c30c0(0x15d),'action-button-return':_0x3c30c0(0x170),'action-button-movie':_0x3c30c0(0x188),'action-button-document':_0x3c30c0(0x1a2),'action-button-sound':'Pulsante\x20azione:\x20suono','action-button-help':_0x3c30c0(0x236),'action-button-blank':'Pulsante\x20azione:\x20vuoto','chart-plus':_0x3c30c0(0x1c8),'chart-star':_0x3c30c0(0x215),'chart-x':_0x3c30c0(0x20b),'flow-chart-offline-storage':'Memoria\x20offline','line-inv':_0x3c30c0(0x15f),'plaque-tabs':'Schede\x20placca','square-tabs':_0x3c30c0(0x229),'up-down-arrow-callout':_0x3c30c0(0x1c7)}},'toolbar':{'expandShapeToolbar':'Espandi\x20barra\x20strumenti\x20forma','collapseShapeToolbar':_0x3c30c0(0x1d0),'alignLeft':'Allinea\x20a\x20Sinistra','alignCenter':'Allinea\x20al\x20Centro','alignRight':_0x3c30c0(0x1bf),'alignJustify':_0x3c30c0(0x1ba),'bold':_0x3c30c0(0x23c),'italic':_0x3c30c0(0x216),'underline':'Sottolineato','strikethrough':_0x3c30c0(0x16a),'subscript':_0x3c30c0(0x19e),'superscript':'Superscript','textColor':_0x3c30c0(0x18d),'textBackgroundColor':'Text\x20Background\x20color','fillColor':_0x3c30c0(0x200),'resetColor':'Reset\x20color'},'align':{'top':_0x3c30c0(0x179),'middle':'Allinea\x20al\x20centro','bottom':_0x3c30c0(0x15e)},'textWrap':{'inline':_0x3c30c0(0x195),'square':'Quadrato','topAndBottom':'Superiore\x20e\x20inferiore','behindText':_0x3c30c0(0x187),'inFrontText':'Davanti\x20al\x20testo'},'crop':{'shape':_0x3c30c0(0x243)}}};}));function _0x238d(){var _0x596eee=['Cornice','Cuore','Processo\x20alternativo','Triangolo\x20isoscele','Disegnato\x20a\x20mano','Didascalia\x20freccia\x20su-giù','Grafico\x20più','1977288zsVxVI','Didascalia\x20freccia\x20giù','Per','Didascalia\x20nuvola','Nuvola','Ritardo','Nascondi\x20pannello\x20forma','Comprimi\x20barra\x20strumenti\x20forma','Didascalia\x203','Smusso','Memoria\x20interna','Elenco\x20attività','Freccia\x20curva\x20destra','Display','Elenco\x20puntato','Didascalia\x20bordo\x20accento\x202','Esplosione\x201','Disco\x20magnetico','Rettangolo\x20con\x20un\x20angolo\x20arrotondato','Didascalia\x20accento\x203','Pulsante\x20azione:\x20indietro\x20o\x20precedente','Forma','Processo','Trasparenza','amd','Linea\x20solida','Forma\x20a\x20L','Esagono','Freccia\x20sinistra','Freccia\x20sinistra-su','1096548TKhhkB','Pulsante\x20azione:\x20home','Formato\x20forma','Ruota\x20a\x20destra\x2090°','In\x20basso\x20a\x20sinistra','Tratteggiata','Didascalia\x20freccia\x20quadrupla','Freccia\x20ovale','Riempimento\x20motivo','Elenco\x20ordinato','Casella\x20di\x20testo\x20orizzontale','Tratto\x20lungo','Meno','Attiva/disattiva\x20testo\x20verticale','Tipo\x20tratteggio','Pentagono','Didascalia\x20freccia\x20su','Stella\x20a\x204\x20punte','Scheda','Dimensione\x20freccia\x20finale','Altri','Anello','Casella\x20di\x20testo\x20verticale','Didascalia\x20bordo\x20accento\x203','Linea','Colore\x20sfondo\x20testo','Memoria\x20ad\x20accesso\x20diretto','Inserisci\x20forma','Didascalia\x20freccia\x20sinistra-destra','Pulsante\x20azione:\x20fine','1366522TBbEkH','exports','Vietato\x20fumare','Faccina\x20sorridente','Grande','Freccia\x20swoosh','Grafico\x20X','Dati','Freccia\x20su','Parentesi\x20quadra\x20sinistra','Memoria\x20ad\x20accesso\x20sequenziale','Stella\x20a\x2016\x20punte','Ingranaggio\x206','Freccia\x20circolare\x20sinistra','Didascalia\x20ovale','Piana','Grafico\x20stella','Corsivo','Riempimento','Destra','42928ODgwDO','Connettore','Freccia\x20curva\x20sinistra','Onda','Intestazione\x204','Estrai','In\x20alto','Documento','Tratto-punto','Ingranaggio\x209','Larghezza','Stella\x20a\x2024\x20punte','Freccia\x20quadrupla','Sole','Nodo\x20di\x20somma','1347666zsfZkt','Schede\x20quadrate','Didascalia\x20rettangolare','Connettore\x20curvo\x20freccia','Didascalia\x20bordo\x20accento\x201','function','Citazione','Freccia\x20a\x20U','Lacrima','Ingresso\x20manuale','Doppia\x20parentesi\x20graffa','Tipo\x20freccia\x20iniziale','Decagono','Media','Pulsante\x20azione:\x20aiuto','Arco','Ruota\x20a\x20sinistra\x2090°','Freccia','Placca','Freccia\x20circolare\x20sinistra-destra','Grassetto','Cilindro','Operazione\x20manuale','Raggruppa','Didascalia\x20linea\x203','Imbuto','Rettangolo\x20con\x20angoli\x20arrotondati\x20sullo\x20stesso\x20lato','Ritaglia\x20a\x20forma','In\x20basso\x20a\x20destra','Apri\x20pannello\x20forma','Arrotondata','Attiva/disattiva\x20capovolgimento\x20verticale','Blocco\x20di\x20codice','488201kHMzJY','21mZfVeB','Trapezio','Curvato','Parallelogramma','Freccia\x20aperta','Intestazione\x205','Esplosione\x202','Chevron','Freccia\x20piegata\x20su','Didascalia\x20rettangolare\x20arrotondata','Pulsante\x20azione:\x20informazione','Allinea\x20in\x20basso','Linea\x20inversa','Triangolo\x20rettangolo','Ottagono','Riquadro\x20evidenziato','Schede\x20ad\x20angolo','Rettangolo\x20con\x20un\x20angolo\x20tagliato','In\x20alto\x20a\x20sinistra','Didascalia\x20accento\x202','Diviso','Dati\x20memorizzati','Tipo\x20giunzione','Barrato','Preparazione','Linee','Didascalia\x202','Freccia\x20su-giù','object','Pulsante\x20azione:\x20ritorna','Didascalia\x20linea\x202','Freccia\x20piegata','Riempimento\x20solido','Stella\x20a\x2012\x20punte','Freccia\x20a\x20strisce\x20destra','5709159cFrqzE','Nessuna\x20linea','Stella\x20a\x206\x20punte','Allinea\x20in\x20alto','Centro','Freccia\x20destra','Mezza\x20cornice','Scala\x20Y','Allineamento','Stella\x20a\x2032\x20punte','Linea\x20doppia\x20freccia','Nessuno','Fulmine','Multidocumento','Nessun\x20riempimento','Didascalia\x20freccia\x20destra','Forme\x20di\x20base','Dietro\x20il\x20testo','Pulsante\x20azione:\x20filmato','Connettore\x20a\x20gomito\x20doppia\x20freccia','Doppia\x20onda','Unisci','A\x20mano\x20libera','Colore\x20testo','Intestazione\x203','Pergamena\x20orizzontale','Croce','Rettangoli','Rettangolo\x20con\x20angoli\x20arrotondati\x20in\x20diagonale','Diamante','Fonte\x20immagine','In\x20linea\x20con\x20il\x20testo','Nastro\x20sinistra-destra','Attiva/disattiva\x20capovolgimento\x20orizzontale','Connettore\x20a\x20gomito','Freccia\x20giù','Angolo\x20piegato','Stella\x20a\x208\x20punte','Pulsante\x20azione:\x20inizio','Dimensione\x20freccia\x20iniziale','Subscript','Scala\x20X','Freccia\x20stealth','Ordina','Pulsante\x20azione:\x20documento','Stella\x20a\x205\x20punte','Tipo\x20estremità','Trapezio\x20scaleno','Nastro\x20giù','Stella\x20a\x2010\x20punte','Arco\x20a\x20blocchi','Freccia\x20sinistra-destra','Continua','Rettangolo\x20con\x20angolo\x20tagliato\x20e\x20arrotondato','Piccola','Punto\x20quadrato','Doppia\x20parentesi\x20quadra','A\x20mitra','Linea\x20gradiente','Decisione','Riempimento\x20immagine\x20o\x20texture','360bSImRS','Spicchio\x20torta','Smussata','Più','Stile\x20schizzo','Rettangolo\x20con\x20angoli\x20tagliati\x20in\x20diagonale','Processo\x20predefinito','Giustifica','Didascalie','Corda','Diagramma\x20di\x20flusso','Freccia\x20circolare','Allinea\x20a\x20Destra','Cubo','Nastro\x20su'];_0x238d=function(){return _0x596eee;};return _0x238d();}
|
|
1
|
+
function _0x5f00(_0x3e0782,_0x308282){_0x3e0782=_0x3e0782-0x13f;var _0x30392d=_0x3039();var _0x5f008d=_0x30392d[_0x3e0782];return _0x5f008d;}(function(_0x32580e,_0x42b9ff){var _0x3f3026=_0x5f00,_0x521d0c=_0x32580e();while(!![]){try{var _0x1a57c6=parseInt(_0x3f3026(0x13f))/0x1*(-parseInt(_0x3f3026(0x17e))/0x2)+parseInt(_0x3f3026(0x166))/0x3*(parseInt(_0x3f3026(0x201))/0x4)+-parseInt(_0x3f3026(0x20a))/0x5*(parseInt(_0x3f3026(0x213))/0x6)+-parseInt(_0x3f3026(0x19a))/0x7*(parseInt(_0x3f3026(0x1fc))/0x8)+-parseInt(_0x3f3026(0x1ee))/0x9+parseInt(_0x3f3026(0x21b))/0xa+parseInt(_0x3f3026(0x1c7))/0xb;if(_0x1a57c6===_0x42b9ff)break;else _0x521d0c['push'](_0x521d0c['shift']());}catch(_0x467586){_0x521d0c['push'](_0x521d0c['shift']());}}}(_0x3039,0xe6e76),function(_0x4d2348,_0x3012d6){var _0x3e5781=_0x5f00;typeof exports==_0x3e5781(0x15d)&&typeof module<'u'?module[_0x3e5781(0x1ec)]=_0x3012d6():typeof define=='function'&&define[_0x3e5781(0x1a7)]?define([],_0x3012d6):(_0x4d2348=typeof globalThis<'u'?globalThis:_0x4d2348||self,_0x4d2348[_0x3e5781(0x185)]=_0x3012d6());}(this,function(){var _0x19ec49=_0x5f00;return{'shape-editor-ui':{'title':_0x19ec49(0x1ea),'insertShape':_0x19ec49(0x173),'openPanel':_0x19ec49(0x21a),'deleteShape':_0x19ec49(0x1f0),'hidePanel':'Nascondi\x20pannello\x20forma','formatShape':_0x19ec49(0x1b3),'shapeStyle':_0x19ec49(0x16d),'shapePosition':_0x19ec49(0x1aa),'toggleFlipH':'Attiva/disattiva\x20capovolgimento\x20orizzontale','toggleFlipV':_0x19ec49(0x17a),'rotateRight90':_0x19ec49(0x1eb),'rotateLeft90':'Ruota\x20a\x20sinistra\x2090°','toggleTextVertical':'Attiva/disattiva\x20testo\x20verticale','textEditor':{'placeholder':'Inserisci\x20testo','paragraphType':{'normal':'Normale','heading1':_0x19ec49(0x1c5),'heading2':'Intestazione\x202','heading3':'Intestazione\x203','heading4':_0x19ec49(0x1e2),'heading5':_0x19ec49(0x158),'orderedList':_0x19ec49(0x180),'bulletList':_0x19ec49(0x214),'checkList':_0x19ec49(0x1b4),'quote':'Citazione','code':_0x19ec49(0x1c9),'callout':_0x19ec49(0x14b)}},'fill':{'title':'Riempimento','noFill':_0x19ec49(0x19b),'solidFill':'Riempimento\x20solido','gradientFill':_0x19ec49(0x1cd),'pictureFill':_0x19ec49(0x1e6),'patternFill':_0x19ec49(0x1d6),'color':_0x19ec49(0x1f1),'transparency':'Trasparenza','picture':{'source':_0x19ec49(0x1ff),'insert':_0x19ec49(0x16e),'tileAsTexture':_0x19ec49(0x22a),'offsetX':_0x19ec49(0x16c),'offsetY':'Offset\x20Y','scaleX':'Scala\x20X','scaleY':_0x19ec49(0x1a8),'alignment':'Allineamento','rotateWithShape':_0x19ec49(0x215),'align':{'tl':_0x19ec49(0x1e4),'t':_0x19ec49(0x1ab),'tr':'In\x20alto\x20a\x20destra','l':'Sinistra','ctr':'Centro','r':_0x19ec49(0x209),'bl':'In\x20basso\x20a\x20sinistra','b':_0x19ec49(0x1b5),'br':_0x19ec49(0x20f)}}},'line':{'title':_0x19ec49(0x148),'noLine':_0x19ec49(0x1f4),'solidLine':'Linea\x20solida','gradientLine':_0x19ec49(0x162),'color':'Colore','transparency':_0x19ec49(0x196),'width':_0x19ec49(0x200),'cornerRadius':'Raggio\x20angolo','dashType':{'title':_0x19ec49(0x146),'solid':_0x19ec49(0x1d9),'roundDot':_0x19ec49(0x1a4),'squareDot':_0x19ec49(0x207),'dash':_0x19ec49(0x1dd),'dashDot':_0x19ec49(0x189),'longDash':_0x19ec49(0x20d),'longDashDot':_0x19ec49(0x210),'longDashDotDot':_0x19ec49(0x1dc)},'capType':{'title':'Tipo\x20estremità','flat':_0x19ec49(0x1f3),'round':'Arrotondata','square':_0x19ec49(0x1c6)},'joinType':{'title':_0x19ec49(0x14c),'miter':_0x19ec49(0x16b),'round':'Arrotondata','bevel':'Smussata'},'beginArrowType':_0x19ec49(0x167),'beginArrowSize':_0x19ec49(0x15c),'endArrowType':_0x19ec49(0x14f),'endArrowSize':_0x19ec49(0x1a1),'arrowType':{'none':_0x19ec49(0x1e8),'arrow':_0x19ec49(0x1b2),'openArrow':_0x19ec49(0x205),'stealthArrow':_0x19ec49(0x1e9),'diamondArrow':_0x19ec49(0x198),'ovalArrow':_0x19ec49(0x176)},'arrowSize':{'small':_0x19ec49(0x164),'medium':'Media','large':_0x19ec49(0x15f)},'sketchType':{'title':_0x19ec49(0x1e1),'none':_0x19ec49(0x1e8),'curved':_0x19ec49(0x143),'freehand':'A\x20mano\x20libera','handDrawn':'Disegnato\x20a\x20mano'}},'shape':{'group':{'line':'Linee','rectangle':_0x19ec49(0x18c),'basicShape':'Forme\x20di\x20base','blockArrow':'Frecce\x20a\x20blocco','equationShape':'Forme\x20equazione','flowchart':'Diagramma\x20di\x20flusso','starAndBanner':_0x19ec49(0x172),'callout':'Didascalie','other':_0x19ec49(0x1ef)},'type':{'line':'Linea','straight-connector1':_0x19ec49(0x1c8),'straight-connector2':_0x19ec49(0x1db),'bent-connector3':_0x19ec49(0x186),'bent-connector3-arrow1':_0x19ec49(0x1da),'bent-connector3-arrow2':'Connettore\x20a\x20gomito\x20doppia\x20freccia','curved-connector3':_0x19ec49(0x151),'curved-connector3-arrow1':_0x19ec49(0x18f),'curved-connector3-arrow2':'Connettore\x20curvo\x20doppia\x20freccia','rect':_0x19ec49(0x14e),'round-rect':'Rettangolo\x20arrotondato','snip1-rect':_0x19ec49(0x179),'snip2-same-rect':_0x19ec49(0x1fe),'snip2-diag-rect':_0x19ec49(0x181),'snip-round-rect':'Rettangolo\x20con\x20angolo\x20tagliato\x20e\x20arrotondato','round1-rect':_0x19ec49(0x1b0),'round2-same-rect':'Rettangolo\x20con\x20angoli\x20arrotondati\x20sullo\x20stesso\x20lato','round2-diag-rect':'Rettangolo\x20con\x20angoli\x20arrotondati\x20in\x20diagonale','rect-textbox-horizontal':_0x19ec49(0x1d8),'rect-textbox-vertical':_0x19ec49(0x1d4),'ellipse':_0x19ec49(0x1d7),'triangle':'Triangolo\x20isoscele','rt-triangle':_0x19ec49(0x175),'parallelogram':'Parallelogramma','trapezoid':_0x19ec49(0x140),'non-isosceles-trapezoid':_0x19ec49(0x1bd),'diamond':'Diamante','pentagon':_0x19ec49(0x1b1),'hexagon':_0x19ec49(0x16f),'heptagon':_0x19ec49(0x17c),'octagon':_0x19ec49(0x21f),'decagon':_0x19ec49(0x170),'dodecagon':_0x19ec49(0x178),'pie':_0x19ec49(0x20e),'chord':_0x19ec49(0x220),'teardrop':_0x19ec49(0x15e),'frame':_0x19ec49(0x217),'half-frame':_0x19ec49(0x226),'corner':_0x19ec49(0x183),'diag-stripe':'Striscia\x20diagonale','plus':'Croce','plaque':'Placca','can':'Cilindro','cube':_0x19ec49(0x19c),'bevel':_0x19ec49(0x1cc),'donut':_0x19ec49(0x206),'no-smoking':_0x19ec49(0x1d5),'block-arc':_0x19ec49(0x1d3),'folder-corner':'Angolo\x20piegato','smiley-face':_0x19ec49(0x147),'heart':_0x19ec49(0x187),'lightning-bolt':_0x19ec49(0x153),'sun':_0x19ec49(0x145),'moon':_0x19ec49(0x1ce),'cloud':_0x19ec49(0x1b7),'arc':_0x19ec49(0x190),'bracket-pair':'Doppia\x20parentesi\x20quadra','brace-pair':_0x19ec49(0x203),'left-bracket':_0x19ec49(0x20b),'right-bracket':_0x19ec49(0x1ac),'left-brace':_0x19ec49(0x224),'right-brace':_0x19ec49(0x193),'right-arrow':'Freccia\x20destra','left-arrow':'Freccia\x20sinistra','up-arrow':_0x19ec49(0x142),'down-arrow':_0x19ec49(0x21e),'left-right-arrow':_0x19ec49(0x1be),'up-down-arrow':_0x19ec49(0x1a6),'quad-arrow':'Freccia\x20quadrupla','left-right-up-arrow':_0x19ec49(0x199),'bent-arrow':_0x19ec49(0x1a9),'uturn-arrow':_0x19ec49(0x1b9),'left-up-arrow':_0x19ec49(0x222),'bent-up-arrow':_0x19ec49(0x1d1),'curved-right-arrow':_0x19ec49(0x194),'curved-left-arrow':'Freccia\x20curva\x20sinistra','curved-up-arrow':'Freccia\x20curva\x20su','curved-down-arrow':_0x19ec49(0x1bf),'striped-right-arrow':'Freccia\x20a\x20strisce\x20destra','notched-right-arrow':_0x19ec49(0x1cf),'home-plate':_0x19ec49(0x1b1),'chevron':_0x19ec49(0x16a),'right-arrow-callout':_0x19ec49(0x192),'down-arrow-callout':_0x19ec49(0x221),'left-arrow-callout':_0x19ec49(0x15a),'up-arrow-callout':'Didascalia\x20freccia\x20su','left-right-arrow-callout':_0x19ec49(0x1ed),'quad-arrow-callout':'Didascalia\x20freccia\x20quadrupla','circular-arrow':_0x19ec49(0x17d),'math-plus':_0x19ec49(0x15b),'math-minus':_0x19ec49(0x216),'math-multiply':'Per','math-divide':_0x19ec49(0x177),'math-equal':_0x19ec49(0x20c),'math-not-equal':_0x19ec49(0x1a2),'flow-chart-process':_0x19ec49(0x150),'flow-chart-alternate-process':_0x19ec49(0x21c),'flow-chart-decision':'Decisione','flow-chart-input-output':_0x19ec49(0x1ba),'flow-chart-predefined-process':_0x19ec49(0x165),'flow-chart-internal-storage':'Memoria\x20interna','flow-chart-document':_0x19ec49(0x171),'flow-chart-multidocument':_0x19ec49(0x197),'flow-chart-terminator':_0x19ec49(0x225),'flow-chart-preparation':_0x19ec49(0x227),'flow-chart-manual-input':_0x19ec49(0x184),'flow-chart-manual-operation':_0x19ec49(0x1b6),'flow-chart-connector':_0x19ec49(0x204),'flow-chart-offpage-connector':_0x19ec49(0x1d2),'flow-chart-punched-card':_0x19ec49(0x202),'flow-chart-punched-tape':_0x19ec49(0x1c1),'flow-chart-summing-junction':_0x19ec49(0x1bc),'flow-chart-or':'O','flow-chart-collate':_0x19ec49(0x18a),'flow-chart-sort':_0x19ec49(0x1a0),'flow-chart-extract':_0x19ec49(0x1e0),'flow-chart-merge':_0x19ec49(0x174),'flow-chart-online-storage':_0x19ec49(0x1cb),'flow-chart-delay':_0x19ec49(0x188),'flow-chart-magnetic-tape':_0x19ec49(0x1bb),'flow-chart-magnetic-disk':_0x19ec49(0x149),'flow-chart-magnetic-drum':'Memoria\x20ad\x20accesso\x20diretto','flow-chart-display':_0x19ec49(0x1d0),'irregular-seal1':_0x19ec49(0x1e3),'irregular-seal2':'Esplosione\x202','star4':_0x19ec49(0x1df),'star5':'Stella\x20a\x205\x20punte','star6':_0x19ec49(0x22b),'star7':_0x19ec49(0x169),'star8':'Stella\x20a\x208\x20punte','star10':_0x19ec49(0x1f2),'star12':'Stella\x20a\x2012\x20punte','star16':_0x19ec49(0x1f5),'star24':_0x19ec49(0x19d),'star32':_0x19ec49(0x160),'ribbon2':'Nastro\x20su','ribbon':_0x19ec49(0x154),'ellipse-ribbon2':_0x19ec49(0x19f),'ellipse-ribbon':_0x19ec49(0x1c2),'vertical-scroll':_0x19ec49(0x156),'horizontal-scroll':_0x19ec49(0x141),'wave':_0x19ec49(0x182),'double-wave':_0x19ec49(0x1c4),'wedge-rect-callout':_0x19ec49(0x161),'wedge-round-rect-callout':'Didascalia\x20rettangolare\x20arrotondata','wedge-ellipse-callout':'Didascalia\x20ovale','cloud-callout':_0x19ec49(0x228),'border-callout1':_0x19ec49(0x1de),'border-callout2':_0x19ec49(0x14d),'border-callout3':'Didascalia\x20linea\x203','accent-callout1':_0x19ec49(0x223),'accent-callout2':_0x19ec49(0x1fb),'accent-callout3':'Didascalia\x20accento\x203','callout1':'Didascalia\x201','callout2':'Didascalia\x202','callout3':'Didascalia\x203','accent-border-callout1':_0x19ec49(0x1e5),'accent-border-callout2':'Didascalia\x20bordo\x20accento\x202','accent-border-callout3':'Didascalia\x20bordo\x20accento\x203','left-circular-arrow':_0x19ec49(0x1a5),'left-right-circular-arrow':_0x19ec49(0x1af),'swoosh-arrow':_0x19ec49(0x1b8),'left-right-ribbon':_0x19ec49(0x159),'pie-wedge':_0x19ec49(0x1ca),'funnel':'Imbuto','gear6':_0x19ec49(0x1ad),'gear9':_0x19ec49(0x18e),'corner-tabs':_0x19ec49(0x1f7),'action-button-back-previous':_0x19ec49(0x1fd),'action-button-forward-next':'Pulsante\x20azione:\x20avanti\x20o\x20successivo','action-button-beginning':'Pulsante\x20azione:\x20inizio','action-button-end':_0x19ec49(0x17f),'action-button-home':_0x19ec49(0x219),'action-button-information':_0x19ec49(0x208),'action-button-return':_0x19ec49(0x21d),'action-button-movie':'Pulsante\x20azione:\x20filmato','action-button-document':_0x19ec49(0x218),'action-button-sound':'Pulsante\x20azione:\x20suono','action-button-help':_0x19ec49(0x144),'action-button-blank':_0x19ec49(0x1f8),'chart-plus':'Grafico\x20più','chart-star':_0x19ec49(0x1c0),'chart-x':_0x19ec49(0x195),'flow-chart-offline-storage':'Memoria\x20offline','line-inv':_0x19ec49(0x18b),'plaque-tabs':_0x19ec49(0x1f9),'square-tabs':_0x19ec49(0x1e7),'up-down-arrow-callout':'Didascalia\x20freccia\x20su-giù'}},'toolbar':{'expandShapeToolbar':_0x19ec49(0x152),'collapseShapeToolbar':_0x19ec49(0x1ae),'alignLeft':_0x19ec49(0x212),'alignCenter':_0x19ec49(0x19e),'alignRight':'Allinea\x20a\x20Destra','alignJustify':_0x19ec49(0x17b),'bold':_0x19ec49(0x211),'italic':_0x19ec49(0x14a),'underline':_0x19ec49(0x191),'strikethrough':_0x19ec49(0x1c3),'subscript':_0x19ec49(0x163),'superscript':'Apice','textColor':'Colore\x20testo','textBackgroundColor':'Colore\x20sfondo\x20testo','fillColor':_0x19ec49(0x157),'resetColor':'Reimposta\x20colore','typography':_0x19ec49(0x1fa)},'align':{'top':_0x19ec49(0x229),'middle':_0x19ec49(0x18d),'bottom':_0x19ec49(0x155)},'textWrap':{'inline':'In\x20linea\x20con\x20il\x20testo','square':'Quadrato','topAndBottom':'Superiore\x20e\x20inferiore','behindText':_0x19ec49(0x1a3),'inFrontText':_0x19ec49(0x1f6)},'crop':{'shape':_0x19ec49(0x168)}}};}));function _0x3039(){var _0x4f035a=['Rettangolo','Tipo\x20freccia\x20finale','Processo','Connettore\x20curvo','Espandi\x20barra\x20strumenti\x20forma','Fulmine','Nastro\x20giù','Allinea\x20in\x20basso','Pergamena\x20verticale','Colore\x20sfondo\x20testo','Intestazione\x205','Nastro\x20sinistra-destra','Didascalia\x20freccia\x20sinistra','Più','Dimensione\x20freccia\x20iniziale','object','Lacrima','Grande','Stella\x20a\x2032\x20punte','Didascalia\x20rettangolare','Linea\x20gradiente','Pedice','Piccola','Processo\x20predefinito','3Zeirxs','Tipo\x20freccia\x20iniziale','Ritaglia\x20a\x20forma','Stella\x20a\x207\x20punte','Chevron','A\x20mitra','Offset\x20X','Stile\x20forma','Inserisci...','Esagono','Decagono','Documento','Stelle\x20e\x20banner','Inserisci\x20forma','Unisci','Triangolo\x20rettangolo','Freccia\x20ovale','Diviso','Dodecagono','Rettangolo\x20con\x20un\x20angolo\x20tagliato','Attiva/disattiva\x20capovolgimento\x20verticale','Giustifica','Ettagono','Freccia\x20circolare','262dJxTTo','Pulsante\x20azione:\x20fine','Elenco\x20ordinato','Rettangolo\x20con\x20angoli\x20tagliati\x20in\x20diagonale','Onda','Forma\x20a\x20L','Ingresso\x20manuale','UniverProShapeEditorUiItIT','Connettore\x20a\x20gomito','Cuore','Ritardo','Tratto-punto','Raggruppa','Linea\x20inversa','Rettangoli','Allinea\x20al\x20centro','Ingranaggio\x209','Connettore\x20curvo\x20freccia','Arco','Sottolineato','Didascalia\x20freccia\x20destra','Parentesi\x20graffa\x20destra','Freccia\x20curva\x20destra','Grafico\x20X','Trasparenza','Multidocumento','Freccia\x20diamante','Freccia\x20sinistra-destra-su','140315wYvGtY','Nessun\x20riempimento','Cubo','Stella\x20a\x2024\x20punte','Allinea\x20al\x20Centro','Nastro\x20curvo\x20su','Ordina','Dimensione\x20freccia\x20finale','Diverso','Dietro\x20il\x20testo','Punto\x20rotondo','Freccia\x20circolare\x20sinistra','Freccia\x20su-giù','amd','Scala\x20Y','Freccia\x20piegata','Posizione\x20forma','In\x20alto','Parentesi\x20quadra\x20destra','Ingranaggio\x206','Comprimi\x20barra\x20strumenti\x20forma','Freccia\x20circolare\x20sinistra-destra','Rettangolo\x20con\x20un\x20angolo\x20arrotondato','Pentagono','Freccia','Formato\x20forma','Elenco\x20attività','In\x20basso','Operazione\x20manuale','Nuvola','Freccia\x20swoosh','Freccia\x20a\x20U','Dati','Memoria\x20ad\x20accesso\x20sequenziale','Nodo\x20di\x20somma','Trapezio\x20scaleno','Freccia\x20sinistra-destra','Freccia\x20curva\x20giù','Grafico\x20stella','Nastro\x20perforato','Nastro\x20curvo\x20giù','Barrato','Doppia\x20onda','Intestazione\x201','Quadrata','13352526axLJzU','Freccia\x20linea','Blocco\x20di\x20codice','Spicchio\x20torta','Dati\x20memorizzati','Smusso','Riempimento\x20gradiente','Luna','Freccia\x20dentellata\x20destra','Display','Freccia\x20piegata\x20su','Connettore\x20fuori\x20pagina','Arco\x20a\x20blocchi','Casella\x20di\x20testo\x20verticale','Vietato\x20fumare','Riempimento\x20motivo','Ovale','Casella\x20di\x20testo\x20orizzontale','Continua','Connettore\x20a\x20gomito\x20freccia','Linea\x20doppia\x20freccia','Tratto\x20lungo-punto-punto','Tratteggiata','Didascalia\x20linea\x201','Stella\x20a\x204\x20punte','Estrai','Stile\x20schizzo','Intestazione\x204','Esplosione\x201','In\x20alto\x20a\x20sinistra','Didascalia\x20bordo\x20accento\x201','Riempimento\x20immagine\x20o\x20texture','Schede\x20quadrate','Nessuno','Freccia\x20stealth','Forma','Ruota\x20a\x20destra\x2090°','exports','Didascalia\x20freccia\x20sinistra-destra','11016396MQwIVD','Altri','Elimina\x20forma','Colore','Stella\x20a\x2010\x20punte','Piana','Nessuna\x20linea','Stella\x20a\x2016\x20punte','Davanti\x20al\x20testo','Schede\x20ad\x20angolo','Pulsante\x20azione:\x20vuoto','Schede\x20placca','Tipografia','Didascalia\x20accento\x202','152vAKOrj','Pulsante\x20azione:\x20indietro\x20o\x20precedente','Rettangolo\x20con\x20angoli\x20tagliati\x20sullo\x20stesso\x20lato','Fonte\x20immagine','Larghezza','6903536uqfEIS','Scheda','Doppia\x20parentesi\x20graffa','Connettore','Freccia\x20aperta','Anello','Punto\x20quadrato','Pulsante\x20azione:\x20informazione','Destra','485IBZUJo','Parentesi\x20quadra\x20sinistra','Uguale','Tratto\x20lungo','Torta','In\x20basso\x20a\x20destra','Tratto\x20lungo-punto','Grassetto','Allinea\x20a\x20Sinistra','34962OdNCIP','Elenco\x20puntato','Ruota\x20con\x20forma','Meno','Cornice','Pulsante\x20azione:\x20documento','Pulsante\x20azione:\x20home','Apri\x20pannello\x20forma','3754010rKdaUZ','Processo\x20alternativo','Pulsante\x20azione:\x20ritorna','Freccia\x20giù','Ottagono','Corda','Didascalia\x20freccia\x20giù','Freccia\x20sinistra-su','Didascalia\x20accento\x201','Parentesi\x20graffa\x20sinistra','Terminatore','Mezza\x20cornice','Preparazione','Didascalia\x20nuvola','Allinea\x20in\x20alto','Affianca\x20immagine\x20come\x20texture','Stella\x20a\x206\x20punte','1521BVhuXy','Trapezio','Pergamena\x20orizzontale','Freccia\x20su','Curvato','Pulsante\x20azione:\x20aiuto','Sole','Tipo\x20tratteggio','Faccina\x20sorridente','Linea','Disco\x20magnetico','Corsivo','Riquadro\x20evidenziato','Tipo\x20giunzione','Didascalia\x20linea\x202'];_0x3039=function(){return _0x4f035a;};return _0x3039();}
|
package/lib/umd/locale/ja-JP.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(_0x37e798,_0x96e434){var _0x2ab0c0=_0x9e52,_0x29c555=_0x37e798();while(!![]){try{var _0x4b0c77=parseInt(_0x2ab0c0(0x146))/0x1+parseInt(_0x2ab0c0(0x15e))/0x2+-parseInt(_0x2ab0c0(0x119))/0x3*(parseInt(_0x2ab0c0(0xbf))/0x4)+parseInt(_0x2ab0c0(0xf3))/0x5*(-parseInt(_0x2ab0c0(0xc0))/0x6)+parseInt(_0x2ab0c0(0xac))/0x7+-parseInt(_0x2ab0c0(0x15a))/0x8*(parseInt(_0x2ab0c0(0x10d))/0x9)+parseInt(_0x2ab0c0(0xaa))/0xa*(parseInt(_0x2ab0c0(0xd0))/0xb);if(_0x4b0c77===_0x96e434)break;else _0x29c555['push'](_0x29c555['shift']());}catch(_0xf5d715){_0x29c555['push'](_0x29c555['shift']());}}}(_0x5764,0x3a033),function(_0x28de22,_0x4baa83){var _0x37b10d=_0x9e52;typeof exports==_0x37b10d(0xa0)&&typeof module<'u'?module[_0x37b10d(0x12f)]=_0x4baa83():typeof define==_0x37b10d(0xd6)&&define[_0x37b10d(0x151)]?define([],_0x4baa83):(_0x28de22=typeof globalThis<'u'?globalThis:_0x28de22||self,_0x28de22[_0x37b10d(0x9d)]=_0x4baa83());}(this,function(){var _0x4424ed=_0x9e52;return{'shape-editor-ui':{'title':'図形','insertShape':_0x4424ed(0x155),'openPanel':_0x4424ed(0x120),'deleteShape':_0x4424ed(0x12d),'hidePanel':_0x4424ed(0x14f),'formatShape':_0x4424ed(0xf1),'shapeStyle':_0x4424ed(0x9a),'shapePosition':'図形の位置','toggleFlipH':_0x4424ed(0x11d),'toggleFlipV':_0x4424ed(0x121),'rotateRight90':_0x4424ed(0xe7),'rotateLeft90':_0x4424ed(0x13b),'toggleTextVertical':_0x4424ed(0x115),'textEditor':{'paragraphType':{'normal':'標準','heading1':'見出し\x201','heading2':'見出し\x202','heading3':_0x4424ed(0xf0),'heading4':_0x4424ed(0xff),'heading5':_0x4424ed(0xcc),'orderedList':'番号付きリスト','bulletList':_0x4424ed(0xf4),'checkList':_0x4424ed(0x14c),'quote':'引用','code':_0x4424ed(0xaf),'callout':_0x4424ed(0xf8)}},'fill':{'title':'塗りつぶし','noFill':_0x4424ed(0xf6),'solidFill':_0x4424ed(0x126),'gradientFill':_0x4424ed(0xc6),'pictureFill':_0x4424ed(0x11a),'patternFill':_0x4424ed(0xb6),'color':'色','transparency':_0x4424ed(0x14d),'picture':{'source':_0x4424ed(0x139),'insert':_0x4424ed(0x150),'tileAsTexture':_0x4424ed(0x133),'offsetX':_0x4424ed(0x156),'offsetY':_0x4424ed(0x143),'scaleX':'倍率\x20X','scaleY':_0x4424ed(0xa6),'alignment':'配置','rotateWithShape':'図形と一緒に回転','align':{'tl':'左上','t':'上','tr':'右上','l':'左','ctr':'中央','r':'右','bl':'左下','b':'下','br':'右下'}}},'line':{'title':'線','noLine':'線なし','solidLine':'実線','gradientLine':_0x4424ed(0xa3),'color':'色','transparency':_0x4424ed(0x14d),'width':'幅','cornerRadius':'角丸半径','dashType':{'title':_0x4424ed(0xe2),'solid':'実線','roundDot':'丸点','squareDot':_0x4424ed(0xad),'dash':'破線','dashDot':_0x4424ed(0xf9),'longDash':'長破線','longDashDot':_0x4424ed(0xbb),'longDashDotDot':'長二点鎖線'},'capType':{'title':_0x4424ed(0x105),'flat':_0x4424ed(0x125),'round':'丸','square':'四角'},'joinType':{'title':_0x4424ed(0xc9),'miter':_0x4424ed(0xec),'round':_0x4424ed(0xb4),'bevel':_0x4424ed(0xed)},'beginArrowType':_0x4424ed(0x113),'beginArrowSize':'始点矢印のサイズ','endArrowType':'終点矢印の種類','endArrowSize':_0x4424ed(0xeb),'arrowType':{'none':'なし','arrow':'矢印','openArrow':_0x4424ed(0xae),'stealthArrow':_0x4424ed(0x124),'diamondArrow':_0x4424ed(0x134),'ovalArrow':_0x4424ed(0x163)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x4424ed(0xca),'none':'なし','curved':'曲線','freehand':_0x4424ed(0x132),'handDrawn':_0x4424ed(0x141)}},'shape':{'group':{'line':'線','rectangle':_0x4424ed(0xb9),'basicShape':'基本図形','blockArrow':_0x4424ed(0xfb),'equationShape':'数式図形','flowchart':_0x4424ed(0x15b),'starAndBanner':_0x4424ed(0x10b),'callout':_0x4424ed(0xfe),'other':_0x4424ed(0xce)},'type':{'line':'直線','straight-connector1':'矢印','straight-connector2':_0x4424ed(0x131),'bent-connector3':'カギ線コネクタ','bent-connector3-arrow1':_0x4424ed(0x102),'bent-connector3-arrow2':_0x4424ed(0x138),'curved-connector3':_0x4424ed(0x110),'curved-connector3-arrow1':_0x4424ed(0xef),'curved-connector3-arrow2':_0x4424ed(0xa8),'rect':_0x4424ed(0xb9),'round-rect':'角丸四角形','snip1-rect':_0x4424ed(0x9c),'snip2-same-rect':_0x4424ed(0x111),'snip2-diag-rect':_0x4424ed(0xd1),'snip-round-rect':_0x4424ed(0x135),'round1-rect':_0x4424ed(0xda),'round2-same-rect':_0x4424ed(0x15c),'round2-diag-rect':_0x4424ed(0x10a),'rect-textbox-horizontal':_0x4424ed(0xbd),'rect-textbox-vertical':'縦書きテキストボックス','ellipse':'楕円','triangle':_0x4424ed(0x12c),'rt-triangle':_0x4424ed(0x160),'parallelogram':_0x4424ed(0xe5),'trapezoid':'台形','non-isosceles-trapezoid':_0x4424ed(0x107),'diamond':_0x4424ed(0xee),'pentagon':_0x4424ed(0x164),'hexagon':_0x4424ed(0xd8),'heptagon':'七角形','octagon':_0x4424ed(0xb1),'decagon':_0x4424ed(0xe3),'dodecagon':_0x4424ed(0x130),'pie':'円形','chord':'弦','teardrop':'涙形','frame':'額縁','half-frame':_0x4424ed(0xfd),'corner':'L字','diag-stripe':_0x4424ed(0x128),'plus':'十字','plaque':_0x4424ed(0xde),'can':'円柱','cube':_0x4424ed(0xba),'bevel':_0x4424ed(0x12e),'donut':_0x4424ed(0x14e),'no-smoking':'禁止マーク','block-arc':'アーチ','folder-corner':'折り返し','smiley-face':_0x4424ed(0xb3),'heart':_0x4424ed(0xfa),'lightning-bolt':'稲妻','sun':'太陽','moon':'月','cloud':'雲','arc':'円弧','bracket-pair':_0x4424ed(0xe9),'brace-pair':_0x4424ed(0x123),'left-bracket':_0x4424ed(0x127),'right-bracket':_0x4424ed(0x10e),'left-brace':_0x4424ed(0x11e),'right-brace':'右中括弧','right-arrow':_0x4424ed(0x11f),'left-arrow':'左矢印','up-arrow':_0x4424ed(0xd9),'down-arrow':_0x4424ed(0x14b),'left-right-arrow':'左右矢印','up-down-arrow':_0x4424ed(0x13a),'quad-arrow':_0x4424ed(0xe4),'left-right-up-arrow':_0x4424ed(0xa7),'bent-arrow':'屈折矢印','uturn-arrow':_0x4424ed(0x10f),'left-up-arrow':_0x4424ed(0x161),'bent-up-arrow':_0x4424ed(0x117),'curved-right-arrow':_0x4424ed(0xdc),'curved-left-arrow':_0x4424ed(0xbe),'curved-up-arrow':'上カーブ矢印','curved-down-arrow':_0x4424ed(0xdd),'striped-right-arrow':_0x4424ed(0x13c),'notched-right-arrow':_0x4424ed(0xdb),'home-plate':_0x4424ed(0x116),'chevron':'山形','right-arrow-callout':_0x4424ed(0x9e),'down-arrow-callout':_0x4424ed(0x15d),'left-arrow-callout':_0x4424ed(0x11c),'up-arrow-callout':'上矢印吹き出し','left-right-arrow-callout':_0x4424ed(0x100),'quad-arrow-callout':_0x4424ed(0xdf),'circular-arrow':_0x4424ed(0xf5),'math-plus':_0x4424ed(0x112),'math-minus':_0x4424ed(0x14a),'math-multiply':_0x4424ed(0x145),'math-divide':'割る','math-equal':_0x4424ed(0x147),'math-not-equal':_0x4424ed(0x12a),'flow-chart-process':'処理','flow-chart-alternate-process':_0x4424ed(0xc5),'flow-chart-decision':'判断','flow-chart-input-output':'入出力','flow-chart-predefined-process':_0x4424ed(0xb2),'flow-chart-internal-storage':'内部記憶','flow-chart-document':'書類','flow-chart-multidocument':'複数書類','flow-chart-terminator':'端子','flow-chart-preparation':'準備','flow-chart-manual-input':_0x4424ed(0xc8),'flow-chart-manual-operation':_0x4424ed(0x149),'flow-chart-connector':'結合子','flow-chart-offpage-connector':_0x4424ed(0x109),'flow-chart-punched-card':'穿孔カード','flow-chart-punched-tape':_0x4424ed(0xc2),'flow-chart-summing-junction':'和','flow-chart-or':_0x4424ed(0xa1),'flow-chart-collate':'照合','flow-chart-sort':'並べ替え','flow-chart-extract':'抽出','flow-chart-merge':'結合','flow-chart-online-storage':_0x4424ed(0x140),'flow-chart-delay':'遅延','flow-chart-magnetic-tape':_0x4424ed(0xb7),'flow-chart-magnetic-disk':'磁気ディスク','flow-chart-magnetic-drum':'磁気ドラム','flow-chart-display':'表示','irregular-seal1':_0x4424ed(0xd3),'irregular-seal2':_0x4424ed(0x154),'star4':'星4','star5':'星5','star6':'星6','star7':'星7','star8':'星8','star10':_0x4424ed(0x12b),'star12':_0x4424ed(0xe0),'star16':_0x4424ed(0x158),'star24':_0x4424ed(0x10c),'star32':'星32','ribbon2':_0x4424ed(0x137),'ribbon':_0x4424ed(0x157),'ellipse-ribbon2':'リボン(上カーブ)','ellipse-ribbon':_0x4424ed(0xb8),'vertical-scroll':_0x4424ed(0xcb),'horizontal-scroll':_0x4424ed(0xa4),'wave':'波','double-wave':'二重波','wedge-rect-callout':_0x4424ed(0xb5),'wedge-round-rect-callout':_0x4424ed(0xe6),'wedge-ellipse-callout':_0x4424ed(0x104),'cloud-callout':_0x4424ed(0x13e),'border-callout1':_0x4424ed(0x159),'border-callout2':'線吹き出し2','border-callout3':_0x4424ed(0x148),'accent-callout1':_0x4424ed(0x9f),'accent-callout2':_0x4424ed(0x136),'accent-callout3':'強調線吹き出し3','callout1':'吹き出し1','callout2':_0x4424ed(0x13d),'callout3':_0x4424ed(0xb0),'accent-border-callout1':_0x4424ed(0xea),'accent-border-callout2':'強調線付き吹き出し2','accent-border-callout3':_0x4424ed(0xe8),'left-circular-arrow':'左環状矢印','left-right-circular-arrow':_0x4424ed(0x103),'swoosh-arrow':'スウッシュ矢印','left-right-ribbon':_0x4424ed(0x9b),'pie-wedge':'扇形','funnel':_0x4424ed(0x144),'gear6':_0x4424ed(0xe1),'gear9':_0x4424ed(0x114),'corner-tabs':_0x4424ed(0x118),'action-button-back-previous':_0x4424ed(0xd2),'action-button-forward-next':'動作設定ボタン:\x20進む/次へ','action-button-beginning':_0x4424ed(0xd5),'action-button-end':'動作設定ボタン:\x20最後','action-button-home':_0x4424ed(0x15f),'action-button-information':_0x4424ed(0xd7),'action-button-return':_0x4424ed(0xf2),'action-button-movie':_0x4424ed(0x142),'action-button-document':_0x4424ed(0x13f),'action-button-sound':_0x4424ed(0xd4),'action-button-help':_0x4424ed(0xc1),'action-button-blank':'動作設定ボタン:\x20空白','chart-plus':_0x4424ed(0xa9),'chart-star':_0x4424ed(0x108),'chart-x':_0x4424ed(0xcd),'flow-chart-offline-storage':_0x4424ed(0x106),'line-inv':'直線(逆)','plaque-tabs':_0x4424ed(0xcf),'square-tabs':_0x4424ed(0x122),'up-down-arrow-callout':_0x4424ed(0x101)}},'toolbar':{'expandShapeToolbar':_0x4424ed(0xf7),'collapseShapeToolbar':'図形ツールバーを折りたたむ','alignLeft':_0x4424ed(0x129),'alignCenter':'中央揃え','alignRight':_0x4424ed(0xa2),'alignJustify':_0x4424ed(0xbc),'bold':'太字','italic':'斜体','underline':'下線','strikethrough':_0x4424ed(0x152),'subscript':_0x4424ed(0xc4),'superscript':_0x4424ed(0x11b),'textColor':'文字の色','textBackgroundColor':_0x4424ed(0x162),'fillColor':'塗りつぶしの色','resetColor':'Reset\x20color'},'align':{'top':_0x4424ed(0xab),'middle':_0x4424ed(0x153),'bottom':_0x4424ed(0xc3)},'textWrap':{'inline':'行内','square':_0x4424ed(0xb9),'topAndBottom':'上下','behindText':_0x4424ed(0xc7),'inFrontText':_0x4424ed(0xa5)},'crop':{'shape':_0x4424ed(0xfc)}}};}));function _0x9e52(_0x439040,_0x2c50fa){_0x439040=_0x439040-0x9a;var _0x57649a=_0x5764();var _0x9e525e=_0x57649a[_0x439040];return _0x9e525e;}function _0x5764(){var _0x1c9bbd=['面取り','exports','十二角形','双方向矢印','フリーハンド','画像をテクスチャとして並べる','ダイヤモンド矢印','1つの角を丸め、1つの角を切り取った四角形','強調線吹き出し2','リボン(上)','双方向カギ線コネクタ','画像ソース','上下矢印','反時計回りに\x2090\x20度回転','ストライプ右矢印','吹き出し2','雲形吹き出し','動作設定ボタン:\x20ドキュメント','オンライン記憶','手描き','動作設定ボタン:\x20動画','オフセット\x20Y','じょうご','掛ける','180857yTDYtq','イコール','線吹き出し3','手作業','マイナス','下矢印','チェックリスト','透明度','ドーナツ','図形パネルを非表示','挿入...','amd','取り消し線','中央揃え','爆発2','図形の挿入','オフセット\x20X','リボン(下)','星16','線吹き出し1','1020536dTeRMy','フローチャート','同じ側の2つの角を丸めた四角形','下矢印吹き出し','924476cjxVIO','動作設定ボタン:\x20ホーム','直角三角形','左上矢印','Text\x20Background\x20color','楕円矢印','五角形','図形スタイル','左右リボン','1つの角を切り取った四角形','UniverProShapeEditorUiJaJP','右矢印吹き出し','強調線吹き出し1','object','論理和','右揃え','グラデーション線','巻物(横)','文字列の前面','倍率\x20Y','左右上矢印','双方向曲線コネクタ','グラフ\x20プラス','146770hCzcRQ','上揃え','1306137ckZMqc','四角点','開いた矢印','コードブロック','吹き出し3','八角形','定義済み処理','スマイル','ラウンド','四角形吹き出し','パターン塗りつぶし','磁気テープ','リボン(下カーブ)','四角形','立方体','長一点鎖線','両端揃え','横書きテキストボックス','左カーブ矢印','904052copYGM','6NZLJPj','動作設定ボタン:\x20ヘルプ','穿孔テープ','下揃え','Subscript','代替処理','グラデーション塗りつぶし','文字列の背面','手操作入力','接合の種類','スケッチスタイル','巻物(縦)','見出し\x205','グラフ\x20X','その他','プラーク\x20タブ','209cudEeS','対角の2つの角を切り取った四角形','動作設定ボタン:\x20戻る/前へ','爆発1','動作設定ボタン:\x20サウンド','動作設定ボタン:\x20最初','function','動作設定ボタン:\x20情報','六角形','上矢印','1つの角を丸めた四角形','V字右矢印','右カーブ矢印','下カーブ矢印','プラーク','十字矢印吹き出し','星12','歯車6','実線/点線','十角形','十字矢印','平行四辺形','角丸四角形吹き出し','時計回りに\x2090\x20度回転','強調線付き吹き出し3','大括弧','強調線付き吹き出し1','終点矢印のサイズ','マイター','ベベル','ひし形','曲線矢印コネクタ','見出し\x203','図形の書式設定','動作設定ボタン:\x20戻る','181015aNYFHJ','箇条書き','環状矢印','塗りつぶしなし','図形ツールバーを展開','コールアウト','一点鎖線','ハート','ブロック矢印','形状にトリミング','額縁(半分)','吹き出し','見出し\x204','左右矢印吹き出し','上下矢印吹き出し','カギ線矢印コネクタ','左右環状矢印','円形吹き出し','線端の種類','オフライン記憶','不等辺台形','グラフ\x20星','他ページ結合子','対角の2つの角を丸めた四角形','星とリボン','星24','27KSgNKx','右大括弧','Uターン矢印','曲線コネクタ','同じ側の2つの角を切り取った四角形','プラス','始点矢印の種類','歯車9','テキストの縦書き/横書きの切り替え','ホームベース','屈折上矢印','コーナー\x20タブ','6XHcNEs','図またはテクスチャ塗りつぶし','Superscript','左矢印吹き出し','水平反転の切り替え','左中括弧','右矢印','図形パネルを開く','垂直反転の切り替え','四角形タブ','中括弧','ステルス矢印','フラット','単色塗りつぶし','左大括弧','斜めの縞','左揃え','ノットイコール','星10','二等辺三角形','図形を削除'];_0x5764=function(){return _0x1c9bbd;};return _0x5764();}
|
|
1
|
+
(function(_0x3da2a2,_0x22f1c3){var _0xbe2262=_0xb539,_0x3f53a5=_0x3da2a2();while(!![]){try{var _0x1d2f54=-parseInt(_0xbe2262(0x129))/0x1*(-parseInt(_0xbe2262(0x10b))/0x2)+parseInt(_0xbe2262(0xf9))/0x3+-parseInt(_0xbe2262(0x167))/0x4+parseInt(_0xbe2262(0x17f))/0x5*(parseInt(_0xbe2262(0x12e))/0x6)+-parseInt(_0xbe2262(0x133))/0x7+-parseInt(_0xbe2262(0x176))/0x8+parseInt(_0xbe2262(0x14c))/0x9;if(_0x1d2f54===_0x22f1c3)break;else _0x3f53a5['push'](_0x3f53a5['shift']());}catch(_0x13b978){_0x3f53a5['push'](_0x3f53a5['shift']());}}}(_0x39a5,0xd6a01),function(_0x51e264,_0x5715a5){var _0x5d17ef=_0xb539;typeof exports=='object'&&typeof module<'u'?module[_0x5d17ef(0x157)]=_0x5715a5():typeof define==_0x5d17ef(0x140)&&define[_0x5d17ef(0xce)]?define([],_0x5715a5):(_0x51e264=typeof globalThis<'u'?globalThis:_0x51e264||self,_0x51e264[_0x5d17ef(0xdd)]=_0x5715a5());}(this,function(){var _0x35754b=_0xb539;return{'shape-editor-ui':{'title':'図形','insertShape':_0x35754b(0x152),'openPanel':_0x35754b(0x187),'deleteShape':'図形を削除','hidePanel':_0x35754b(0xff),'formatShape':_0x35754b(0x131),'shapeStyle':_0x35754b(0x185),'shapePosition':_0x35754b(0x13e),'toggleFlipH':_0x35754b(0x12c),'toggleFlipV':'垂直反転の切り替え','rotateRight90':'時計回りに\x2090\x20度回転','rotateLeft90':_0x35754b(0x126),'toggleTextVertical':_0x35754b(0x144),'textEditor':{'placeholder':_0x35754b(0x130),'paragraphType':{'normal':'標準','heading1':_0x35754b(0x15f),'heading2':_0x35754b(0x158),'heading3':_0x35754b(0xdc),'heading4':'見出し\x204','heading5':_0x35754b(0x112),'orderedList':_0x35754b(0x127),'bulletList':_0x35754b(0x15b),'checkList':_0x35754b(0x17e),'quote':'引用','code':'コードブロック','callout':_0x35754b(0x10d)}},'fill':{'title':'塗りつぶし','noFill':_0x35754b(0x186),'solidFill':_0x35754b(0x143),'gradientFill':_0x35754b(0x111),'pictureFill':_0x35754b(0x121),'patternFill':_0x35754b(0xe6),'color':'色','transparency':_0x35754b(0x14b),'picture':{'source':'画像ソース','insert':'挿入...','tileAsTexture':_0x35754b(0x103),'offsetX':_0x35754b(0xe5),'offsetY':'オフセット\x20Y','scaleX':_0x35754b(0xde),'scaleY':_0x35754b(0x170),'alignment':'配置','rotateWithShape':_0x35754b(0x160),'align':{'tl':'左上','t':'上','tr':'右上','l':'左','ctr':'中央','r':'右','bl':'左下','b':'下','br':'右下'}}},'line':{'title':'線','noLine':_0x35754b(0x169),'solidLine':'実線','gradientLine':'グラデーション線','color':'色','transparency':_0x35754b(0x14b),'width':'幅','cornerRadius':_0x35754b(0x10e),'dashType':{'title':_0x35754b(0x120),'solid':'実線','roundDot':'丸点','squareDot':'四角点','dash':'破線','dashDot':_0x35754b(0xf0),'longDash':_0x35754b(0x145),'longDashDot':'長一点鎖線','longDashDotDot':_0x35754b(0xdb)},'capType':{'title':_0x35754b(0xfd),'flat':'フラット','round':'丸','square':'四角'},'joinType':{'title':_0x35754b(0x172),'miter':_0x35754b(0xd8),'round':_0x35754b(0x18d),'bevel':_0x35754b(0x141)},'beginArrowType':_0x35754b(0x10c),'beginArrowSize':_0x35754b(0x159),'endArrowType':_0x35754b(0x16f),'endArrowSize':_0x35754b(0x17b),'arrowType':{'none':'なし','arrow':'矢印','openArrow':_0x35754b(0x105),'stealthArrow':_0x35754b(0x181),'diamondArrow':_0x35754b(0x16e),'ovalArrow':_0x35754b(0xcf)},'arrowSize':{'small':'小','medium':'中','large':'大'},'sketchType':{'title':_0x35754b(0x147),'none':'なし','curved':'曲線','freehand':_0x35754b(0x10f),'handDrawn':_0x35754b(0xe0)}},'shape':{'group':{'line':'線','rectangle':_0x35754b(0xd9),'basicShape':'基本図形','blockArrow':_0x35754b(0x114),'equationShape':_0x35754b(0x104),'flowchart':'フローチャート','starAndBanner':_0x35754b(0xe2),'callout':_0x35754b(0x102),'other':'その他'},'type':{'line':'直線','straight-connector1':'矢印','straight-connector2':'双方向矢印','bent-connector3':'カギ線コネクタ','bent-connector3-arrow1':_0x35754b(0x14f),'bent-connector3-arrow2':_0x35754b(0x148),'curved-connector3':_0x35754b(0x15e),'curved-connector3-arrow1':_0x35754b(0xf1),'curved-connector3-arrow2':_0x35754b(0xd5),'rect':_0x35754b(0xd9),'round-rect':'角丸四角形','snip1-rect':_0x35754b(0x14d),'snip2-same-rect':'同じ側の2つの角を切り取った四角形','snip2-diag-rect':_0x35754b(0xd3),'snip-round-rect':'1つの角を丸め、1つの角を切り取った四角形','round1-rect':_0x35754b(0xf6),'round2-same-rect':'同じ側の2つの角を丸めた四角形','round2-diag-rect':_0x35754b(0x109),'rect-textbox-horizontal':_0x35754b(0x16c),'rect-textbox-vertical':'縦書きテキストボックス','ellipse':'楕円','triangle':_0x35754b(0x106),'rt-triangle':'直角三角形','parallelogram':_0x35754b(0xe8),'trapezoid':'台形','non-isosceles-trapezoid':'不等辺台形','diamond':_0x35754b(0x154),'pentagon':_0x35754b(0x14e),'hexagon':_0x35754b(0x13b),'heptagon':_0x35754b(0x173),'octagon':_0x35754b(0xda),'decagon':_0x35754b(0x116),'dodecagon':'十二角形','pie':'円形','chord':'弦','teardrop':'涙形','frame':'額縁','half-frame':_0x35754b(0x108),'corner':'L字','diag-stripe':_0x35754b(0x149),'plus':'十字','plaque':'プラーク','can':'円柱','cube':_0x35754b(0x100),'bevel':_0x35754b(0x101),'donut':_0x35754b(0x123),'no-smoking':'禁止マーク','block-arc':_0x35754b(0x107),'folder-corner':_0x35754b(0xd0),'smiley-face':_0x35754b(0x162),'heart':_0x35754b(0x15d),'lightning-bolt':'稲妻','sun':'太陽','moon':'月','cloud':'雲','arc':'円弧','bracket-pair':_0x35754b(0x18b),'brace-pair':'中括弧','left-bracket':_0x35754b(0x12b),'right-bracket':_0x35754b(0xee),'left-brace':_0x35754b(0xe1),'right-brace':_0x35754b(0x124),'right-arrow':'右矢印','left-arrow':_0x35754b(0x138),'up-arrow':_0x35754b(0xeb),'down-arrow':_0x35754b(0x165),'left-right-arrow':'左右矢印','up-down-arrow':_0x35754b(0x11e),'quad-arrow':'十字矢印','left-right-up-arrow':_0x35754b(0x16a),'bent-arrow':_0x35754b(0x18e),'uturn-arrow':_0x35754b(0x13c),'left-up-arrow':_0x35754b(0x122),'bent-up-arrow':_0x35754b(0x13a),'curved-right-arrow':_0x35754b(0x11f),'curved-left-arrow':_0x35754b(0x150),'curved-up-arrow':_0x35754b(0xd2),'curved-down-arrow':_0x35754b(0xd6),'striped-right-arrow':'ストライプ右矢印','notched-right-arrow':_0x35754b(0x125),'home-plate':_0x35754b(0x175),'chevron':'山形','right-arrow-callout':_0x35754b(0xea),'down-arrow-callout':_0x35754b(0x168),'left-arrow-callout':_0x35754b(0xe3),'up-arrow-callout':'上矢印吹き出し','left-right-arrow-callout':_0x35754b(0xf3),'quad-arrow-callout':_0x35754b(0x11d),'circular-arrow':_0x35754b(0xf8),'math-plus':'プラス','math-minus':_0x35754b(0x18c),'math-multiply':'掛ける','math-divide':'割る','math-equal':_0x35754b(0x18a),'math-not-equal':'ノットイコール','flow-chart-process':'処理','flow-chart-alternate-process':'代替処理','flow-chart-decision':'判断','flow-chart-input-output':_0x35754b(0x142),'flow-chart-predefined-process':'定義済み処理','flow-chart-internal-storage':_0x35754b(0xfa),'flow-chart-document':'書類','flow-chart-multidocument':'複数書類','flow-chart-terminator':'端子','flow-chart-preparation':'準備','flow-chart-manual-input':_0x35754b(0x110),'flow-chart-manual-operation':_0x35754b(0x171),'flow-chart-connector':_0x35754b(0x156),'flow-chart-offpage-connector':'他ページ結合子','flow-chart-punched-card':_0x35754b(0x12f),'flow-chart-punched-tape':_0x35754b(0x155),'flow-chart-summing-junction':'和','flow-chart-or':_0x35754b(0x151),'flow-chart-collate':'照合','flow-chart-sort':_0x35754b(0x16d),'flow-chart-extract':'抽出','flow-chart-merge':'結合','flow-chart-online-storage':'オンライン記憶','flow-chart-delay':'遅延','flow-chart-magnetic-tape':_0x35754b(0x15c),'flow-chart-magnetic-disk':'磁気ディスク','flow-chart-magnetic-drum':'磁気ドラム','flow-chart-display':'表示','irregular-seal1':_0x35754b(0x11b),'irregular-seal2':_0x35754b(0xf5),'star4':'星4','star5':'星5','star6':'星6','star7':'星7','star8':'星8','star10':_0x35754b(0x163),'star12':_0x35754b(0xd4),'star16':'星16','star24':_0x35754b(0x139),'star32':_0x35754b(0x182),'ribbon2':'リボン(上)','ribbon':_0x35754b(0x12a),'ellipse-ribbon2':_0x35754b(0x11c),'ellipse-ribbon':_0x35754b(0xe4),'vertical-scroll':_0x35754b(0xfb),'horizontal-scroll':_0x35754b(0x174),'wave':'波','double-wave':'二重波','wedge-rect-callout':'四角形吹き出し','wedge-round-rect-callout':_0x35754b(0x189),'wedge-ellipse-callout':'円形吹き出し','cloud-callout':_0x35754b(0x10a),'border-callout1':'線吹き出し1','border-callout2':_0x35754b(0x132),'border-callout3':_0x35754b(0x14a),'accent-callout1':_0x35754b(0x113),'accent-callout2':'強調線吹き出し2','accent-callout3':_0x35754b(0x15a),'callout1':_0x35754b(0x17a),'callout2':_0x35754b(0xf7),'callout3':_0x35754b(0x134),'accent-border-callout1':_0x35754b(0x12d),'accent-border-callout2':'強調線付き吹き出し2','accent-border-callout3':_0x35754b(0x135),'left-circular-arrow':_0x35754b(0xfe),'left-right-circular-arrow':'左右環状矢印','swoosh-arrow':_0x35754b(0x188),'left-right-ribbon':_0x35754b(0xf2),'pie-wedge':'扇形','funnel':_0x35754b(0x153),'gear6':_0x35754b(0x16b),'gear9':_0x35754b(0x119),'corner-tabs':_0x35754b(0x13f),'action-button-back-previous':_0x35754b(0x128),'action-button-forward-next':_0x35754b(0x136),'action-button-beginning':_0x35754b(0x184),'action-button-end':_0x35754b(0x117),'action-button-home':_0x35754b(0xdf),'action-button-information':'動作設定ボタン:\x20情報','action-button-return':'動作設定ボタン:\x20戻る','action-button-movie':_0x35754b(0xec),'action-button-document':_0x35754b(0xe9),'action-button-sound':_0x35754b(0x17d),'action-button-help':_0x35754b(0x137),'action-button-blank':'動作設定ボタン:\x20空白','chart-plus':_0x35754b(0x13d),'chart-star':_0x35754b(0x180),'chart-x':'グラフ\x20X','flow-chart-offline-storage':'オフライン記憶','line-inv':_0x35754b(0x161),'plaque-tabs':'プラーク\x20タブ','square-tabs':_0x35754b(0x177),'up-down-arrow-callout':_0x35754b(0xef)}},'toolbar':{'expandShapeToolbar':_0x35754b(0x166),'collapseShapeToolbar':_0x35754b(0xed),'alignLeft':'左揃え','alignCenter':_0x35754b(0xfc),'alignRight':_0x35754b(0x115),'alignJustify':_0x35754b(0xd7),'bold':'太字','italic':'斜体','underline':'下線','strikethrough':_0x35754b(0x178),'subscript':_0x35754b(0x11a),'superscript':'上付き','textColor':_0x35754b(0x118),'textBackgroundColor':_0x35754b(0x179),'fillColor':_0x35754b(0xe7),'resetColor':_0x35754b(0x183),'typography':'タイポグラフィ'},'align':{'top':_0x35754b(0x146),'middle':'中央揃え','bottom':_0x35754b(0x164)},'textWrap':{'inline':'行内','square':_0x35754b(0xd9),'topAndBottom':'上下','behindText':_0x35754b(0xd1),'inFrontText':_0x35754b(0xf4)},'crop':{'shape':_0x35754b(0x17c)}}};}));function _0xb539(_0x17c0d8,_0x422a96){_0x17c0d8=_0x17c0d8-0xce;var _0x39a529=_0x39a5();var _0xb53967=_0x39a529[_0x17c0d8];return _0xb53967;}function _0x39a5(){var _0xa02f7b=['内部記憶','巻物(縦)','中央揃え','線端の種類','左環状矢印','図形パネルを非表示','立方体','面取り','吹き出し','画像をテクスチャとして並べる','数式図形','開いた矢印','二等辺三角形','アーチ','額縁(半分)','対角の2つの角を丸めた四角形','雲形吹き出し','2lEElod','始点矢印の種類','コールアウト','角丸半径','フリーハンド','手操作入力','グラデーション塗りつぶし','見出し\x205','強調線吹き出し1','ブロック矢印','右揃え','十角形','動作設定ボタン:\x20最後','文字の色','歯車9','下付き','爆発1','リボン(上カーブ)','十字矢印吹き出し','上下矢印','右カーブ矢印','実線/点線','図またはテクスチャ塗りつぶし','左上矢印','ドーナツ','右中括弧','V字右矢印','反時計回りに\x2090\x20度回転','番号付きリスト','動作設定ボタン:\x20戻る/前へ','913743JBQDtv','リボン(下)','左大括弧','水平反転の切り替え','強調線付き吹き出し1','17646conYNd','穿孔カード','テキストを入力','図形の書式設定','線吹き出し2','11283580VVhjNv','吹き出し3','強調線付き吹き出し3','動作設定ボタン:\x20進む/次へ','動作設定ボタン:\x20ヘルプ','左矢印','星24','屈折上矢印','六角形','Uターン矢印','グラフ\x20プラス','図形の位置','コーナー\x20タブ','function','ベベル','入出力','単色塗りつぶし','テキストの縦書き/横書きの切り替え','長破線','上揃え','スケッチスタイル','双方向カギ線コネクタ','斜めの縞','線吹き出し3','透明度','10400067lopFJY','1つの角を切り取った四角形','五角形','カギ線矢印コネクタ','左カーブ矢印','論理和','図形の挿入','じょうご','ひし形','穿孔テープ','結合子','exports','見出し\x202','始点矢印のサイズ','強調線吹き出し3','箇条書き','磁気テープ','ハート','曲線コネクタ','見出し\x201','図形と一緒に回転','直線(逆)','スマイル','星10','下揃え','下矢印','図形ツールバーを展開','2546620CLzxXx','下矢印吹き出し','線なし','左右上矢印','歯車6','横書きテキストボックス','並べ替え','ダイヤモンド矢印','終点矢印の種類','倍率\x20Y','手作業','接合の種類','七角形','巻物(横)','ホームベース','1439984DhNGDu','四角形タブ','取り消し線','文字の背景色','吹き出し1','終点矢印のサイズ','形状にトリミング','動作設定ボタン:\x20サウンド','チェックリスト','1685gyIizl','グラフ\x20星','ステルス矢印','星32','色をリセット','動作設定ボタン:\x20最初','図形スタイル','塗りつぶしなし','図形パネルを開く','スウッシュ矢印','角丸四角形吹き出し','イコール','大括弧','マイナス','ラウンド','屈折矢印','amd','楕円矢印','折り返し','文字列の背面','上カーブ矢印','対角の2つの角を切り取った四角形','星12','双方向曲線コネクタ','下カーブ矢印','両端揃え','マイター','四角形','八角形','長二点鎖線','見出し\x203','UniverProShapeEditorUiJaJP','倍率\x20X','動作設定ボタン:\x20ホーム','手描き','左中括弧','星とリボン','左矢印吹き出し','リボン(下カーブ)','オフセット\x20X','パターン塗りつぶし','塗りつぶしの色','平行四辺形','動作設定ボタン:\x20ドキュメント','右矢印吹き出し','上矢印','動作設定ボタン:\x20動画','図形ツールバーを折りたたむ','右大括弧','上下矢印吹き出し','一点鎖線','曲線矢印コネクタ','左右リボン','左右矢印吹き出し','文字列の前面','爆発2','1つの角を丸めた四角形','吹き出し2','環状矢印','741825JycivM'];_0x39a5=function(){return _0xa02f7b;};return _0x39a5();}
|