@univerjs-pro/chart-ui 1.0.0-alpha.8 → 1.0.0-beta.0
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/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 +232 -7
- 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/ChartEditPanel.d.ts +49 -0
- package/lib/types/components/ChartInlineTableEditor.d.ts +1 -1
- package/lib/types/components/ChartSemanticDataFields.d.ts +3 -3
- package/lib/types/components/ChartTypeOptions.d.ts +148 -2
- package/lib/types/components/FontFormatBar.d.ts +19 -1
- package/lib/types/components/chart-inline-starter-data.d.ts +16 -6
- package/lib/types/components/use-chart-panel-input-focus.d.ts +4 -0
- package/lib/types/controllers/components.controller.d.ts +4 -2
- package/lib/types/editor/ChartEditorProvider.d.ts +11 -0
- package/lib/types/editor/atoms/common/ChartFontAtom.d.ts +28 -0
- package/lib/types/editor/atoms/common/ChartNumberFormatAtom.d.ts +9 -0
- package/lib/types/editor/atoms/common/chart-number-format.d.ts +28 -0
- package/lib/types/editor/components/ChartCheckboxField.d.ts +11 -0
- package/lib/types/editor/components/ChartColorField.d.ts +13 -0
- package/lib/types/editor/components/ChartField.d.ts +15 -0
- package/lib/types/editor/components/ChartFieldGroup.d.ts +9 -0
- package/lib/types/editor/components/ChartFieldGroupTitle.d.ts +6 -0
- package/lib/types/editor/components/ChartFieldRow.d.ts +5 -0
- package/lib/types/editor/components/ChartFontField.d.ts +28 -0
- package/lib/types/editor/components/ChartImageSelectField.d.ts +13 -0
- package/lib/types/editor/components/ChartListField.d.ts +18 -0
- package/lib/types/editor/components/ChartMultiSelectField.d.ts +25 -0
- package/lib/types/editor/components/ChartNumberField.d.ts +16 -0
- package/lib/types/editor/components/ChartSelectField.d.ts +25 -0
- package/lib/types/editor/components/ChartTextField.d.ts +14 -0
- package/lib/types/editor/hooks/use-chart-config-state.d.ts +3 -0
- package/lib/types/editor/hooks/use-chart-data-mapping-fields.d.ts +5 -0
- package/lib/types/editor/hooks/use-chart-editor-model.d.ts +3 -0
- package/lib/types/editor/hooks/use-chart-runtime-context.d.ts +13 -0
- package/lib/types/editor/routing/chart-edit-panel-route.d.ts +21 -0
- package/lib/types/editor/sections/ChartAxisSections.d.ts +63 -0
- package/lib/types/editor/sections/ChartIndicatorLineSection.d.ts +20 -0
- package/lib/types/editor/sections/ChartLegendSection.d.ts +27 -0
- package/lib/types/editor/sections/ChartLineAndAreaSection.d.ts +11 -0
- package/lib/types/editor/sections/ChartParetoSeriesSection.d.ts +26 -0
- package/lib/types/editor/sections/ChartSeriesSection.d.ts +60 -0
- package/lib/types/editor/sections/ChartSetupSections.d.ts +21 -0
- package/lib/types/editor/sections/ChartStyleSection.d.ts +15 -0
- package/lib/types/editor/sections/ChartTitleSections.d.ts +50 -0
- package/lib/types/editor/sections/ChartTrendlineSection.d.ts +18 -0
- package/lib/types/editor/sections/chart-capabilities.d.ts +10 -0
- package/lib/types/editor/sections/chart-style-options.d.ts +86 -0
- package/lib/types/editor/sections/specific-section/ChartCandlestickStyleSection.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChartFunnelStyleSection.d.ts +10 -0
- package/lib/types/editor/sections/specific-section/ChartHeatmapStyleSection.d.ts +10 -0
- package/lib/types/editor/sections/specific-section/ChartHistogramStyleSection.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChartPieStyleSection.d.ts +21 -0
- package/lib/types/editor/sections/specific-section/ChartRadarStyleSection.d.ts +9 -0
- package/lib/types/editor/sections/specific-section/ChartRelationStyleSection.d.ts +17 -0
- package/lib/types/editor/sections/specific-section/ChartTreemapStyleSection.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChartTypeSpecificSections.d.ts +9 -0
- package/lib/types/editor/sections/specific-section/ChartWaterfallStyleSection.d.ts +26 -0
- package/lib/types/editor/sections/specific-section/ChartWordCloudStyleSection.d.ts +21 -0
- package/lib/types/editor/sections/specific-section/ChordDataMappingAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChordLabelAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChordLayoutAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChordRibbonAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeDataMappingAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeModeAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugePointerAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeProgressAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeRangesAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeScaleAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/SunburstCenterLabelAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/SunburstDataMappingAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/SunburstLabelAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/chord-field-options.d.ts +2 -0
- package/lib/types/editor/sections/specific-section/chord-style.d.ts +16 -0
- package/lib/types/editor/sections/specific-section/gauge-style.d.ts +10 -0
- package/lib/types/editor/sections/specific-section/sunburst-label.d.ts +8 -0
- package/lib/types/editor/utils/chart-runtime-axis.d.ts +3 -0
- package/lib/types/float-menu/ChartElementFloatMenu.d.ts +2 -2
- package/lib/types/float-menu/chart-element-selection.d.ts +7 -0
- package/lib/types/float-menu/constants.d.ts +72 -77
- package/lib/types/float-menu/create-chart-element-float-menu-adapter.d.ts +10 -0
- package/lib/types/float-menu/pie-mark-patch.d.ts +8 -0
- package/lib/types/float-menu/types.d.ts +28 -9
- package/lib/types/index.d.ts +68 -3
- package/lib/types/locale/en-US.d.ts +481 -58
- package/lib/types/services/chart-host-adapter.d.ts +12 -0
- package/lib/types/services/chart-snapshot-queue.d.ts +58 -0
- package/lib/types/services/chart-ui.service.d.ts +19 -0
- package/lib/types/services/chart-view-state-projector.d.ts +15 -0
- package/lib/types/services/chart-view-state-registry.d.ts +11 -0
- package/lib/types/services/chart-view-state.d.ts +118 -0
- package/lib/types/services/inline-chart-creation.d.ts +42 -0
- package/lib/types/services/register-chart-config-states.d.ts +3 -0
- package/lib/types/services/register-chart-view-states/chart-specific.d.ts +4 -0
- package/lib/types/services/register-chart-view-states/semantic.d.ts +4 -0
- 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 +11 -9
- package/lib/types/components/ChartEditPanelScaffold.d.ts +0 -32
- package/lib/types/components/ChartEditorFields.d.ts +0 -68
- package/lib/types/components/ChartPresentationFields.d.ts +0 -9
- package/lib/types/components/index.d.ts +0 -19
- package/lib/types/float-menu/index.d.ts +0 -5
package/lib/locale/ar-SA.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0x3caeb2=_0x1eda;function _0x3e34(){const _0x290ba3=['عكس','العلامة','252WbeYwz','نص\x20العنوان','المحور\x20الأفقي','خريطة','قيمة','افتراضي','مخطط','نقطة\x20بيانات','إخفاء','نسبة\x20مئوية','الوضع','إضافة\x20صف','لون\x20الحدود','168XABfHo','أعلى','4243764KNLqKx','156004BbUTEn','أسفل','تسمية\x20البيانات','المحور\x20العمودي\x20الأيمن','المحور\x20العمودي','الحجم','6862599PPYhds','2695042sToZIb','لون','البداية','وسط','يسار','1879319wrVEqG','خارج','مستمر','2540IfQSMA','تاريخ','التفاف\x20وسيلة\x20الإيضاح','موضع\x20التسمية','داخل','عنوان','إعادة\x20تعيين','متعدد','نص\x20التسمية','فئة','المحاذاة','انسخ\x20والصق\x20البيانات\x20هنا','6QquWed','عنوان\x20المخطط','9460cMxuOt','مائل','يمين','العنوان\x20الفرعي','8rGRpSg','5yYuqgu','52206FvlOHg'];_0x3e34=function(){return _0x290ba3;};return _0x3e34();}function _0x1eda(_0x39afdd,_0x3838f1){_0x39afdd=_0x39afdd-0xf6;const _0x3e343f=_0x3e34();let _0x1eda38=_0x3e343f[_0x39afdd];return _0x1eda38;}(function(_0x34a0ea,_0x467ab3){const _0x3af4e7=_0x1eda,_0x3a132e=_0x34a0ea();while(!![]){try{const _0x1fd3e5=parseInt(_0x3af4e7(0x11b))/0x1*(-parseInt(_0x3af4e7(0x100))/0x2)+-parseInt(_0x3af4e7(0x123))/0x3*(parseInt(_0x3af4e7(0xfd))/0x4)+parseInt(_0x3af4e7(0x122))/0x5*(-parseInt(_0x3af4e7(0xff))/0x6)+-parseInt(_0x3af4e7(0x107))/0x7*(-parseInt(_0x3af4e7(0x121))/0x8)+-parseInt(_0x3af4e7(0x106))/0x9+parseInt(_0x3af4e7(0x10f))/0xa*(-parseInt(_0x3af4e7(0x11d))/0xb)+-parseInt(_0x3af4e7(0x126))/0xc*(-parseInt(_0x3af4e7(0x10c))/0xd);if(_0x1fd3e5===_0x467ab3)break;else _0x3a132e['push'](_0x3a132e['shift']());}catch(_0x5152f1){_0x3a132e['push'](_0x3a132e['shift']());}}}(_0x3e34,0x824b8));const e={'chart-ui':{'common':{'default':_0x3caeb2(0x12b),'reset':_0x3caeb2(0x115)},'presentation':{'wrapLegend':_0x3caeb2(0x111)},'inlineTable':{'pasteHint':_0x3caeb2(0x11a),'addRow':_0x3caeb2(0xfb),'addColumn':'إضافة\x20عمود'},'floatMenu':{'menuTitle':{'chart':_0x3caeb2(0xf6),'chartTitle':_0x3caeb2(0x11c),'subtitle':_0x3caeb2(0x120),'axisTitle':'عنوان\x20المحور','legend':'وسيلة\x20إيضاح','horizontalAxis':_0x3caeb2(0x128),'verticalAxis':_0x3caeb2(0x104),'rightVerticalAxis':_0x3caeb2(0x103),'gridline':'خط\x20الشبكة','tick':'علامة\x20تدريج','mark':_0x3caeb2(0x125),'series':'سلسلة','dataPoint':_0x3caeb2(0xf7),'dataLabel':_0x3caeb2(0x102)},'field':{'title':_0x3caeb2(0x114),'subtitle':'العنوان\x20الفرعي','position':'الموضع','size':_0x3caeb2(0x105),'align':_0x3caeb2(0x119),'mode':_0x3caeb2(0xfa),'map':_0x3caeb2(0x129),'rotate':'تدوير','min':'الحد\x20الأدنى','max':'الحد\x20الأقصى','color':_0x3caeb2(0x108),'borderColor':_0x3caeb2(0xfc),'opacity':'التعتيم','labelPosition':_0x3caeb2(0x112),'labelText':_0x3caeb2(0x117),'titleText':_0x3caeb2(0x127)},'action':{'more':'المزيد','bold':'غامق','italic':_0x3caeb2(0x11e)},'control':{'labels':'التسميات','line':'خط','reverse':_0x3caeb2(0x124),'date':_0x3caeb2(0x110)},'option':{'textAlign':{'left':_0x3caeb2(0x10b),'center':_0x3caeb2(0x10a),'right':'يمين'},'position':{'top':_0x3caeb2(0xfe),'bottom':_0x3caeb2(0x101),'left':_0x3caeb2(0x10b),'right':_0x3caeb2(0x11f),'hide':_0x3caeb2(0xf8),'inside':_0x3caeb2(0x113),'outside':_0x3caeb2(0x10d)},'labelText':{'category':_0x3caeb2(0x118),'value':_0x3caeb2(0x12a),'percentage':_0x3caeb2(0xf9)},'axisAlign':{'start':_0x3caeb2(0x109),'center':'وسط','end':'النهاية'},'legendSelectMode':{'single':'فردي','multiple':_0x3caeb2(0x116),'close':'إغلاق'},'visualMapType':{'continuous':_0x3caeb2(0x10e),'piecewise':'جزئي'}}}}};export{e as default};
|
|
1
|
+
const _0x2afb56=_0x342e;function _0x342e(_0x453f94,_0x34faf1){_0x453f94=_0x453f94-0x1be;const _0x27c35c=_0x27c3();let _0x342e4d=_0x27c35c[_0x453f94];return _0x342e4d;}(function(_0x17c504,_0x4fd40b){const _0x552aa6=_0x342e,_0x2facfa=_0x17c504();while(!![]){try{const _0x3b5491=parseInt(_0x552aa6(0x28b))/0x1*(parseInt(_0x552aa6(0x2cb))/0x2)+-parseInt(_0x552aa6(0x226))/0x3*(parseInt(_0x552aa6(0x1fd))/0x4)+parseInt(_0x552aa6(0x1c6))/0x5+parseInt(_0x552aa6(0x2d8))/0x6+parseInt(_0x552aa6(0x2a4))/0x7+parseInt(_0x552aa6(0x1ef))/0x8+-parseInt(_0x552aa6(0x276))/0x9*(parseInt(_0x552aa6(0x1dd))/0xa);if(_0x3b5491===_0x4fd40b)break;else _0x2facfa['push'](_0x2facfa['shift']());}catch(_0x2c90ce){_0x2facfa['push'](_0x2facfa['shift']());}}}(_0x27c3,0x25356));const e={'chart-ui':{'editor':{'defaultColor':_0x2afb56(0x2f3),'fontSize':'حجم\x20الخط'},'setup':{'stack':_0x2afb56(0x2bc),'percentStacked':_0x2afb56(0x1ff)},'chartTypes':{'line':'مخطط\x20خطي','column':_0x2afb56(0x1e3),'columnStacked':_0x2afb56(0x2af),'columnPercentStacked':_0x2afb56(0x231),'bar':_0x2afb56(0x24a),'barStacked':_0x2afb56(0x2cc),'barPercentStacked':_0x2afb56(0x26a),'pie':'مخطط\x20دائري','donut':_0x2afb56(0x224),'pieOfPie':_0x2afb56(0x1c3),'barOfPie':_0x2afb56(0x1d4),'area':_0x2afb56(0x2d4),'areaStacked':_0x2afb56(0x2b1),'areaPercentStacked':_0x2afb56(0x1f3),'radar':'مخطط\x20راداري','scatter':_0x2afb56(0x2ad),'combination':'مخطط\x20مجمع','wordCloud':'مخطط\x20سحابة\x20كلمات','funnel':_0x2afb56(0x2c9),'bubble':_0x2afb56(0x294),'relation':_0x2afb56(0x1d5),'waterfall':_0x2afb56(0x220),'pareto':'مخطط\x20باريتو','sankey':_0x2afb56(0x2ac),'heatmap':'خريطة\x20حرارية','boxplot':_0x2afb56(0x236),'candlestick':_0x2afb56(0x205),'histogram':_0x2afb56(0x1f6),'treemap':_0x2afb56(0x23c),'sunburst':_0x2afb56(0x200),'gauge':_0x2afb56(0x1ee),'chord':_0x2afb56(0x2eb)},'section':{'waterfall':_0x2afb56(0x220),'paretoBar':_0x2afb56(0x28a),'paretoLine':_0x2afb56(0x2c2),'pie':'مخطط\x20دائري','wordCloud':'سحابة\x20كلمات','radar':_0x2afb56(0x25b),'funnel':'مخطط\x20قمعي','relation':_0x2afb56(0x1d5),'lineAndArea':_0x2afb56(0x1c8),'gridlinesAndTicks':_0x2afb56(0x285),'indicatorLine':_0x2afb56(0x212),'candlestick':_0x2afb56(0x250),'histogram':_0x2afb56(0x2ab),'treemap':'مخطط\x20هيكلي','sunburst':'الرسم\x20البياني\x20لأشعة\x20الشمس','gauge':'مخطط\x20القياس','chord':_0x2afb56(0x2ce)},'presentation':{'backgroundColor':_0x2afb56(0x1d0),'theme':_0x2afb56(0x2a7),'gradientFill':_0x2afb56(0x23a),'bodyFontSize':'حجم\x20خط\x20الجسم','bodyFontColor':'لون\x20خط\x20الجسم','titleType':_0x2afb56(0x270),'horizontalAxisTitle':'عنوان\x20المحور\x20الأفقي','verticalAxisTitle':'عنوان\x20المحور\x20العمودي','rightVerticalAxisTitle':_0x2afb56(0x1ce),'wrap':_0x2afb56(0x1cc),'selectMode':_0x2afb56(0x252),'visualMapType':'خريطة\x20مرئية','align':_0x2afb56(0x1de)},'numberFormat':{'source':_0x2afb56(0x2ef),'number':_0x2afb56(0x28d),'scientific':_0x2afb56(0x23f),'custom':_0x2afb56(0x254),'preview':_0x2afb56(0x251),'generalType':_0x2afb56(0x21a),'accountingType':_0x2afb56(0x28c),'thousandsType':_0x2afb56(0x29f),'formatTypes':'أنواع\x20التنسيق','generalDesc':_0x2afb56(0x23e),'accountingDesc':_0x2afb56(0x1db),'currencyDesc':_0x2afb56(0x20d),'dateDesc':_0x2afb56(0x1e9),'thousandsDesc':_0x2afb56(0x219),'decimalPlaces':_0x2afb56(0x245),'currencyTypes':_0x2afb56(0x2db),'negativeNumberTypes':_0x2afb56(0x2c3),'dateTypes':'أنواع\x20التاريخ','setFormat':'تعيين\x20تنسيق\x20التسمية'},'series':{'rightAxis':_0x2afb56(0x24f),'allSeries':_0x2afb56(0x26e),'aggregate':'تجميع','borderOpacity':_0x2afb56(0x298),'solid':_0x2afb56(0x2e0),'pointShape':_0x2afb56(0x259),'pointSize':_0x2afb56(0x221),'pointColor':_0x2afb56(0x204),'removeDataPoint':_0x2afb56(0x281),'square':'مربع','rect':'مستطيل','roundRect':_0x2afb56(0x2a6),'pin':_0x2afb56(0x297),'emptyCircle':_0x2afb56(0x225),'emptySquare':_0x2afb56(0x1f8),'emptyTriangle':'مثلث\x20فارغ','emptyDiamond':'معين\x20فارغ','emptyRect':_0x2afb56(0x214),'emptyRoundRect':'مستطيل\x20دائري\x20فارغ','emptyPin':_0x2afb56(0x1bf),'emptyArrow':_0x2afb56(0x2d9)},'lineAndArea':{'lineStyle':_0x2afb56(0x213),'line':_0x2afb56(0x1cb),'smooth':_0x2afb56(0x22e),'step':_0x2afb56(0x29d),'invalidValues':_0x2afb56(0x1f4),'breakLine':_0x2afb56(0x21e),'connect':_0x2afb56(0x248),'zero':_0x2afb56(0x1d6)},'axis':{'useDateAxis':_0x2afb56(0x2ae),'target':'المحور','lineColor':_0x2afb56(0x20f),'lineWidth':_0x2afb56(0x1ed),'labelRotation':_0x2afb56(0x218),'reverse':_0x2afb56(0x1e7),'gridlineVisible':_0x2afb56(0x2cd),'gridlineColor':_0x2afb56(0x2d7),'gridlineWidth':_0x2afb56(0x255),'tickVisible':_0x2afb56(0x1da),'tickLength':_0x2afb56(0x2e8),'tickWidth':'عرض\x20القراد','tickColor':_0x2afb56(0x207),'tickPosition':'موقف\x20القراد'},'indicator':{'lineColor':'لون\x20خط\x20المؤشر','lineType':_0x2afb56(0x282),'labelBackground':'خلفية\x20التسمية','labelText':_0x2afb56(0x2c0)},'trendline':{'add':_0x2afb56(0x26d),'type':'اكتب','linear':'خطي','exponential':_0x2afb56(0x2c5),'logarithmic':_0x2afb56(0x1fb),'polynomial':_0x2afb56(0x2e6),'power':'القوة','movingAverage':'المتوسط\x20المتحرك','showFormula':_0x2afb56(0x215),'showR2':_0x2afb56(0x272),'order':'النظام','period':_0x2afb56(0x293),'formulaColor':'لون\x20الصيغة','r2Color':'لون\x20R²'},'pareto':{'includeZeroValues':'قم\x20بتضمين\x20القيم\x20الصفرية'},'plotArea':{'label':'Plot\x20area','manual':_0x2afb56(0x2f6),'left':'Left\x20(%)','top':_0x2afb56(0x283),'width':_0x2afb56(0x249),'height':'Height\x20(%)'},'bar':{'layout':'Bar\x20spacing','gapWidth':_0x2afb56(0x1ca),'overlap':_0x2afb56(0x2b3)},'pie':{'mode':_0x2afb56(0x295),'modeNormal':_0x2afb56(0x267),'modePieOfPie':'دائري\x20من\x20دائري','modeBarOfPie':_0x2afb56(0x235),'splitType':_0x2afb56(0x1f0),'splitAuto':'تلقائي','splitPosition':_0x2afb56(0x1dc),'splitCustom':'مخصص','customSelectedCount':_0x2afb56(0x2b9),'customSelectedCountValue':'تم\x20تحديد\x20{0}\x20من\x20نقاط\x20البيانات','positionCount':_0x2afb56(0x25a),'valueLessThan':'القيمة\x20أقل\x20من','percentageLessThan':_0x2afb56(0x25f),'secondarySize':_0x2afb56(0x20a),'advancedLayout':'تخطيط\x20متقدم','connector':_0x2afb56(0x2a0),'slices':_0x2afb56(0x2e1),'gapWidth':_0x2afb56(0x1e0),'connectorColor':_0x2afb56(0x2bb),'connectorWidth':_0x2afb56(0x241),'connectorType':_0x2afb56(0x1d1),'aggregateOther':_0x2afb56(0x242),'aggregateMembers':_0x2afb56(0x287),'valueScale':_0x2afb56(0x262),'doughnutHole':_0x2afb56(0x1c9),'startAngle':_0x2afb56(0x2de),'explosion':_0x2afb56(0x2d0),'paddingAngle':'تباعد\x20الشرائح','halfPie':_0x2afb56(0x21c),'rosePie':'فطيرة\x20الورد','labelLine':_0x2afb56(0x2f4)},'radar':{'shape':_0x2afb56(0x1fc),'polygon':_0x2afb56(0x2e7),'fill':_0x2afb56(0x1ec)},'funnel':{'gap':_0x2afb56(0x2bf),'absoluteValues':_0x2afb56(0x229)},'heatmap':{'unit':'وحدة\x20القيمة','labels':'تسميات\x20الخلية'},'relation':{'nodes':_0x2afb56(0x1fe),'interaction':_0x2afb56(0x2ea),'edgeLength':_0x2afb56(0x261),'circular':_0x2afb56(0x1cf),'force':_0x2afb56(0x2ec),'nodeShape':_0x2afb56(0x2e9),'valueSize':_0x2afb56(0x25e),'rotateLabels':_0x2afb56(0x279),'gravity':_0x2afb56(0x2b6),'repulsion':'التنافر'},'wordCloud':{'maskImage':_0x2afb56(0x22b),'repeat':'كرر\x20الكلمات','cloud':_0x2afb56(0x2b0),'rect':_0x2afb56(0x246),'cardioid':'قلبي','heart':_0x2afb56(0x2f7),'triangle-forward':'مثلث\x20للأمام','pentagon':_0x2afb56(0x286),'star':_0x2afb56(0x27c)},'waterfall':{'styleTarget':_0x2afb56(0x277),'positive':_0x2afb56(0x202),'negative':_0x2afb56(0x2b8),'stackType':_0x2afb56(0x20e),'arrangement':_0x2afb56(0x280),'subtotal':_0x2afb56(0x26b),'includeSubtotal':_0x2afb56(0x2b5),'connector':_0x2afb56(0x243)},'candlestick':{'candle':_0x2afb56(0x217),'body':_0x2afb56(0x244),'wick':'فتيل','state':_0x2afb56(0x1c7),'open':'سعر\x20الافتتاح','high':_0x2afb56(0x211),'low':_0x2afb56(0x260),'close':_0x2afb56(0x1f7),'rising':'ارتفاع','falling':'السقوط','doji':_0x2afb56(0x2ca),'bodyColor':_0x2afb56(0x24d),'fillOpacity':_0x2afb56(0x1c1),'wickColor':_0x2afb56(0x1c2),'wickWidth':_0x2afb56(0x1d3),'wickOpacity':_0x2afb56(0x21f),'candleWidth':_0x2afb56(0x299),'hollow':_0x2afb56(0x24c),'columnsError':_0x2afb56(0x2dc),'series':_0x2afb56(0x1c4)},'histogram':{'binGap':'فجوة\x20بن','binningMode':'وضع\x20Binning','count':'عد','width':'العرض','binCount':_0x2afb56(0x23d),'binWidth':'عرض\x20بن','underflow':'عتبة\x20التدفق\x20السفلي','overflow':_0x2afb56(0x27e),'frequency':'التكرار'},'treemap':{'parentLabelLayout':_0x2afb56(0x20b),'banner':_0x2afb56(0x2f2),'overlapping':_0x2afb56(0x223),'leafLabel':_0x2afb56(0x288),'hierarchy':_0x2afb56(0x1ea),'diagnostic':'يتطلب\x20مخطط\x20الخريطة\x20الشجرية\x20حقلاً\x20هرمياً\x20واحداً\x20على\x20الأقل\x20وحقل\x20قيمة\x20رقمية\x20واحداً.'},'sunburst':{'hierarchy':_0x2afb56(0x2d3),'addHierarchy':'أضف\x20التسلسل\x20الهرمي','moveUp':_0x2afb56(0x256),'moveDown':_0x2afb56(0x2d6),'removeHierarchy':_0x2afb56(0x227),'centerLabel':'إجمالي\x20المركز','labelFormat':_0x2afb56(0x1e4),'diagnostic':_0x2afb56(0x1f1)},'gauge':{'scale':_0x2afb56(0x29c),'majorDivisions':'التقسيمات\x20الرئيسية','minorDivisions':_0x2afb56(0x20c),'angles':_0x2afb56(0x1e2),'endAngle':_0x2afb56(0x263),'ranges':_0x2afb56(0x2dd),'rangeFrom':'من','rangeTo':'ل','addRange':_0x2afb56(0x1e5),'removeRange':'إزالة\x20النطاق','axisTick':_0x2afb56(0x2c1),'splitLine':_0x2afb56(0x2a5),'pointer':_0x2afb56(0x2e2),'anchor':'مرساة','progress':_0x2afb56(0x2cf),'detail':'التفاصيل','pointerNeedle':_0x2afb56(0x29e),'pointerSlim':_0x2afb56(0x292),'template':'القالب','modern':'حديث','classic':'كلاسيكي','minimal':_0x2afb56(0x290),'advanced':_0x2afb56(0x25d),'customized':'مخصص','axisLabelNumberFormat':_0x2afb56(0x21d),'detailNumberFormat':_0x2afb56(0x1e6),'emptyDiagnostic':_0x2afb56(0x247),'mappingDiagnostic':'يتطلب\x20مخطط\x20المقياس\x20حقل\x20تسمية\x20واحداً\x20وحقل\x20قيمة\x20واحداً\x20فقط.','configDiagnostic':_0x2afb56(0x238)},'chord':{'source':_0x2afb56(0x234),'target':'الهدف','count':'عدد\x20العلاقات','node':'عقدة','ribbon':_0x2afb56(0x29b),'clockwise':_0x2afb56(0x1d9),'padAngle':_0x2afb56(0x29a),'minAngle':'الزاوية\x20الدنيا','innerRadius':'نصف\x20القطر\x20الداخلي','outerRadius':_0x2afb56(0x228),'invalidRadii':_0x2afb56(0x1f2),'rotation':_0x2afb56(0x22a),'distance':'المسافة','width':_0x2afb56(0x240),'focus':_0x2afb56(0x2df),'solid':_0x2afb56(0x203),'gradient':'تدرج','adjacency':'العقد\x20المجاورة','self':_0x2afb56(0x1c0),'emptyDiagnostic':_0x2afb56(0x1d7),'mappingDiagnostic':_0x2afb56(0x21b),'configDiagnostic':_0x2afb56(0x230),'associatedValue':_0x2afb56(0x233)},'common':{'category':_0x2afb56(0x269),'seriesName':'اسم\x20السلسلة','value':_0x2afb56(0x273),'percentage':'النسبة\x20المئوية','borderColor':'لون\x20الحدود','labelContent':_0x2afb56(0x265),'labelPosition':_0x2afb56(0x1e8),'dataLabels':_0x2afb56(0x266),'chartType':_0x2afb56(0x2a8),'bold':_0x2afb56(0x28e),'italic':_0x2afb56(0x2d2),'shape':'الشكل','chartStyle':'نمط\x20المخطط','chartAndAxisTitles':'عناوين\x20المخطط\x20والمحاور','legend':_0x2afb56(0x25c),'chartTitle':_0x2afb56(0x28f),'subtitle':_0x2afb56(0x258),'series':'سلسلة','dataPoint':_0x2afb56(0x1fa),'trendline':_0x2afb56(0x253),'horizontalAxis':_0x2afb56(0x2e5),'verticalAxis':_0x2afb56(0x2f1),'rightVerticalAxis':_0x2afb56(0x2f5),'layout':_0x2afb56(0x2f0),'arrow':_0x2afb56(0x2d1),'axisLabels':'تسميات\x20المحور','currency':_0x2afb56(0x2ed),'date':_0x2afb56(0x2d5),'displayName':_0x2afb56(0x201),'emphasis':'التركيز','heatmap':_0x2afb56(0x2a2),'lineColor':_0x2afb56(0x20f),'lineWidth':'عرض\x20الخط','min':_0x2afb56(0x290),'max':_0x2afb56(0x2e4),'mode':_0x2afb56(0x1e1),'stacked':_0x2afb56(0x289),'title':_0x2afb56(0x278),'auto':_0x2afb56(0x1d8),'position':{'label':_0x2afb56(0x1dc),'inside':'في\x20الداخل','outside':_0x2afb56(0x2a1),'top':'أعلى','right':_0x2afb56(0x208),'bottom':'أسفل','left':'يسار','hide':_0x2afb56(0x1be)},'axisAlign':{'start':_0x2afb56(0x2bd),'center':_0x2afb56(0x2a3),'end':'النهاية'},'textAlign':{'left':'يسار','center':_0x2afb56(0x2a3),'right':_0x2afb56(0x208)},'legendSelectMode':{'single':_0x2afb56(0x237),'multiple':'متعدد','disabled':_0x2afb56(0x1f5)},'visualMapType':{'continuous':'مستمر','piecewise':_0x2afb56(0x2ee)},'default':'الافتراضي','reset':_0x2afb56(0x26f),'color':_0x2afb56(0x2a9),'opacity':'العتامة','font':_0x2afb56(0x1cb),'none':_0x2afb56(0x2da),'numberFormat':'تنسيق\x20الرقم','borderWidth':_0x2afb56(0x1c5),'borderType':_0x2afb56(0x2c7),'lineType':_0x2afb56(0x2ba),'dashed':_0x2afb56(0x27a),'dotted':_0x2afb56(0x210),'circle':'دائرة','triangle':_0x2afb56(0x2b2),'diamond':_0x2afb56(0x274),'axisLine':_0x2afb56(0x1f9),'minimum':'الحد\x20الأدنى','maximum':_0x2afb56(0x2e4),'startAngle':_0x2afb56(0x209),'valueField':_0x2afb56(0x271),'categoryName':_0x2afb56(0x22c),'ownValue':_0x2afb56(0x2c6),'children':_0x2afb56(0x1df),'label':_0x2afb56(0x2be),'editChart':_0x2afb56(0x291),'deleteChart':_0x2afb56(0x23b),'insertChart':'إدراج\x20مخطط','insertChartFailed':_0x2afb56(0x2e3),'openChartPanel':_0x2afb56(0x264),'hideChartPanel':'إخفاء\x20لوحة\x20المخطط','exportImage':_0x2afb56(0x27b),'copy':_0x2afb56(0x1eb),'setup':_0x2afb56(0x22d),'customize':_0x2afb56(0x24e),'data':_0x2afb56(0x24b),'tableDataEmpty':'بيانات\x20الجدول\x20فارغة','dataRange':_0x2afb56(0x27f),'editData':'تحرير\x20البيانات','inlineData':'بيانات\x20مضمنة','switchRowColumn':_0x2afb56(0x27d),'useAsCategoryLabels':_0x2afb56(0x2aa),'cancel':_0x2afb56(0x232),'insert':_0x2afb56(0x268),'apply':_0x2afb56(0x2b7),'duplicate':_0x2afb56(0x216)},'inlineTable':{'pasteHint':_0x2afb56(0x2c4),'addRow':'أضف\x20صفًا','addColumn':_0x2afb56(0x2b4)},'floatMenu':{'menuTitle':{'chart':_0x2afb56(0x222),'axisTitle':_0x2afb56(0x1cd),'gridline':_0x2afb56(0x206),'tick':_0x2afb56(0x284),'mark':_0x2afb56(0x296),'dataLabel':_0x2afb56(0x239)},'field':{'position':_0x2afb56(0x1dc),'size':'الحجم','align':_0x2afb56(0x257),'map':_0x2afb56(0x22f),'rotate':_0x2afb56(0x2c8),'labelText':_0x2afb56(0x275),'titleText':'نص\x20العنوان'},'action':{'more':_0x2afb56(0x1d2)},'control':{'labels':_0x2afb56(0x26c),'line':'خط','reverse':'عكس'}}}};export{e as default};function _0x27c3(){const _0x549d4e=['48023bBxrUT','محاسبة','رقم','غامق','عنوان\x20المخطط','الحد\x20الأدنى','محرر\x20المخطط','مؤشر\x20رفيع','الفترة','مخطط\x20فقاعي','شكل\x20المخطط','العلامة','دبوس','عتامة\x20الحدود','عرض\x20الشمعة','زاوية\x20الوسادة','الشريط','مقياس','خطوة','مؤشر\x20كلاسيكي','النسبة\x20المئوية\x20بالألف','موصل','خارج','خريطة\x20حرارية','وسط','1900556HaKVUD','خطوط\x20الانقسام','مستطيل\x20دائري','الموضوع','نوع\x20المخطط','اللون','استخدام\x20{0}\x20كفئة','الرسم\x20البياني\x20الرسم\x20البياني','مخطط\x20سانكي','مخطط\x20مبعثر','معاملة\x20التسميات\x20كتواريخ','تكديس\x20·\x20مخطط\x20عمودي','سحابة','مخطط\x20مساحي\x20مكدس','مثلث','Series\x20overlap\x20(%)','إضافة\x20عمود','استخدم\x20المجموع\x20الفرعي','الجاذبية','تطبيق','سالب','تقسيم\x20مخصص','نوع\x20الخط','لون\x20خط\x20الاتصال','تكديس','البداية','التسمية','فجوة\x20السلعة','تسمية\x20لون\x20النص','القراد\x20المحور','سلسلة\x20النسبة\x20المئوية\x20التراكمية','أنواع\x20الأرقام\x20السالبة','الصق\x20جدولاً\x20من\x20جداول\x20البيانات\x20أو\x20Excel\x20أو\x20صفحة\x20ويب\x20لاستبدال\x20البيانات\x20المضمنة.','الأسي','القيمة\x20الخاصة','نوع\x20الحدود','تدوير','مخطط\x20قمعي','دوجي','4IbSlxF','مخطط\x20شريطي\x20مكدس','خطوط\x20الشبكة','مخطط\x20الوتر','التقدم','Explosion\x20(%)','سهم','مائل','التسلسل\x20الهرمي','مخطط\x20مساحي','تاريخ','نقل\x20حقل\x20التسلسل\x20الهرمي\x20إلى\x20الأسفل','لون\x20خط\x20الشبكة','1514442PoFYea','سهم\x20فارغ','لا\x20شيء','أنواع\x20العملة','تتطلب\x20بيانات\x20مخطط\x20الشموع\x20أعمدة\x20الفئة\x20والافتتاح\x20والأعلى\x20والأدنى\x20والإغلاق.','نطاقات','Start\x20angle','التركيز','صلب','شرائح','المؤشر','فشل\x20إدراج\x20المخطط','الحد\x20الأقصى','المحور\x20الأفقي','كثير\x20الحدود','مضلع','طول\x20القراد','شكل\x20العقدة','تفاعل','مخطط\x20وتري','القوة','العملة','جزئي','تنسيق\x20المصدر','التخطيط','المحور\x20العمودي','راية','اللون\x20الافتراضي','خط\x20التسمية','المحور\x20الرأسي\x20الأيمن','Manual','القلب','إخفاء','دبوس\x20فارغ','العقدة\x20الحالية','ملء\x20التعتيم','لون\x20الفتيل','مخطط\x20دائري\x20من\x20دائري','سلسلة\x20OHLC','عرض\x20الحدود','210290JmJglb','حالة\x20الشمعة','مخطط\x20خطي\x20/\x20مخطط\x20مساحي','فتحة\x20الدونات','Gap\x20width\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عمود.','الموضع','10xkFWlc','محاذاة','العناصر\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مقياس','1954408molhqF','تقسيم\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الرادار','4dJCFSr','عقد','تكديس\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النقدية.','عام','يتطلب\x20مخطط\x20الأوتار\x20حقلي\x20مصدر\x20وهدف\x20مختلفين،\x20ويمكن\x20إضافة\x20حقل\x20قيمة\x20مختلف\x20اختيارياً.','نصف\x20فطيرة','تنسيق\x20أرقام\x20تسميات\x20المحور','كسر\x20الخط','عتامة\x20الفتيل','مخطط\x20شلالي','حجم\x20النقطة','مخطط','تداخل','مخطط\x20حلقي','دائرة\x20فارغة','629307dtSEqV','إزالة\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تنسيق\x20أرقام\x20محدد.','علمية','العرض','عرض\x20خط\x20الاتصال','أخرى','خط\x20موصل','جسم','المنازل\x20العشرية','مستطيل','يتطلب\x20مخطط\x20المقياس\x20قيمة\x20رقمية\x20محدودة\x20واحدة\x20على\x20الأقل.','ربط\x20نقاط\x20البيانات','Width\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القيمة','عرض\x20R²','القيمة','الماس','نص\x20التسمية','4897305YjVxeV','هدف\x20النمط','عنوان','تدوير\x20التسميات','متقطع','تصدير\x20كصورة','نجمة','التبديل\x20إلى\x20صف/عمود','عتبة\x20الفائض','نطاق\x20البيانات','الشلال','إزالة\x20نقطة\x20البيانات','نوع\x20خط\x20المؤشر','Top\x20(%)','علامة\x20تدريج','خطوط\x20الشبكة\x20والعلامات','البنتاغون','العناصر','تسميات\x20أوراق','مكدسة','سلسلة\x20المخطط\x20الشريطي'];_0x27c3=function(){return _0x549d4e;};return _0x27c3();}
|
package/lib/locale/ca-ES.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0xaf0fb2=_0x451e;(function(_0x1b2537,_0x47b15b){const _0x433a7e=_0x451e,_0x14ef03=_0x1b2537();while(!![]){try{const _0xa98e12=-parseInt(_0x433a7e(0x7e))/0x1+parseInt(_0x433a7e(0xa2))/0x2*(-parseInt(_0x433a7e(0x8f))/0x3)+-parseInt(_0x433a7e(0x7a))/0x4+-parseInt(_0x433a7e(0x89))/0x5*(-parseInt(_0x433a7e(0x82))/0x6)+-parseInt(_0x433a7e(0x7d))/0x7*(parseInt(_0x433a7e(0xb2))/0x8)+-parseInt(_0x433a7e(0xa3))/0x9+parseInt(_0x433a7e(0x87))/0xa*(parseInt(_0x433a7e(0x9d))/0xb);if(_0xa98e12===_0x47b15b)break;else _0x14ef03['push'](_0x14ef03['shift']());}catch(_0x708c63){_0x14ef03['push'](_0x14ef03['shift']());}}}(_0x536d,0x422f7));function _0x451e(_0x2d5d00,_0x53fe6b){_0x2d5d00=_0x2d5d00-0x79;const _0x536d4b=_0x536d();let _0x451e31=_0x536d4b[_0x2d5d00];return _0x451e31;}const e={'chart-ui':{'common':{'default':'Per\x20defecte','reset':_0xaf0fb2(0xaa)},'presentation':{'wrapLegend':'Ajusta\x20la\x20llegenda'},'inlineTable':{'pasteHint':_0xaf0fb2(0xa4),'addRow':_0xaf0fb2(0x99),'addColumn':'Afegeix\x20columna'},'floatMenu':{'menuTitle':{'chart':'Gràfic','chartTitle':_0xaf0fb2(0xa1),'subtitle':_0xaf0fb2(0x8c),'axisTitle':_0xaf0fb2(0x88),'legend':_0xaf0fb2(0x9b),'horizontalAxis':'Eix\x20horitzontal','verticalAxis':_0xaf0fb2(0x8e),'rightVerticalAxis':_0xaf0fb2(0x98),'gridline':_0xaf0fb2(0xb1),'tick':_0xaf0fb2(0xa9),'mark':_0xaf0fb2(0x9c),'series':_0xaf0fb2(0x90),'dataPoint':_0xaf0fb2(0x84),'dataLabel':'Etiqueta\x20de\x20dades'},'field':{'title':_0xaf0fb2(0xac),'subtitle':'Subtítol','position':_0xaf0fb2(0x7f),'size':_0xaf0fb2(0x8d),'align':'Alinear','mode':_0xaf0fb2(0x92),'map':'Mapa','rotate':_0xaf0fb2(0x81),'min':_0xaf0fb2(0x9f),'max':_0xaf0fb2(0x83),'color':_0xaf0fb2(0xab),'borderColor':_0xaf0fb2(0x95),'opacity':_0xaf0fb2(0x91),'labelPosition':'Posició\x20d\x27etiqueta','labelText':_0xaf0fb2(0xa7),'titleText':_0xaf0fb2(0x8b)},'action':{'more':_0xaf0fb2(0xa0),'bold':'Negreta','italic':_0xaf0fb2(0xa8)},'control':{'labels':_0xaf0fb2(0x94),'line':_0xaf0fb2(0x97),'reverse':_0xaf0fb2(0x9e),'date':_0xaf0fb2(0x86)},'option':{'textAlign':{'left':_0xaf0fb2(0xb0),'center':_0xaf0fb2(0x79),'right':_0xaf0fb2(0x80)},'position':{'top':_0xaf0fb2(0xa6),'bottom':_0xaf0fb2(0xae),'left':'Esquerra','right':_0xaf0fb2(0x80),'hide':_0xaf0fb2(0x93),'inside':'Dins','outside':_0xaf0fb2(0x7c)},'labelText':{'category':_0xaf0fb2(0xa5),'value':_0xaf0fb2(0x9a),'percentage':_0xaf0fb2(0xaf)},'axisAlign':{'start':'Inici','center':'Centre','end':'Fi'},'legendSelectMode':{'single':_0xaf0fb2(0x85),'multiple':_0xaf0fb2(0x8a),'close':_0xaf0fb2(0x96)},'visualMapType':{'continuous':_0xaf0fb2(0x7b),'piecewise':_0xaf0fb2(0xad)}}}}};export{e as default};function _0x536d(){const _0xc06278=['Mida','Eix\x20vertical','6162qmswLp','Sèrie','Opacitat','Mode','Amagar','Etiquetes','Color\x20de\x20la\x20vora','Tancar','Línia','Eix\x20vertical\x20dret','Afegeix\x20fila','Valor','Llegenda','Marca','11sHktkL','Inverteix','Mín','Més','Títol\x20del\x20gràfic','158lMNPHh','3075849YbRLkl','Copieu\x20i\x20enganxeu\x20les\x20dades\x20aquí','Categoria','Superior','Text\x20d\x27etiqueta','Cursiva','Marca\x20de\x20graduació','Restablir','Color','Títol','Per\x20trams','Inferior','Percentatge','Esquerra','Línia\x20de\x20quadrícula','8hExlim','Centre','71764sUbgRF','Continu','Fora','256739xUSGbj','274882jOAzWD','Posició','Dreta','Gira','174ZrzQej','Màx','Punt\x20de\x20dades','Individual','Data','9307090DYnxMp','Títol\x20de\x20l’eix','29985yCfGiM','Múltiple','Text\x20del\x20títol','Subtítol'];_0x536d=function(){return _0xc06278;};return _0x536d();}
|
|
1
|
+
function _0x4d9b(){const _0x40d14a=['Estil\x20de\x20línia','Mostra\x20la\x20fórmula','Gràfic\x20de\x20barres','Cor','9527076hIZhUL','Rectangle\x20arrodonit','Opacitat\x20de\x20la\x20vora','Editor\x20de\x20gràfics','Font','De\x20punt','Aplica','Mapa\x20de\x20calor','Contingut\x20de\x20l’etiqueta','Elements\x20fills','La\x20configuració\x20del\x20gràfic\x20d’indicador\x20no\x20és\x20vàlida.\x20Comproveu\x20l’escala,\x20els\x20intervals,\x20les\x20proporcions\x20i\x20les\x20mides.','El\x20diagrama\x20de\x20cordes\x20necessita\x20camps\x20d’origen\x20i\x20destinació\x20diferents\x20i,\x20opcionalment,\x20un\x20camp\x20de\x20valor\x20diferent.','Objectiu','Marcador','59525LYbvFg','Mig\x20pastís','Fons\x20de\x20l\x27etiqueta','Configurar','Puntejat','Gràfic\x20de\x20raigs\x20solars','Cap','Gràfic\x20de\x20canelobres','Línia\x20indicadora','88EKspJr','Manual','Detall','Mapa\x20d\x27arbre','Color\x20de\x20la\x20quadrícula','Gira\x20les\x20etiquetes','Línia\x20de\x20quadrícula','Cardioide','Usar\x20{0}\x20com\x20a\x20categoria','Tipus\x20de\x20format','{0}\x20punts\x20de\x20dades\x20seleccionats','Cancel·la','Omplir\x20l\x27opacitat','Posició','Connector','Percentil\x20mil·lèsima','Afegeix\x20fila','Apilar\x20percentatge\x20·\x20Gràfic\x20de\x20columnes','Mode','Etiquetes\x20de\x20dades','Dins','Gràfic\x20d\x27histograma','Restableix','Personalitzat','Des\x20de','Divisions\x20principals','Tipus\x20de\x20títol','Gràfic\x20combinat','Utilitzeu\x20valors\x20absoluts','Dades','Superposició','Separació\x20entre\x20el\x20gràfic\x20principal\x20i\x20el\x20secundari','Disseny\x20avançat','Apilar\x20percentatge','Línia\x20de\x20l\x27eix','Gràfic\x20de\x20bombolletes','Rotació','Mode\x20de\x20selecció','Format\x20numèric\x20de\x20les\x20etiquetes\x20de\x20l’eix','Radi\x20interior','Color\x20de\x20línia','El\x20mapa\x20d’arbre\x20necessita\x20almenys\x20un\x20camp\x20jeràrquic\x20i\x20un\x20camp\x20de\x20valor\x20numèric.','Títol\x20de\x20l\x27eix\x20vertical','Positiu','Vista\x20prèvia','Amagar','Forma\x20del\x20gràfic','Gràfic\x20de\x20mapa\x20d\x27arbre','Etiquetes','Alineal','El\x20format\x20de\x20moneda\x20s\x27utilitza\x20per\x20a\x20valors\x20monetaris\x20generals,\x20el\x20format\x20comptable\x20alinea\x20els\x20punts\x20decimals\x20en\x20una\x20columna\x20de\x20valors.','Amplada','Gràfic\x20d\x27indicador','Rotació\x20d\x27etiquetes','Marcades\x20de\x20l\x27eix','Èmfasi','261408SBRDmF','Mida\x20del\x20punt','Buit\x20d\x27article','Gràfic\x20de\x20radar','Amplada\x20de\x20la\x20metxa','Etiquetes\x20de\x20fulles','Divisió\x20personalitzada','Gràfic\x20de\x20Sankey','Interacció','Exponencial','Amplada\x20de\x20la\x20marca','Títols\x20del\x20gràfic\x20i\x20els\x20eixos','Altre','Línies\x20dividides','Triangle','Color\x20del\x20text\x20de\x20l\x27etiqueta','Clàssic','El\x20gràfic\x20d’indicador\x20necessita\x20un\x20camp\x20d’etiqueta\x20i\x20exactament\x20un\x20camp\x20de\x20valor.','Negreta','Mida\x20del\x20gràfic\x20secundari','Espelma\x20buida','Categoria','Text\x20d\x27etiqueta','Establir\x20format\x20d\x27etiqueta','Diamant','Mapa','Angle\x20del\x20coixinet','Node\x20actual','Forma\x20del\x20node','Unitat\x20de\x20valor','Cercle','Desactivat','Científic','ID\x20de\x20la\x20imatge\x20de\x20la\x20màscara','Top\x20(%)','Títol','Percentatge','Afegeix\x20una\x20columna','Polígon','Pastís\x20de\x20roses','Bar\x20spacing','Mapa\x20visual','Amplada\x20de\x20la\x20línia\x20de\x20connexió','Títol\x20de\x20l\x27eix\x20vertical\x20dret','Opacitat\x20de\x20la\x20metxa','Línia','Color','Forma\x20de\x20radar','Forma','Contínua','Rombe\x20buit','Posició\x20de\x20l\x27etiqueta','Gira','Escala\x20de\x20valors','Format\x20numèric','Gràfic\x20de\x20línies','Color\x20sòlid','Agulla\x20clàssica','Màxim','Període','Cascada','Tema','Ample\x20de\x20línia','Agrega','Circular\x20de\x20circular','Eix\x20vertical','Elimina\x20el\x20camp\x20de\x20la\x20jerarquia','Color\x20de\x20la\x20fórmula','Etiqueta','Color\x20de\x20la\x20metxa','Punt\x20de\x20dades','Dreta','Estil\x20d\x27etiqueta','2048932paPchE','Valor','Eix\x20horitzontal','Estrella','Mínim','3AWEDtK','Valor\x20inferior\x20a','Tipus\x20de\x20moneda','Mida\x20els\x20nodes\x20per\x20valor','Angle\x20inicial','El\x20radi\x20interior\x20ha\x20de\x20ser\x20més\x20petit\x20que\x20el\x20radi\x20exterior.','Plaçada','Línia\x20d\x27etiquetes','El\x20format\x20de\x20data\x20mostra\x20els\x20números\x20de\x20sèrie\x20de\x20data\x20i\x20hora\x20com\x20a\x20valors\x20de\x20data.','Repulsió','Tipus\x20de\x20línia\x20de\x20connexió','Inserir\x20gràfic','Tipus','Lineal','En\x20sentit\x20horari','Metxa','Recompte\x20de\x20papereres','Sectors','108JycdTZ','No\x20s\x27ha\x20pogut\x20inserir\x20el\x20gràfic','Recompte\x20de\x20relacions','Plot\x20area','Cercle\x20buit','Color\x20de\x20la\x20vora','Farciment\x20degradat','Etiquetes\x20dels\x20eixos','Inici','Gràfic\x20de\x20barres\x20apilades','Inferior','Bandera','Canviar\x20a\x20fila/columna','Fletxa\x20buida','Text\x20del\x20títol','Gràfic\x20de\x20rosquilla','Disseny\x20de\x20l\x27etiqueta\x20principal','Mida','Embolica\x20la\x20llegenda','Color\x20per\x20defecte','Decimals','Tracta\x20les\x20etiquetes\x20com\x20a\x20dates','El\x20format\x20de\x20percentil\x20mil·lèsima\x20s\x27utilitza\x20per\x20a\x20nombres\x20generals,\x20els\x20formats\x20de\x20moneda\x20i\x20comptable\x20proporcionen\x20formats\x20especialitzats\x20per\x20a\x20valors\x20monetaris.','294kdAwhH','Width\x20(%)','Línies\x20de\x20quadrícula\x20i\x20marques','Subtotal','Triangle\x20cap\x20endavant','Amplada\x20de\x20la\x20vora','Amplada\x20del\x20contenidor','Degradat','Mou\x20el\x20camp\x20de\x20la\x20jerarquia\x20cap\x20avall','Línies\x20de\x20graella','Valor\x20associat','Rectangle\x20arrodonit\x20buit','6146iEtrja','Progrés','Obertura','Gràfic\x20de\x20candeles','Trenca\x20la\x20línia','Llegenda','Eix\x20dret','Agulla\x20fina','Rectangle','Valor\x20propi','Gràfic\x20de\x20relació','Gràfic\x20de\x20mesura','Freqüència','Negatiu','Sèrie','Les\x20dades\x20de\x20la\x20taula\x20estan\x20buides','Percentatge\x20inferior\x20a','Afegir\x20línia\x20de\x20tendència','Pas','Nom\x20de\x20la\x20categoria','Línia\x20de\x20tendència','Eliminar\x20gràfic','Start\x20angle','Apuntador','Gràfic\x20de\x20cascada','Alineació','Color\x20de\x20la\x20marca','Eix\x20vertical\x20dret','El\x20gràfic\x20d’indicador\x20necessita\x20almenys\x20un\x20valor\x20numèric\x20finit.','Nodes\x20adjacents','Tipus\x20de\x20línia\x20indicadora','Arranjament','Espelma','Intervals','Insereix','El\x20format\x20general\x20no\x20conté\x20cap\x20format\x20de\x20nombre\x20específic.','Totes\x20les\x20sèries','Polinomi','Tipus\x20de\x20vora','Comptabilitat','Taula\x20d\x27acords','Triangle\x20buit','Histograma','El\x20format\x20de\x20nombre\x20comptable\x20alinea\x20els\x20símbols\x20de\x20moneda\x20i\x20els\x20punts\x20decimals\x20en\x20una\x20columna.','Opacitat','Color\x20de\x20la\x20línia\x20de\x20connexió','Posició\x20de\x20la\x20marca','Color\x20de\x20la\x20línia\x20indicadora','Apilar','Color\x20R²','Angles','Tipus\x20de\x20nombres\x20negatius','Eix','Fletxa','Apilar\x20·\x20Gràfic\x20de\x20columnes','Duplica','El\x20gràfic\x20de\x20raigs\x20solars\x20necessita\x20almenys\x20un\x20camp\x20jeràrquic\x20i\x20un\x20camp\x20de\x20valor\x20numèric.','Sòlid','Centre','Divisions\x20secundàries\x20per\x20divisió\x20principal','El\x20diagrama\x20de\x20cordes\x20necessita\x20almenys\x20una\x20relació\x20de\x20pes\x20positiu\x20entre\x20dos\x20nodes\x20diferents.','Color\x20del\x20cos','Doji','Moneda','Gràfic\x20circular','Número','2763882DDiixm','Línia\x20de\x20connector','Node','Fora','Títol\x20de\x20l\x27eix\x20horitzontal','Elements','Nom\x20de\x20visualització','Divideix\x20per','Nombre\x20de\x20punts\x20de\x20dades\x20secundaris','Mou\x20el\x20camp\x20de\x20la\x20jerarquia\x20cap\x20amunt','Espai\x20de\x20la\x20paperera','Circular','Automàtic','Marcador\x20buit','Estat\x20de\x20la\x20vela','Barres\x20de\x20circular','Rectangle\x20buit','Gràfic\x20d\x27àrea\x20apilada\x20percentual','Caient','Camp\x20de\x20valor','Gravetat','Edita\x20les\x20dades','Gràfic\x20de\x20Pareto','Compte','La\x20configuració\x20del\x20diagrama\x20de\x20cordes\x20no\x20és\x20vàlida.\x20Comproveu\x20els\x20angles,\x20els\x20radis,\x20l’opacitat\x20i\x20les\x20mides.','Gràfic\x20d\x27embuts','Àncora','Disseny','Diagrama\x20de\x20caixa','Diagrama\x20de\x20cordes','Força','Etiqueta\x20de\x20dades','11DnHSaR','suau','Cos','Subtítol','Normal','Tractar\x20com\x20a\x20zero','330910UKvFkM','Apilat'];_0x4d9b=function(){return _0x40d14a;};return _0x4d9b();}const _0xce9f22=_0x3318;function _0x3318(_0x4a5709,_0x345568){_0x4a5709=_0x4a5709-0x136;const _0x4d9b1b=_0x4d9b();let _0x33181c=_0x4d9b1b[_0x4a5709];return _0x33181c;}(function(_0x589883,_0x38fa86){const _0x34d65f=_0x3318,_0x2c30b1=_0x589883();while(!![]){try{const _0x4074dd=-parseInt(_0x34d65f(0x178))/0x1*(-parseInt(_0x34d65f(0x19b))/0x2)+-parseInt(_0x34d65f(0x166))/0x3*(-parseInt(_0x34d65f(0x161))/0x4)+parseInt(_0x34d65f(0x217))/0x5*(-parseInt(_0x34d65f(0x18f))/0x6)+parseInt(_0x34d65f(0x258))/0x7*(-parseInt(_0x34d65f(0x220))/0x8)+-parseInt(_0x34d65f(0x1dd))/0x9+-parseInt(_0x34d65f(0x203))/0xa*(parseInt(_0x34d65f(0x1fd))/0xb)+parseInt(_0x34d65f(0x209))/0xc;if(_0x4074dd===_0x38fa86)break;else _0x2c30b1['push'](_0x2c30b1['shift']());}catch(_0x7731f7){_0x2c30b1['push'](_0x2c30b1['shift']());}}}(_0x4d9b,0x4a26a));const e={'chart-ui':{'editor':{'defaultColor':_0xce9f22(0x18b),'fontSize':'Mida\x20de\x20la\x20lletra'},'setup':{'stack':_0xce9f22(0x1cb),'percentStacked':_0xce9f22(0x241)},'chartTypes':{'line':_0xce9f22(0x14f),'column':'Gràfic\x20de\x20columnes','columnStacked':_0xce9f22(0x1d1),'columnPercentStacked':_0xce9f22(0x231),'bar':_0xce9f22(0x207),'barStacked':_0xce9f22(0x181),'barPercentStacked':'Gràfic\x20de\x20barres\x20apilades\x20percentual','pie':'Gràfic\x20circular','donut':_0xce9f22(0x187),'pieOfPie':'Gràfic\x20circular\x20de\x20circular','barOfPie':'Gràfic\x20de\x20barres\x20de\x20circular','area':'Gràfic\x20d\x27àrea','areaStacked':'Gràfic\x20d\x27àrea\x20apilada','areaPercentStacked':_0xce9f22(0x1ee),'radar':'Gràfic\x20de\x20radar','scatter':'Gràfic\x20de\x20dispersió','combination':_0xce9f22(0x23b),'wordCloud':'Núvol\x20de\x20paraules','funnel':_0xce9f22(0x1f6),'bubble':_0xce9f22(0x243),'relation':'Gràfic\x20de\x20relació','waterfall':_0xce9f22(0x1b3),'pareto':_0xce9f22(0x1f3),'sankey':_0xce9f22(0x25f),'heatmap':_0xce9f22(0x210),'boxplot':_0xce9f22(0x1f9),'candlestick':_0xce9f22(0x19e),'histogram':_0xce9f22(0x1c5),'treemap':_0xce9f22(0x223),'sunburst':_0xce9f22(0x21c),'gauge':_0xce9f22(0x254),'chord':_0xce9f22(0x1fa)},'section':{'waterfall':'Gràfic\x20de\x20cascada','paretoBar':'Sèrie\x20de\x20gràfic\x20de\x20barres','paretoLine':'Sèrie\x20de\x20percentatge\x20acumulat','pie':_0xce9f22(0x1db),'wordCloud':'Núvol\x20de\x20paraules','radar':_0xce9f22(0x25b),'funnel':_0xce9f22(0x1f6),'relation':_0xce9f22(0x1a5),'lineAndArea':'Gràfic\x20de\x20línies\x20/\x20Gràfic\x20d\x27àrea','gridlinesAndTicks':_0xce9f22(0x191),'indicatorLine':_0xce9f22(0x21f),'candlestick':_0xce9f22(0x21e),'histogram':_0xce9f22(0x235),'treemap':_0xce9f22(0x24f),'sunburst':'Gràfic\x20Sunburst','gauge':_0xce9f22(0x1a6),'chord':_0xce9f22(0x1c3)},'presentation':{'backgroundColor':'Color\x20de\x20fons','theme':_0xce9f22(0x155),'gradientFill':_0xce9f22(0x17e),'bodyFontSize':'Mida\x20de\x20la\x20lletra\x20del\x20cos','bodyFontColor':'Color\x20de\x20lletra\x20del\x20cos','titleType':_0xce9f22(0x23a),'horizontalAxisTitle':_0xce9f22(0x1e1),'verticalAxisTitle':_0xce9f22(0x24a),'rightVerticalAxisTitle':_0xce9f22(0x143),'wrap':_0xce9f22(0x18a),'selectMode':_0xce9f22(0x245),'visualMapType':_0xce9f22(0x141),'align':_0xce9f22(0x1b4)},'numberFormat':{'source':'Format\x20d\x27origen','number':_0xce9f22(0x1dc),'scientific':_0xce9f22(0x138),'custom':'Format\x20personalitzat','preview':_0xce9f22(0x24c),'generalType':'General','accountingType':_0xce9f22(0x1c2),'thousandsType':_0xce9f22(0x22f),'formatTypes':_0xce9f22(0x229),'generalDesc':_0xce9f22(0x1be),'accountingDesc':_0xce9f22(0x1c6),'currencyDesc':_0xce9f22(0x252),'dateDesc':_0xce9f22(0x16e),'thousandsDesc':_0xce9f22(0x18e),'decimalPlaces':_0xce9f22(0x18c),'currencyTypes':_0xce9f22(0x168),'negativeNumberTypes':_0xce9f22(0x1ce),'dateTypes':'Tipus\x20de\x20data','setFormat':_0xce9f22(0x26f)},'series':{'rightAxis':_0xce9f22(0x1a1),'allSeries':_0xce9f22(0x1bf),'aggregate':_0xce9f22(0x157),'borderOpacity':_0xce9f22(0x20b),'solid':_0xce9f22(0x1d4),'pointShape':'Forma\x20de\x20punt','pointSize':_0xce9f22(0x259),'pointColor':'Color\x20del\x20punt','removeDataPoint':'Elimina\x20el\x20punt\x20de\x20dades','square':_0xce9f22(0x16c),'rect':_0xce9f22(0x1a3),'roundRect':_0xce9f22(0x20a),'pin':_0xce9f22(0x216),'emptyCircle':_0xce9f22(0x17c),'emptySquare':'Quadrat\x20buit','emptyTriangle':_0xce9f22(0x1c4),'emptyDiamond':_0xce9f22(0x14a),'emptyRect':_0xce9f22(0x1ed),'emptyRoundRect':_0xce9f22(0x19a),'emptyPin':_0xce9f22(0x1ea),'emptyArrow':_0xce9f22(0x185)},'lineAndArea':{'lineStyle':_0xce9f22(0x205),'line':_0xce9f22(0x145),'smooth':_0xce9f22(0x1fe),'step':_0xce9f22(0x1ad),'invalidValues':'Valors\x20no\x20vàlids','breakLine':_0xce9f22(0x19f),'connect':'Connecteu\x20punts\x20de\x20dades','zero':_0xce9f22(0x202)},'axis':{'useDateAxis':_0xce9f22(0x18d),'target':_0xce9f22(0x1cf),'lineColor':'Color\x20de\x20línia','lineWidth':'Ample\x20de\x20línia','labelRotation':_0xce9f22(0x255),'reverse':'Eix\x20invers','gridlineVisible':_0xce9f22(0x198),'gridlineColor':_0xce9f22(0x224),'gridlineWidth':'Amplada\x20de\x20la\x20quadrícula','tickVisible':'Paparres','tickLength':'Longitud\x20de\x20la\x20marca','tickWidth':_0xce9f22(0x262),'tickColor':_0xce9f22(0x1b5),'tickPosition':_0xce9f22(0x1c9)},'indicator':{'lineColor':_0xce9f22(0x1ca),'lineType':_0xce9f22(0x1b9),'labelBackground':_0xce9f22(0x219),'labelText':_0xce9f22(0x267)},'trendline':{'add':_0xce9f22(0x1ac),'type':_0xce9f22(0x172),'linear':_0xce9f22(0x173),'exponential':_0xce9f22(0x261),'logarithmic':'Logarítmica','polynomial':_0xce9f22(0x1c0),'power':'Poder','movingAverage':'Mitjana\x20mòbil','showFormula':_0xce9f22(0x206),'showR2':'Mostra\x20R²','order':'Ordre','period':_0xce9f22(0x153),'formulaColor':_0xce9f22(0x15b),'r2Color':_0xce9f22(0x1cc)},'pareto':{'includeZeroValues':'Inclou\x20valors\x20zero'},'plotArea':{'label':_0xce9f22(0x17b),'manual':_0xce9f22(0x221),'left':'Left\x20(%)','top':_0xce9f22(0x13a),'width':_0xce9f22(0x190),'height':'Height\x20(%)'},'bar':{'layout':_0xce9f22(0x140),'gapWidth':'Gap\x20width\x20(%)','overlap':'Series\x20overlap\x20(%)'},'pie':{'mode':_0xce9f22(0x24e),'modeNormal':_0xce9f22(0x201),'modePieOfPie':_0xce9f22(0x158),'modeBarOfPie':_0xce9f22(0x1ec),'splitType':_0xce9f22(0x1e4),'splitAuto':_0xce9f22(0x1e9),'splitPosition':_0xce9f22(0x22d),'splitCustom':_0xce9f22(0x237),'customSelectedCount':_0xce9f22(0x25e),'customSelectedCountValue':_0xce9f22(0x22a),'positionCount':_0xce9f22(0x1e5),'valueLessThan':_0xce9f22(0x167),'percentageLessThan':_0xce9f22(0x1ab),'secondarySize':_0xce9f22(0x26b),'advancedLayout':_0xce9f22(0x240),'connector':_0xce9f22(0x22e),'slices':_0xce9f22(0x177),'gapWidth':_0xce9f22(0x23f),'connectorColor':_0xce9f22(0x1c8),'connectorWidth':_0xce9f22(0x142),'connectorType':_0xce9f22(0x170),'aggregateOther':_0xce9f22(0x264),'aggregateMembers':_0xce9f22(0x1e2),'valueScale':_0xce9f22(0x14d),'doughnutHole':'Forat\x20de\x20donuts','startAngle':_0xce9f22(0x1b1),'explosion':'Explosion\x20(%)','paddingAngle':'Espaiat\x20entre\x20llesques','halfPie':_0xce9f22(0x218),'rosePie':_0xce9f22(0x13f),'labelLine':_0xce9f22(0x16d)},'radar':{'shape':_0xce9f22(0x147),'polygon':_0xce9f22(0x13e),'fill':'Omplir\x20l\x27àrea'},'funnel':{'gap':_0xce9f22(0x25a),'absoluteValues':_0xce9f22(0x23c)},'heatmap':{'unit':_0xce9f22(0x275),'labels':'Etiquetes\x20cel·lulars'},'relation':{'nodes':'Nodes','interaction':_0xce9f22(0x260),'edgeLength':'Longitud\x20de\x20l’aresta','circular':_0xce9f22(0x1e8),'force':_0xce9f22(0x1fb),'nodeShape':_0xce9f22(0x274),'valueSize':_0xce9f22(0x169),'rotateLabels':_0xce9f22(0x225),'gravity':_0xce9f22(0x1f1),'repulsion':_0xce9f22(0x16f)},'wordCloud':{'maskImage':_0xce9f22(0x139),'repeat':'Repetiu\x20paraules','cloud':'Núvol','rect':_0xce9f22(0x1a3),'cardioid':_0xce9f22(0x227),'heart':_0xce9f22(0x208),'triangle-forward':_0xce9f22(0x193),'pentagon':'Pentàgon','star':_0xce9f22(0x164)},'waterfall':{'styleTarget':'Destinació\x20de\x20l’estil','positive':_0xce9f22(0x24b),'negative':_0xce9f22(0x1a8),'stackType':_0xce9f22(0x1ba),'arrangement':_0xce9f22(0x154),'subtotal':_0xce9f22(0x192),'includeSubtotal':'Utilitzeu\x20el\x20subtotal','connector':_0xce9f22(0x1de)},'candlestick':{'candle':_0xce9f22(0x1bb),'body':_0xce9f22(0x1ff),'wick':_0xce9f22(0x175),'state':_0xce9f22(0x1eb),'open':_0xce9f22(0x19d),'high':_0xce9f22(0x152),'low':_0xce9f22(0x165),'close':'Tancament','rising':'Aixecant-se','falling':_0xce9f22(0x1ef),'doji':_0xce9f22(0x1d9),'bodyColor':_0xce9f22(0x1d8),'fillOpacity':_0xce9f22(0x22c),'wickColor':_0xce9f22(0x15d),'wickWidth':_0xce9f22(0x25c),'wickOpacity':_0xce9f22(0x144),'candleWidth':'Amplada\x20de\x20l\x27espelma','hollow':_0xce9f22(0x26c),'columnsError':'Les\x20dades\x20del\x20gràfic\x20d’espelmes\x20necessiten\x20les\x20columnes\x20Categoria,\x20Obertura,\x20Màxim,\x20Mínim\x20i\x20Tancament.','series':'Sèrie\x20OHLC'},'histogram':{'binGap':_0xce9f22(0x1e7),'binningMode':'Mode\x20binning','count':_0xce9f22(0x1f4),'width':'Amplada','binCount':_0xce9f22(0x176),'binWidth':_0xce9f22(0x195),'underflow':'Llindar\x20de\x20desbordament\x20inferior','overflow':'Llindar\x20de\x20desbordament','frequency':_0xce9f22(0x1a7)},'treemap':{'parentLabelLayout':_0xce9f22(0x188),'banner':_0xce9f22(0x183),'overlapping':_0xce9f22(0x23e),'leafLabel':_0xce9f22(0x25d),'hierarchy':'Camps\x20de\x20jerarquia','diagnostic':_0xce9f22(0x249)},'sunburst':{'hierarchy':'Jerarquia','addHierarchy':'Afegeix\x20jerarquia','moveUp':_0xce9f22(0x1e6),'moveDown':_0xce9f22(0x197),'removeHierarchy':_0xce9f22(0x15a),'centerLabel':'Total\x20central','labelFormat':_0xce9f22(0x160),'diagnostic':_0xce9f22(0x1d3)},'gauge':{'scale':'Escala','majorDivisions':_0xce9f22(0x239),'minorDivisions':_0xce9f22(0x1d6),'angles':_0xce9f22(0x1cd),'endAngle':'Angle\x20final','ranges':_0xce9f22(0x1bc),'rangeFrom':_0xce9f22(0x238),'rangeTo':'A','addRange':'Afegeix\x20un\x20rang','removeRange':'Elimina\x20l\x27interval','axisTick':_0xce9f22(0x256),'splitLine':_0xce9f22(0x265),'pointer':_0xce9f22(0x1b2),'anchor':_0xce9f22(0x1f7),'progress':_0xce9f22(0x19c),'detail':_0xce9f22(0x222),'pointerNeedle':_0xce9f22(0x151),'pointerSlim':_0xce9f22(0x1a2),'template':'Plantilla','modern':'Modern','classic':_0xce9f22(0x268),'minimal':_0xce9f22(0x165),'advanced':'Configuració\x20avançada','customized':_0xce9f22(0x237),'axisLabelNumberFormat':_0xce9f22(0x246),'detailNumberFormat':'Format\x20de\x20nombre\x20detallat','emptyDiagnostic':_0xce9f22(0x1b7),'mappingDiagnostic':_0xce9f22(0x269),'configDiagnostic':_0xce9f22(0x213)},'chord':{'source':_0xce9f22(0x20d),'target':_0xce9f22(0x215),'count':_0xce9f22(0x17a),'node':_0xce9f22(0x1df),'ribbon':'Cinta','clockwise':_0xce9f22(0x174),'padAngle':_0xce9f22(0x272),'minAngle':'Angle\x20mínim','innerRadius':_0xce9f22(0x247),'outerRadius':'Radi\x20exterior','invalidRadii':_0xce9f22(0x16b),'rotation':_0xce9f22(0x244),'distance':'Distància','width':_0xce9f22(0x253),'focus':'Focus','solid':_0xce9f22(0x150),'gradient':_0xce9f22(0x196),'adjacency':_0xce9f22(0x1b8),'self':_0xce9f22(0x273),'emptyDiagnostic':_0xce9f22(0x1d7),'mappingDiagnostic':_0xce9f22(0x214),'configDiagnostic':_0xce9f22(0x1f5),'associatedValue':_0xce9f22(0x199)},'common':{'category':_0xce9f22(0x26d),'seriesName':'Nom\x20de\x20la\x20sèrie','value':_0xce9f22(0x162),'percentage':_0xce9f22(0x13c),'borderColor':_0xce9f22(0x17d),'labelContent':_0xce9f22(0x211),'labelPosition':_0xce9f22(0x14b),'dataLabels':_0xce9f22(0x233),'chartType':'Tipus\x20de\x20gràfic','bold':_0xce9f22(0x26a),'italic':'Cursiva','shape':_0xce9f22(0x148),'chartStyle':'Estil\x20de\x20gràfic','chartAndAxisTitles':_0xce9f22(0x263),'legend':_0xce9f22(0x1a0),'chartTitle':'Títol\x20del\x20gràfic','subtitle':_0xce9f22(0x200),'series':_0xce9f22(0x1a9),'dataPoint':_0xce9f22(0x15e),'trendline':_0xce9f22(0x1af),'horizontalAxis':_0xce9f22(0x163),'verticalAxis':_0xce9f22(0x159),'rightVerticalAxis':_0xce9f22(0x1b6),'layout':_0xce9f22(0x1f8),'arrow':_0xce9f22(0x1d0),'axisLabels':_0xce9f22(0x17f),'currency':_0xce9f22(0x1da),'date':'Data','displayName':_0xce9f22(0x1e3),'emphasis':_0xce9f22(0x257),'heatmap':_0xce9f22(0x210),'lineColor':_0xce9f22(0x248),'lineWidth':_0xce9f22(0x156),'min':_0xce9f22(0x165),'max':_0xce9f22(0x152),'mode':_0xce9f22(0x232),'stacked':_0xce9f22(0x204),'title':_0xce9f22(0x13b),'auto':_0xce9f22(0x1e9),'position':{'label':_0xce9f22(0x22d),'inside':_0xce9f22(0x234),'outside':_0xce9f22(0x1e0),'top':'Superior','right':_0xce9f22(0x15f),'bottom':_0xce9f22(0x182),'left':'Esquerra','hide':_0xce9f22(0x24d)},'axisAlign':{'start':_0xce9f22(0x180),'center':'Centre','end':'Fi'},'textAlign':{'left':'Esquerra','center':_0xce9f22(0x1d5),'right':_0xce9f22(0x15f)},'legendSelectMode':{'single':'Individual','multiple':'Múltiple','disabled':_0xce9f22(0x137)},'visualMapType':{'continuous':_0xce9f22(0x149),'piecewise':'Per\x20trams'},'default':'Per\x20defecte','reset':_0xce9f22(0x236),'color':_0xce9f22(0x146),'opacity':_0xce9f22(0x1c7),'font':_0xce9f22(0x20d),'none':_0xce9f22(0x21d),'numberFormat':_0xce9f22(0x14e),'borderWidth':_0xce9f22(0x194),'borderType':_0xce9f22(0x1c1),'lineType':'Tipus\x20de\x20línia','dashed':_0xce9f22(0x20e),'dotted':_0xce9f22(0x21b),'circle':_0xce9f22(0x136),'triangle':_0xce9f22(0x266),'diamond':_0xce9f22(0x270),'axisLine':_0xce9f22(0x242),'minimum':_0xce9f22(0x165),'maximum':_0xce9f22(0x152),'startAngle':_0xce9f22(0x16a),'valueField':_0xce9f22(0x1f0),'categoryName':_0xce9f22(0x1ae),'ownValue':_0xce9f22(0x1a4),'children':_0xce9f22(0x212),'label':_0xce9f22(0x15c),'editChart':_0xce9f22(0x20c),'deleteChart':_0xce9f22(0x1b0),'insertChart':_0xce9f22(0x171),'insertChartFailed':_0xce9f22(0x179),'openChartPanel':'Obrir\x20panell\x20de\x20gràfics','hideChartPanel':'Amagar\x20panell\x20de\x20gràfics','exportImage':'Exporta\x20com\x20a\x20imatge','copy':'Copiar','setup':_0xce9f22(0x21a),'customize':'Personalitzar','data':_0xce9f22(0x23d),'tableDataEmpty':_0xce9f22(0x1aa),'dataRange':'Interval\x20de\x20dades','editData':_0xce9f22(0x1f2),'inlineData':'Dades\x20en\x20línia','switchRowColumn':_0xce9f22(0x184),'useAsCategoryLabels':_0xce9f22(0x228),'cancel':_0xce9f22(0x22b),'insert':_0xce9f22(0x1bd),'apply':_0xce9f22(0x20f),'duplicate':_0xce9f22(0x1d2)},'inlineTable':{'pasteHint':'Enganxeu\x20una\x20taula\x20de\x20Fulls\x20de\x20càlcul,\x20Excel\x20o\x20una\x20pàgina\x20web\x20per\x20substituir\x20les\x20dades\x20en\x20línia.','addRow':_0xce9f22(0x230),'addColumn':_0xce9f22(0x13d)},'floatMenu':{'menuTitle':{'chart':'Gràfic','axisTitle':'Títol\x20de\x20l’eix','gridline':_0xce9f22(0x226),'tick':'Marca\x20de\x20graduació','mark':'Marca','dataLabel':_0xce9f22(0x1fc)},'field':{'position':_0xce9f22(0x22d),'size':_0xce9f22(0x189),'align':_0xce9f22(0x251),'map':_0xce9f22(0x271),'rotate':_0xce9f22(0x14c),'labelText':_0xce9f22(0x26e),'titleText':_0xce9f22(0x186)},'action':{'more':'Més'},'control':{'labels':_0xce9f22(0x250),'line':_0xce9f22(0x145),'reverse':'Inverteix'}}}};export{e as default};
|
package/lib/locale/de-DE.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0x2de5e6=_0x34fc;(function(_0x3e2ab2,_0x14dd35){const _0x5314a5=_0x34fc,_0x2065fe=_0x3e2ab2();while(!![]){try{const _0x435b3e=parseInt(_0x5314a5(0x153))/0x1*(parseInt(_0x5314a5(0x174))/0x2)+-parseInt(_0x5314a5(0x15e))/0x3+-parseInt(_0x5314a5(0x182))/0x4+-parseInt(_0x5314a5(0x15d))/0x5+parseInt(_0x5314a5(0x158))/0x6*(parseInt(_0x5314a5(0x17b))/0x7)+parseInt(_0x5314a5(0x188))/0x8*(parseInt(_0x5314a5(0x16b))/0x9)+-parseInt(_0x5314a5(0x185))/0xa*(parseInt(_0x5314a5(0x154))/0xb);if(_0x435b3e===_0x14dd35)break;else _0x2065fe['push'](_0x2065fe['shift']());}catch(_0x1475eb){_0x2065fe['push'](_0x2065fe['shift']());}}}(_0x12db,0x9e1dc));const e={'chart-ui':{'common':{'default':'Standard','reset':_0x2de5e6(0x157)},'presentation':{'wrapLegend':_0x2de5e6(0x181)},'inlineTable':{'pasteHint':'Daten\x20hier\x20kopieren\x20und\x20einfügen','addRow':_0x2de5e6(0x17a),'addColumn':_0x2de5e6(0x170)},'floatMenu':{'menuTitle':{'chart':'Diagramm','chartTitle':'Diagrammtitel','subtitle':_0x2de5e6(0x159),'axisTitle':_0x2de5e6(0x16c),'legend':_0x2de5e6(0x14b),'horizontalAxis':_0x2de5e6(0x16f),'verticalAxis':_0x2de5e6(0x176),'rightVerticalAxis':_0x2de5e6(0x173),'gridline':_0x2de5e6(0x14f),'tick':_0x2de5e6(0x16a),'mark':_0x2de5e6(0x172),'series':_0x2de5e6(0x15f),'dataPoint':_0x2de5e6(0x17d),'dataLabel':_0x2de5e6(0x149)},'field':{'title':_0x2de5e6(0x178),'subtitle':_0x2de5e6(0x159),'position':_0x2de5e6(0x166),'size':_0x2de5e6(0x15c),'align':_0x2de5e6(0x14e),'mode':'Modus','map':_0x2de5e6(0x152),'rotate':_0x2de5e6(0x169),'min':_0x2de5e6(0x156),'max':_0x2de5e6(0x16e),'color':_0x2de5e6(0x167),'borderColor':_0x2de5e6(0x175),'opacity':_0x2de5e6(0x16d),'labelPosition':_0x2de5e6(0x168),'labelText':_0x2de5e6(0x17f),'titleText':_0x2de5e6(0x162)},'action':{'more':_0x2de5e6(0x184),'bold':_0x2de5e6(0x160),'italic':_0x2de5e6(0x161)},'control':{'labels':'Beschriftungen','line':_0x2de5e6(0x14c),'reverse':_0x2de5e6(0x186),'date':_0x2de5e6(0x179)},'option':{'textAlign':{'left':_0x2de5e6(0x177),'center':_0x2de5e6(0x15a),'right':_0x2de5e6(0x164)},'position':{'top':_0x2de5e6(0x180),'bottom':_0x2de5e6(0x187),'left':'Links','right':_0x2de5e6(0x164),'hide':'Ausblenden','inside':_0x2de5e6(0x183),'outside':_0x2de5e6(0x151)},'labelText':{'category':_0x2de5e6(0x17c),'value':_0x2de5e6(0x14a),'percentage':_0x2de5e6(0x14d)},'axisAlign':{'start':_0x2de5e6(0x155),'center':_0x2de5e6(0x15a),'end':_0x2de5e6(0x150)},'legendSelectMode':{'single':_0x2de5e6(0x171),'multiple':_0x2de5e6(0x165),'close':_0x2de5e6(0x15b)},'visualMapType':{'continuous':_0x2de5e6(0x17e),'piecewise':_0x2de5e6(0x163)}}}}};function _0x34fc(_0x4ad2cf,_0x55e0a0){_0x4ad2cf=_0x4ad2cf-0x149;const _0x12db06=_0x12db();let _0x34fc88=_0x12db06[_0x4ad2cf];return _0x34fc88;}function _0x12db(){const _0x5ca3c1=['Mehr','256250AkBFWc','Umkehren','Unten','9048392GcdxLK','Datenbeschriftung','Wert','Legende','Linie','Prozent','Ausrichten','Gitternetzlinie','Ende','Außen','Karte','1IJXstL','99eFwZFA','Anfang','Min.','Zurücksetzen','146154NLgETZ','Untertitel','Mitte','Schließen','Größe','174750HxzONw','2083554YdZaAT','Datenreihe','Fett','Kursiv','Titeltext','Stückweise','Rechts','Mehrfach','Position','Farbe','Beschriftungsposition','Drehen','Teilstrich','9pmAloz','Achsentitel','Deckkraft','Max.','Horizontale\x20Achse','Spalte\x20hinzufügen','Einzeln','Zeichen','Rechte\x20vertikale\x20Achse','1550546PbirQL','Rahmenfarbe','Vertikale\x20Achse','Links','Titel','Datum','Zeile\x20hinzufügen','7nutkxJ','Kategorie','Datenpunkt','Kontinuierlich','Beschriftungstext','Oben','Legende\x20umbrechen','1291776zkFMbz','Innen'];_0x12db=function(){return _0x5ca3c1;};return _0x12db();}export{e as default};
|
|
1
|
+
const _0x5c683c=_0x5907;function _0x5907(_0x39d798,_0x3dc124){_0x39d798=_0x39d798-0x74;const _0x1789a3=_0x1789();let _0x59070a=_0x1789a3[_0x39d798];return _0x59070a;}function _0x1789(){const _0x13372d=['Titeltyp','Schritt','Daten\x20bearbeiten','Überlappend','Typ\x20der\x20Verbindungslinie','Gestrichelt','Punktfarbe','Diamant','Farbe\x20der\x20Verbindungslinie','Stückweise','Das\x20Datumsformat\x20zeigt\x20Datums-\x20und\x20Zeitseriennummern\x20als\x20Datumswerte\x20an.','Dochtbreite','Series\x20overlap\x20(%)','Farbe\x20ankreuzen','Prozentstapel','6aRwIXP','Größe\x20des\x20Sekundärdiagramms','Hauptteilungen','Datenpunkt','Randtyp','Zelletiketten','Exponentiell','Prozentstapel\x20·\x20Säulendiagramm','Größe','Kantenlänge','Wolke','Liniendiagramm','Hierarchie','OHLC-Reihe','Oben','Diagramm-\x20und\x20Achsentitel','Der\x20Innenradius\x20muss\x20kleiner\x20sein\x20als\x20der\x20Außenradius.','Kerzenbreite','Start\x20angle','Nummer','Rosenkuchen','Von','Vorwärtsdreieck','Die\x20Konfiguration\x20des\x20Tachometerdiagramms\x20ist\x20ungültig.\x20Prüfen\x20Sie\x20Skala,\x20Bereiche,\x20Verhältnisse\x20und\x20Größen.','Stern','Trichterdiagramm','Benachbarte\x20Knoten','Datenpunkt\x20entfernen','Stapeln','Formelfarbe','Titeltext','Abbrechen','Schluss','Ein\x20Sehnendiagramm\x20benötigt\x20mindestens\x20eine\x20positiv\x20gewichtete\x20Beziehung\x20zwischen\x20zwei\x20verschiedenen\x20Knoten.','Sunburst-Diagramm','Mindestens','Anordnung','Kombinationsdiagramm','Beschriftungstextfarbe','{0}\x20als\x20Kategorie\x20verwenden','Verbindungslinie','Farbe','Körperfarbe','Hierarchie\x20hinzufügen','Umkehren','Farbverlaufsfüllung','Leeres\x20Rechteck','Duplizieren','Farbe\x20der\x20Gitterlinie','Akkordtabelle','Anzahl\x20der\x20Behälter','Karte','Elemente','Heatmap','Serienname','Ausrichten','Titel','Leerer\x20Kreis','Datenbeschriftung','Niere','Formattypen','14jywjvj','Minimaler\x20Winkel','Verwenden\x20Sie\x20absolute\x20Werte','Stecknadel','Histogramm-Diagramm','Benutzerdefiniertes\x20Format','Datenreihe','Kerze','Fallen','Left\x20(%)','Entfernung','Beschriftungszeile','Positiv','Scheibenabstand','Außen','Fortschritt','Liniendiagramm\x20/\x20Flächendiagramm','Aufteilen\x20nach','Kategoriename','Sankey-Diagramm','Erweitertes\x20Layout','Unterlaufschwelle','Beschriftungstext','Diagrammform','Einzeln','Anpassen','Alle\x20Serien','Banner','Ungültige\x20Werte','Band','Anzahl\x20der\x20Datenpunkte\x20im\x20Sekundärdiagramm','Etiketten\x20drehen','Ein\x20Tachometerdiagramm\x20benötigt\x20ein\x20Beschriftungsfeld\x20und\x20genau\x20ein\x20Wertefeld.','Kerzendiagrammdaten\x20benötigen\x20die\x20Spalten\x20Kategorie,\x20Eröffnung,\x20Hoch,\x20Tief\x20und\x20Schluss.','Datumstypen','Gauge-Diagramm','Linear','Fünfeck','Standardfarbe','Keine','Benutzerdefinierte\x20Aufteilung','Dreieck','Prozentsatz\x20kleiner\x20als','Solide','Gitterlinien','Mülllücke','Unten','Herz','Dochtfarbe','Knoten','Ein\x20Treemap-Diagramm\x20benötigt\x20mindestens\x20ein\x20Hierarchiefeld\x20und\x20ein\x20numerisches\x20Wertefeld.','Dochtopazität','Ausrichtung','Leerer\x20Diamant','Rechts','Eröffnung','Das\x20Buchhaltungszahlenformat\x20richtet\x20Währungssymbole\x20und\x20Dezimalpunkte\x20in\x20einer\x20Spalte\x20aus.','Startwinkel','Untergeordnete\x20Elemente','Logarithmisch','Schriftgröße','Tausendstel-Prozentil','Blattetiketten','Diagrammtitel','Segmente','Behälterbreite','Einfarbig','Breite\x20der\x20Verbindungslinie','Flächendiagramm','Das\x20Währungsformat\x20wird\x20für\x20allgemeine\x20monetäre\x20Werte\x20verwendet,\x20das\x20Buchhaltungsformat\x20richtet\x20Dezimalpunkte\x20in\x20einer\x20Spalte\x20von\x20Werten\x20aus.','Negative\x20Zahlentypen','Flächenfüllung','Aktueller\x20Knoten','Dezimalstellen','Beschriftungsformat\x20festlegen','Wrap-Legende','Trendlinie\x20hinzufügen','Gepunktet','Eigener\x20Wert','1104950NDAVQv','Etikettenposition','Gleitender\x20Durchschnitt','Artikellücke','Bereiche','Wert\x20kleiner\x20als','Prozent\x20gestapeltes\x20Flächendiagramm','Vertikale\x20Achse','Pfeil','Breite\x20der\x20Gitterlinie','Gitternetzlinien\x20und\x20Teilstriche','Maximum','Etikettenstil','Schriftart','Außenradius','Linienfarbe','Zwischensumme\x20verwenden','Steigend','Akkorddiagramm','Leerer\x20Pin','Detailliertes\x20Zahlenformat','Kerzenzustand','Treemap-Diagramm','Datum','Achse\x20umkehren','Layout\x20des\x20übergeordneten\x20Etiketts','Kreis\x20aus\x20Kreis','Anzahl\x20der\x20Beziehungen','Klassische\x20Nadel','Bruchlinie','Gestapeltes\x20Balkendiagramm','Kreisdiagramm','Diagrammstil','Quadratisch','Im\x20Uhrzeigersinn','Zurücksetzen','Anker','Quellformat','Wertfeld','Tief','Typ\x20der\x20Indikatorlinie','Beschriftungen','Radarform','18dDIjbW','Werteinheit','Anzeigename','Abstand\x20zwischen\x20Primär-\x20und\x20Sekundärdiagramm','Bereich\x20hinzufügen','Balken\x20aus\x20Kreis','Tick-Länge','Buchhaltung','Hierarchiefeld\x20entfernen','Vorlage','Wörter\x20wiederholen','Leeres\x20abgerundetes\x20Rechteck','Diagramm','Streudiagramm','Top\x20(%)','Stapeln\x20·\x20Säulendiagramm','Ringdiagramm','Zeile\x20hinzufügen','Netzdiagramm','Diagramm\x20löschen','Leerer\x20Pfeil','Diagramm-Panel\x20öffnen','Wortwolke','212109hwxTmY','Zwischensumme','Linientyp','Stilziel','R²-Farbe','Gitternetzlinie','Diagramm-Editor','Achse\x20tickt','Spalte\x20hinzufügen','Häkchenposition','Ende','Width\x20(%)','Knotenform','Schriftfarbe\x20des\x20Körpers','Endwinkel','Datenpunkte\x20verbinden','Manual','Gesamtsumme\x20in\x20der\x20Mitte','Rechte\x20Achse','Polynom','Diagramm\x20einfügen','Explosion\x20(%)','Als\x20Null\x20behandeln','Einrichten','Indikatorlinie','Maßstab','Zeitraum','Polygon','Glatt','Box-Plot-Diagramm','Tabellendaten\x20sind\x20leer','Formel\x20anzeigen','Plot\x20area','Zeiger','Ausblenden','Ein\x20Sehnendiagramm\x20benötigt\x20unterschiedliche\x20Quell-\x20und\x20Zielfelder\x20sowie\x20optional\x20ein\x20davon\x20verschiedenes\x20Wertefeld.','Anwenden','Donut-Loch','Minimum','Mitte','Thema','Punktform','Körper','Anfang','606472KoauBt','Erweiterte\x20Einstellungen','Gestapeltes\x20Flächendiagramm','217014lqYSfp','Pareto-Diagramm','Unterteilungen\x20je\x20Hauptteilung','Zugeordneter\x20Wert','Fett','Beschriftungsinhalt','Hintergrundfarbe','Zählen','Rotation','Automatisch','Diagramm-Panel\x20ausblenden','Wasserfall','Rechteck','Farbe\x20der\x20Indikatorlinie','Titel\x20der\x20vertikalen\x20Achse','Allgemein','Candlestick-Diagramm','Visuelle\x20Karte','Bestellen','Bild-ID\x20maskieren','Standard','Einfügen','Betonung','Etikettenhintergrund','Kursiv','Linienbreite','1475290FuRqgk','Histogramm','Balkendiagramm-Datenreihe','Konzentrieren\x20Sie\x20sich','Teilstrich','Winkel','Überlaufschwelle','Beziehungsdiagramm','Linie','Opazität','Links','Titel\x20der\x20horizontalen\x20Achse','Achsentitel','Häufigkeit','Untertitel','Inline-Daten','Abstoßung','Mehrfach','Schmale\x20Nadel','Kreis','Datenbereich','Datenbeschriftungen','Titel\x20der\x20rechten\x20vertikalen\x20Achse','Das\x20Allgemein-Format\x20enthält\x20kein\x20spezifisches\x20Zahlenformat.','60768WFMGVA','Hierarchiefelder','Rechte\x20vertikale\x20Achse','Als\x20Bild\x20exportieren','Quelle','Position','Gap\x20width\x20(%)','Innenradius','232152OrCoiq','Punktgröße','Kreis-aus-Kreis-Diagramm','Tachometerdiagramm','Rundschreiben','Sonstige','Ziel','Balken-aus-Kreis-Diagramm','Typ','Diagrammtyp','Zeichen','Gestapelt','Schließen\x20Sie\x20Nullwerte\x20ein'];_0x1789=function(){return _0x13372d;};return _0x1789();}(function(_0x55d10a,_0x129bfb){const _0x445d64=_0x5907,_0x2d64aa=_0x55d10a();while(!![]){try{const _0x607f4b=parseInt(_0x445d64(0x103))/0x1+-parseInt(_0x445d64(0x11f))/0x2*(-parseInt(_0x445d64(0x9a))/0x3)+-parseInt(_0x445d64(0xfb))/0x4+parseInt(_0x445d64(0x1ab))/0x5+-parseInt(_0x445d64(0xc9))/0x6+-parseInt(_0x445d64(0x15c))/0x7*(parseInt(_0x445d64(0xc6))/0x8)+-parseInt(_0x445d64(0x83))/0x9*(parseInt(_0x445d64(0xe3))/0xa);if(_0x607f4b===_0x129bfb)break;else _0x2d64aa['push'](_0x2d64aa['shift']());}catch(_0x36d87c){_0x2d64aa['push'](_0x2d64aa['shift']());}}}(_0x1789,0x28d2e));const e={'chart-ui':{'editor':{'defaultColor':_0x5c683c(0x182),'fontSize':_0x5c683c(0x198)},'setup':{'stack':_0x5c683c(0x13b),'percentStacked':_0x5c683c(0x11e)},'chartTypes':{'line':_0x5c683c(0x12a),'column':'Säulendiagramm','columnStacked':_0x5c683c(0x92),'columnPercentStacked':_0x5c683c(0x126),'bar':'Balkendiagramm','barStacked':_0x5c683c(0x76),'barPercentStacked':'Prozent\x20gestapeltes\x20Balkendiagramm','pie':_0x5c683c(0x77),'donut':_0x5c683c(0x93),'pieOfPie':_0x5c683c(0x105),'barOfPie':_0x5c683c(0x10a),'area':_0x5c683c(0x1a0),'areaStacked':_0x5c683c(0xc8),'areaPercentStacked':_0x5c683c(0x1b1),'radar':'Netzdiagramm','scatter':_0x5c683c(0x90),'combination':_0x5c683c(0x144),'wordCloud':'Wortwolkendiagramm','funnel':_0x5c683c(0x138),'bubble':'Blasendiagramm','relation':_0x5c683c(0xea),'waterfall':'Wasserfalldiagramm','pareto':_0x5c683c(0xca),'sankey':_0x5c683c(0x16f),'heatmap':_0x5c683c(0x154),'boxplot':_0x5c683c(0xb7),'candlestick':_0x5c683c(0xd9),'histogram':_0x5c683c(0xe4),'treemap':_0x5c683c(0x1c1),'sunburst':_0x5c683c(0x141),'gauge':_0x5c683c(0x106),'chord':_0x5c683c(0x1bd)},'section':{'waterfall':'Wasserfalldiagramm','paretoBar':_0x5c683c(0xe5),'paretoLine':'Kumulierte\x20Prozent-Datenreihe','pie':_0x5c683c(0x77),'wordCloud':_0x5c683c(0x99),'radar':_0x5c683c(0x95),'funnel':_0x5c683c(0x138),'relation':_0x5c683c(0xea),'lineAndArea':_0x5c683c(0x16c),'gridlinesAndTicks':_0x5c683c(0x1b5),'indicatorLine':_0x5c683c(0xb2),'candlestick':_0x5c683c(0xd9),'histogram':_0x5c683c(0x160),'treemap':'Baumkartendiagramm','sunburst':_0x5c683c(0x141),'gauge':_0x5c683c(0x17f),'chord':_0x5c683c(0x150)},'presentation':{'backgroundColor':_0x5c683c(0xcf),'theme':_0x5c683c(0xc2),'gradientFill':_0x5c683c(0x14c),'bodyFontSize':'Schriftgröße\x20des\x20Körpers','bodyFontColor':_0x5c683c(0xa7),'titleType':_0x5c683c(0x110),'horizontalAxisTitle':_0x5c683c(0xee),'verticalAxisTitle':_0x5c683c(0xd7),'rightVerticalAxisTitle':_0x5c683c(0xf9),'wrap':_0x5c683c(0x1a7),'selectMode':'Auswahlmodus','visualMapType':_0x5c683c(0xda),'align':_0x5c683c(0x190)},'numberFormat':{'source':_0x5c683c(0x7d),'number':_0x5c683c(0x132),'scientific':'Wissenschaftlich','custom':_0x5c683c(0x161),'preview':'Vorschau','generalType':_0x5c683c(0xd8),'accountingType':_0x5c683c(0x8a),'thousandsType':_0x5c683c(0x199),'formatTypes':_0x5c683c(0x15b),'generalDesc':_0x5c683c(0xfa),'accountingDesc':_0x5c683c(0x194),'currencyDesc':_0x5c683c(0x1a1),'dateDesc':_0x5c683c(0x11a),'thousandsDesc':'Das\x20Tausendstel-Prozentil-Format\x20wird\x20für\x20allgemeine\x20Zahlen\x20verwendet,\x20Währungs-\x20und\x20Buchhaltungsformate\x20bieten\x20spezialisierte\x20Formate\x20für\x20monetäre\x20Werte.','decimalPlaces':_0x5c683c(0x1a5),'currencyTypes':'Währungstypen','negativeNumberTypes':_0x5c683c(0x1a2),'dateTypes':_0x5c683c(0x17e),'setFormat':_0x5c683c(0x1a6)},'series':{'rightAxis':_0x5c683c(0xac),'allSeries':_0x5c683c(0x176),'aggregate':'Aggregieren','borderOpacity':'Rahmendeckkraft','solid':_0x5c683c(0x187),'pointShape':_0x5c683c(0xc3),'pointSize':_0x5c683c(0x104),'pointColor':_0x5c683c(0x116),'removeDataPoint':_0x5c683c(0x13a),'square':_0x5c683c(0x79),'rect':_0x5c683c(0xd5),'roundRect':'Abgerundetes\x20Rechteck','pin':_0x5c683c(0x15f),'emptyCircle':_0x5c683c(0x158),'emptySquare':'Leeres\x20Quadrat','emptyTriangle':'Leeres\x20Dreieck','emptyDiamond':_0x5c683c(0x191),'emptyRect':_0x5c683c(0x14d),'emptyRoundRect':_0x5c683c(0x8e),'emptyPin':_0x5c683c(0x1be),'emptyArrow':_0x5c683c(0x97)},'lineAndArea':{'lineStyle':'Linienstil','line':_0x5c683c(0xeb),'smooth':_0x5c683c(0xb6),'step':_0x5c683c(0x111),'invalidValues':_0x5c683c(0x178),'breakLine':_0x5c683c(0x75),'connect':_0x5c683c(0xa9),'zero':_0x5c683c(0xb0)},'axis':{'useDateAxis':'Beschriftungen\x20als\x20Datumswerte\x20behandeln','target':'Achse','lineColor':_0x5c683c(0x1ba),'lineWidth':_0x5c683c(0xe2),'labelRotation':'Beschriftungsrotation','reverse':_0x5c683c(0x1c3),'gridlineVisible':_0x5c683c(0x188),'gridlineColor':_0x5c683c(0x14f),'gridlineWidth':_0x5c683c(0x1b4),'tickVisible':'Zecken','tickLength':_0x5c683c(0x89),'tickWidth':'Tick-Breite','tickColor':_0x5c683c(0x11d),'tickPosition':_0x5c683c(0xa3)},'indicator':{'lineColor':_0x5c683c(0xd6),'lineType':_0x5c683c(0x80),'labelBackground':_0x5c683c(0xe0),'labelText':_0x5c683c(0x145)},'trendline':{'add':_0x5c683c(0x1a8),'type':_0x5c683c(0x10b),'linear':_0x5c683c(0x180),'exponential':_0x5c683c(0x125),'logarithmic':_0x5c683c(0x197),'polynomial':_0x5c683c(0xad),'power':'Macht','movingAverage':_0x5c683c(0x1ad),'showFormula':_0x5c683c(0xb9),'showR2':'R²\x20anzeigen','order':_0x5c683c(0xdb),'period':_0x5c683c(0xb4),'formulaColor':_0x5c683c(0x13c),'r2Color':_0x5c683c(0x9e)},'pareto':{'includeZeroValues':_0x5c683c(0x10f)},'plotArea':{'label':_0x5c683c(0xba),'manual':_0x5c683c(0xaa),'left':_0x5c683c(0x165),'top':_0x5c683c(0x91),'width':_0x5c683c(0xa5),'height':'Height\x20(%)'},'bar':{'layout':'Bar\x20spacing','gapWidth':_0x5c683c(0x101),'overlap':_0x5c683c(0x11c)},'pie':{'mode':_0x5c683c(0x173),'modeNormal':_0x5c683c(0xdd),'modePieOfPie':_0x5c683c(0x1c5),'modeBarOfPie':_0x5c683c(0x88),'splitType':_0x5c683c(0x16d),'splitAuto':_0x5c683c(0xd2),'splitPosition':_0x5c683c(0x100),'splitCustom':'Benutzerdefiniert','customSelectedCount':_0x5c683c(0x184),'customSelectedCountValue':'{0}\x20Datenpunkte\x20ausgewählt','positionCount':_0x5c683c(0x17a),'valueLessThan':_0x5c683c(0x1b0),'percentageLessThan':_0x5c683c(0x186),'secondarySize':_0x5c683c(0x120),'advancedLayout':_0x5c683c(0x170),'connector':'Verbindung','slices':_0x5c683c(0x19c),'gapWidth':_0x5c683c(0x86),'connectorColor':_0x5c683c(0x118),'connectorWidth':_0x5c683c(0x19f),'connectorType':_0x5c683c(0x114),'aggregateOther':_0x5c683c(0x108),'aggregateMembers':_0x5c683c(0x153),'valueScale':'Werteskalierung','doughnutHole':_0x5c683c(0xbf),'startAngle':_0x5c683c(0x131),'explosion':_0x5c683c(0xaf),'paddingAngle':_0x5c683c(0x169),'halfPie':'Halber\x20Kuchen','rosePie':_0x5c683c(0x133),'labelLine':_0x5c683c(0x167)},'radar':{'shape':_0x5c683c(0x82),'polygon':_0x5c683c(0xb5),'fill':_0x5c683c(0x1a3)},'funnel':{'gap':_0x5c683c(0x1ae),'absoluteValues':_0x5c683c(0x15e)},'heatmap':{'unit':_0x5c683c(0x84),'labels':_0x5c683c(0x124)},'relation':{'nodes':_0x5c683c(0x18d),'interaction':'Interaktion','edgeLength':_0x5c683c(0x128),'circular':_0x5c683c(0x107),'force':'Kraft','nodeShape':_0x5c683c(0xa6),'valueSize':'Größe\x20der\x20Knoten\x20nach\x20Wert','rotateLabels':_0x5c683c(0x17b),'gravity':'Schwerkraft','repulsion':_0x5c683c(0xf3)},'wordCloud':{'maskImage':_0x5c683c(0xdc),'repeat':_0x5c683c(0x8d),'cloud':_0x5c683c(0x129),'rect':_0x5c683c(0xd5),'cardioid':_0x5c683c(0x15a),'heart':_0x5c683c(0x18b),'triangle-forward':_0x5c683c(0x135),'pentagon':_0x5c683c(0x181),'star':_0x5c683c(0x137)},'waterfall':{'styleTarget':_0x5c683c(0x9d),'positive':_0x5c683c(0x168),'negative':'Negativ','stackType':_0x5c683c(0x143),'arrangement':_0x5c683c(0xd4),'subtotal':_0x5c683c(0x9b),'includeSubtotal':_0x5c683c(0x1bb),'connector':_0x5c683c(0x147)},'candlestick':{'candle':_0x5c683c(0x163),'body':_0x5c683c(0xc4),'wick':'Docht','state':_0x5c683c(0x1c0),'open':_0x5c683c(0x193),'high':'Hoch','low':_0x5c683c(0x7f),'close':_0x5c683c(0x13f),'rising':_0x5c683c(0x1bc),'falling':_0x5c683c(0x164),'doji':'Doji','bodyColor':_0x5c683c(0x149),'fillOpacity':'Deckkraft\x20füllen','wickColor':_0x5c683c(0x18c),'wickWidth':_0x5c683c(0x11b),'wickOpacity':_0x5c683c(0x18f),'candleWidth':_0x5c683c(0x130),'hollow':'Hohle\x20Kerze','columnsError':_0x5c683c(0x17d),'series':_0x5c683c(0x12c)},'histogram':{'binGap':_0x5c683c(0x189),'binningMode':'Binning-Modus','count':_0x5c683c(0xd0),'width':'Breite','binCount':_0x5c683c(0x151),'binWidth':_0x5c683c(0x19d),'underflow':_0x5c683c(0x171),'overflow':_0x5c683c(0xe9),'frequency':_0x5c683c(0xf0)},'treemap':{'parentLabelLayout':_0x5c683c(0x1c4),'banner':_0x5c683c(0x177),'overlapping':_0x5c683c(0x113),'leafLabel':_0x5c683c(0x19a),'hierarchy':_0x5c683c(0xfc),'diagnostic':_0x5c683c(0x18e)},'sunburst':{'hierarchy':_0x5c683c(0x12b),'addHierarchy':_0x5c683c(0x14a),'moveUp':'Hierarchiefeld\x20nach\x20oben\x20verschieben','moveDown':'Hierarchiefeld\x20nach\x20unten\x20verschieben','removeHierarchy':_0x5c683c(0x8b),'centerLabel':_0x5c683c(0xab),'labelFormat':_0x5c683c(0x1b7),'diagnostic':'Ein\x20Sunburst-Diagramm\x20benötigt\x20mindestens\x20ein\x20Hierarchiefeld\x20und\x20ein\x20numerisches\x20Wertefeld.'},'gauge':{'scale':_0x5c683c(0xb3),'majorDivisions':_0x5c683c(0x121),'minorDivisions':_0x5c683c(0xcb),'angles':_0x5c683c(0xe8),'endAngle':_0x5c683c(0xa8),'ranges':_0x5c683c(0x1af),'rangeFrom':_0x5c683c(0x134),'rangeTo':'Zu','addRange':_0x5c683c(0x87),'removeRange':'Bereich\x20entfernen','axisTick':_0x5c683c(0xa1),'splitLine':'Geteilte\x20Linien','pointer':_0x5c683c(0xbb),'anchor':_0x5c683c(0x7c),'progress':_0x5c683c(0x16b),'detail':'Detailliert','pointerNeedle':_0x5c683c(0x74),'pointerSlim':_0x5c683c(0xf5),'template':_0x5c683c(0x8c),'modern':'Modern','classic':'Klassisch','minimal':'Minimal','advanced':_0x5c683c(0xc7),'customized':'Benutzerdefiniert','axisLabelNumberFormat':'Zahlenformat\x20der\x20Achsenbeschriftung','detailNumberFormat':_0x5c683c(0x1bf),'emptyDiagnostic':'Ein\x20Tachometerdiagramm\x20benötigt\x20mindestens\x20einen\x20endlichen\x20numerischen\x20Wert.','mappingDiagnostic':_0x5c683c(0x17c),'configDiagnostic':_0x5c683c(0x136)},'chord':{'source':_0x5c683c(0xff),'target':_0x5c683c(0x109),'count':_0x5c683c(0x1c6),'node':'Knoten','ribbon':_0x5c683c(0x179),'clockwise':_0x5c683c(0x7a),'padAngle':'Pad-Winkel','minAngle':_0x5c683c(0x15d),'innerRadius':_0x5c683c(0x102),'outerRadius':_0x5c683c(0x1b9),'invalidRadii':_0x5c683c(0x12f),'rotation':_0x5c683c(0xd1),'distance':_0x5c683c(0x166),'width':'Breite','focus':_0x5c683c(0xe6),'solid':_0x5c683c(0x19e),'gradient':'Farbverlauf','adjacency':_0x5c683c(0x139),'self':_0x5c683c(0x1a4),'emptyDiagnostic':_0x5c683c(0x140),'mappingDiagnostic':_0x5c683c(0xbd),'configDiagnostic':'Die\x20Konfiguration\x20des\x20Sehnendiagramms\x20ist\x20ungültig.\x20Prüfen\x20Sie\x20Winkel,\x20Radien,\x20Deckkraft\x20und\x20Größen.','associatedValue':_0x5c683c(0xcc)},'common':{'category':'Kategorie','seriesName':_0x5c683c(0x155),'value':'Wert','percentage':'Prozentsatz','borderColor':'Randfarbe','labelContent':_0x5c683c(0xce),'labelPosition':_0x5c683c(0x1ac),'dataLabels':_0x5c683c(0xf8),'chartType':_0x5c683c(0x10c),'bold':_0x5c683c(0xcd),'italic':_0x5c683c(0xe1),'shape':'Form','chartStyle':_0x5c683c(0x78),'chartAndAxisTitles':_0x5c683c(0x12e),'legend':'Legende','chartTitle':_0x5c683c(0x19b),'subtitle':_0x5c683c(0xf1),'series':_0x5c683c(0x162),'dataPoint':_0x5c683c(0x122),'trendline':'Trendlinie','horizontalAxis':'Horizontale\x20Achse','verticalAxis':_0x5c683c(0x1b2),'rightVerticalAxis':_0x5c683c(0xfd),'layout':'Layout','arrow':_0x5c683c(0x1b3),'axisLabels':'Achsenbeschriftungen','currency':'Währung','date':_0x5c683c(0x1c2),'displayName':_0x5c683c(0x85),'emphasis':_0x5c683c(0xdf),'heatmap':_0x5c683c(0x154),'lineColor':_0x5c683c(0x1ba),'lineWidth':_0x5c683c(0xe2),'min':_0x5c683c(0xc0),'max':_0x5c683c(0x1b6),'mode':'Modus','stacked':_0x5c683c(0x10e),'title':_0x5c683c(0x157),'auto':_0x5c683c(0xd2),'position':{'label':_0x5c683c(0x100),'inside':'Innen','outside':_0x5c683c(0x16a),'top':_0x5c683c(0x12d),'right':_0x5c683c(0x192),'bottom':_0x5c683c(0x18a),'left':_0x5c683c(0xed),'hide':_0x5c683c(0xbc)},'axisAlign':{'start':_0x5c683c(0xc5),'center':_0x5c683c(0xc1),'end':_0x5c683c(0xa4)},'textAlign':{'left':_0x5c683c(0xed),'center':_0x5c683c(0xc1),'right':'Rechts'},'legendSelectMode':{'single':_0x5c683c(0x174),'multiple':_0x5c683c(0xf4),'disabled':'Deaktiviert'},'visualMapType':{'continuous':'Kontinuierlich','piecewise':_0x5c683c(0x119)},'default':'Standard','reset':_0x5c683c(0x7b),'color':_0x5c683c(0x148),'opacity':_0x5c683c(0xec),'font':_0x5c683c(0x1b8),'none':_0x5c683c(0x183),'numberFormat':'Zahlenformat','borderWidth':'Randbreite','borderType':_0x5c683c(0x123),'lineType':_0x5c683c(0x9c),'dashed':_0x5c683c(0x115),'dotted':_0x5c683c(0x1a9),'circle':_0x5c683c(0xf6),'triangle':_0x5c683c(0x185),'diamond':_0x5c683c(0x117),'axisLine':'Achsenlinie','minimum':_0x5c683c(0x142),'maximum':'Maximal','startAngle':_0x5c683c(0x195),'valueField':_0x5c683c(0x7e),'categoryName':_0x5c683c(0x16e),'ownValue':_0x5c683c(0x1aa),'children':_0x5c683c(0x196),'label':'Etikett','editChart':_0x5c683c(0xa0),'deleteChart':_0x5c683c(0x96),'insertChart':_0x5c683c(0xae),'insertChartFailed':'Diagramm\x20konnte\x20nicht\x20eingefügt\x20werden','openChartPanel':_0x5c683c(0x98),'hideChartPanel':_0x5c683c(0xd3),'exportImage':_0x5c683c(0xfe),'copy':'Kopieren','setup':_0x5c683c(0xb1),'customize':_0x5c683c(0x175),'data':'Daten','tableDataEmpty':_0x5c683c(0xb8),'dataRange':_0x5c683c(0xf7),'editData':_0x5c683c(0x112),'inlineData':_0x5c683c(0xf2),'switchRowColumn':'Zu\x20Zeile/Spalte\x20wechseln','useAsCategoryLabels':_0x5c683c(0x146),'cancel':_0x5c683c(0x13e),'insert':_0x5c683c(0xde),'apply':_0x5c683c(0xbe),'duplicate':_0x5c683c(0x14e)},'inlineTable':{'pasteHint':'Fügen\x20Sie\x20eine\x20Tabelle\x20aus\x20Tabellen,\x20Excel\x20oder\x20einer\x20Webseite\x20ein,\x20um\x20die\x20Inline-Daten\x20zu\x20ersetzen.','addRow':_0x5c683c(0x94),'addColumn':_0x5c683c(0xa2)},'floatMenu':{'menuTitle':{'chart':_0x5c683c(0x8f),'axisTitle':_0x5c683c(0xef),'gridline':_0x5c683c(0x9f),'tick':_0x5c683c(0xe7),'mark':_0x5c683c(0x10d),'dataLabel':_0x5c683c(0x159)},'field':{'position':_0x5c683c(0x100),'size':_0x5c683c(0x127),'align':_0x5c683c(0x156),'map':_0x5c683c(0x152),'rotate':'Drehen','labelText':_0x5c683c(0x172),'titleText':_0x5c683c(0x13d)},'action':{'more':'Mehr'},'control':{'labels':_0x5c683c(0x81),'line':_0x5c683c(0xeb),'reverse':_0x5c683c(0x14b)}}}};export{e as default};
|
package/lib/locale/en-US.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0xa4d645=_0x2f9e;function _0x2f9e(_0x11f7bc,_0x365fb6){_0x11f7bc=_0x11f7bc-0xd2;const _0xae7128=_0xae71();let _0x2f9ef5=_0xae7128[_0x11f7bc];return _0x2f9ef5;}function _0xae71(){const _0x111b7f=['Axis\x20title','Subtitle','Top','Label\x20position','Chart\x20title','Right\x20vertical\x20axis','Horizontal\x20axis','Left','Data\x20point','End','3737166rxoIOD','Line','Map','990WkddNe','567FhyJYU','Add\x20row','Gridline','Paste\x20a\x20table\x20from\x20Sheets,\x20Excel,\x20or\x20a\x20webpage\x20to\x20replace\x20the\x20inline\x20data.','Wrap\x20legend','Right','Align','2316tUorue','Series','Min','1004810tWjUXT','Data\x20label','Chart','Start','Max','Title','Add\x20column','Continuous','Vertical\x20axis','Multiple','87mrbsTx','Hide','Center','Value','66715ctyFZS','Label\x20text','16726WacIRF','Close','Inside','Title\x20text','Opacity','Pos','Mark','Border\x20color','Single','Percentage','2316906jXTExK','Default','Legend','471eSdYFv','Italic','Outside','14792SqRBAf'];_0xae71=function(){return _0x111b7f;};return _0xae71();}(function(_0x1c2940,_0x39dc57){const _0x5e71b3=_0x2f9e,_0x1ec14c=_0x1c2940();while(!![]){try{const _0x3a2fa1=parseInt(_0x5e71b3(0xe8))/0x1*(-parseInt(_0x5e71b3(0xee))/0x2)+-parseInt(_0x5e71b3(0xfb))/0x3*(-parseInt(_0x5e71b3(0xdb))/0x4)+parseInt(_0x5e71b3(0xde))/0x5+parseInt(_0x5e71b3(0x109))/0x6+parseInt(_0x5e71b3(0xd4))/0x7*(-parseInt(_0x5e71b3(0xfe))/0x8)+-parseInt(_0x5e71b3(0xf8))/0x9+parseInt(_0x5e71b3(0xd3))/0xa*(parseInt(_0x5e71b3(0xec))/0xb);if(_0x3a2fa1===_0x39dc57)break;else _0x1ec14c['push'](_0x1ec14c['shift']());}catch(_0x3f556d){_0x1ec14c['push'](_0x1ec14c['shift']());}}}(_0xae71,0x5cdd9));const e={'chart-ui':{'common':{'default':_0xa4d645(0xf9),'reset':'Reset'},'presentation':{'wrapLegend':_0xa4d645(0xd8)},'inlineTable':{'pasteHint':_0xa4d645(0xd7),'addRow':_0xa4d645(0xd5),'addColumn':_0xa4d645(0xe4)},'floatMenu':{'menuTitle':{'chart':_0xa4d645(0xe0),'chartTitle':_0xa4d645(0x103),'subtitle':'Subtitle','axisTitle':_0xa4d645(0xff),'legend':_0xa4d645(0xfa),'horizontalAxis':_0xa4d645(0x105),'verticalAxis':_0xa4d645(0xe6),'rightVerticalAxis':_0xa4d645(0x104),'gridline':_0xa4d645(0xd6),'tick':'Tick','mark':_0xa4d645(0xf4),'series':_0xa4d645(0xdc),'dataPoint':_0xa4d645(0x107),'dataLabel':_0xa4d645(0xdf)},'field':{'title':_0xa4d645(0xe3),'subtitle':_0xa4d645(0x100),'position':_0xa4d645(0xf3),'size':'Size','align':_0xa4d645(0xda),'mode':'Mode','map':_0xa4d645(0xd2),'rotate':'Rotate','min':_0xa4d645(0xdd),'max':_0xa4d645(0xe2),'color':'Color','borderColor':_0xa4d645(0xf5),'opacity':_0xa4d645(0xf2),'labelPosition':_0xa4d645(0x102),'labelText':_0xa4d645(0xed),'titleText':_0xa4d645(0xf1)},'action':{'more':'More','bold':'Bold','italic':_0xa4d645(0xfc)},'control':{'labels':'Labels','line':_0xa4d645(0x10a),'reverse':'Reverse','date':'Date'},'option':{'textAlign':{'left':'Left','center':_0xa4d645(0xea),'right':_0xa4d645(0xd9)},'position':{'top':_0xa4d645(0x101),'bottom':'Bottom','left':_0xa4d645(0x106),'right':_0xa4d645(0xd9),'hide':_0xa4d645(0xe9),'inside':_0xa4d645(0xf0),'outside':_0xa4d645(0xfd)},'labelText':{'category':'Category','value':_0xa4d645(0xeb),'percentage':_0xa4d645(0xf7)},'axisAlign':{'start':_0xa4d645(0xe1),'center':_0xa4d645(0xea),'end':_0xa4d645(0x108)},'legendSelectMode':{'single':_0xa4d645(0xf6),'multiple':_0xa4d645(0xe7),'close':_0xa4d645(0xef)},'visualMapType':{'continuous':_0xa4d645(0xe5),'piecewise':'Piecewise'}}}}};export{e as default};
|
|
1
|
+
const _0x42b1ec=_0x5075;function _0x5075(_0x5589d6,_0x105468){_0x5589d6=_0x5589d6-0x9b;const _0x3f0ae3=_0x3f0a();let _0x5075e5=_0x3f0ae3[_0x5589d6];return _0x5075e5;}(function(_0x24c5c3,_0x4b9ab3){const _0x13bfcd=_0x5075,_0x56111f=_0x24c5c3();while(!![]){try{const _0x415e09=parseInt(_0x13bfcd(0x11d))/0x1*(-parseInt(_0x13bfcd(0xe3))/0x2)+-parseInt(_0x13bfcd(0xb0))/0x3*(parseInt(_0x13bfcd(0xfb))/0x4)+-parseInt(_0x13bfcd(0x119))/0x5+-parseInt(_0x13bfcd(0x1de))/0x6+parseInt(_0x13bfcd(0x100))/0x7*(-parseInt(_0x13bfcd(0xc4))/0x8)+parseInt(_0x13bfcd(0x16f))/0x9+parseInt(_0x13bfcd(0x19f))/0xa*(parseInt(_0x13bfcd(0x168))/0xb);if(_0x415e09===_0x4b9ab3)break;else _0x56111f['push'](_0x56111f['shift']());}catch(_0x528b84){_0x56111f['push'](_0x56111f['shift']());}}}(_0x3f0a,0x404f1));function _0x3f0a(){const _0x5ba95e=['Node','Classic\x20needle','Visual\x20map','Title\x20text','Candle\x20width','Major\x20divisions','Scatter\x20chart','Combination\x20chart','Border\x20opacity','Wick','Classic','Copy','Relation','Show\x20R²','Scale','Insert','Percentage','Use\x20absolute\x20values','Doughnut\x20chart','Subtotal','Secondary\x20data\x20point\x20count','Bin\x20gap','Exponential','Treemap\x20chart','Duplicate','Border\x20color','Stacked\x20bar\x20chart','100%\x20stacked\x20area\x20chart','99670tWEeij','Reset','End\x20angle','Arrow','Width\x20(%)','Mode','Candle\x20state','Data\x20labels','Indicator\x20line\x20color','Outer\x20radius','Max','Tick\x20length','Percentage\x20less\x20than','Remove\x20hierarchy\x20field','Center','Distance','Start\x20angle','Heatmap','Series','Vertical\x20axis\x20title','Hierarchy\x20fields','Height\x20(%)','Doughnut\x20hole','General\x20format\x20does\x20not\x20contain\x20any\x20specific\x20number\x20format.','Empty\x20diamond','Plot\x20size','Center\x20total','Bubble\x20chart','Empty\x20round\x20rectangle','None','Point\x20color','Rectangle','Period','Gridline\x20color','All\x20series','Stacked\x20area\x20chart','Bottom','Pin','Trendline','Bin\x20count','Apply','Polynomial','Date','Minimal','Default\x20color','Mark','Doji','Connector\x20line','Show\x20formula','Add\x20row','Boxplot\x20chart','Gravity','Data\x20point','High','Horizontal\x20axis\x20title','Title','Empty\x20circle','Repeat\x20words','Waterfall\x20series','Right','Gauge\x20configuration\x20is\x20invalid.\x20Check\x20its\x20scale,\x20ranges,\x20ratios,\x20and\x20sizes.','Background\x20color','Color','1322742sEDrhu','Opacity','Reverse','Wick\x20color','Axis\x20labels','Continuous','Empty\x20rectangle','Data\x20label','Bin\x20width','Legend','Source','Column\x20chart','Emphasis','Round\x20rectangle','Wrap\x20legend','Empty\x20pin','Force','Move\x20hierarchy\x20field\x20up','Cardioid','Inner\x20radius\x20must\x20be\x20smaller\x20than\x20outer\x20radius.','Advanced\x20settings','Underflow','End','Empty\x20arrow','Format\x20Types','Treemap\x20requires\x20at\x20least\x20one\x20hierarchy\x20field\x20and\x20one\x20numeric\x20value\x20field.','84zFvndI','Cloud','Pie\x20chart','Remove\x20data\x20point','Wick\x20width','Regular','Number','Switch\x20row/column','Chord','Insert\x20chart','Label\x20text\x20color','Fill\x20opacity','Line\x20width','Multiple','Circle','Treemap','Move\x20hierarchy\x20field\x20down','Custom\x20split','Smooth','Ribbon','1055720tepUks','Label\x20rotation','Clockwise','Date\x20Types','Waterfall','Order','Horizontal\x20axis','Chart\x20shape','Chord\x20configuration\x20is\x20invalid.\x20Check\x20its\x20angles,\x20radii,\x20opacity,\x20and\x20sizes.','Automatic','Pareto\x20chart','Modern','Pie','Arrangement','Minimum\x20angle','Inside','Anchor','Body\x20color','Members','Pareto\x20bar\x20series','Stacked\x20column\x20chart','Rising','Detail','Single','Custom','Connector\x20width','Chart\x20and\x20axis\x20titles','Min','Gradient','Series\x20overlap\x20(%)','Gradient\x20fill','3326qQFnVB','Top\x20(%)','Item\x20gap','Display\x20name','Theme','Falling','Tick\x20width','Candlestick\x20data\x20requires\x20Category,\x20Open,\x20High,\x20Low,\x20and\x20Close\x20columns.','Plot\x20area','Right\x20vertical\x20axis','Shape','Empty\x20triangle','Maximum','Candlestick\x20chart','Gauge\x20requires\x20one\x20label\x20field\x20and\x20exactly\x20one\x20value\x20field.','Ticks','Inline\x20data','Histogram\x20chart','Modify\x20data','Other','Label','Date\x20format\x20displays\x20date\x20and\x20time\x20serial\x20numbers\x20as\x20date\x20values.','Data','Number\x20format','40096Bshdwf','Forward\x20triangle','Thousandth\x20percentile\x20format\x20is\x20used\x20for\x20general\x20numbers,\x20currency\x20and\x20accounting\x20formats\x20provide\x20specialized\x20formats\x20for\x20monetary\x20values.','Pie\x20of\x20pie\x20chart','Funnel','7wgPQTw','Angles','Edge\x20length','Word\x20cloud\x20chart','Remove\x20range','Label\x20text','Hollow\x20candle','Line\x20type','Value\x20scale','Diamond','Low','Chart\x20title','Funnel\x20chart','Chord\x20chart','Slice\x20spacing','Chart','Series\x20name','Default','Paste\x20a\x20table\x20from\x20Sheets,\x20Excel,\x20or\x20a\x20webpage\x20to\x20replace\x20the\x20inline\x20data.','Ranges','Value\x20field','Start','Left\x20(%)','Treat\x20labels\x20as\x20dates','OHLC\x20series','2010440eaTxrD','Gap\x20width\x20(%)','Scientific','Treat\x20as\x20zero','257gMZPqQ','Cancel','Stack','Minimum','Indicator\x20line','Aggregate','Edit\x20chart','Overflow','Chord\x20requires\x20at\x20least\x20one\x20positive-weight\x20relationship\x20between\x20two\x20different\x20nodes.','Slim\x20needle','Type','Explosion\x20(%)','Customize','Line\x20color','Hide\x20chart\x20panel','Linear','Category','Chart\x20type','Alignment','Pos','Solid','Subtitle','Node\x20shape','Include\x20zero\x20values','General','Label\x20position','Outside','Own\x20value','Value','Bold','Formula\x20color','Selection\x20mode','Children','Leaf\x20labels','Wick\x20opacity','Font','Split\x20by','Open','Label\x20line','Dotted','Indicator\x20line\x20type','Candlestick','Mask\x20image\x20ID','Line','Label\x20background','Current\x20node','Radar\x20shape','Power','From','Border\x20width','Relationship\x20count','Axis\x20line','Title\x20type','Italic','Slices','Currency','Thousandth\x20Percentile','Delete\x20chart','Area\x20fill','Point\x20shape','Close','Cell\x20labels','Break\x20line','Parent\x20label\x20layout','Area\x20chart','Style\x20target','Axis\x20label\x20number\x20format','Hierarchy','Unable\x20to\x20insert\x20chart.','Binning\x20mode','Heart','Position','Adjacent\x20nodes','Line\x20style','Point\x20size','1408kIYywI','Bar\x20of\x20Pie','Axis','R²\x20color','Set\x20label\x20format','Add\x20hierarchy','Value\x20unit','4051854pBDBFG','Sunburst\x20chart','Rose\x20pie','Radar','Vertical\x20axis','Step','Border\x20type','Chart\x20editor','Pointer','Top','Line\x20and\x20area','Disabled','Invalid\x20values','Table\x20data\x20is\x20empty.','Reverse\x20axis','Gridlines\x20and\x20ticks','Pareto\x20line\x20series','Pad\x20angle','Star','Map'];_0x3f0a=function(){return _0x5ba95e;};return _0x3f0a();}const e={'chart-ui':{'editor':{'defaultColor':_0x42b1ec(0x1cb),'fontSize':'Font\x20size'},'setup':{'stack':_0x42b1ec(0x11f),'percentStacked':'100%\x20stacked'},'chartTypes':{'line':'Line\x20chart','column':_0x42b1ec(0xa1),'columnStacked':_0x42b1ec(0xd8),'columnPercentStacked':'100%\x20stacked\x20column\x20chart','bar':'Bar\x20chart','barStacked':_0x42b1ec(0x19d),'barPercentStacked':'100%\x20stacked\x20bar\x20chart','pie':_0x42b1ec(0xb2),'donut':_0x42b1ec(0x195),'pieOfPie':_0x42b1ec(0xfe),'barOfPie':'Bar\x20of\x20pie\x20chart','area':_0x42b1ec(0x15d),'areaStacked':_0x42b1ec(0x1c2),'areaPercentStacked':_0x42b1ec(0x19e),'radar':'Radar\x20chart','scatter':_0x42b1ec(0x189),'combination':_0x42b1ec(0x18a),'wordCloud':_0x42b1ec(0x103),'funnel':_0x42b1ec(0x10c),'bubble':_0x42b1ec(0x1ba),'relation':'Relation\x20chart','waterfall':'Waterfall\x20chart','pareto':_0x42b1ec(0xce),'sankey':'Sankey\x20chart','heatmap':_0x42b1ec(0x1b0),'boxplot':_0x42b1ec(0x1d1),'candlestick':_0x42b1ec(0xf0),'histogram':_0x42b1ec(0xf4),'treemap':_0x42b1ec(0x19a),'sunburst':_0x42b1ec(0x170),'gauge':'Gauge\x20chart','chord':_0x42b1ec(0x10d)},'section':{'waterfall':_0x42b1ec(0x1d9),'paretoBar':_0x42b1ec(0xd7),'paretoLine':_0x42b1ec(0x17f),'pie':_0x42b1ec(0xd0),'wordCloud':'Word\x20cloud','radar':_0x42b1ec(0x172),'funnel':_0x42b1ec(0xff),'relation':_0x42b1ec(0x18f),'lineAndArea':_0x42b1ec(0x179),'gridlinesAndTicks':_0x42b1ec(0x17e),'indicatorLine':_0x42b1ec(0x121),'candlestick':_0x42b1ec(0x146),'histogram':'Histogram','treemap':_0x42b1ec(0xbf),'sunburst':'Sunburst','gauge':'Gauge','chord':_0x42b1ec(0xb8)},'presentation':{'backgroundColor':_0x42b1ec(0x1dc),'theme':_0x42b1ec(0xe7),'gradientFill':_0x42b1ec(0xe2),'bodyFontSize':'Font\x20size','bodyFontColor':'Font\x20color','titleType':_0x42b1ec(0x151),'horizontalAxisTitle':_0x42b1ec(0x1d5),'verticalAxisTitle':_0x42b1ec(0x1b2),'rightVerticalAxisTitle':'Right\x20vertical\x20axis\x20title','wrap':_0x42b1ec(0xa4),'selectMode':_0x42b1ec(0x13c),'visualMapType':_0x42b1ec(0x185),'align':_0x42b1ec(0x12f)},'numberFormat':{'source':'Source\x20format','number':_0x42b1ec(0xb6),'scientific':_0x42b1ec(0x11b),'custom':'Custom\x20format','preview':'Preview','generalType':_0x42b1ec(0x135),'accountingType':'Accounting','thousandsType':_0x42b1ec(0x155),'formatTypes':_0x42b1ec(0xae),'generalDesc':_0x42b1ec(0x1b6),'accountingDesc':'Accounting\x20number\x20format\x20aligns\x20currency\x20symbols\x20and\x20decimal\x20points\x20in\x20a\x20column.','currencyDesc':'Currency\x20format\x20is\x20used\x20for\x20general\x20monetary\x20values,\x20accounting\x20format\x20aligns\x20decimal\x20points\x20in\x20a\x20column\x20of\x20values.','dateDesc':_0x42b1ec(0xf8),'thousandsDesc':_0x42b1ec(0xfd),'decimalPlaces':'Decimal\x20Places','currencyTypes':'Currency\x20Types','negativeNumberTypes':'Negative\x20Number\x20Types','dateTypes':_0x42b1ec(0xc7),'setFormat':_0x42b1ec(0x16c)},'series':{'allSeries':_0x42b1ec(0x1c1),'aggregate':_0x42b1ec(0x122),'rightAxis':'Right\x20axis','borderOpacity':_0x42b1ec(0x18b),'solid':_0x42b1ec(0x131),'pointShape':_0x42b1ec(0x158),'pointSize':_0x42b1ec(0x167),'pointColor':_0x42b1ec(0x1bd),'removeDataPoint':_0x42b1ec(0xb3),'square':'Square','rect':_0x42b1ec(0x1be),'roundRect':_0x42b1ec(0xa3),'pin':_0x42b1ec(0x1c4),'emptyCircle':_0x42b1ec(0x1d7),'emptySquare':'Empty\x20square','emptyTriangle':_0x42b1ec(0xee),'emptyDiamond':_0x42b1ec(0x1b7),'emptyRect':_0x42b1ec(0x9c),'emptyRoundRect':_0x42b1ec(0x1bb),'emptyPin':_0x42b1ec(0xa5),'emptyArrow':_0x42b1ec(0xad)},'lineAndArea':{'lineStyle':_0x42b1ec(0x166),'line':_0x42b1ec(0x148),'smooth':_0x42b1ec(0xc2),'step':_0x42b1ec(0x174),'invalidValues':_0x42b1ec(0x17b),'breakLine':_0x42b1ec(0x15b),'connect':'Connect\x20data\x20points','zero':_0x42b1ec(0x11c)},'axis':{'target':_0x42b1ec(0x16a),'useDateAxis':_0x42b1ec(0x117),'lineColor':_0x42b1ec(0x12a),'lineWidth':'Line\x20width','labelRotation':_0x42b1ec(0xc5),'reverse':_0x42b1ec(0x17d),'gridlineVisible':'Gridlines','gridlineColor':_0x42b1ec(0x1c0),'gridlineWidth':'Gridline\x20width','tickVisible':_0x42b1ec(0xf2),'tickLength':_0x42b1ec(0x1aa),'tickWidth':_0x42b1ec(0xe9),'tickColor':'Tick\x20color','tickPosition':'Tick\x20position'},'indicator':{'lineColor':_0x42b1ec(0x1a7),'lineType':_0x42b1ec(0x145),'labelBackground':_0x42b1ec(0x149),'labelText':_0x42b1ec(0xba)},'trendline':{'add':'Add\x20trendline','type':_0x42b1ec(0x127),'linear':_0x42b1ec(0x12c),'exponential':_0x42b1ec(0x199),'logarithmic':'Logarithmic','polynomial':_0x42b1ec(0x1c8),'power':_0x42b1ec(0x14c),'movingAverage':'Moving\x20average','showFormula':_0x42b1ec(0x1cf),'showR2':_0x42b1ec(0x190),'order':_0x42b1ec(0xc9),'period':_0x42b1ec(0x1bf),'formulaColor':_0x42b1ec(0x13b),'r2Color':_0x42b1ec(0x16b)},'pareto':{'includeZeroValues':_0x42b1ec(0x134)},'plotArea':{'label':_0x42b1ec(0xeb),'manual':'Manual','left':_0x42b1ec(0x116),'top':_0x42b1ec(0xe4),'width':_0x42b1ec(0x1a3),'height':_0x42b1ec(0x1b4)},'bar':{'layout':'Bar\x20spacing','gapWidth':_0x42b1ec(0x11a),'overlap':_0x42b1ec(0xe1)},'pie':{'mode':_0x42b1ec(0xcb),'modeNormal':_0x42b1ec(0xb5),'modePieOfPie':'Pie\x20of\x20Pie','modeBarOfPie':_0x42b1ec(0x169),'splitType':_0x42b1ec(0x141),'splitAuto':_0x42b1ec(0xcd),'splitPosition':'Position','splitCustom':_0x42b1ec(0xdc),'customSelectedCount':_0x42b1ec(0xc1),'customSelectedCountValue':'{0}\x20data\x20points\x20selected','positionCount':_0x42b1ec(0x197),'valueLessThan':'Value\x20less\x20than','percentageLessThan':_0x42b1ec(0x1ab),'secondarySize':_0x42b1ec(0x1b8),'advancedLayout':'Advanced\x20layout','connector':'Connector','slices':_0x42b1ec(0x153),'gapWidth':'Plot\x20gap','connectorColor':'Connector\x20color','connectorWidth':_0x42b1ec(0xdd),'connectorType':'Connector\x20type','aggregateOther':_0x42b1ec(0xf6),'aggregateMembers':_0x42b1ec(0xd6),'doughnutHole':_0x42b1ec(0x1b5),'startAngle':_0x42b1ec(0x1af),'explosion':_0x42b1ec(0x128),'valueScale':_0x42b1ec(0x108),'paddingAngle':_0x42b1ec(0x10e),'halfPie':'Half\x20pie','rosePie':_0x42b1ec(0x171),'labelLine':_0x42b1ec(0x143)},'radar':{'shape':_0x42b1ec(0x14b),'polygon':'Polygon','fill':_0x42b1ec(0x157)},'funnel':{'gap':_0x42b1ec(0xe5),'absoluteValues':_0x42b1ec(0x194)},'heatmap':{'unit':_0x42b1ec(0x16e),'labels':_0x42b1ec(0x15a)},'relation':{'nodes':'Nodes','interaction':'Interaction','edgeLength':_0x42b1ec(0x102),'circular':'Circular','force':_0x42b1ec(0xa6),'nodeShape':_0x42b1ec(0x133),'valueSize':'Size\x20nodes\x20by\x20value','rotateLabels':'Rotate\x20labels','gravity':_0x42b1ec(0x1d2),'repulsion':'Repulsion'},'wordCloud':{'maskImage':_0x42b1ec(0x147),'repeat':_0x42b1ec(0x1d8),'cloud':_0x42b1ec(0xb1),'rect':_0x42b1ec(0x1be),'cardioid':_0x42b1ec(0xa8),'heart':_0x42b1ec(0x163),'triangle-forward':_0x42b1ec(0xfc),'pentagon':'Pentagon','star':_0x42b1ec(0x181)},'waterfall':{'styleTarget':_0x42b1ec(0x15e),'positive':'Positive','negative':'Negative','stackType':_0x42b1ec(0xd1),'arrangement':_0x42b1ec(0xc8),'subtotal':_0x42b1ec(0x196),'includeSubtotal':'Use\x20subtotal','connector':_0x42b1ec(0x1ce)},'candlestick':{'candle':'Candle','body':'Body','wick':_0x42b1ec(0x18c),'state':_0x42b1ec(0x1a5),'open':_0x42b1ec(0x142),'high':_0x42b1ec(0x1d4),'low':_0x42b1ec(0x10a),'close':_0x42b1ec(0x159),'rising':_0x42b1ec(0xd9),'falling':_0x42b1ec(0xe8),'doji':_0x42b1ec(0x1cd),'bodyColor':_0x42b1ec(0xd5),'fillOpacity':_0x42b1ec(0xbb),'wickColor':_0x42b1ec(0x1e1),'wickWidth':_0x42b1ec(0xb4),'wickOpacity':_0x42b1ec(0x13f),'candleWidth':_0x42b1ec(0x187),'hollow':_0x42b1ec(0x106),'columnsError':_0x42b1ec(0xea),'series':_0x42b1ec(0x118)},'histogram':{'binGap':_0x42b1ec(0x198),'binningMode':_0x42b1ec(0x162),'count':'Count','width':'Width','binCount':_0x42b1ec(0x1c6),'binWidth':_0x42b1ec(0x9e),'underflow':_0x42b1ec(0xab),'overflow':_0x42b1ec(0x124),'frequency':'Frequency'},'treemap':{'parentLabelLayout':_0x42b1ec(0x15c),'banner':'Banner','overlapping':'Overlapping','leafLabel':_0x42b1ec(0x13e),'hierarchy':_0x42b1ec(0x1b3),'diagnostic':_0x42b1ec(0xaf)},'sunburst':{'hierarchy':_0x42b1ec(0x160),'addHierarchy':_0x42b1ec(0x16d),'moveUp':_0x42b1ec(0xa7),'moveDown':_0x42b1ec(0xc0),'removeHierarchy':_0x42b1ec(0x1ac),'centerLabel':_0x42b1ec(0x1b9),'labelFormat':'Label\x20style','diagnostic':'Sunburst\x20requires\x20at\x20least\x20one\x20hierarchy\x20field\x20and\x20one\x20numeric\x20value\x20field.'},'gauge':{'scale':_0x42b1ec(0x191),'majorDivisions':_0x42b1ec(0x188),'minorDivisions':'Minor\x20divisions\x20per\x20major','angles':_0x42b1ec(0x101),'endAngle':_0x42b1ec(0x1a1),'ranges':_0x42b1ec(0x113),'rangeFrom':_0x42b1ec(0x14d),'rangeTo':'To','addRange':'Add\x20range','removeRange':_0x42b1ec(0x104),'axisTick':'Axis\x20ticks','splitLine':'Split\x20lines','pointer':_0x42b1ec(0x177),'anchor':_0x42b1ec(0xd4),'progress':'Progress','detail':_0x42b1ec(0xda),'pointerNeedle':_0x42b1ec(0x184),'pointerSlim':_0x42b1ec(0x126),'template':'Template','modern':_0x42b1ec(0xcf),'classic':_0x42b1ec(0x18d),'minimal':_0x42b1ec(0x1ca),'advanced':_0x42b1ec(0xaa),'customized':'Custom','axisLabelNumberFormat':_0x42b1ec(0x15f),'detailNumberFormat':'Detail\x20number\x20format','emptyDiagnostic':'Gauge\x20requires\x20at\x20least\x20one\x20finite\x20numeric\x20value.','mappingDiagnostic':_0x42b1ec(0xf1),'configDiagnostic':_0x42b1ec(0x1db)},'chord':{'source':_0x42b1ec(0xa0),'target':'Target','count':_0x42b1ec(0x14f),'node':_0x42b1ec(0x183),'ribbon':_0x42b1ec(0xc3),'clockwise':_0x42b1ec(0xc6),'padAngle':_0x42b1ec(0x180),'minAngle':_0x42b1ec(0xd2),'innerRadius':'Inner\x20radius','outerRadius':_0x42b1ec(0x1a8),'invalidRadii':_0x42b1ec(0xa9),'rotation':'Rotation','distance':_0x42b1ec(0x1ae),'width':'Width','focus':'Focus','solid':'Solid\x20color','gradient':_0x42b1ec(0xe0),'adjacency':_0x42b1ec(0x165),'self':_0x42b1ec(0x14a),'emptyDiagnostic':_0x42b1ec(0x125),'mappingDiagnostic':'Chord\x20requires\x20distinct\x20Source\x20and\x20Target\x20fields\x20and\x20an\x20optional\x20distinct\x20Value\x20field.','configDiagnostic':_0x42b1ec(0xcc),'associatedValue':'Associated\x20value'},'common':{'category':_0x42b1ec(0x12d),'seriesName':_0x42b1ec(0x110),'value':_0x42b1ec(0x139),'percentage':_0x42b1ec(0x193),'borderColor':_0x42b1ec(0x19c),'labelContent':'Label\x20content','labelPosition':_0x42b1ec(0x136),'dataLabels':_0x42b1ec(0x1a6),'chartType':_0x42b1ec(0x12e),'bold':_0x42b1ec(0x13a),'italic':_0x42b1ec(0x152),'shape':_0x42b1ec(0xed),'chartStyle':'Chart\x20style','chartAndAxisTitles':_0x42b1ec(0xde),'legend':_0x42b1ec(0x9f),'chartTitle':_0x42b1ec(0x10b),'subtitle':_0x42b1ec(0x132),'series':_0x42b1ec(0x1b1),'dataPoint':_0x42b1ec(0x1d3),'trendline':_0x42b1ec(0x1c5),'horizontalAxis':_0x42b1ec(0xca),'verticalAxis':_0x42b1ec(0x173),'rightVerticalAxis':_0x42b1ec(0xec),'layout':'Layout','arrow':_0x42b1ec(0x1a2),'axisLabels':_0x42b1ec(0x1e2),'currency':_0x42b1ec(0x154),'date':_0x42b1ec(0x1c9),'displayName':_0x42b1ec(0xe6),'emphasis':_0x42b1ec(0xa2),'heatmap':'Heatmap','lineColor':_0x42b1ec(0x12a),'lineWidth':_0x42b1ec(0xbc),'min':_0x42b1ec(0xdf),'max':_0x42b1ec(0x1a9),'mode':_0x42b1ec(0x1a4),'stacked':'Stacked','title':_0x42b1ec(0x1d6),'auto':'Auto','position':{'label':_0x42b1ec(0x164),'inside':_0x42b1ec(0xd3),'outside':_0x42b1ec(0x137),'top':_0x42b1ec(0x178),'right':_0x42b1ec(0x1da),'bottom':_0x42b1ec(0x1c3),'left':'Left','hide':'Hide'},'axisAlign':{'start':_0x42b1ec(0x115),'center':_0x42b1ec(0x1ad),'end':_0x42b1ec(0xac)},'textAlign':{'left':'Left','center':_0x42b1ec(0x1ad),'right':_0x42b1ec(0x1da)},'legendSelectMode':{'single':_0x42b1ec(0xdb),'multiple':_0x42b1ec(0xbd),'disabled':_0x42b1ec(0x17a)},'visualMapType':{'continuous':_0x42b1ec(0x9b),'piecewise':'Piecewise'},'default':_0x42b1ec(0x111),'reset':_0x42b1ec(0x1a0),'color':_0x42b1ec(0x1dd),'opacity':_0x42b1ec(0x1df),'font':_0x42b1ec(0x140),'none':_0x42b1ec(0x1bc),'numberFormat':_0x42b1ec(0xfa),'borderWidth':_0x42b1ec(0x14e),'borderType':_0x42b1ec(0x175),'lineType':_0x42b1ec(0x107),'dashed':'Dashed','dotted':_0x42b1ec(0x144),'circle':_0x42b1ec(0xbe),'triangle':'Triangle','diamond':_0x42b1ec(0x109),'axisLine':_0x42b1ec(0x150),'minimum':_0x42b1ec(0x120),'maximum':_0x42b1ec(0xef),'startAngle':_0x42b1ec(0x1af),'valueField':_0x42b1ec(0x114),'categoryName':'Category\x20name','ownValue':_0x42b1ec(0x138),'children':_0x42b1ec(0x13d),'label':_0x42b1ec(0xf7),'editChart':_0x42b1ec(0x176),'deleteChart':_0x42b1ec(0x156),'insertChart':_0x42b1ec(0xb9),'insertChartFailed':_0x42b1ec(0x161),'openChartPanel':_0x42b1ec(0x123),'hideChartPanel':_0x42b1ec(0x12b),'exportImage':'Export\x20as\x20image','copy':_0x42b1ec(0x18e),'setup':'Setup','customize':_0x42b1ec(0x129),'data':_0x42b1ec(0xf9),'tableDataEmpty':_0x42b1ec(0x17c),'dataRange':'Data\x20range','editData':_0x42b1ec(0xf5),'inlineData':_0x42b1ec(0xf3),'switchRowColumn':_0x42b1ec(0xb7),'useAsCategoryLabels':'Use\x20{0}\x20as\x20category','cancel':_0x42b1ec(0x11e),'insert':_0x42b1ec(0x192),'apply':_0x42b1ec(0x1c7),'duplicate':_0x42b1ec(0x19b)},'inlineTable':{'pasteHint':_0x42b1ec(0x112),'addRow':_0x42b1ec(0x1d0),'addColumn':'Add\x20column'},'floatMenu':{'menuTitle':{'chart':_0x42b1ec(0x10f),'axisTitle':'Axis\x20title','gridline':'Gridline','tick':'Tick','mark':_0x42b1ec(0x1cc),'dataLabel':_0x42b1ec(0x9d)},'field':{'position':_0x42b1ec(0x130),'size':'Size','align':'Align','map':_0x42b1ec(0x182),'rotate':'Rotate','labelText':_0x42b1ec(0x105),'titleText':_0x42b1ec(0x186)},'action':{'more':'More'},'control':{'labels':'Labels','line':'Line','reverse':_0x42b1ec(0x1e0)}}}};export{e as default};
|
package/lib/locale/es-ES.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0x4906ed=_0x4ffb;function _0x2997(){const _0x39aee3=['Categoría','Múltiple','Máx','Mín','Por\x20tramos','Punto\x20de\x20datos','Marca\x20de\x20graduación','Derecha','28zTotOk','Alinear','Agregar\x20fila','Opacidad','Fuera','Posición','Eje\x20vertical','Subtítulo','5eEqPhg','Título\x20del\x20gráfico','Arriba','178qOERDW','Valor','Ajustar\x20leyenda','Gráfico','4732897dhyNsI','Restablecer','Marca','Línea','12QMVxhp','Abajo','8bhZMCn','Mapa','Etiquetas','2058138yFZlEf','30upYQpS','Continuo','Modo','Fin','Inicio','6637598ngzSeB','6182740fSRgKi','Línea\x20de\x20cuadrícula','Individual','12774HcddZK','Ocultar','Centro','Tamaño','Fecha','Texto\x20de\x20etiqueta','5096835SXBStv','Color\x20del\x20borde','Etiqueta\x20de\x20datos','Título\x20del\x20eje','Posición\x20de\x20etiqueta','4577772ffapGS','Izquierda','Girar'];_0x2997=function(){return _0x39aee3;};return _0x2997();}function _0x4ffb(_0xc0e504,_0x40131e){_0xc0e504=_0xc0e504-0x16f;const _0x2997ad=_0x2997();let _0x4ffb0c=_0x2997ad[_0xc0e504];return _0x4ffb0c;}(function(_0x25b58a,_0x53ec90){const _0x509cf4=_0x4ffb,_0x2d50bf=_0x25b58a();while(!![]){try{const _0x95a025=-parseInt(_0x509cf4(0x170))/0x1*(-parseInt(_0x509cf4(0x187))/0x2)+-parseInt(_0x509cf4(0x192))/0x3+parseInt(_0x509cf4(0x184))/0x4*(parseInt(_0x509cf4(0x1a5))/0x5)+parseInt(_0x509cf4(0x17d))/0x6*(parseInt(_0x509cf4(0x19d))/0x7)+-parseInt(_0x509cf4(0x17a))/0x8*(-parseInt(_0x509cf4(0x18d))/0x9)+-parseInt(_0x509cf4(0x17e))/0xa*(parseInt(_0x509cf4(0x183))/0xb)+parseInt(_0x509cf4(0x178))/0xc*(-parseInt(_0x509cf4(0x174))/0xd);if(_0x95a025===_0x53ec90)break;else _0x2d50bf['push'](_0x2d50bf['shift']());}catch(_0x9636a8){_0x2d50bf['push'](_0x2d50bf['shift']());}}}(_0x2997,0xe0c9b));const e={'chart-ui':{'common':{'default':'Predeterminado','reset':_0x4906ed(0x175)},'presentation':{'wrapLegend':_0x4906ed(0x172)},'inlineTable':{'pasteHint':'Copia\x20y\x20pega\x20datos\x20aquí','addRow':_0x4906ed(0x19f),'addColumn':'Agregar\x20columna'},'floatMenu':{'menuTitle':{'chart':_0x4906ed(0x173),'chartTitle':_0x4906ed(0x1a6),'subtitle':_0x4906ed(0x1a4),'axisTitle':_0x4906ed(0x190),'legend':'Leyenda','horizontalAxis':'Eje\x20horizontal','verticalAxis':_0x4906ed(0x1a3),'rightVerticalAxis':'Eje\x20vertical\x20derecho','gridline':_0x4906ed(0x185),'tick':_0x4906ed(0x19b),'mark':_0x4906ed(0x176),'series':'Serie','dataPoint':_0x4906ed(0x19a),'dataLabel':_0x4906ed(0x18f)},'field':{'title':'Título','subtitle':'Subtítulo','position':_0x4906ed(0x1a2),'size':_0x4906ed(0x18a),'align':_0x4906ed(0x19e),'mode':_0x4906ed(0x180),'map':_0x4906ed(0x17b),'rotate':_0x4906ed(0x194),'min':_0x4906ed(0x198),'max':_0x4906ed(0x197),'color':'Color','borderColor':_0x4906ed(0x18e),'opacity':_0x4906ed(0x1a0),'labelPosition':_0x4906ed(0x191),'labelText':_0x4906ed(0x18c),'titleText':'Texto\x20del\x20título'},'action':{'more':'Más','bold':'Negrita','italic':'Cursiva'},'control':{'labels':_0x4906ed(0x17c),'line':_0x4906ed(0x177),'reverse':'Invertir','date':_0x4906ed(0x18b)},'option':{'textAlign':{'left':_0x4906ed(0x193),'center':_0x4906ed(0x189),'right':_0x4906ed(0x19c)},'position':{'top':_0x4906ed(0x16f),'bottom':_0x4906ed(0x179),'left':_0x4906ed(0x193),'right':_0x4906ed(0x19c),'hide':_0x4906ed(0x188),'inside':'Dentro','outside':_0x4906ed(0x1a1)},'labelText':{'category':_0x4906ed(0x195),'value':_0x4906ed(0x171),'percentage':'Porcentaje'},'axisAlign':{'start':_0x4906ed(0x182),'center':_0x4906ed(0x189),'end':_0x4906ed(0x181)},'legendSelectMode':{'single':_0x4906ed(0x186),'multiple':_0x4906ed(0x196),'close':'Cerrar'},'visualMapType':{'continuous':_0x4906ed(0x17f),'piecewise':_0x4906ed(0x199)}}}}};export{e as default};
|
|
1
|
+
const _0x5a4c75=_0x2ab6;(function(_0x5adc05,_0x2b696c){const _0x42b3dc=_0x2ab6,_0x436fb6=_0x5adc05();while(!![]){try{const _0x45c256=parseInt(_0x42b3dc(0x162))/0x1*(-parseInt(_0x42b3dc(0x21e))/0x2)+parseInt(_0x42b3dc(0x205))/0x3*(parseInt(_0x42b3dc(0x223))/0x4)+parseInt(_0x42b3dc(0x12e))/0x5*(-parseInt(_0x42b3dc(0x1a0))/0x6)+parseInt(_0x42b3dc(0x1f4))/0x7*(parseInt(_0x42b3dc(0x14e))/0x8)+parseInt(_0x42b3dc(0x12d))/0x9*(parseInt(_0x42b3dc(0x113))/0xa)+-parseInt(_0x42b3dc(0x111))/0xb+parseInt(_0x42b3dc(0x15e))/0xc;if(_0x45c256===_0x2b696c)break;else _0x436fb6['push'](_0x436fb6['shift']());}catch(_0x1ca725){_0x436fb6['push'](_0x436fb6['shift']());}}}(_0x4257,0x8a94d));const e={'chart-ui':{'editor':{'defaultColor':_0x5a4c75(0x181),'fontSize':_0x5a4c75(0x19b)},'setup':{'stack':_0x5a4c75(0x213),'percentStacked':_0x5a4c75(0x168)},'chartTypes':{'line':_0x5a4c75(0x170),'column':_0x5a4c75(0x10a),'columnStacked':'Apilar\x20·\x20Gráfico\x20de\x20columnas','columnPercentStacked':_0x5a4c75(0x1e9),'bar':_0x5a4c75(0xfe),'barStacked':_0x5a4c75(0x194),'barPercentStacked':_0x5a4c75(0x1f8),'pie':_0x5a4c75(0x174),'donut':_0x5a4c75(0x167),'pieOfPie':_0x5a4c75(0x1db),'barOfPie':_0x5a4c75(0x1fc),'area':_0x5a4c75(0x1a6),'areaStacked':_0x5a4c75(0x234),'areaPercentStacked':_0x5a4c75(0x10e),'radar':_0x5a4c75(0x1a5),'scatter':_0x5a4c75(0x238),'combination':'Gráfico\x20combinado','wordCloud':_0x5a4c75(0x1ea),'funnel':_0x5a4c75(0x128),'bubble':_0x5a4c75(0x154),'relation':_0x5a4c75(0x153),'waterfall':_0x5a4c75(0x14b),'pareto':_0x5a4c75(0x233),'sankey':'Gráfico\x20de\x20Sankey','heatmap':_0x5a4c75(0x204),'boxplot':_0x5a4c75(0x1eb),'candlestick':_0x5a4c75(0x17d),'histogram':_0x5a4c75(0x1f2),'treemap':_0x5a4c75(0x15d),'sunburst':_0x5a4c75(0x132),'gauge':_0x5a4c75(0x160),'chord':_0x5a4c75(0x158)},'section':{'waterfall':_0x5a4c75(0x14b),'paretoBar':_0x5a4c75(0x211),'paretoLine':_0x5a4c75(0x225),'pie':_0x5a4c75(0x174),'wordCloud':'Nube\x20de\x20palabras','radar':_0x5a4c75(0x1a5),'funnel':'Gráfico\x20de\x20embudo','relation':_0x5a4c75(0x153),'lineAndArea':'Gráfico\x20de\x20líneas\x20/\x20Gráfico\x20de\x20área','gridlinesAndTicks':_0x5a4c75(0x21d),'indicatorLine':_0x5a4c75(0x18b),'candlestick':'gráfico\x20de\x20velas','histogram':_0x5a4c75(0x15b),'treemap':_0x5a4c75(0x196),'sunburst':_0x5a4c75(0x226),'gauge':_0x5a4c75(0x138),'chord':_0x5a4c75(0x12f)},'presentation':{'backgroundColor':'Color\x20de\x20fondo','theme':_0x5a4c75(0x235),'gradientFill':_0x5a4c75(0x1ac),'bodyFontSize':_0x5a4c75(0x193),'bodyFontColor':_0x5a4c75(0x1d2),'titleType':_0x5a4c75(0x1f0),'horizontalAxisTitle':_0x5a4c75(0x218),'verticalAxisTitle':'Título\x20del\x20eje\x20vertical','rightVerticalAxisTitle':_0x5a4c75(0x13d),'wrap':_0x5a4c75(0x17e),'selectMode':_0x5a4c75(0x13c),'visualMapType':'mapa\x20visual','align':_0x5a4c75(0x20d)},'numberFormat':{'source':'Formato\x20fuente','number':_0x5a4c75(0x1c4),'scientific':_0x5a4c75(0x13b),'custom':_0x5a4c75(0x16c),'preview':_0x5a4c75(0x171),'generalType':_0x5a4c75(0x112),'accountingType':_0x5a4c75(0x1cd),'thousandsType':'Percentil\x20milésimo','formatTypes':_0x5a4c75(0x137),'generalDesc':'El\x20formato\x20general\x20no\x20contiene\x20ningún\x20formato\x20de\x20número\x20específico.','accountingDesc':_0x5a4c75(0x20b),'currencyDesc':_0x5a4c75(0x109),'dateDesc':_0x5a4c75(0x148),'thousandsDesc':_0x5a4c75(0x1af),'decimalPlaces':'Decimales','currencyTypes':'Tipos\x20de\x20moneda','negativeNumberTypes':_0x5a4c75(0x13a),'dateTypes':_0x5a4c75(0x117),'setFormat':'Establecer\x20formato\x20de\x20etiqueta'},'series':{'rightAxis':_0x5a4c75(0x1b2),'allSeries':'todas\x20las\x20series','aggregate':'Agregar','borderOpacity':_0x5a4c75(0x140),'solid':'Sólido','pointShape':_0x5a4c75(0x20f),'pointSize':_0x5a4c75(0x1f1),'pointColor':_0x5a4c75(0x1f9),'removeDataPoint':'Eliminar\x20punto\x20de\x20datos','square':_0x5a4c75(0x183),'rect':_0x5a4c75(0xfc),'roundRect':_0x5a4c75(0x228),'pin':'Marcador','emptyCircle':_0x5a4c75(0x201),'emptySquare':_0x5a4c75(0x152),'emptyTriangle':_0x5a4c75(0x176),'emptyDiamond':_0x5a4c75(0x220),'emptyRect':_0x5a4c75(0x1fe),'emptyRoundRect':_0x5a4c75(0x1f6),'emptyPin':_0x5a4c75(0x10f),'emptyArrow':_0x5a4c75(0x1a4)},'lineAndArea':{'lineStyle':'Estilo\x20de\x20línea','line':'Línea','smooth':_0x5a4c75(0x1a7),'step':_0x5a4c75(0x22c),'invalidValues':_0x5a4c75(0x16f),'breakLine':_0x5a4c75(0x18e),'connect':_0x5a4c75(0x1ed),'zero':'Tratar\x20como\x20cero'},'axis':{'useDateAxis':_0x5a4c75(0x1ad),'target':'eje','lineColor':'Color\x20de\x20línea','lineWidth':_0x5a4c75(0x199),'labelRotation':_0x5a4c75(0x1b5),'reverse':'Eje\x20inverso','gridlineVisible':'Líneas\x20de\x20cuadrícula','gridlineColor':_0x5a4c75(0x1d6),'gridlineWidth':'Ancho\x20de\x20la\x20línea\x20de\x20cuadrícula','tickVisible':_0x5a4c75(0x166),'tickLength':_0x5a4c75(0x1c0),'tickWidth':'Ancho\x20de\x20marca','tickColor':_0x5a4c75(0x130),'tickPosition':_0x5a4c75(0x1e6)},'indicator':{'lineColor':'Color\x20de\x20la\x20línea\x20del\x20indicador','lineType':'Tipo\x20de\x20línea\x20indicadora','labelBackground':'Fondo\x20de\x20la\x20etiqueta','labelText':_0x5a4c75(0x1ec)},'trendline':{'add':'Agregar\x20línea\x20de\x20tendencia','type':_0x5a4c75(0x1e1),'linear':_0x5a4c75(0x1c5),'exponential':_0x5a4c75(0x18a),'logarithmic':_0x5a4c75(0x16d),'polynomial':_0x5a4c75(0x18d),'power':_0x5a4c75(0x11c),'movingAverage':_0x5a4c75(0x21b),'showFormula':_0x5a4c75(0x1f7),'showR2':'Mostrar\x20R²','order':'Orden','period':_0x5a4c75(0x230),'formulaColor':'Color\x20de\x20fórmula','r2Color':'color\x20R²'},'pareto':{'includeZeroValues':_0x5a4c75(0x224)},'plotArea':{'label':_0x5a4c75(0x1ae),'manual':_0x5a4c75(0x1ff),'left':_0x5a4c75(0x134),'top':_0x5a4c75(0x1bf),'width':_0x5a4c75(0x161),'height':_0x5a4c75(0x103)},'bar':{'layout':'Bar\x20spacing','gapWidth':'Gap\x20width\x20(%)','overlap':'Series\x20overlap\x20(%)'},'pie':{'mode':'Forma\x20del\x20gráfico','modeNormal':'Normal','modePieOfPie':_0x5a4c75(0x15f),'modeBarOfPie':_0x5a4c75(0x147),'splitType':_0x5a4c75(0x192),'splitAuto':'Automático','splitPosition':_0x5a4c75(0x217),'splitCustom':_0x5a4c75(0x12a),'customSelectedCount':_0x5a4c75(0x239),'customSelectedCountValue':_0x5a4c75(0x1aa),'positionCount':_0x5a4c75(0x236),'valueLessThan':_0x5a4c75(0x15a),'percentageLessThan':_0x5a4c75(0x20c),'secondarySize':_0x5a4c75(0x1bd),'advancedLayout':_0x5a4c75(0x17a),'connector':_0x5a4c75(0x1ce),'slices':_0x5a4c75(0x1e2),'gapWidth':_0x5a4c75(0x107),'connectorColor':'Color\x20de\x20la\x20línea\x20de\x20conexión','connectorWidth':_0x5a4c75(0x229),'connectorType':_0x5a4c75(0x165),'aggregateOther':'Otro','aggregateMembers':'Elementos','valueScale':'Escala\x20de\x20valores','doughnutHole':'Agujero\x20de\x20rosquilla','startAngle':_0x5a4c75(0x232),'explosion':_0x5a4c75(0x157),'paddingAngle':_0x5a4c75(0x19a),'halfPie':_0x5a4c75(0x184),'rosePie':_0x5a4c75(0x142),'labelLine':_0x5a4c75(0x1e3)},'radar':{'shape':_0x5a4c75(0x22e),'polygon':_0x5a4c75(0x118),'fill':'Relleno\x20de\x20área'},'funnel':{'gap':_0x5a4c75(0x146),'absoluteValues':_0x5a4c75(0x206)},'heatmap':{'unit':_0x5a4c75(0x13e),'labels':_0x5a4c75(0x216)},'relation':{'nodes':_0x5a4c75(0x16a),'interaction':_0x5a4c75(0x150),'edgeLength':'Longitud\x20de\x20arista','circular':_0x5a4c75(0x10d),'force':_0x5a4c75(0x11a),'nodeShape':_0x5a4c75(0x1f5),'valueSize':_0x5a4c75(0x22d),'rotateLabels':_0x5a4c75(0x1b6),'gravity':_0x5a4c75(0x172),'repulsion':'Repulsión'},'wordCloud':{'maskImage':_0x5a4c75(0x1e4),'repeat':'repetir\x20palabras','cloud':'nube','rect':_0x5a4c75(0xfc),'cardioid':_0x5a4c75(0x1c8),'heart':_0x5a4c75(0x17f),'triangle-forward':_0x5a4c75(0x1c1),'pentagon':_0x5a4c75(0x10b),'star':_0x5a4c75(0x143)},'waterfall':{'styleTarget':_0x5a4c75(0x1a1),'positive':'Positivo','negative':_0x5a4c75(0x114),'stackType':'Arreglo','arrangement':_0x5a4c75(0x100),'subtotal':_0x5a4c75(0x14c),'includeSubtotal':_0x5a4c75(0xff),'connector':_0x5a4c75(0x22a)},'candlestick':{'candle':_0x5a4c75(0x133),'body':_0x5a4c75(0x149),'wick':_0x5a4c75(0x1e7),'state':'Estado\x20de\x20la\x20vela','open':_0x5a4c75(0x1d1),'high':_0x5a4c75(0x195),'low':'Mínimo','close':_0x5a4c75(0x1ca),'rising':'en\x20ascenso','falling':_0x5a4c75(0x22f),'doji':_0x5a4c75(0x1d4),'bodyColor':_0x5a4c75(0x1e8),'fillOpacity':_0x5a4c75(0x186),'wickColor':_0x5a4c75(0x144),'wickWidth':_0x5a4c75(0x208),'wickOpacity':_0x5a4c75(0x1bb),'candleWidth':_0x5a4c75(0x1cf),'hollow':'vela\x20hueca','columnsError':_0x5a4c75(0x18c),'series':'Serie\x20OHLC'},'histogram':{'binGap':_0x5a4c75(0x20e),'binningMode':_0x5a4c75(0x1e5),'count':_0x5a4c75(0x227),'width':_0x5a4c75(0x203),'binCount':_0x5a4c75(0x12b),'binWidth':_0x5a4c75(0x15c),'underflow':'Umbral\x20de\x20desbordamiento\x20inferior','overflow':'Umbral\x20de\x20desbordamiento','frequency':_0x5a4c75(0x1fb)},'treemap':{'parentLabelLayout':_0x5a4c75(0x179),'banner':_0x5a4c75(0x101),'overlapping':_0x5a4c75(0x108),'leafLabel':'Etiquetas\x20de\x20hojas','hierarchy':'Campos\x20de\x20jerarquía','diagnostic':'El\x20mapa\x20de\x20árbol\x20requiere\x20al\x20menos\x20un\x20campo\x20de\x20jerarquía\x20y\x20un\x20campo\x20de\x20valor\x20numérico.'},'sunburst':{'hierarchy':_0x5a4c75(0x1da),'addHierarchy':_0x5a4c75(0x19f),'moveUp':_0x5a4c75(0x104),'moveDown':_0x5a4c75(0x120),'removeHierarchy':'Eliminar\x20campo\x20de\x20jerarquía','centerLabel':'Total\x20central','labelFormat':'Estilo\x20de\x20etiqueta','diagnostic':_0x5a4c75(0x17b)},'gauge':{'scale':_0x5a4c75(0x1c6),'majorDivisions':_0x5a4c75(0x1a2),'minorDivisions':'Divisiones\x20secundarias\x20por\x20división\x20principal','angles':'ángulos','endAngle':_0x5a4c75(0xfd),'ranges':'Rangos','rangeFrom':'De','rangeTo':'a','addRange':'Agregar\x20rango','removeRange':_0x5a4c75(0x1a8),'axisTick':'Garrapatas\x20del\x20eje','splitLine':'Líneas\x20divididas','pointer':'puntero','anchor':_0x5a4c75(0x110),'progress':'Progreso','detail':_0x5a4c75(0x1be),'pointerNeedle':_0x5a4c75(0x1ba),'pointerSlim':_0x5a4c75(0x209),'template':'Plantilla','modern':'moderno','classic':_0x5a4c75(0x12c),'minimal':_0x5a4c75(0x1bc),'advanced':_0x5a4c75(0x1d5),'customized':_0x5a4c75(0x12a),'axisLabelNumberFormat':'Formato\x20numérico\x20de\x20las\x20etiquetas\x20del\x20eje','detailNumberFormat':_0x5a4c75(0x190),'emptyDiagnostic':_0x5a4c75(0x126),'mappingDiagnostic':'El\x20gráfico\x20de\x20indicador\x20requiere\x20un\x20campo\x20de\x20etiqueta\x20y\x20exactamente\x20un\x20campo\x20de\x20valor.','configDiagnostic':_0x5a4c75(0x116)},'chord':{'source':_0x5a4c75(0x125),'target':_0x5a4c75(0x11b),'count':_0x5a4c75(0x1b4),'node':_0x5a4c75(0x127),'ribbon':'cinta','clockwise':'En\x20el\x20sentido\x20de\x20las\x20agujas\x20del\x20reloj','padAngle':_0x5a4c75(0x187),'minAngle':_0x5a4c75(0x11d),'innerRadius':_0x5a4c75(0x1d3),'outerRadius':'Radio\x20exterior','invalidRadii':_0x5a4c75(0x1de),'rotation':_0x5a4c75(0x102),'distance':_0x5a4c75(0xfa),'width':_0x5a4c75(0x203),'focus':_0x5a4c75(0x121),'solid':'Color\x20sólido','gradient':_0x5a4c75(0x16e),'adjacency':_0x5a4c75(0x1dd),'self':_0x5a4c75(0x1d7),'emptyDiagnostic':_0x5a4c75(0x14d),'mappingDiagnostic':_0x5a4c75(0x19c),'configDiagnostic':_0x5a4c75(0x122),'associatedValue':_0x5a4c75(0x197)},'common':{'category':'Categoría','seriesName':_0x5a4c75(0x19e),'value':_0x5a4c75(0x1e0),'percentage':_0x5a4c75(0x1d8),'borderColor':'Color\x20del\x20borde','labelContent':'Contenido\x20de\x20la\x20etiqueta','labelPosition':_0x5a4c75(0x1cb),'dataLabels':_0x5a4c75(0x141),'chartType':_0x5a4c75(0x119),'bold':_0x5a4c75(0x1c3),'italic':_0x5a4c75(0x169),'shape':_0x5a4c75(0x221),'chartStyle':'Estilo\x20de\x20gráfico','chartAndAxisTitles':_0x5a4c75(0x163),'legend':_0x5a4c75(0x1a9),'chartTitle':_0x5a4c75(0x124),'subtitle':_0x5a4c75(0x10c),'series':_0x5a4c75(0x210),'dataPoint':_0x5a4c75(0x1d9),'trendline':_0x5a4c75(0x115),'horizontalAxis':_0x5a4c75(0x1df),'verticalAxis':_0x5a4c75(0x1fd),'rightVerticalAxis':'Eje\x20vertical\x20derecho','layout':_0x5a4c75(0x156),'arrow':_0x5a4c75(0x198),'axisLabels':_0x5a4c75(0x22b),'currency':'Moneda','date':_0x5a4c75(0x21c),'displayName':'Nombre\x20para\x20mostrar','emphasis':_0x5a4c75(0x145),'heatmap':_0x5a4c75(0x204),'lineColor':'Color\x20de\x20línea','lineWidth':_0x5a4c75(0x199),'min':_0x5a4c75(0x135),'max':_0x5a4c75(0x195),'mode':'Modo','stacked':'Apilado','title':_0x5a4c75(0x1dc),'auto':'Automático','position':{'label':_0x5a4c75(0x217),'inside':_0x5a4c75(0x14f),'outside':_0x5a4c75(0x106),'top':_0x5a4c75(0x189),'right':_0x5a4c75(0x105),'bottom':'Abajo','left':'Izquierda','hide':'Ocultar'},'axisAlign':{'start':'Inicio','center':_0x5a4c75(0x1b0),'end':_0x5a4c75(0x20a)},'textAlign':{'left':_0x5a4c75(0x18f),'center':'Centro','right':_0x5a4c75(0x105)},'legendSelectMode':{'single':_0x5a4c75(0xfb),'multiple':_0x5a4c75(0x1f3),'disabled':_0x5a4c75(0x1b3)},'visualMapType':{'continuous':_0x5a4c75(0x212),'piecewise':_0x5a4c75(0x188)},'default':_0x5a4c75(0x164),'reset':'Reiniciar','color':_0x5a4c75(0x202),'opacity':'Opacidad','font':_0x5a4c75(0x1ef),'none':'Ninguno','numberFormat':'Formato\x20de\x20número','borderWidth':_0x5a4c75(0x11e),'borderType':'Tipo\x20de\x20borde','lineType':'tipo\x20de\x20línea','dashed':_0x5a4c75(0x159),'dotted':_0x5a4c75(0x155),'circle':'circulo','triangle':_0x5a4c75(0x16b),'diamond':_0x5a4c75(0x207),'axisLine':_0x5a4c75(0x136),'minimum':_0x5a4c75(0x135),'maximum':_0x5a4c75(0x195),'startAngle':_0x5a4c75(0x1a3),'valueField':'Campo\x20de\x20valor','categoryName':_0x5a4c75(0x200),'ownValue':_0x5a4c75(0x151),'children':_0x5a4c75(0x1b8),'label':'Etiqueta','editChart':_0x5a4c75(0x19d),'deleteChart':'Eliminar\x20gráfico','insertChart':'Insertar\x20gráfico','insertChartFailed':_0x5a4c75(0x182),'openChartPanel':_0x5a4c75(0x173),'hideChartPanel':_0x5a4c75(0x1ab),'exportImage':_0x5a4c75(0x1c2),'copy':_0x5a4c75(0x21f),'setup':_0x5a4c75(0x139),'customize':_0x5a4c75(0x177),'data':_0x5a4c75(0x191),'tableDataEmpty':_0x5a4c75(0x185),'dataRange':_0x5a4c75(0x21a),'editData':_0x5a4c75(0x1c7),'inlineData':_0x5a4c75(0x1d0),'switchRowColumn':_0x5a4c75(0x222),'useAsCategoryLabels':_0x5a4c75(0x1b9),'cancel':_0x5a4c75(0x180),'insert':_0x5a4c75(0x17c),'apply':_0x5a4c75(0x237),'duplicate':_0x5a4c75(0x231)},'inlineTable':{'pasteHint':_0x5a4c75(0x175),'addRow':_0x5a4c75(0x1ee),'addColumn':_0x5a4c75(0x1b1)},'floatMenu':{'menuTitle':{'chart':_0x5a4c75(0x1c9),'axisTitle':'Título\x20del\x20eje','gridline':_0x5a4c75(0x178),'tick':_0x5a4c75(0x215),'mark':_0x5a4c75(0x1cc),'dataLabel':_0x5a4c75(0x214)},'field':{'position':_0x5a4c75(0x217),'size':_0x5a4c75(0x219),'align':_0x5a4c75(0x131),'map':_0x5a4c75(0x13f),'rotate':_0x5a4c75(0x123),'labelText':_0x5a4c75(0x14a),'titleText':'Texto\x20del\x20título'},'action':{'more':_0x5a4c75(0x1fa)},'control':{'labels':_0x5a4c75(0x11f),'line':_0x5a4c75(0x1b7),'reverse':_0x5a4c75(0x129)}}}};function _0x2ab6(_0x3ac37d,_0x59ed30){_0x3ac37d=_0x3ac37d-0xfa;const _0x4257f4=_0x4257();let _0x2ab6b2=_0x4257f4[_0x3ac37d];return _0x2ab6b2;}function _0x4257(){const _0x229c31=['Width\x20(%)','10424NEaFgN','Títulos\x20del\x20gráfico\x20y\x20ejes','Predeterminado','Tipo\x20de\x20línea\x20de\x20conexión','Garrapatas','Gráfico\x20de\x20dona','Apilar\x20porcentaje','cursiva','Nodos','Triangulo','Formato\x20personalizado','logarítmico','Degradado','Valores\x20no\x20válidos','Gráfico\x20de\x20líneas','Vista\x20previa','gravedad','Abrir\x20panel\x20de\x20gráficos','Gráfico\x20circular','Pegue\x20una\x20tabla\x20de\x20Hojas\x20de\x20cálculo,\x20Excel\x20o\x20una\x20página\x20web\x20para\x20reemplazar\x20los\x20datos\x20en\x20línea.','Triángulo\x20vacío','Personalizar','Línea\x20de\x20cuadrícula','Diseño\x20de\x20etiqueta\x20principal','Diseño\x20avanzado','El\x20gráfico\x20radial\x20jerárquico\x20requiere\x20al\x20menos\x20un\x20campo\x20de\x20jerarquía\x20y\x20un\x20campo\x20de\x20valor\x20numérico.','Insertar','Gráfico\x20de\x20velas','Leyenda\x20envolvente','corazón','Cancelar','Color\x20predeterminado','No\x20se\x20pudo\x20insertar\x20el\x20gráfico','cuadrado','Medio\x20pastel','Los\x20datos\x20de\x20la\x20tabla\x20están\x20vacíos','Rellenar\x20opacidad','Ángulo\x20de\x20la\x20almohadilla','Por\x20tramos','arriba','exponencial','Línea\x20indicadora','Los\x20datos\x20del\x20gráfico\x20de\x20velas\x20requieren\x20las\x20columnas\x20Categoría,\x20Apertura,\x20Máximo,\x20Mínimo\x20y\x20Cierre.','Polinomio','Línea\x20de\x20ruptura','Izquierda','Formato\x20de\x20número\x20de\x20detalle','Datos','Dividir\x20por','Tamaño\x20de\x20fuente\x20del\x20cuerpo','Gráfico\x20de\x20barras\x20apiladas','Máximo','Gráfico\x20de\x20mapa\x20de\x20árbol','Valor\x20asociado','Flecha','Ancho\x20de\x20línea','Espaciado\x20de\x20cortes','Tamaño\x20de\x20fuente','El\x20diagrama\x20de\x20cuerdas\x20requiere\x20campos\x20de\x20origen\x20y\x20destino\x20distintos\x20y,\x20opcionalmente,\x20un\x20campo\x20de\x20valor\x20diferente.','Editor\x20de\x20gráficos','Nombre\x20de\x20la\x20serie','Agregar\x20jerarquía','12UPMzsR','Objetivo\x20de\x20estilo','Divisiones\x20principales','Ángulo\x20inicial','Flecha\x20vacía','Gráfico\x20de\x20radar','Gráfico\x20de\x20área','Suave','Quitar\x20rango','Leyenda','{0}\x20puntos\x20de\x20datos\x20seleccionados','Ocultar\x20panel\x20de\x20gráficos','Relleno\x20degradado','Tratar\x20etiquetas\x20como\x20fechas','Plot\x20area','El\x20formato\x20de\x20percentil\x20milésimo\x20se\x20utiliza\x20para\x20números\x20generales,\x20los\x20formatos\x20de\x20moneda\x20y\x20contable\x20proporcionan\x20formatos\x20especializados\x20para\x20valores\x20monetarios.','Centro','Agregar\x20columna','Eje\x20derecho','Desactivado','recuento\x20de\x20relaciones','Rotación\x20de\x20etiquetas','Rotar\x20etiquetas','Línea','Elementos\x20secundarios','Usar\x20{0}\x20como\x20categoría','Aguja\x20clásica','Opacidad\x20de\x20la\x20mecha','mínimo','Tamaño\x20del\x20gráfico\x20secundario','Detalle','Top\x20(%)','longitud\x20de\x20garrapata','Triángulo\x20delantero','Exportar\x20como\x20imagen','Negrita','Número','lineal','Escala','Editar\x20datos','cardioide','Gráfico','Cierre','Posición\x20de\x20la\x20etiqueta','marca','Contabilidad','Conector','Ancho\x20de\x20vela','Datos\x20en\x20línea','Apertura','Color\x20de\x20fuente\x20del\x20cuerpo','Radio\x20interior','Doji','Configuraciones\x20avanzadas','Color\x20de\x20la\x20línea\x20de\x20cuadrícula','Nodo\x20actual','Porcentaje','Punto\x20de\x20datos','Jerarquía','Gráfico\x20circular\x20con\x20subgráfico\x20circular','Título','Nodos\x20adyacentes','El\x20radio\x20interior\x20debe\x20ser\x20menor\x20que\x20el\x20radio\x20exterior.','Eje\x20horizontal','Valor','Tipo','Sectores','Línea\x20de\x20etiqueta','ID\x20de\x20imagen\x20de\x20máscara','Modo\x20de\x20agrupación','Posición\x20de\x20la\x20marca','Mecha','color\x20del\x20cuerpo','Apilar\x20porcentaje\x20·\x20Gráfico\x20de\x20columnas','Nube\x20de\x20palabras','Diagrama\x20de\x20caja','Color\x20del\x20texto\x20de\x20la\x20etiqueta','Conectar\x20puntos\x20de\x20datos','Agregar\x20fila','fuente','Tipo\x20de\x20título','Tamaño\x20del\x20punto','Histograma','Múltiple','8561mvNjTp','Forma\x20de\x20nodo','Rectángulo\x20redondeado\x20vacío','Mostrar\x20fórmula','Gráfico\x20de\x20barras\x20apiladas\x20porcentual','Color\x20del\x20punto','Más','Frecuencia','Gráfico\x20circular\x20con\x20subgráfico\x20de\x20barras','Eje\x20vertical','Rectángulo\x20vacío','Manual','Nombre\x20de\x20categoría','Círculo\x20vacío','Color','Ancho','Mapa\x20de\x20calor','566301DwHBQM','Usar\x20valores\x20absolutos','diamante','Ancho\x20de\x20mecha','Aguja\x20fina','Fin','El\x20formato\x20de\x20número\x20contable\x20alinea\x20los\x20símbolos\x20de\x20moneda\x20y\x20los\x20puntos\x20decimales\x20en\x20una\x20columna.','Porcentaje\x20inferior\x20a','Alineación','Espacio\x20en\x20el\x20contenedor','Forma\x20de\x20punto','Serie','Serie\x20de\x20gráfico\x20de\x20barras','Continuo','Apilar','Etiqueta\x20de\x20datos','Marca\x20de\x20graduación','Etiquetas\x20de\x20celda','Posición','Título\x20del\x20eje\x20horizontal','Tamaño','Rango\x20de\x20datos','media\x20móvil','Fecha','Líneas\x20de\x20cuadrícula\x20y\x20marcas','32aHnHTi','Copiar','Rombo\x20vacío','Forma','Cambiar\x20a\x20fila/columna','8EiNgic','Incluir\x20valores\x20cero','Serie\x20de\x20porcentaje\x20acumulado','gráfico\x20de\x20rayos\x20solares','contar','Rectángulo\x20redondeado','Ancho\x20de\x20la\x20línea\x20de\x20conexión','Línea\x20conectora','Etiquetas\x20de\x20eje','paso','Tamaño\x20de\x20nodos\x20por\x20valor','Forma\x20de\x20radar','cayendo','Periodo','Duplicar','Start\x20angle','Gráfico\x20de\x20Pareto','Gráfico\x20de\x20área\x20apilada','Tema','Número\x20de\x20puntos\x20de\x20datos\x20secundarios','Aplicar','Gráfico\x20de\x20dispersión','División\x20personalizada','Distancia','Único','Rectángulo','Ángulo\x20final','Gráfico\x20de\x20barras','Usar\x20subtotal','cascada','pancarta','Rotación','Height\x20(%)','Mover\x20el\x20campo\x20de\x20jerarquía\x20hacia\x20arriba','Derecha','Fuera','Separación\x20entre\x20el\x20gráfico\x20principal\x20y\x20el\x20secundario','superpuestas','El\x20formato\x20de\x20moneda\x20se\x20utiliza\x20para\x20valores\x20monetarios\x20generales,\x20el\x20formato\x20contable\x20alinea\x20los\x20puntos\x20decimales\x20en\x20una\x20columna\x20de\x20valores.','Gráfico\x20de\x20columnas','Pentágono','Subtítulo','circulares','Gráfico\x20de\x20área\x20apilada\x20porcentual','Marcador\x20vacío','ancla','4881613EbofBC','General','10DrOqsa','Negativo','Línea\x20de\x20tendencia','La\x20configuración\x20del\x20gráfico\x20de\x20indicador\x20no\x20es\x20válida.\x20Compruebe\x20la\x20escala,\x20los\x20intervalos,\x20las\x20proporciones\x20y\x20los\x20tamaños.','Tipos\x20de\x20fecha','Polígono','Tipo\x20de\x20gráfico','fuerza','Objetivo','poder','Ángulo\x20mínimo','Ancho\x20del\x20borde','Etiquetas','Mover\x20el\x20campo\x20de\x20jerarquía\x20hacia\x20abajo','Enfoque','La\x20configuración\x20del\x20diagrama\x20de\x20cuerdas\x20no\x20es\x20válida.\x20Compruebe\x20los\x20ángulos,\x20los\x20radios,\x20la\x20opacidad\x20y\x20los\x20tamaños.','girar','Título\x20del\x20gráfico','Fuente','El\x20gráfico\x20de\x20indicador\x20requiere\x20al\x20menos\x20un\x20valor\x20numérico\x20finito.','Nodo','Gráfico\x20de\x20embudo','Invertir','Personalizado','Recuento\x20de\x20contenedores','Clásico','5293557aMJPoO','2804930ZccGsY','tabla\x20de\x20acordes','color\x20de\x20marca','alineal','Diagrama\x20de\x20rayos\x20solares','Vela','Left\x20(%)','Mínimo','Línea\x20del\x20eje','Tipos\x20de\x20formato','Tabla\x20de\x20calibres','Configurar','Tipos\x20de\x20números\x20negativos','Científico','Modo\x20de\x20selección','Título\x20del\x20eje\x20vertical\x20derecho','unidad\x20de\x20valor','mapa','Opacidad\x20del\x20borde','Etiquetas\x20de\x20datos','pastel\x20de\x20rosas','estrella','Color\x20de\x20mecha','Énfasis','Brecha\x20de\x20artículo','Circular\x20con\x20subgráfico\x20de\x20barras','El\x20formato\x20de\x20fecha\x20muestra\x20los\x20números\x20de\x20serie\x20de\x20fecha\x20y\x20hora\x20como\x20valores\x20de\x20fecha.','Cuerpo','Texto\x20de\x20etiqueta','Gráfico\x20de\x20cascada','Subtotal','El\x20diagrama\x20de\x20cuerdas\x20requiere\x20al\x20menos\x20una\x20relación\x20con\x20peso\x20positivo\x20entre\x20dos\x20nodos\x20distintos.','4312qhbudZ','Dentro','Interacción','Valor\x20propio','Cuadrado\x20vacío','Gráfico\x20de\x20relación','Gráfico\x20de\x20burbujas','punteado','Diseño','Explosion\x20(%)','Diagrama\x20de\x20cuerdas','discontinuo','Valor\x20inferior\x20a','gráfico\x20de\x20histograma','Ancho\x20del\x20contenedor','Mapa\x20de\x20árbol','8103168UIuLbU','Circular\x20con\x20subgráfico\x20circular','Gráfico\x20de\x20indicador'];_0x4257=function(){return _0x229c31;};return _0x4257();}export{e as default};
|
package/lib/locale/fa-IR.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0xb52504=_0x25dd;function _0x25dd(_0x152be3,_0xb7e404){_0x152be3=_0x152be3-0x1c1;const _0x4e5fe8=_0x4e5f();let _0x25dd78=_0x4e5fe8[_0x152be3];return _0x25dd78;}(function(_0x23945a,_0x4de52f){const _0x147fc5=_0x25dd,_0x3605e2=_0x23945a();while(!![]){try{const _0x512453=-parseInt(_0x147fc5(0x1ca))/0x1+parseInt(_0x147fc5(0x1dc))/0x2+-parseInt(_0x147fc5(0x1f0))/0x3*(-parseInt(_0x147fc5(0x1eb))/0x4)+-parseInt(_0x147fc5(0x1e8))/0x5+-parseInt(_0x147fc5(0x1c2))/0x6*(-parseInt(_0x147fc5(0x1d2))/0x7)+parseInt(_0x147fc5(0x1f8))/0x8*(-parseInt(_0x147fc5(0x1e2))/0x9)+parseInt(_0x147fc5(0x1c5))/0xa;if(_0x512453===_0x4de52f)break;else _0x3605e2['push'](_0x3605e2['shift']());}catch(_0x2307fd){_0x3605e2['push'](_0x3605e2['shift']());}}}(_0x4e5f,0x4da9a));function _0x4e5f(){const _0x13b39f=['707571xcUdcf','تاریخ','راست','راهنما','داخل','بازنشانی','1811245xLvQSt','برچسب\x20داده','افزودن\x20ستون','605300Rnzqhg','نقشه','شکستن\x20راهنما','دستهبندی','نمودار','6SyjJnY','متن\x20عنوان','خط\x20شبکه','مقدار','رنگ\x20حاشیه','درصد','متن\x20برچسب','محور\x20افقی','64VOuRgt','محور\x20عمودی\x20راست','1404QJdCKk','پیشفرض','حداقل','12317140GyOtOK','عنوان\x20محور','مجزأ','ایتالیک','زیرعنوان','355824SpXJSF','بستن','عنوان\x20نمودار','بالا','ضخیم','عنوان','افزودن\x20سطر','رنگ','2310nnEofz','علامت\x20درجهبندی','حالت','علامت','دادهها\x20را\x20اینجا\x20کپی\x20و\x20جایگذاری\x20کنید','مخفی','معکوس','چند\x20انتخاب','سری','مستمر','107094bkZJGy','محور\x20عمودی','شروع','برچسبها','مرکز','تک\x20انتخاب'];_0x4e5f=function(){return _0x13b39f;};return _0x4e5f();}const e={'chart-ui':{'common':{'default':_0xb52504(0x1c3),'reset':_0xb52504(0x1e7)},'presentation':{'wrapLegend':_0xb52504(0x1ed)},'inlineTable':{'pasteHint':_0xb52504(0x1d6),'addRow':_0xb52504(0x1d0),'addColumn':_0xb52504(0x1ea)},'floatMenu':{'menuTitle':{'chart':_0xb52504(0x1ef),'chartTitle':_0xb52504(0x1cc),'subtitle':_0xb52504(0x1c9),'axisTitle':_0xb52504(0x1c6),'legend':_0xb52504(0x1e5),'horizontalAxis':_0xb52504(0x1f7),'verticalAxis':_0xb52504(0x1dd),'rightVerticalAxis':_0xb52504(0x1c1),'gridline':_0xb52504(0x1f2),'tick':_0xb52504(0x1d3),'mark':_0xb52504(0x1d5),'series':_0xb52504(0x1da),'dataPoint':'نقطه\x20داده','dataLabel':_0xb52504(0x1e9)},'field':{'title':_0xb52504(0x1cf),'subtitle':'زیرعنوان','position':'موقعیت','size':'اندازه','align':'تراز','mode':_0xb52504(0x1d4),'map':_0xb52504(0x1ec),'rotate':'چرخش','min':_0xb52504(0x1c4),'max':'حداکثر','color':_0xb52504(0x1d1),'borderColor':_0xb52504(0x1f4),'opacity':'کدری','labelPosition':'موقعیت\x20برچسب','labelText':_0xb52504(0x1f6),'titleText':_0xb52504(0x1f1)},'action':{'more':'بیشتر','bold':_0xb52504(0x1ce),'italic':_0xb52504(0x1c8)},'control':{'labels':_0xb52504(0x1df),'line':'خط','reverse':_0xb52504(0x1d8),'date':_0xb52504(0x1e3)},'option':{'textAlign':{'left':'چپ','center':_0xb52504(0x1e0),'right':_0xb52504(0x1e4)},'position':{'top':_0xb52504(0x1cd),'bottom':'پایین','left':'چپ','right':_0xb52504(0x1e4),'hide':_0xb52504(0x1d7),'inside':_0xb52504(0x1e6),'outside':'خارج'},'labelText':{'category':_0xb52504(0x1ee),'value':_0xb52504(0x1f3),'percentage':_0xb52504(0x1f5)},'axisAlign':{'start':_0xb52504(0x1de),'center':_0xb52504(0x1e0),'end':'پایان'},'legendSelectMode':{'single':_0xb52504(0x1e1),'multiple':_0xb52504(0x1d9),'close':_0xb52504(0x1cb)},'visualMapType':{'continuous':_0xb52504(0x1db),'piecewise':_0xb52504(0x1c7)}}}}};export{e as default};
|
|
1
|
+
function _0x13f2(){const _0x302ff6=['کلاسیک','جاذبه','مستطیل\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کنید','سوراخ\x20دونات','جزئیات','نقشه\x20بصری','مخفی\x20کردن\x20پنل\x20نمودار','نمودار\x20راداری','برچسب\x20بزنید','افتادن','چند\x20انتخاب','نمودار\x20درختی','حسابداری','رنگ\x20بدنه','2361CyUDRS','فیلد\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پارتو','Top\x20(%)','موقعیت\x20را\x20علامت\x20بزنید','سری\x20OHLC','اشاره\x20گر','کپی','فونت','ایتالیک','نمودار\x20خطی','بشمار','2420936jNHJCJ','قیمت\x20بسته\x20شدن','محور\x20عمودی\x20سمت\x20راست','5337190IRamiP','نمودار\x20گیج','فاصله','منفی','همپوشانی','Series\x20overlap\x20(%)','ابر\x20کلمات','کلمات\x20را\x20تکرار\x20کنید','برچسبها','افسانه\x20را\x20بپیچید','انواع\x20فرمت','دوره','Start\x20angle','فیلد\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عمودی','نمایش\x20R²','حالت','رنگ\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ارزش','Width\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برچسب\x20و\x20دقیقاً\x20یک\x20فیلد\x20مقدار\x20نیاز\x20دارد.','عناصر\x20فرزند','{0}\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فیتیله','گره','Gap\x20width\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حرارتی','6JwPXMD','متن\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خالی','2301286GfSiWj','نمودار\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باریک','حالت\x20Binning','درج\x20نمودار','نمودار\x20شمعی','اعضا','سفارشی','عرض\x20خط\x20اتصال','رنگ\x20پیش\x20فرض','محدوده\x20اضافه\x20کنید','عرض\x20خط','رنگ\x20R²','پیش\x20نمایش','Left\x20(%)','محتوای\x20برچسب','ویرایش\x20نمودار','نمودار\x20میلهای\x20درصد\x20انباشته','دایرهای\x20از\x20دایرهای','در\x20جهت\x20عقربه\x20های\x20ساعت','قالب\x20سفارشی','منبع','از\x20مجموع\x20فرعی\x20استفاده\x20کنید','خط\x20نشانگر','Manual','Explosion\x20(%)','1958535cYdhsy','عرض\x20خط\x20شبکه','زیرنویس','درصد','لگاریتمی','خودکار','302060xLGABG','خطی','بدنه','نام\x20سری','چرخش\x20برچسب','پایان','Plot\x20area','تقسیمات\x20اصلی','رنگ\x20پس\x20زمینه','نمودار\x20هیستوگرام','عرض','برچسب\x20های\x20محور','40dvZArr','فرمت\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بود','40415420BKpmbV','جدولی\x20را\x20از\x20Sheets،\x20Excel\x20یا\x20یک\x20صفحه\x20وب\x20جایگذاری\x20کنید\x20تا\x20داده\x20های\x20درون\x20خطی\x20جایگزین\x20شود.','بالاترین\x20قیمت','دایره\x20ای','علمی','اضافه\x20کردن\x20ستون','خطوط\x20شبکه','تاکید','حالت\x20انتخاب','نوع\x20خط\x20اتصال','3952sIcEDS','معکوس','قیمت\x20باز\x20شدن','سفارشیسازی\x20نمودار','خط\x20روند','مثلث','مرحله','شروع','سری','نقشه','چرخاندن\x20برچسب\x20ها'];_0x13f2=function(){return _0x302ff6;};return _0x13f2();}function _0x5900(_0x1a2c5e,_0x26a22d){_0x1a2c5e=_0x1a2c5e-0x173;const _0x13f2b4=_0x13f2();let _0x59006f=_0x13f2b4[_0x1a2c5e];return _0x59006f;}const _0x26bfac=_0x5900;(function(_0x3dd3cc,_0xb494d4){const _0x5288a3=_0x5900,_0xc6bfb=_0x3dd3cc();while(!![]){try{const _0xc835d6=parseInt(_0x5288a3(0x223))/0x1+-parseInt(_0x5288a3(0x1e7))/0x2+-parseInt(_0x5288a3(0x280))/0x3*(parseInt(_0x5288a3(0x24d))/0x4)+-parseInt(_0x5288a3(0x29e))/0x5*(parseInt(_0x5288a3(0x1d2))/0x6)+parseInt(_0x5288a3(0x29b))/0x7+parseInt(_0x5288a3(0x22f))/0x8*(-parseInt(_0x5288a3(0x21d))/0x9)+parseInt(_0x5288a3(0x243))/0xa;if(_0xc835d6===_0xb494d4)break;else _0xc6bfb['push'](_0xc6bfb['shift']());}catch(_0x1cf432){_0xc6bfb['push'](_0xc6bfb['shift']());}}}(_0x13f2,0x93e2a));const e={'chart-ui':{'editor':{'defaultColor':_0x26bfac(0x20c),'fontSize':_0x26bfac(0x262)},'setup':{'stack':_0x26bfac(0x25f),'percentStacked':_0x26bfac(0x2ae)},'chartTypes':{'line':_0x26bfac(0x299),'column':_0x26bfac(0x1a8),'columnStacked':'انباشته\x20·\x20نمودار\x20ستونی','columnPercentStacked':'درصد\x20انباشته\x20·\x20نمودار\x20ستونی','bar':_0x26bfac(0x188),'barStacked':_0x26bfac(0x1b2),'barPercentStacked':_0x26bfac(0x214),'pie':_0x26bfac(0x1fa),'donut':'نمودار\x20دونات','pieOfPie':'نمودار\x20دایرهای\x20از\x20دایرهای','barOfPie':'نمودار\x20میلهای\x20از\x20دایرهای','area':_0x26bfac(0x1fb),'areaStacked':_0x26bfac(0x2b1),'areaPercentStacked':_0x26bfac(0x1ff),'radar':_0x26bfac(0x279),'scatter':'نمودار\x20پراکندگی','combination':_0x26bfac(0x1dd),'wordCloud':_0x26bfac(0x1e8),'funnel':'نمودار\x20قیفی','bubble':_0x26bfac(0x1f8),'relation':_0x26bfac(0x1ba),'waterfall':_0x26bfac(0x1a4),'pareto':_0x26bfac(0x291),'sankey':_0x26bfac(0x241),'heatmap':_0x26bfac(0x1d1),'boxplot':_0x26bfac(0x1bb),'candlestick':_0x26bfac(0x208),'histogram':'هیستوگرام','treemap':_0x26bfac(0x27d),'sunburst':_0x26bfac(0x17c),'gauge':'نمودار\x20سنجهای','chord':_0x26bfac(0x231)},'section':{'waterfall':'نمودار\x20آبشاری','paretoBar':_0x26bfac(0x1ee),'paretoLine':_0x26bfac(0x1e0),'pie':'نمودار\x20دایرهای','wordCloud':_0x26bfac(0x2a4),'radar':_0x26bfac(0x279),'funnel':_0x26bfac(0x2ac),'relation':_0x26bfac(0x1ba),'lineAndArea':_0x26bfac(0x18a),'gridlinesAndTicks':_0x26bfac(0x290),'indicatorLine':_0x26bfac(0x21a),'candlestick':_0x26bfac(0x178),'histogram':_0x26bfac(0x22c),'treemap':'نمودار\x20درختی','sunburst':'نمودار\x20آفتاب\x20سوختگی','gauge':_0x26bfac(0x29f),'chord':'نمودار\x20آکورد'},'presentation':{'backgroundColor':_0x26bfac(0x22b),'theme':'تم','gradientFill':_0x26bfac(0x1c7),'bodyFontSize':'اندازه\x20فونت\x20بدنه','bodyFontColor':'رنگ\x20فونت\x20بدنه','titleType':'نوع\x20عنوان','horizontalAxisTitle':_0x26bfac(0x1af),'verticalAxisTitle':_0x26bfac(0x1e2),'rightVerticalAxisTitle':_0x26bfac(0x184),'wrap':_0x26bfac(0x2a7),'selectMode':_0x26bfac(0x24b),'visualMapType':_0x26bfac(0x277),'align':_0x26bfac(0x183)},'numberFormat':{'source':_0x26bfac(0x230),'number':'شماره','scientific':_0x26bfac(0x247),'custom':_0x26bfac(0x217),'preview':_0x26bfac(0x210),'generalType':'عمومی','accountingType':_0x26bfac(0x27e),'thousandsType':_0x26bfac(0x1cf),'formatTypes':_0x26bfac(0x2a8),'generalDesc':_0x26bfac(0x1ed),'accountingDesc':_0x26bfac(0x273),'currencyDesc':'فرمت\x20ارز\x20برای\x20ارزش\x20های\x20پولی\x20عمومی\x20استفاده\x20می\x20شود،\x20فرمت\x20حسابداری\x20نقطه\x20اعشار\x20را\x20در\x20یک\x20ستون\x20از\x20ارزش\x20ها\x20تراز\x20می\x20کند.','dateDesc':_0x26bfac(0x25c),'thousandsDesc':'فرمت\x20درصد\x20هزارم\x20برای\x20اعداد\x20عمومی\x20استفاده\x20می\x20شود،\x20فرمت\x20های\x20ارز\x20و\x20حسابداری\x20فرمت\x20های\x20تخصصی\x20برای\x20ارزش\x20های\x20پولی\x20ارائه\x20می\x20دهند.','decimalPlaces':'محل\x20اعشار','currencyTypes':_0x26bfac(0x1e3),'negativeNumberTypes':_0x26bfac(0x282),'dateTypes':_0x26bfac(0x173),'setFormat':_0x26bfac(0x174)},'series':{'rightAxis':_0x26bfac(0x28b),'allSeries':'همه\x20سریال\x20ها','aggregate':'تجمیع','borderOpacity':_0x26bfac(0x263),'solid':_0x26bfac(0x189),'pointShape':_0x26bfac(0x197),'pointSize':_0x26bfac(0x1e9),'pointColor':_0x26bfac(0x19c),'removeDataPoint':_0x26bfac(0x202),'square':_0x26bfac(0x1be),'rect':_0x26bfac(0x25d),'roundRect':_0x26bfac(0x25a),'pin':_0x26bfac(0x271),'emptyCircle':'دایره\x20خالی','emptySquare':_0x26bfac(0x1c5),'emptyTriangle':_0x26bfac(0x25e),'emptyDiamond':'لوزی\x20خالی','emptyRect':_0x26bfac(0x17e),'emptyRoundRect':_0x26bfac(0x284),'emptyPin':_0x26bfac(0x1bf),'emptyArrow':_0x26bfac(0x1e6)},'lineAndArea':{'lineStyle':_0x26bfac(0x1a9),'line':'خط','smooth':_0x26bfac(0x1f6),'step':_0x26bfac(0x253),'invalidValues':_0x26bfac(0x269),'breakLine':_0x26bfac(0x1e1),'connect':_0x26bfac(0x1db),'zero':_0x26bfac(0x1fe)},'axis':{'useDateAxis':_0x26bfac(0x17d),'target':_0x26bfac(0x1ad),'lineColor':'رنگ\x20خط','lineWidth':_0x26bfac(0x20e),'labelRotation':_0x26bfac(0x227),'reverse':_0x26bfac(0x1ea),'gridlineVisible':_0x26bfac(0x249),'gridlineColor':'رنگ\x20خط\x20مشبک','gridlineWidth':_0x26bfac(0x21e),'tickVisible':'کنه\x20ها','tickLength':_0x26bfac(0x236),'tickWidth':_0x26bfac(0x26f),'tickColor':'رنگ\x20تیک','tickPosition':_0x26bfac(0x293)},'indicator':{'lineColor':_0x26bfac(0x1b9),'lineType':_0x26bfac(0x19f),'labelBackground':_0x26bfac(0x265),'labelText':_0x26bfac(0x2b6)},'trendline':{'add':'افزودن\x20خط\x20روند','type':_0x26bfac(0x285),'linear':_0x26bfac(0x224),'exponential':_0x26bfac(0x1ab),'logarithmic':_0x26bfac(0x221),'polynomial':_0x26bfac(0x1d9),'power':'قدرت','movingAverage':_0x26bfac(0x1f9),'showFormula':'نمایش\x20فرمول','showR2':_0x26bfac(0x2b3),'order':_0x26bfac(0x287),'period':_0x26bfac(0x2a9),'formulaColor':_0x26bfac(0x198),'r2Color':_0x26bfac(0x20f)},'pareto':{'includeZeroValues':_0x26bfac(0x270)},'plotArea':{'label':_0x26bfac(0x229),'manual':_0x26bfac(0x21b),'left':_0x26bfac(0x211),'top':_0x26bfac(0x292),'width':_0x26bfac(0x18e),'height':'Height\x20(%)'},'bar':{'layout':'Bar\x20spacing','gapWidth':_0x26bfac(0x1c3),'overlap':_0x26bfac(0x2a3)},'pie':{'mode':'شکل\x20نمودار','modeNormal':'معمولی','modePieOfPie':_0x26bfac(0x215),'modeBarOfPie':_0x26bfac(0x19e),'splitType':_0x26bfac(0x2b8),'splitAuto':_0x26bfac(0x222),'splitPosition':_0x26bfac(0x23b),'splitCustom':_0x26bfac(0x20a),'customSelectedCount':_0x26bfac(0x1b8),'customSelectedCountValue':_0x26bfac(0x1b5),'positionCount':_0x26bfac(0x261),'valueLessThan':'مقدار\x20کمتر\x20از','percentageLessThan':'درصد\x20کمتر\x20از','secondarySize':_0x26bfac(0x28a),'advancedLayout':_0x26bfac(0x1c8),'connector':_0x26bfac(0x2ad),'slices':'برشها','gapWidth':_0x26bfac(0x1d5),'connectorColor':_0x26bfac(0x1da),'connectorWidth':_0x26bfac(0x20b),'connectorType':_0x26bfac(0x24c),'aggregateOther':_0x26bfac(0x272),'aggregateMembers':_0x26bfac(0x209),'valueScale':_0x26bfac(0x1d6),'doughnutHole':_0x26bfac(0x275),'startAngle':_0x26bfac(0x2aa),'explosion':_0x26bfac(0x21c),'paddingAngle':_0x26bfac(0x175),'halfPie':'نیم\x20پای','rosePie':'پای\x20گل\x20رز','labelLine':_0x26bfac(0x19a)},'radar':{'shape':_0x26bfac(0x1b1),'polygon':_0x26bfac(0x17f),'fill':'پر\x20کردن\x20منطقه'},'funnel':{'gap':_0x26bfac(0x194),'absoluteValues':_0x26bfac(0x1f0)},'heatmap':{'unit':_0x26bfac(0x18d),'labels':_0x26bfac(0x1eb)},'relation':{'nodes':_0x26bfac(0x187),'interaction':_0x26bfac(0x201),'edgeLength':'طول\x20یال','circular':_0x26bfac(0x246),'force':_0x26bfac(0x1a0),'nodeShape':_0x26bfac(0x204),'valueSize':_0x26bfac(0x1a5),'rotateLabels':_0x26bfac(0x257),'gravity':_0x26bfac(0x259),'repulsion':'دافعه'},'wordCloud':{'maskImage':_0x26bfac(0x1e4),'repeat':_0x26bfac(0x2a5),'cloud':_0x26bfac(0x23d),'rect':_0x26bfac(0x25d),'cardioid':_0x26bfac(0x1a7),'heart':_0x26bfac(0x18b),'triangle-forward':_0x26bfac(0x2af),'pentagon':_0x26bfac(0x1b0),'star':_0x26bfac(0x195)},'waterfall':{'styleTarget':'هدف\x20سبک','positive':_0x26bfac(0x1d7),'negative':_0x26bfac(0x2a1),'stackType':_0x26bfac(0x260),'arrangement':_0x26bfac(0x1f1),'subtotal':'جمع\x20فرعی','includeSubtotal':_0x26bfac(0x219),'connector':_0x26bfac(0x179)},'candlestick':{'candle':_0x26bfac(0x1d4),'body':_0x26bfac(0x225),'wick':'فتیله','state':_0x26bfac(0x196),'open':_0x26bfac(0x24f),'high':_0x26bfac(0x245),'low':_0x26bfac(0x17b),'close':_0x26bfac(0x29c),'rising':_0x26bfac(0x1ef),'falling':_0x26bfac(0x27b),'doji':_0x26bfac(0x23e),'bodyColor':_0x26bfac(0x27f),'fillOpacity':'Opacity\x20را\x20پر\x20کنید','wickColor':_0x26bfac(0x1fc),'wickWidth':_0x26bfac(0x1c1),'wickOpacity':'تیرگی\x20فیتیله','candleWidth':'عرض\x20شمع','hollow':_0x26bfac(0x26e),'columnsError':_0x26bfac(0x1ac),'series':_0x26bfac(0x294)},'histogram':{'binGap':_0x26bfac(0x26d),'binningMode':_0x26bfac(0x206),'count':_0x26bfac(0x29a),'width':'عرض','binCount':_0x26bfac(0x26c),'binWidth':_0x26bfac(0x235),'underflow':'آستانه\x20زیر\x20جریان','overflow':_0x26bfac(0x267),'frequency':_0x26bfac(0x1f7)},'treemap':{'parentLabelLayout':'چیدمان\x20برچسب\x20والد','banner':_0x26bfac(0x1b7),'overlapping':_0x26bfac(0x2a2),'leafLabel':_0x26bfac(0x203),'hierarchy':_0x26bfac(0x26a),'diagnostic':'نمودار\x20نقشه\x20درختی\x20به\x20حداقل\x20یک\x20فیلد\x20سلسلهمراتبی\x20و\x20یک\x20فیلد\x20مقدار\x20عددی\x20نیاز\x20دارد.'},'sunburst':{'hierarchy':_0x26bfac(0x238),'addHierarchy':_0x26bfac(0x18c),'moveUp':_0x26bfac(0x1c0),'moveDown':_0x26bfac(0x2ab),'removeHierarchy':_0x26bfac(0x281),'centerLabel':_0x26bfac(0x240),'labelFormat':_0x26bfac(0x17a),'diagnostic':_0x26bfac(0x2b0)},'gauge':{'scale':_0x26bfac(0x268),'majorDivisions':_0x26bfac(0x22a),'minorDivisions':_0x26bfac(0x1cc),'angles':_0x26bfac(0x264),'endAngle':_0x26bfac(0x18f),'ranges':'محدوده\x20ها','rangeFrom':'از','rangeTo':'به','addRange':_0x26bfac(0x20d),'removeRange':'محدوده\x20را\x20بردارید','axisTick':'کنه\x20های\x20محور','splitLine':'خطوط\x20تقسیم','pointer':_0x26bfac(0x295),'anchor':_0x26bfac(0x23f),'progress':'پیشرفت','detail':_0x26bfac(0x276),'pointerNeedle':_0x26bfac(0x193),'pointerSlim':_0x26bfac(0x205),'template':_0x26bfac(0x26b),'modern':_0x26bfac(0x1f3),'classic':_0x26bfac(0x258),'minimal':_0x26bfac(0x190),'advanced':_0x26bfac(0x185),'customized':_0x26bfac(0x20a),'axisLabelNumberFormat':_0x26bfac(0x1d8),'detailNumberFormat':'قالب\x20شماره\x20جزئیات','emptyDiagnostic':_0x26bfac(0x1bd),'mappingDiagnostic':_0x26bfac(0x1b3),'configDiagnostic':_0x26bfac(0x23c)},'chord':{'source':_0x26bfac(0x218),'target':_0x26bfac(0x1f4),'count':_0x26bfac(0x239),'node':_0x26bfac(0x1c2),'ribbon':_0x26bfac(0x1a6),'clockwise':_0x26bfac(0x216),'padAngle':'زاویه\x20پد','minAngle':_0x26bfac(0x1c9),'innerRadius':'شعاع\x20داخلی','outerRadius':_0x26bfac(0x180),'invalidRadii':_0x26bfac(0x237),'rotation':_0x26bfac(0x1bc),'distance':_0x26bfac(0x2a0),'width':_0x26bfac(0x22d),'focus':_0x26bfac(0x274),'solid':_0x26bfac(0x1cd),'gradient':_0x26bfac(0x199),'adjacency':_0x26bfac(0x1e5),'self':_0x26bfac(0x1a1),'emptyDiagnostic':'نمودار\x20وتر\x20به\x20حداقل\x20یک\x20رابطه\x20با\x20وزن\x20مثبت\x20میان\x20دو\x20گره\x20متفاوت\x20نیاز\x20دارد.','mappingDiagnostic':_0x26bfac(0x28e),'configDiagnostic':_0x26bfac(0x1ce),'associatedValue':_0x26bfac(0x1a3)},'common':{'category':'دسته\x20بندی','seriesName':_0x26bfac(0x226),'value':'مقدار','percentage':_0x26bfac(0x220),'borderColor':_0x26bfac(0x2b5),'labelContent':_0x26bfac(0x212),'labelPosition':_0x26bfac(0x1aa),'dataLabels':_0x26bfac(0x266),'chartType':'نوع\x20نمودار','bold':_0x26bfac(0x232),'italic':_0x26bfac(0x298),'shape':_0x26bfac(0x1f2),'chartStyle':_0x26bfac(0x28d),'chartAndAxisTitles':_0x26bfac(0x288),'legend':'راهنما','chartTitle':'عنوان\x20نمودار','subtitle':_0x26bfac(0x21f),'series':_0x26bfac(0x255),'dataPoint':_0x26bfac(0x1de),'trendline':_0x26bfac(0x251),'horizontalAxis':_0x26bfac(0x286),'verticalAxis':_0x26bfac(0x2b2),'rightVerticalAxis':_0x26bfac(0x29d),'layout':'طرح\x20بندی','arrow':_0x26bfac(0x1ae),'axisLabels':_0x26bfac(0x22e),'currency':_0x26bfac(0x283),'date':'تاریخ','displayName':_0x26bfac(0x1a2),'emphasis':_0x26bfac(0x24a),'heatmap':_0x26bfac(0x1d1),'lineColor':'رنگ\x20خط','lineWidth':_0x26bfac(0x20e),'min':_0x26bfac(0x190),'max':_0x26bfac(0x2b7),'mode':_0x26bfac(0x2b4),'stacked':_0x26bfac(0x25f),'title':'عنوان','auto':_0x26bfac(0x222),'position':{'label':_0x26bfac(0x23b),'inside':_0x26bfac(0x25b),'outside':_0x26bfac(0x1cb),'top':_0x26bfac(0x1ec),'right':'راست','bottom':'پایین','left':'چپ','hide':'مخفی'},'axisAlign':{'start':_0x26bfac(0x254),'center':_0x26bfac(0x289),'end':_0x26bfac(0x228)},'textAlign':{'left':'چپ','center':_0x26bfac(0x289),'right':_0x26bfac(0x1d0)},'legendSelectMode':{'single':_0x26bfac(0x19b),'multiple':_0x26bfac(0x27c),'disabled':_0x26bfac(0x1df)},'visualMapType':{'continuous':'مستمر','piecewise':'مجزأ'},'default':'پیش\x20فرض','reset':_0x26bfac(0x19d),'color':'رنگ','opacity':'کدورت','font':_0x26bfac(0x297),'none':_0x26bfac(0x200),'numberFormat':'قالب\x20شماره','borderWidth':'عرض\x20حاشیه','borderType':'نوع\x20حاشیه','lineType':_0x26bfac(0x1c6),'dashed':'بریده\x20بریده','dotted':'نقطه\x20چین','circle':'دایره','triangle':_0x26bfac(0x252),'diamond':'الماس','axisLine':_0x26bfac(0x28c),'minimum':_0x26bfac(0x190),'maximum':_0x26bfac(0x2b7),'startAngle':'زاویه\x20شروع','valueField':'فیلد\x20ارزش','categoryName':_0x26bfac(0x1dc),'ownValue':_0x26bfac(0x23a),'children':_0x26bfac(0x1b4),'label':_0x26bfac(0x27a),'editChart':_0x26bfac(0x213),'deleteChart':'حذف\x20نمودار','insertChart':_0x26bfac(0x207),'insertChartFailed':_0x26bfac(0x242),'openChartPanel':'باز\x20کردن\x20پنل\x20نمودار','hideChartPanel':_0x26bfac(0x278),'exportImage':_0x26bfac(0x1b6),'copy':_0x26bfac(0x296),'setup':_0x26bfac(0x1fd),'customize':_0x26bfac(0x250),'data':'دادهها','tableDataEmpty':_0x26bfac(0x192),'dataRange':'محدوده\x20داده','editData':_0x26bfac(0x191),'inlineData':'داده\x20درونخطی','switchRowColumn':_0x26bfac(0x28f),'useAsCategoryLabels':'استفاده\x20از\x20{0}\x20به\x20عنوان\x20دستهبندی','cancel':_0x26bfac(0x181),'insert':_0x26bfac(0x182),'apply':_0x26bfac(0x1ca),'duplicate':_0x26bfac(0x176)},'inlineTable':{'pasteHint':_0x26bfac(0x244),'addRow':_0x26bfac(0x234),'addColumn':_0x26bfac(0x248)},'floatMenu':{'menuTitle':{'chart':'نمودار','axisTitle':_0x26bfac(0x186),'gridline':'خط\x20شبکه','tick':_0x26bfac(0x1f5),'mark':'علامت','dataLabel':_0x26bfac(0x177)},'field':{'position':_0x26bfac(0x23b),'size':'اندازه','align':_0x26bfac(0x183),'map':_0x26bfac(0x256),'rotate':_0x26bfac(0x1bc),'labelText':_0x26bfac(0x233),'titleText':_0x26bfac(0x1d3)},'action':{'more':_0x26bfac(0x1c4)},'control':{'labels':_0x26bfac(0x2a6),'line':'خط','reverse':_0x26bfac(0x24e)}}}};export{e as default};
|