xlwings-server 1.1.0__py3-none-any.whl
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.
- xlwings_server/.env.template +145 -0
- xlwings_server/__init__.py +12 -0
- xlwings_server/_version.py +34 -0
- xlwings_server/auth/__init__.py +0 -0
- xlwings_server/auth/custom/__init__.py +26 -0
- xlwings_server/auth/entraid/__init__.py +131 -0
- xlwings_server/auth/entraid/jwks.py +10 -0
- xlwings_server/azure_functions_templates/.funcignore +28 -0
- xlwings_server/azure_functions_templates/function_app.py +28 -0
- xlwings_server/azure_functions_templates/host.json +22 -0
- xlwings_server/azure_functions_templates/local.settings.json +8 -0
- xlwings_server/build_utils/__init__.py +9 -0
- xlwings_server/build_utils/static_file_hasher.py +212 -0
- xlwings_server/cli.py +1592 -0
- xlwings_server/config.py +228 -0
- xlwings_server/custom_functions/__init__.py +8 -0
- xlwings_server/custom_functions/examples.py +177 -0
- xlwings_server/custom_scripts/__init__.py +8 -0
- xlwings_server/custom_scripts/examples.py +94 -0
- xlwings_server/databases.py +19 -0
- xlwings_server/dependencies.py +126 -0
- xlwings_server/docker_templates/.dockerignore +15 -0
- xlwings_server/docker_templates/Dockerfile +60 -0
- xlwings_server/docker_templates/docker-compose.yaml +32 -0
- xlwings_server/hotreload.py +59 -0
- xlwings_server/main.py +242 -0
- xlwings_server/models/__init__.py +14 -0
- xlwings_server/models/user.py +53 -0
- xlwings_server/object_handles.py +142 -0
- xlwings_server/routers/__init__.py +0 -0
- xlwings_server/routers/manifest.py +82 -0
- xlwings_server/routers/root.py +16 -0
- xlwings_server/routers/socketio.py +69 -0
- xlwings_server/routers/taskpane.py +12 -0
- xlwings_server/routers/xlwings.py +197 -0
- xlwings_server/security_headers.json +53 -0
- xlwings_server/serializers/__init__.py +25 -0
- xlwings_server/serializers/default_serializer.py +19 -0
- xlwings_server/serializers/dictionary_serializer.py +25 -0
- xlwings_server/serializers/framework.py +50 -0
- xlwings_server/serializers/numpy_serializer.py +26 -0
- xlwings_server/serializers/pandas_serializer.py +95 -0
- xlwings_server/static/css/core.css +28 -0
- xlwings_server/static/css/style.css +0 -0
- xlwings_server/static/images/favicon.png +0 -0
- xlwings_server/static/images/xlwings-16.png +0 -0
- xlwings_server/static/images/xlwings-32.png +0 -0
- xlwings_server/static/images/xlwings-64.png +0 -0
- xlwings_server/static/images/xlwings-80.png +0 -0
- xlwings_server/static/js/auth.js +13 -0
- xlwings_server/static/js/config.js +4 -0
- xlwings_server/static/js/core/alpinejs-csp-boilerplate.js +11 -0
- xlwings_server/static/js/core/bootstrap-customizations.js +7 -0
- xlwings_server/static/js/core/custom-functions-code.js +296 -0
- xlwings_server/static/js/core/examples.js +62 -0
- xlwings_server/static/js/core/hotreload.js +3 -0
- xlwings_server/static/js/core/htmx-handlers.js +86 -0
- xlwings_server/static/js/core/officejs-history-fix-part1.js +3 -0
- xlwings_server/static/js/core/officejs-history-fix-part2.js +2 -0
- xlwings_server/static/js/core/reload-custom-functions.js +79 -0
- xlwings_server/static/js/core/socketio-handlers.js +34 -0
- xlwings_server/static/js/core/xlwings-alert.js +22 -0
- xlwings_server/static/js/core/xlwingsjs/alert.js +85 -0
- xlwings_server/static/js/core/xlwingsjs/auth.js +63 -0
- xlwings_server/static/js/core/xlwingsjs/sheet-buttons.js +133 -0
- xlwings_server/static/js/core/xlwingsjs/utils.js +119 -0
- xlwings_server/static/js/core/xlwingsjs/wasm.js +131 -0
- xlwings_server/static/js/core/xlwingsjs/xlwings.js +1060 -0
- xlwings_server/static/js/main.js +0 -0
- xlwings_server/static/js/ribbon.js +17 -0
- xlwings_server/static/vendor/@alpinejs/LICENSE +21 -0
- xlwings_server/static/vendor/@alpinejs/csp/dist/cdn.min.js +7 -0
- xlwings_server/static/vendor/@microsoft/office-js/LICENSE.md +76 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/af-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/agaveerrorux.js +18 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon32x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon96x96.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/businessbarclose_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/dropdownarrow_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/ellipsis_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/miniinfoblue_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_default_icon.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_status_icons.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/office.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/refresh_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/index.html +16 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/style/agaveerrorux.css +482 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/am-et/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ae/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-bh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-dz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-eg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-iq/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-jo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-kw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-lb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ly/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ma/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-om/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-qa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sa/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-tn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ye/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.8.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.9.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/az-latn-az/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/be-by/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bg-bg/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bs-latn-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ca-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cs-cz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cy-gb/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/da-dk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-at/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-de/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-li/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/el-gr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-029/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-au/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-bz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ca/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-gb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-in/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-jm/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-my/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-nz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ph/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-tt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-zw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ar/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-bo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cl/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-co/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-do/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ec/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-gt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-hn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-mx/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ni/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pe/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-py/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-sv/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-uy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ve/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es6-promise.js +5 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/et-ee/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/eu-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.00.js +19 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-winrt-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelios-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fa-ir/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fi-fi/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fil-ph/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ca/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-fr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-mc/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ga-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gl-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gu-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/he-il/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hi-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-hr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/html2canvas.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hu-hu/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hy-am/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/id-id/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/is-is/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-it/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ja-jp/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ka-ge/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kk-kz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/km-kh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ko-kr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lb-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lo-la/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lt-lt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lv-lv/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mk-mk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ml-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mn-mn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mr-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-bn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-my/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mt-mt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nb-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ne-np/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-nl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nn-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/o15apptofilemappingtable.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office-vsdoc.js +28596 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office.js +84 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pl-pl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-br/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-pt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ro-ro/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ru-ru/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/si-lk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sk-sk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sl-si/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sq-al/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-fi/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-se/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sw-ke/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ta-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/te-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs_agave.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/th-th/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/tr-tr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/uk-ua/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ur-pk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/vi-vn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.browserauth.js +77 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.implicit.js +35 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-cn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-hk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-mo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-tw/office_strings.js +1 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js +3 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap/LICENSE +21 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js +7 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css +12 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css.map +1 -0
- xlwings_server/static/vendor/htmx-ext-head-support/head-support.js +144 -0
- xlwings_server/static/vendor/htmx-ext-loading-states/loading-states.js +184 -0
- xlwings_server/static/vendor/htmx.org/LICENSE +13 -0
- xlwings_server/static/vendor/htmx.org/dist/htmx.min.js +1 -0
- xlwings_server/static/vendor/socket.io/LICENSE +22 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js +7 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js.map +1 -0
- xlwings_server/templates/_book.html +8 -0
- xlwings_server/templates/alert_base.html +16 -0
- xlwings_server/templates/base.html +117 -0
- xlwings_server/templates/examples/alpine/README.md +26 -0
- xlwings_server/templates/examples/alpine/taskpane.html +47 -0
- xlwings_server/templates/examples/auth/README.md +38 -0
- xlwings_server/templates/examples/auth/protected.html +8 -0
- xlwings_server/templates/examples/auth/public.html +11 -0
- xlwings_server/templates/examples/excel_object_model/README.md +49 -0
- xlwings_server/templates/examples/excel_object_model/add_name_form.html +27 -0
- xlwings_server/templates/examples/hello_world/README.md +9 -0
- xlwings_server/templates/examples/hello_world/taskpane_hello.html +24 -0
- xlwings_server/templates/examples/htmx_form/README.md +44 -0
- xlwings_server/templates/examples/htmx_form/_greeting.html +6 -0
- xlwings_server/templates/examples/htmx_form/taskpane_htmx_form.html +21 -0
- xlwings_server/templates/examples/live_form_validation/README.md +60 -0
- xlwings_server/templates/examples/live_form_validation/add_name_form.html +33 -0
- xlwings_server/templates/examples/multi_app/README.md +34 -0
- xlwings_server/templates/examples/multi_app/taskpane1.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane2.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane_loader.html +5 -0
- xlwings_server/templates/examples/navigation/README.md +28 -0
- xlwings_server/templates/examples/navigation/_navigation.html +16 -0
- xlwings_server/templates/examples/navigation/taskpane_one.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_three.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_two.html +8 -0
- xlwings_server/templates/examples/pictures/README.md +42 -0
- xlwings_server/templates/examples/pictures/_picture.html +4 -0
- xlwings_server/templates/examples/pictures/taskpane_pictures.html +26 -0
- xlwings_server/templates/manifest.xml +155 -0
- xlwings_server/templates/taskpane.html +1 -0
- xlwings_server/templates/xlwings_alert.html +27 -0
- xlwings_server/templates.py +61 -0
- xlwings_server/utils.py +32 -0
- xlwings_server/wasm/__init__.py +0 -0
- xlwings_server/wasm/config.py +24 -0
- xlwings_server/wasm/main.py +236 -0
- xlwings_server/wasm/requirements.txt +5 -0
- xlwings_server-1.1.0.dist-info/METADATA +61 -0
- xlwings_server-1.1.0.dist-info/RECORD +313 -0
- xlwings_server-1.1.0.dist-info/WHEEL +4 -0
- xlwings_server-1.1.0.dist-info/entry_points.txt +2 -0
- xlwings_server-1.1.0.dist-info/licenses/LICENSE.md +223 -0
xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.9.0.min.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var clienttelemetry_build;!function(e){e.version="2.9.0"}(clienttelemetry_build||(clienttelemetry_build={}));var Microsoft;!function(e){var t;!function(e){var t;!function(e){e[e.BT_STOP=0]="BT_STOP",e[e.BT_STOP_BASE=1]="BT_STOP_BASE",e[e.BT_BOOL=2]="BT_BOOL",e[e.BT_UINT8=3]="BT_UINT8",e[e.BT_UINT16=4]="BT_UINT16",e[e.BT_UINT32=5]="BT_UINT32",e[e.BT_UINT64=6]="BT_UINT64",e[e.BT_FLOAT=7]="BT_FLOAT",e[e.BT_DOUBLE=8]="BT_DOUBLE",e[e.BT_STRING=9]="BT_STRING",e[e.BT_STRUCT=10]="BT_STRUCT",e[e.BT_LIST=11]="BT_LIST",e[e.BT_SET=12]="BT_SET",e[e.BT_MAP=13]="BT_MAP",e[e.BT_INT8=14]="BT_INT8",e[e.BT_INT16=15]="BT_INT16",e[e.BT_INT32=16]="BT_INT32",e[e.BT_INT64=17]="BT_INT64",e[e.BT_WSTRING=18]="BT_WSTRING",e[e.BT_UNAVAILABLE=127]="BT_UNAVAILABLE"}(t=e.BondDataType||(e.BondDataType={}));var n;!function(e){e[e.MARSHALED_PROTOCOL=0]="MARSHALED_PROTOCOL",e[e.MAFIA_PROTOCOL=17997]="MAFIA_PROTOCOL",e[e.COMPACT_PROTOCOL=16963]="COMPACT_PROTOCOL",e[e.JSON_PROTOCOL=21322]="JSON_PROTOCOL",e[e.PRETTY_JSON_PROTOCOL=20554]="PRETTY_JSON_PROTOCOL",e[e.SIMPLE_PROTOCOL=20563]="SIMPLE_PROTOCOL"}(n=e.ProtocolType||(e.ProtocolType={}))}(t=e.Bond||(e.Bond={}))}(Microsoft||(Microsoft={}));var Microsoft;!function(e){var t;!function(e){var t;!function(e){var t=function(){function e(){this._buffer=[]}return e.prototype.Add=function(e){for(var t=0;t<this._buffer.length&&this._buffer[t]!=e;++t);t==this._buffer.length&&this._buffer.push(e)},e.prototype.Count=function(){return this._buffer.length},e.prototype.GetBuffer=function(){return this._buffer},e}();e.Set=t;var n=function(){function e(){this._buffer=[]}return e.prototype.Add=function(e,t){this._getIndex(e)==-1&&this._buffer.push({Key:e,Value:t})},e.prototype.AddOrReplace=function(e,t){var n=this._getIndex(e);n>=0?this._buffer[n]={Key:e,Value:t}:this._buffer.push({Key:e,Value:t})},e.prototype.Remove=function(e){var t=this._getIndex(e);t>=0&&this._buffer.splice(t,1)},e.prototype.Count=function(){return this._buffer.length},e.prototype.GetBuffer=function(){return this._buffer},e.prototype.ContainsKey=function(e){return this._getIndex(e)>=0},e.prototype.Get=function(e){var t=this._getIndex(e);return t>=0?this._buffer[t].Value:null},e.prototype._getIndex=function(e){for(var t=0,n=-1;t<this._buffer.length;++t)if(this._buffer[t].Key==e){n=t;break}return n},e}();e.Map=n}(t=e.Collections||(e.Collections={}))}(t=e.Bond||(e.Bond={}))}(Microsoft||(Microsoft={}));var Microsoft;!function(e){var t;!function(t){var n;!function(e){var n=function(){function e(){}return e.GetBytes=function(e){for(var t=[],n=0;n<e.length;++n){var i=e.charCodeAt(n);i<128?t.push(i):i<2048?t.push(192|i>>6,128|63&i):i<55296||i>=57344?t.push(224|i>>12,128|i>>6&63,128|63&i):(i=65536+((1023&i)<<10|1023&e.charCodeAt(++n)),t.push(240|i>>18,128|i>>12&63,128|i>>6&63,128|63&i))}return t},e}();e.Utf8=n;var i=function(){function e(){}return e.GetString=function(e){var t,n,i,r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=[],s=e.length%3,a=function(e){return[r.charAt(e>>18&63),r.charAt(e>>12&63),r.charAt(e>>6&63),r.charAt(63&e)].join("")};for(t=0,i=e.length-s;t<i;t+=3)n=(e[t]<<16)+(e[t+1]<<8)+e[t+2],o.push(a(n));switch(s){case 1:n=e[e.length-1],o.push(r.charAt(n>>2)),o.push(r.charAt(n<<4&63)),o.push("==");break;case 2:n=(e[e.length-2]<<8)+e[e.length-1],o.push(r.charAt(n>>10)),o.push(r.charAt(n>>4&63)),o.push(r.charAt(n<<2&63)),o.push("=")}return o.join("")},e}();e.Base64=i;var o=function(){function e(){}return e.GetBytes=function(e){for(var t=[];4294967168&e;)t.push(127&e|128),e>>>=7;return t.push(127&e),t},e}();e.Varint=o;var s=function(){function e(){}return e.GetBytes=function(e){for(var t=e.low,n=e.high,i=[];n||4294967168&t;)i.push(127&t|128),t=(127&n)<<25|t>>>7,n>>>=7;return i.push(127&t),i},e}();e.Varint64=s;var a=function(){function e(){}return e.GetBytes=function(e){if(t.BrowserChecker.IsDataViewSupport()){var n=new DataView(new ArrayBuffer(4));n.setFloat32(0,e,!0);for(var i=[],o=0;o<4;++o)i.push(n.getUint8(o));return i}return r.ConvertNumberToArray(e,!1)},e}();e.Float=a;var u=function(){function e(){}return e.GetBytes=function(e){if(t.BrowserChecker.IsDataViewSupport()){var n=new DataView(new ArrayBuffer(8));n.setFloat64(0,e,!0);for(var i=[],o=0;o<8;++o)i.push(n.getUint8(o));return i}return r.ConvertNumberToArray(e,!0)},e}();e.Double=u;var d=function(){function e(){}return e.EncodeZigzag16=function(e){return e=t.Number.ToInt16(e),e<<1^e>>15},e.EncodeZigzag32=function(e){return e=t.Number.ToInt32(e),e<<1^e>>31},e.EncodeZigzag64=function(e){var n=e.low,i=e.high,r=i<<1|n>>>31,o=n<<1;2147483648&i&&(r=~r,o=~o);var s=new t.UInt64("0");return s.low=o,s.high=r,s},e}();e.Zigzag=d}(n=t.Encoding||(t.Encoding={}));var i;!function(n){var i=function(){function e(){}return e.GetString=function(e){for(var t=[],n=0;n<e.length;++n){var i=e[n];if(i<=191)t.push(String.fromCharCode(i));else if(i<=223){var r=e[++n];t.push(String.fromCharCode((31&i)<<6|63&r))}else if(i<=239){var r=e[++n],o=e[++n];t.push(String.fromCharCode((15&i)<<12|(63&r)<<6|63&o))}else{var r=e[++n],o=e[++n],s=e[++n];i=(7&i)<<18|(63&r)<<12|(63&o)<<6|63&s,i-=65536,t.push(String.fromCharCode(55296|i>>10&1023)),t.push(String.fromCharCode(56320|1023&i))}}return t.join("")},e}();n.Utf8=i;var o=function(){function e(){}return e.GetBytes=function(e){for(var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n=[],i=0;i<e.length;++i){var r=t.indexOf(e.charAt(i++)),o=t.indexOf(e.charAt(i++)),s=t.indexOf(e.charAt(i++)),a=t.indexOf(e.charAt(i));n.push(r<<2|o>>4),s>=0&&(n.push(o<<4&240|s>>2),a>=0&&n.push(s<<6&192|a))}return n},e}();n.Base64=o;var s=function(){function t(){}return t.GetInt64=function(t){var n=new e.Bond.Int64("0"),i=this._Read(t);return n.low=i[0],i.length>1&&(n.high=i[1]),n},t.GetNumber=function(e){return this._Read(e)[0]},t._Read=function(e){for(var t=[],n=0,i=!0,r=0;i;){var o=e.shift();if(i=0!=(128&o),o=127&o,!(r<28)){n|=o<<r,t.push(n),n=o>>4,r=3;break}n|=o<<r,r+=7}for(;i;){var o=e.shift();if(i=0!=(128&o),o=127&o,n|=o<<r,r+=7,r>=32)break}return t.push(n),t},t}();n.Varint=s;var a=function(){function e(){}return e.GetNumber=function(e){if(t.BrowserChecker.IsDataViewSupport()){for(var n=new DataView(new ArrayBuffer(4)),i=0;i<4;++i)n.setUint8(i,e[i]);return n.getFloat32(0,!0)}return r.ConvertArrayToNumber(e,!1)},e}();n.Float=a;var u=function(){function e(){}return e.GetNumber=function(e){if(t.BrowserChecker.IsDataViewSupport()){for(var n=new DataView(new ArrayBuffer(8)),i=0;i<8;++i)n.setUint8(i,e[i]);return n.getFloat64(0,!0)}return r.ConvertArrayToNumber(e,!0)},e}();n.Double=u;var d=function(){function t(){}return t.DecodeZigzag16=function(e){return((65535&e)>>>1^-(1&e))<<16>>16},t.DecodeZigzag32=function(e){return e>>>1^-(1&e)},t.DecodeZigzag64=function(t){var n=1&t.high,i=t.high>>>1,r=1&t.low,o=t.low>>>1;o=n<<31|o,r&&(o^=4294967295,i^=4294967295);var s=new e.Bond.UInt64("0");return s.low=o,s.high=i,s},t}();n.Zigzag=d}(i=t.Decoding||(t.Decoding={}));var r=function(){function e(){}return e.ConvertNumberToArray=function(e,t){if(!e)return t?this._doubleZero:this._floatZero;var n=t?11:8,i=t?52:23,r=(1<<n-1)-1,o=1-r,s=r,a=e<0?1:0;e=Math.abs(e);for(var u=Math.floor(e),d=e-u,c=2*(r+2)+i,l=new Array(c),_=0;_<c;)l[_++]=0;for(_=r+2;_&&u;)l[--_]=u%2,u=Math.floor(u/2);for(_=r+1;_<c-1&&d>0;)d*=2,d>=1?(l[++_]=1,--d):l[++_]=0;for(var f=0;f<c&&!l[f];++f);var h=r+1-f,p=f+i;if(l[p+1]){for(_=p;_>f&&!(l[_]=1-l[_]);--_);_==f&&++h}if(h>s||u)return a?t?this._doubleNegInifinity:this._floatNegInifinity:t?this._doubleInifinity:this._floatInifinity;if(h<o)return t?this._doubleZero:this._floatZero;if(t){var I=0;for(_=0;_<20;++_)I=I<<1|l[++f];for(var T=0;_<52;++_)T=T<<1|l[++f];I|=h+r<<20,I=a<<31|2147483647&I;var S=[255&T,T>>8&255,T>>16&255,T>>>24,255&I,I>>8&255,I>>16&255,I>>>24];return S}var E=0;for(_=0;_<23;++_)E=E<<1|l[++f];E|=h+r<<23,E=a<<31|2147483647&E;var S=[255&E,E>>8&255,E>>16&255,E>>>24];return S},e.ConvertArrayToNumber=function(e,n){var i=n?11:8,r=(1<<i-1)-1,o=0!=(128&e[n?7:3]),s=n?(127&e[7])<<4|(240&e[6])>>4:(127&e[3])<<1|(128&e[2])>>7;if(255==s)throw new t.Exception("Not a valid float/double buffer.");var a=1,u=1;if(n){var d=(15&e[6])<<28|(255&e[5])<<20|(255&e[4])<<12,c=e[3]<<24|(255&e[2])<<16|(255&e[1])<<8|255&e[0];if(!s&&!d&&!c)return 0;for(var l=0;l<20;++l)u/=2,d<0&&(a+=u),d<<=1;for(var l=0;l<32;++l)u/=2,c<0&&(a+=u),c<<=1}else{var _=(127&e[2])<<25|(255&e[1])<<17|(255&e[0])<<9;if(!s&&!_)return 0;for(var l=0;l<23;++l)u/=2,_<0&&(a+=u),_<<=1}return a*=Math.pow(2,s-r),o?0-a:a},e}();r._floatZero=[0,0,0,0],r._doubleZero=[0,0,0,0,0,0,0,0],r._floatInifinity=[0,0,128,127],r._floatNegInifinity=[0,0,128,255],r._doubleInifinity=[0,0,0,0,0,0,240,127],r._doubleNegInifinity=[0,0,0,0,0,0,240,255]}(t=e.Bond||(e.Bond={}))}(Microsoft||(Microsoft={}));var Microsoft;!function(e){var t;!function(e){var t;!function(t){var n=function(){function t(){this._buffer=[]}return t.prototype.WriteByte=function(t){this._buffer.push(e.Number.ToByte(t))},t.prototype.Write=function(e,t,n){for(;n--;)this.WriteByte(e[t++])},t.prototype.GetBuffer=function(){return this._buffer},t}();t.MemoryStream=n}(t=e.IO||(e.IO={}))}(t=e.Bond||(e.Bond={}))}(Microsoft||(Microsoft={}));var Microsoft;!function(e){var t;!function(e){var t=function(){function e(e,t){this.Type=e,this.Id=t}return e}();e.FieldTag=t;var n=function(){function e(e,t){this.ElementType=e,this.Size=t}return e}();e.ContainerTag=n;var i=function(){function e(e,t,n){this.KeyType=e,this.ValueType=t,this.Size=n}return e}();e.KeyValueContainerTag=i;var r=function(){function e(){}return e}();e.Bonded=r;var o=function(){function e(e){this.low=0,this.high=0,this.low=parseInt(e),this.low<0&&(this.high=-1)}return e.prototype.Equals=function(t){var n=new e(t);return this.low==n.low&&this.high==n.high},e}();e.Int64=o;var s=function(){function e(e){this.low=0,this.high=0,this.low=parseInt(e)}return e.prototype.Equals=function(t){var n=new e(t);return this.low==n.low&&this.high==n.high},e}();e.UInt64=s;var a=function(){function e(){}return e.ToByte=function(e){return this.ToUInt8(e)},e.ToInt8=function(e){var t=(128&e)<<24>>24;return 127&e|t},e.ToInt16=function(e){var t=(32768&e)<<16>>16;return 32767&e|t},e.ToInt32=function(e){var t=2147483648&e;return 2147483647&e|t},e.ToUInt8=function(e){return 255&e},e.ToUInt16=function(e){return 65535&e},e.ToUInt32=function(e){return 4294967295&e},e}();e.Number=a;var u=function(){function e(e){this.Message=e}return e}();e.Exception=u;var d=function(){function e(){}return e}();e.KeyValuePair=d;var c=function(){function e(){}return e.IsDataViewSupport=function(){return"undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},e}();e.BrowserChecker=c}(t=e.Bond||(e.Bond={}))}(Microsoft||(Microsoft={})),function(e){var t;!function(e){var t=function(){function t(e){this._stream=e}return t.prototype.WriteBlob=function(e){this._stream.Write(e,0,e.length)},t.prototype.WriteBool=function(e){this._stream.WriteByte(e?1:0)},t.prototype.WriteContainerBegin=function(e,t){this.WriteUInt8(t),this.WriteUInt32(e)},t.prototype.WriteMapContainerBegin=function(e,t,n){this.WriteUInt8(t),this.WriteUInt8(n),this.WriteUInt32(e)},t.prototype.WriteContainerEnd=function(){},t.prototype.WriteDouble=function(t){var n=e.Encoding.Double.GetBytes(t);this._stream.Write(n,0,n.length)},t.prototype.WriteFloat=function(t){var n=e.Encoding.Float.GetBytes(t);this._stream.Write(n,0,n.length)},t.prototype.WriteFieldBegin=function(e,t,n){t<=5?this._stream.WriteByte(e|t<<5):t<=255?(this._stream.WriteByte(192|e),this._stream.WriteByte(t)):(this._stream.WriteByte(224|e),this._stream.WriteByte(t),this._stream.WriteByte(t>>8))},t.prototype.WriteFieldEnd=function(){},t.prototype.WriteFieldOmitted=function(e,t,n){},t.prototype.WriteInt16=function(t){t=e.Encoding.Zigzag.EncodeZigzag16(t),this.WriteUInt16(t)},t.prototype.WriteInt32=function(t){t=e.Encoding.Zigzag.EncodeZigzag32(t),this.WriteUInt32(t)},t.prototype.WriteInt64=function(t){this.WriteUInt64(e.Encoding.Zigzag.EncodeZigzag64(t))},t.prototype.WriteInt8=function(t){this._stream.WriteByte(e.Number.ToInt8(t))},t.prototype.WriteString=function(t){if(""==t)this.WriteUInt32(0);else{var n=e.Encoding.Utf8.GetBytes(t);this.WriteUInt32(n.length),this._stream.Write(n,0,n.length)}},t.prototype.WriteStructBegin=function(e,t){},t.prototype.WriteStructEnd=function(t){this.WriteUInt8(t?e.BondDataType.BT_STOP_BASE:e.BondDataType.BT_STOP)},t.prototype.WriteUInt16=function(t){var n=e.Encoding.Varint.GetBytes(e.Number.ToUInt16(t));this._stream.Write(n,0,n.length)},t.prototype.WriteUInt32=function(t){var n=e.Encoding.Varint.GetBytes(e.Number.ToUInt32(t));this._stream.Write(n,0,n.length)},t.prototype.WriteUInt64=function(t){var n=e.Encoding.Varint64.GetBytes(t);this._stream.Write(n,0,n.length)},t.prototype.WriteUInt8=function(t){this._stream.WriteByte(e.Number.ToUInt8(t))},t.prototype.WriteWString=function(e){this.WriteUInt32(e.length);for(var t=0;t<e.length;++t){var n=e.charCodeAt(t);this._stream.WriteByte(n),this._stream.WriteByte(n>>>8)}},t}();e.CompactBinaryProtocolWriter=t;var n=function(){function e(){}return e}();e.CompactBinaryProtocolReader=n}(t=e.Bond||(e.Bond={}))}(Microsoft||(Microsoft={}));var sct;!function(e){var t=function(){function t(){}return t.IsSafari=function(){if(null===t._isSafari)if("undefined"!=typeof navigator&&navigator.userAgent){var e=navigator.userAgent.toLowerCase();e.indexOf("safari")>=0&&e.indexOf("chrome")<0?t._isSafari=!0:t._isSafari=!1}else t._isSafari=!1;return t._isSafari},t.IsReactNative=function(){return null===t._isReactNative&&("undefined"!=typeof navigator&&navigator.product?t._isReactNative="ReactNative"===navigator.product:t._isReactNative=!1),t._isReactNative},t.IsUint8ArrSupported=function(){return!e.Utils.IsSafari()&&"undefined"!=typeof Uint8Array&&!e.Utils.IsReactNative()},t.ajax=function(e,n){var i=t._createConnection();if(e.headers){var r="qsp=true";for(var o in e.headers)r+="&",r+=encodeURIComponent(o),r+="=",r+=encodeURIComponent(e.headers[o]);e.url.indexOf("?")<0?e.url+="?":e.url+="&",e.url+=r}i.open(e.type,e.url,!n),e.complete&&(i.onload=function(){e.complete(i)},i.ontimeout=function(){e.complete(i)},i.onerror=function(){e.complete(i)},i.onabort=function(){e.complete(i)}),i.send(e.data)},t.keys=function(e){if(Object.keys)return Object.keys(e);var t=[];for(var n in e)e.hasOwnProperty(n)&&t.push(n);return t},t.IsUsingXDomainRequest=function(){if(null==t._usingXDomainRequest){var e=new XMLHttpRequest;"undefined"==typeof e.withCredentials&&"undefined"!=typeof XDomainRequest?t._usingXDomainRequest=!0:t._usingXDomainRequest=!1}return t._usingXDomainRequest},t._createConnection=function(){var e=new XMLHttpRequest;return t.IsUsingXDomainRequest()?new XDomainRequest:e},t}();t._isSafari=null,t._isReactNative=null,t._usingXDomainRequest=null,e.Utils=t}(sct||(sct={}));var microsoft;!function(e){var t;!function(e){var t;!function(e){var t;!function(t){var n=function(){function e(){}return e.GetGuid=function(){var e=function(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1,5)};return[e(),e(),"-",e(),"-",e(),"-",e(),"-",e(),e(),e()].join("")},e.GetTimeStamp=function(){var e=(new Date).getTime(),t=new Microsoft.Bond.Int64("0");return t.low=4294967295&e,t.high=Math.floor(e/4294967296),t},e.GetTimeStampWithValue=function(e){var t=new Microsoft.Bond.Int64("0");return t.low=4294967295&e,t.high=Math.floor(e/4294967296),t},e}();t.utils=n;var i;!function(e){e[e.NotSet=0]="NotSet",e[e.Event=1]="Event",e[e.PerformanceCounter=2]="PerformanceCounter",e[e.Anomaly=3]="Anomaly",e[e.Prediction=4]="Prediction",e[e.TraceLog=5]="TraceLog",e[e.EventSourceLog=6]="EventSourceLog",e[e.HttpLog=7]="HttpLog",e[e.PerformanceCounterAzure=8]="PerformanceCounterAzure",e[e.PerformanceCounterGfs=9]="PerformanceCounterGfs"}(i=t.RecordType||(t.RecordType={}));var r;!function(e){e[e.NotSet=0]="NotSet",e[e.O365=1]="O365",e[e.SkypeBI=2]="SkypeBI",e[e.SkypeData=3]="SkypeData"}(r=t.PIIScrubber||(t.PIIScrubber={}));var o;!function(e){e[e.NotSet=0]="NotSet",e[e.DistinguishedName=1]="DistinguishedName",e[e.GenericData=2]="GenericData",e[e.IPV4Address=3]="IPV4Address",e[e.IPv6Address=4]="IPv6Address",e[e.MailSubject=5]="MailSubject",e[e.PhoneNumber=6]="PhoneNumber",e[e.QueryString=7]="QueryString",e[e.SipAddress=8]="SipAddress",e[e.SmtpAddress=9]="SmtpAddress",e[e.Identity=10]="Identity",e[e.Uri=11]="Uri",e[e.Fqdn=12]="Fqdn",e[e.IPV4AddressLegacy=13]="IPV4AddressLegacy"}(o=t.PIIKind||(t.PIIKind={}));var s;!function(e){e[e.Unknown=0]="Unknown",e[e.MSACID=1]="MSACID",e[e.MSAPUID=2]="MSAPUID",e[e.ANID=3]="ANID",e[e.OrgIdCID=4]="OrgIdCID",e[e.OrgIdPUID=5]="OrgIdPUID",e[e.UserObjectId=6]="UserObjectId",e[e.Skype=7]="Skype",e[e.Yammer=8]="Yammer",e[e.EmailAddress=9]="EmailAddress",e[e.PhoneNumber=10]="PhoneNumber",e[e.SipAddress=11]="SipAddress",e[e.MUID=12]="MUID"}(s=t.UserIdType||(t.UserIdType={}));var a=function(){function t(){this.ScrubType=e.datamodels.PIIScrubber.NotSet,this.Kind=e.datamodels.PIIKind.NotSet,this.RawContent=""}return t.prototype.Write=function(e){this.WriteImpl(e,!1)},t.prototype.WriteImpl=function(t,n){t.WriteStructBegin(null,n),this.ScrubType!=e.datamodels.PIIScrubber.NotSet?(t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_INT32,1,null),t.WriteInt32(this.ScrubType),t.WriteFieldEnd()):t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_INT32,1,null),this.Kind!=e.datamodels.PIIKind.NotSet?(t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_INT32,2,null),t.WriteInt32(this.Kind),t.WriteFieldEnd()):t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_INT32,2,null),""!=this.RawContent?(t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_STRING,3,null),t.WriteString(this.RawContent),t.WriteFieldEnd()):t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_STRING,3,null),t.WriteStructEnd(n)},t.prototype.Read=function(e){this.ReadImpl(e,!1)},t.prototype.ReadImpl=function(e,t){},t}();t.PII=a;var u=function(){function t(){this.Id=n.GetGuid(),this.Timestamp=n.GetTimeStamp(),this.Type="",this.EventType="",this.Extension=new Microsoft.Bond.Collections.Map,this.RecordType=e.datamodels.RecordType.NotSet,this.PIIExtensions=new Microsoft.Bond.Collections.Map}return t.prototype.AddOrReplacePII=function(t,n,i){var r=new e.datamodels.PII;r.RawContent=n,r.Kind=i,r.ScrubType=e.datamodels.PIIScrubber.O365,this.PIIExtensions.AddOrReplace(t,r)},t.prototype.Write=function(e){this.WriteImpl(e,!1)},t.prototype.WriteImpl=function(t,n){if(t.WriteStructBegin(null,n),""!=this.Id?(t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_STRING,1,null),t.WriteString(this.Id),t.WriteFieldEnd()):t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_STRING,1,null),this.Timestamp.Equals("0")?t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_INT64,3,null):(t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_INT64,3,null),t.WriteInt64(this.Timestamp),t.WriteFieldEnd()),""!=this.Type?(t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_STRING,5,null),t.WriteString(this.Type),t.WriteFieldEnd()):t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_STRING,5,null),""!=this.EventType?(t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_STRING,6,null),t.WriteString(this.EventType),t.WriteFieldEnd()):t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_STRING,6,null),this.Extension.Count()){t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_MAP,13,null),t.WriteMapContainerBegin(this.Extension.Count(),Microsoft.Bond.BondDataType.BT_STRING,Microsoft.Bond.BondDataType.BT_STRING);for(var i=0;i<this.Extension.GetBuffer().length;++i)t.WriteString(this.Extension.GetBuffer()[i].Key),t.WriteString(this.Extension.GetBuffer()[i].Value);t.WriteContainerEnd(),t.WriteFieldEnd()}else t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_MAP,13,null);if(this.RecordType!=e.datamodels.RecordType.NotSet?(t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_INT32,24,null),t.WriteInt32(this.RecordType),t.WriteFieldEnd()):t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_INT32,24,null),this.PIIExtensions.Count()){t.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_MAP,30,null),t.WriteMapContainerBegin(this.PIIExtensions.Count(),Microsoft.Bond.BondDataType.BT_STRING,Microsoft.Bond.BondDataType.BT_STRUCT);for(var r=0;r<this.PIIExtensions.GetBuffer().length;++r)t.WriteString(this.PIIExtensions.GetBuffer()[r].Key),this.PIIExtensions.GetBuffer()[r].Value.WriteImpl(t,!1);t.WriteContainerEnd(),t.WriteFieldEnd()}else t.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_MAP,30,null);t.WriteStructEnd(n)},t.prototype.Read=function(e){this.ReadImpl(e,!1)},t.prototype.ReadImpl=function(e,t){},t}();t.Record=u;var d=function(){function e(){this.Source="",this.DataPackageId="",this.Timestamp=new Microsoft.Bond.Int64("0"),this.Records=[]}return e.prototype.Write=function(e){this.WriteImpl(e,!1)},e.prototype.WriteImpl=function(e,t){if(e.WriteStructBegin(null,t),""!=this.Source?(e.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_STRING,2,null),e.WriteString(this.Source),e.WriteFieldEnd()):e.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_STRING,2,null),""!=this.DataPackageId?(e.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_STRING,5,null),e.WriteString(this.DataPackageId),e.WriteFieldEnd()):e.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_STRING,5,null),this.Timestamp.Equals("0")?e.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_INT64,6,null):(e.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_INT64,6,null),e.WriteInt64(this.Timestamp),e.WriteFieldEnd()),this.Records.length){e.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_LIST,8,null),e.WriteContainerBegin(this.Records.length,Microsoft.Bond.BondDataType.BT_STRUCT);for(var n=0;n<this.Records.length;++n)this.Records[n].WriteImpl(e,!1);e.WriteContainerEnd(),e.WriteFieldEnd()}else e.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_LIST,8,null);e.WriteStructEnd(t)},e.prototype.Read=function(e){this.ReadImpl(e,!1)},e.prototype.ReadImpl=function(e,t){},e}();t.DataPackage=d;var c=function(){function e(){this.DataPackages=[],this.RequestRetryCount=0}return e.prototype.Write=function(e){this.WriteImpl(e,!1)},e.prototype.WriteImpl=function(e,t){if(e.WriteStructBegin(null,t),this.DataPackages.length){e.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_LIST,1,null),e.WriteContainerBegin(this.DataPackages.length,Microsoft.Bond.BondDataType.BT_STRUCT);for(var n=0;n<this.DataPackages.length;++n)this.DataPackages[n].WriteImpl(e,!1);e.WriteContainerEnd(),e.WriteFieldEnd()}else e.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_LIST,1,null);0!=this.RequestRetryCount?(e.WriteFieldBegin(Microsoft.Bond.BondDataType.BT_INT32,2,null),e.WriteInt32(this.RequestRetryCount),e.WriteFieldEnd()):e.WriteFieldOmitted(Microsoft.Bond.BondDataType.BT_INT32,2,null),e.WriteStructEnd(t)},e.prototype.Read=function(e){this.ReadImpl(e,!1)},e.prototype.ReadImpl=function(e,t){},e}();t.ClientToCollectorRequest=c}(t=e.datamodels||(e.datamodels={}))}(t=e.telemetry||(e.telemetry={}))}(t=e.applications||(e.applications={}))}(microsoft||(microsoft={}));var microsoft;!function(e){var t;!function(e){var t;!function(e){var t;!function(t){var n;!function(e){e[e.SENT=0]="SENT",e[e.SEND_FAILED=1]="SEND_FAILED"}(n=t.CallbackEventType||(t.CallbackEventType={}));var i;!function(e){e[e.DATARV_ERROR_OK=0]="DATARV_ERROR_OK",e[e.DATARV_ERROR_INVALID_EVENT=1]="DATARV_ERROR_INVALID_EVENT",e[e.DATARV_ERROR_INVALID_CONFIG=2]="DATARV_ERROR_INVALID_CONFIG",e[e.DATARV_ERROR_INVALID_DEPENDENCIES=3]="DATARV_ERROR_INVALID_DEPENDENCIES",e[e.DATARV_ERROR_INVALID_STATUS=4]="DATARV_ERROR_INVALID_STATUS",e[e.DATARV_ERROR_INVALID_ARG=5]="DATARV_ERROR_INVALID_ARG"}(i=t.DATARV_ERROR||(t.DATARV_ERROR={}));var r=function(){function e(e){this._errorCode=i.DATARV_ERROR_OK,this._errorCode=e}return e.prototype.ErrorCode=function(){return this._errorCode},e.prototype.toString=function(){switch(this._errorCode){case i.DATARV_ERROR_OK:return"DATARV_ERROR_OK";case i.DATARV_ERROR_INVALID_EVENT:return"Event is invalid. Either event.Id is empty, or event.Timestamp is empty, or event.EventType is empty.";case i.DATARV_ERROR_INVALID_CONFIG:return"Invalid configuration. CollectorUrl is missing.";case i.DATARV_ERROR_INVALID_DEPENDENCIES:return"DATARV_ERROR_INVALID_DEPENDENCIES";case i.DATARV_ERROR_INVALID_STATUS:return"Telemetry Manager is not initialized.";case i.DATARV_ERROR_INVALID_ARG:return"TenantToken is null or empty, or events is null.";default:return"Unknown error"}},e}();t.Exception=r;var o=function(){function e(){}return e}();t.TelemetryConfig=o;var s=function(){function e(){}return e.CreateTelemetryManager=function(){return new d},e}();t.TelemetryManagerFactory=s;var a,u=function(){function e(){}return e.MaxPackageSizeInBytes=function(){return 3e6},e.TimeIntervalForNextSendInMS=function(){return 1e3},e}();!function(e){e[e.Created=0]="Created",e[e.Initialized=1]="Initialized",e[e.Started=2]="Started"}(a||(a={}));var d=function(){function t(){this._MaxPackageSizeInBytes=u.MaxPackageSizeInBytes(),this._listeners=[],this._status=a.Created,this._etag=null,this._testServerResponseHook=null,this._isPaused=!1}return t.prototype.Initialize=function(e){if(this._status!=a.Created)throw new r(i.DATARV_ERROR_INVALID_STATUS);if(!e||!e.collectorUrl)throw new r(i.DATARV_ERROR_INVALID_CONFIG);this._config=e,this._Reset(),this._status=a.Initialized,this._Verbose("Initialize() done")},t.prototype.AddListener=function(e){if(this._status<a.Initialized)throw new r(i.DATARV_ERROR_INVALID_STATUS);this._Verbose(["AddListener(), status: ",this._status," old length: ",this._listeners.length," func: ",e].join(""));for(var t=0;t<this._listeners.length;++t)if(this._listeners[t]==e)return void this._Verbose("the listener has been added already, index: "+t);this._listeners.push(e),this._Verbose("AddListener() done, the new length: "+this._listeners.length)},t.prototype.RemoveListener=function(e){if(this._status<a.Initialized)throw new r(i.DATARV_ERROR_INVALID_STATUS);this._Verbose(["RemoveListener(), status: ",this._status," old length: ",this._listeners.length," func: ",e].join(""));for(var t=0;t<this._listeners.length;++t)if(this._listeners[t]==e)return 1==this._listeners.length?this._listeners=[]:t==this._listeners.length-1?this._listeners.pop():this._listeners[t]=this._listeners.pop(),void this._Verbose(["this listener has been found, index: ",t,"new length: ",this._listeners.length].join(""));this._Verbose("listener isn't been found, new length"+this._listeners.length)},t.prototype.Start=function(){if(this._status<a.Initialized)throw new r(i.DATARV_ERROR_INVALID_STATUS);this._Verbose(["Start(), status:",this._status,"tag:",t._tag].join(" ")),this._status>=a.Started&&this._Verbose("Start() already, ignore"),++t._tag,this._status=a.Started,this._Verbose(["Start() done, status: ",this._status,"tag: ",t._tag].join(""))},t.prototype.Stop=function(){if(this._status<a.Initialized)throw new r(i.DATARV_ERROR_INVALID_STATUS);return this._Verbose("Stop(), status: "+this._status),this._status==a.Initialized?void this._Verbose("Stop() already, ignore"):(this._Reset(),this._status=a.Initialized,void this._Verbose("Stop() done, status: "+this._status))},t.prototype.Pause=function(){this._isPaused=!0,this._CleanTimer()},t.prototype.Resume=function(){this._isPaused=!1,this._eventsCache.IsEmpty()||this._timer||this._ScheduleTimer(!1)},t.prototype.Flush=function(e){this._eventsCache.IsEmpty()||this._WorkThread(e,!0)},t.prototype.SendAsync=function(e,n){if(this._status<a.Initialized)throw new r(i.DATARV_ERROR_INVALID_STATUS);if(this._Verbose(["SendAsync(), status:",this._status,"tenantToken:",e,"count:",n.length].join(" ")),this._status<a.Started)return this._Info("SendAsync(), not started, ignore, return false"),!1;if(!e||!n)throw this._Error("SendAsync(), tenantToken or events is null or empty"),new r(i.DATARV_ERROR_INVALID_ARG);for(var o=0;o<n.length;++o)if(!n[o].Id||!t._eventTypeRegex.test(n[o].EventType)||n[o].Timestamp.Equals("0"))throw this._Error(["eventId:",n[o].Id,"eventType:",n[o].EventType,"timestamp high:",n[o].Timestamp.high,"timestamp low:",n[o].Timestamp.low].join("")),new r(i.DATARV_ERROR_INVALID_EVENT);return this._eventsCache.AddEvents(e,n),this._Verbose(["SendAsync(), currentTimer: ",this._timer,"eventsCacheIsEmpty",this._eventsCache.IsEmpty()].join(" ")),this._eventsCache.IsEmpty()||this._timer||this._ScheduleTimer(!1),this._Verbose("SendAsync() done"),!0},t.prototype._WorkThread=function(e,n){var i=this;try{if(this._Verbose("_WorkThread, status: "+this._status),this._status<a.Started)return void this._Verbose("_WorkThread, status is not started, return");var r=this._eventsCache.DequeuEvents();if(null==r)return this._Verbose("_WorkThread, No events found, return"),void this._CleanTimer();var o=this._PackEvents(r.tenantToken,r.events);if(this._eventsCache.AddEvents(r.tenantToken,o.remainedEvents),null==o.buffer||0==o.buffer.length)return void(this._eventsCache.IsEmpty()?(this._Verbose("eventsCache is empty, stop schedule"),this._CleanTimer()):(this._Verbose("eventsCache is not empty, schedule for next run"),this._ScheduleTimer(!1)));if(this._testServerResponseHook){var s=this._testServerResponseHook();return void setTimeout(this._SendCallback(d,r.tenantToken,o.sendEvents,s,!1,null),100)}var u={type:"POST",url:this._config.collectorUrl,processData:!1,headers:{"content-type":"application/bond-compact-binary","client-id":"NO_AUTH","sdk-version":"ACT-Web-JS-"+clienttelemetry_build.version},complete:function(t){return i._SendCallback(d,r.tenantToken,o.sendEvents,t,n,e)}};sct.Utils.IsUint8ArrSupported()?(this._Verbose("Uint8Array is defined, send with binary format directly."),u.data=new Uint8Array(o.buffer)):(this._Verbose("Uint8Array is undefined, send with base64 encode."),u.data=Microsoft.Bond.Encoding.Base64.GetString(o.buffer),u.headers["content-encoding"]="base64"),r.tenantToken&&(u.headers["x-apikey"]=r.tenantToken);var d=t._tag;this._lastActiveTime=(new Date).getTime(),sct.Utils.ajax(u,n),this._Verbose("_Workthread, send via jquery, tag: "+d)}catch(e){this._Error("_WorkThread, exception: "+e)}},t.prototype._PackEvents=function(t,n){this._Verbose("_PackageEvents, total Count: "+n.length);var i=new e.datamodels.ClientToCollectorRequest,r=new e.datamodels.DataPackage;r.Source="JS_default_source",r.DataPackageId=e.datamodels.utils.GetGuid(),r.Timestamp=e.datamodels.utils.GetTimeStamp();var o,s=n;for(n=[];;){if(r.Records=[],r.Records.push.apply(r.Records,s),i.DataPackages=[],i.DataPackages.push(r),o=this._Serialize(i),this._Verbose(["_PackageEvents, sendEvents.length:",s.length,"buffer.length:",o.length,"MaxPackageSize:",this._MaxPackageSizeInBytes].join("")),o.length<this._MaxPackageSizeInBytes)break;if(1==s.length){s=[],o=null;break}var a=s.splice(0,Math.floor(s.length/2));this._Verbose("_PackageEvents, too large, package again"),n.push.apply(n,s),s=a}return this._Verbose(["_PakcageEvents done, sendEventsCount:",s.length,"buffer.length:",null==o?0:o.length,"remained events:",n.length].join("")),{buffer:o,sendEvents:s,remainedEvents:n}},t.prototype._Serialize=function(e){var t=new Microsoft.Bond.IO.MemoryStream,n=new Microsoft.Bond.CompactBinaryProtocolWriter(t);return e.Write(n),t.GetBuffer()},t.prototype._SendCallback=function(e,i,r,o,s,u){if(this._Verbose(["_SendCallback","tag:",e,"current tag:",t._tag,"tenantToken:",i,"events count:",r.length,"jqXHR:",o].join("")),u&&u(o?o.status:0,i,r),!s){var d=o&&"undefined"!=typeof o.status&&200===o.status;if(this._status<a.Started||e<t._tag)return void this._Verbose("_SendCallback, is not started, or tag is not the same, return");if(!d){var c=o&&"undefined"!=typeof o.status&&501!==o.status&&505!==o.status&&(o.status<300||o.status>=500||408===o.status);if(c||!o||"undefined"==typeof o.status)return this._Verbose("retry statusCode: "+(o?o.status:0)),this._eventsCache.AddEvents(i,r),void this._ScheduleTimer(!0)}for(var l=0;l<this._listeners.length;++l)this._listeners[l](d?n.SENT:n.SEND_FAILED,o?o.status:0,i,r);this._eventsCache.IsEmpty()?(this._Verbose("eventsCache is empty, stop schedule"),this._CleanTimer()):(this._Verbose("eventsCache is not empty, schedule for next run"),this._ScheduleTimer(!1))}},t.prototype._CleanTimer=function(){
|
|
2
|
+
this._Verbose("_CleanTimer(), timer: "+this._timer),this._timer&&(clearTimeout(this._timer),this._timer=null)},t.prototype._ScheduleTimer=function(e){var t=this;if(!this._isPaused)if(this._Verbose("_ScheduleTimer: isRetry: "+e),this._CleanTimer(),e){this._Verbose("_ScheduleTimer, current factor: "+this._rescheduleFactor);var n=Math.floor(5*this._rescheduleFactor*(1+Math.random()));this._timer=setTimeout(function(){return t._WorkThread(null,!1)},1e3*n),this._Verbose("_ScheduleTimer, next try (s): "+n),this._rescheduleFactor<<=1,this._rescheduleFactor>64&&(this._rescheduleFactor=1)}else{var n=0,i=(new Date).getTime(),r=i-this._lastActiveTime;n=r>u.TimeIntervalForNextSendInMS()?0:u.TimeIntervalForNextSendInMS()-r,this._timer=setTimeout(function(){return t._WorkThread(null,!1)},n),this._Verbose("_ScheduleTimer, next try: "+n),this._rescheduleFactor=1}},t.prototype._Verbose=function(e){this._config.log&&this._config.log.Verbose("[TelemetryManagerImpl]: "+e)},t.prototype._Info=function(e){this._config.log&&this._config.log.Info("[TelemetryManagerImpl]: "+e)},t.prototype._Error=function(e){this._config.log&&this._config.log.Error("[TelemetryManagerImpl]: "+e)},t.prototype._Reset=function(){this._Verbose("Reset()"),this._CleanTimer(),this._lastActiveTime=0,this._rescheduleFactor=1,this._sendingEvents=[],this._eventsCache=new c},t.prototype.__GetListenerArray=function(){return this._listeners},t.prototype.__GetTotalEventsCount=function(){return this._eventsCache.GetTotalEventsCount()},t.prototype.__IsScheduled=function(){return null!=this._timer},t.prototype.__ChageMaxPackageSizeInKB=function(e){this._MaxPackageSizeInBytes=1024*e},t.prototype.__SetTestServerResponseHook=function(e){this._testServerResponseHook=e},t}();d._eventTypeRegex=/^[a-zA-Z0-9]([a-zA-Z0-9]|_){2,98}[a-zA-Z0-9]$/,d._tag=0;var c=function(){function e(){this._events={},this._tokens=[]}return e.prototype.AddEvents=function(e,t){t.length&&(this._events[e]||(this._events[e]=[],this._tokens.push(e)),this._events[e].push.apply(this._events[e],t))},e.prototype.IsEmpty=function(){return 0==this._tokens.length},e.prototype.DequeuEvents=function(){if(0==this._tokens.length)return null;var e=this._tokens.shift(),t=this._events[e];return delete this._events[e],{tenantToken:e,events:t}},e.prototype.GetTotalEventsCount=function(){var e=0;for(var t in this._events)e+=this._events[t].length;return e},e}()}(t=e._sender||(e._sender={}))}(t=e.telemetry||(e.telemetry={}))}(t=e.applications||(e.applications={}))}(microsoft||(microsoft={}));var microsoft;!function(e){var t;!function(t){var n;!function(t){var n=t._sender.TelemetryManagerFactory.CreateTelemetryManager(),i=function(){function e(){this.collectorUrl=null,this.enableAutoUserSession=!1,this.browserOverrides=null,this.disableCookies=!1}return e}();i.COLLECTOR_URL_UNITED_STATES="https://us.pipe.aria.microsoft.com/Collector/3.0/",i.COLLECTOR_URL_GERMANY="https://de.pipe.aria.microsoft.com/Collector/3.0/",i.COLLECTOR_URL_AUSTRALIA="https://au.pipe.aria.microsoft.com/Collector/3.0/",i.COLLECTOR_URL_JAPAN="https://jp.pipe.aria.microsoft.com/Collector/3.0/",i.COLLECTOR_URL_EUROPE="https://eu.pipe.aria.microsoft.com/Collector/3.0/",t.LogConfiguration=i;var r=function(){function e(){this.onSaveData=null,this.onGetData=null}return e}();t.LogConfigurationBrowserOverrides=r;var o=function(){function e(){this.value=null,this.pii=null}return e._isPii=function(e){return null!==e&&void 0!==e&&e!==t.datamodels.PIIKind.NotSet&&!isNaN(e)&&void 0!==t.datamodels.PIIKind[e]},e}(),s=function(){function e(){this.name=null,this.timestamp=null,this.properties={},this.eventType=null}return e.prototype.setProperty=function(n,i,r){if(!n||!e._propertyNameRegex.test(n))throw new u(a.INVALID_PROPERTY_NAME);r?this.properties[n]={value:i,pii:r!=t.datamodels.PIIKind.NotSet?r:null}:this.properties[n]={value:i,pii:null}},e}();s._propertyNameRegex=/^[a-zA-Z0-9](([a-zA-Z0-9|_|\.]){0,98}[a-zA-Z0-9])?$/,t.EventProperties=s;var a;!function(e){e[e.INVALID_TENANT_TOKEN=1]="INVALID_TENANT_TOKEN",e[e.MISSING_EVENT_PROPERTIES_NAME=2]="MISSING_EVENT_PROPERTIES_NAME",e[e.INVALID_PROPERTY_NAME=3]="INVALID_PROPERTY_NAME",e[e.MISSING_FAILURE_SIGNATURE=5]="MISSING_FAILURE_SIGNATURE",e[e.MISSING_FAILURE_DETAIL=6]="MISSING_FAILURE_DETAIL",e[e.MISSING_PAGEVIEW_ID=7]="MISSING_PAGEVIEW_ID",e[e.MISSING_PAGEVIEW_NAME=8]="MISSING_PAGEVIEW_NAME",e[e.INVALID_SESSION_STATE=9]="INVALID_SESSION_STATE",e[e.INVALID_CONFIGURATION_USE_CUSTOM_GET_SET=10]="INVALID_CONFIGURATION_USE_CUSTOM_GET_SET"}(a=t.TelemetryError||(t.TelemetryError={}));var u=function(){function e(e){this.errorCode=null,this.errorCode=e}return e.prototype.ErrorCode=function(){return this.errorCode},e.prototype.toString=function(){switch(this.errorCode){case a.INVALID_TENANT_TOKEN:return"Invalid tenant token";case a.MISSING_EVENT_PROPERTIES_NAME:return"Eventproperties.name can not be null or empty";case a.INVALID_PROPERTY_NAME:return"Invalid Key. Key does not conform to regular expression ^[a-zA-Z0-9](([a-zA-Z0-9|_|.]){0,98}[a-zA-Z0-9])?$";case a.MISSING_FAILURE_SIGNATURE:return"Failure signature can't be null or empty.";case a.MISSING_FAILURE_DETAIL:return"Failure detail can't be null or empty.";case a.MISSING_PAGEVIEW_ID:return"Pageview id can't be null or empty.";case a.MISSING_PAGEVIEW_NAME:return"Pageview name can't be null or empty.";case a.INVALID_SESSION_STATE:return"Session state has to be a value from the SessionState enum.";case a.INVALID_CONFIGURATION_USE_CUSTOM_GET_SET:return"Invalid configuration provided during initialization. Both onGetConfigData and onSaveConfigData must be provided together. These are manditory when running in a non-brower enviornment";default:return"Unknown error"}},e}();t.Exception=u;var d=function(){function n(e){this.contextMap={},this.piiKind=t.datamodels.PIIKind.NotSet,this._allowDeviceInfoFields=!1,this._allowDeviceInfoFields=e}return n.prototype.setAppId=function(e){e&&(this.contextMap["AppInfo.Id"]=e)},n.prototype.setAppVersion=function(e){e&&(this.contextMap["AppInfo.Version"]=e)},n.prototype.setAppLanguage=function(e){e&&(this.contextMap["AppInfo.Language"]=e)},n.prototype.setDeviceId=function(e){e&&this._allowDeviceInfoFields&&(this.contextMap["DeviceInfo.Id"]=e,c.checkAndUpdateDeviceId(e))},n.prototype.setDeviceOsName=function(e){e&&this._allowDeviceInfoFields&&(this.contextMap["DeviceInfo.OsName"]=e)},n.prototype.setDeviceOsVersion=function(e){e&&this._allowDeviceInfoFields&&(this.contextMap["DeviceInfo.OsVersion"]=e)},n.prototype.setDeviceBrowserName=function(e){e&&this._allowDeviceInfoFields&&(this.contextMap["DeviceInfo.BrowserName"]=e)},n.prototype.setDeviceBrowserVersion=function(e){e&&this._allowDeviceInfoFields&&(this.contextMap["DeviceInfo.BrowserVersion"]=e)},n.prototype.setUserId=function(t,n,i){if(t&&(this.contextMap["UserInfo.Id"]=t),i)this.contextMap["UserInfo.IdType"]=i;else{var r;switch(n){case e.applications.telemetry.datamodels.PIIKind.SipAddress:r=e.applications.telemetry.datamodels.UserIdType.SipAddress;break;case e.applications.telemetry.datamodels.PIIKind.PhoneNumber:r=e.applications.telemetry.datamodels.UserIdType.PhoneNumber;break;case e.applications.telemetry.datamodels.PIIKind.SmtpAddress:r=e.applications.telemetry.datamodels.UserIdType.EmailAddress;break;default:r=e.applications.telemetry.datamodels.UserIdType.Unknown}this.contextMap["UserInfo.IdType"]=r}if(n)o._isPii(n)&&(this.piiKind=n);else{var s;switch(i){case e.applications.telemetry.datamodels.UserIdType.Skype:s=e.applications.telemetry.datamodels.PIIKind.Identity;break;case e.applications.telemetry.datamodels.UserIdType.EmailAddress:s=e.applications.telemetry.datamodels.PIIKind.SmtpAddress;break;case e.applications.telemetry.datamodels.UserIdType.PhoneNumber:s=e.applications.telemetry.datamodels.PIIKind.PhoneNumber;break;case e.applications.telemetry.datamodels.UserIdType.SipAddress:s=e.applications.telemetry.datamodels.PIIKind.SipAddress;break;default:s=e.applications.telemetry.datamodels.PIIKind.NotSet}o._isPii(s)&&(this.piiKind=s)}},n.prototype.setUserMsaId=function(e){e&&(this.contextMap["UserInfo.MsaId"]=e)},n.prototype.setUserANID=function(e){e&&(this.contextMap["UserInfo.ANID"]=e)},n.prototype.setUserAdvertisingId=function(e){e&&(this.contextMap["UserInfo.AdvertisingId"]=e)},n.prototype.setUserTimeZone=function(e){e&&(this.contextMap["UserInfo.TimeZone"]=e)},n.prototype.setUserLanguage=function(e){e&&(this.contextMap["UserInfo.Language"]=e)},n}();t.SemanticContext=d;var c=function(){function e(){}return e.initialize=function(n,i){this._overrides=n,this._disableCookies=i;var r=e._getAppLanguage();r&&e.semanticContext.setAppLanguage(r);var o=e._getUserLanguage();o&&e.semanticContext.setUserLanguage(o);var s=(new Date).getTimezoneOffset(),a=s%60,u=(s-a)/60,d="+";u>0&&(d="-"),e.semanticContext.setUserTimeZone(d+(u<10?"0"+u:u.toString())+":"+(a<10?"0"+a:a.toString()));var c=e._getUserAgent();if(c&&(e.semanticContext.setDeviceBrowserName(e._getBrowserName()),e.semanticContext.setDeviceBrowserVersion(e._getBrowserVersion()),e.semanticContext.setDeviceOsName(e._getOsName()),e.semanticContext.setDeviceOsVersion(e._getOsVersion())),this._disableCookies&&!this._overrides)return e._deleteCookie(e.DEVICE_ID_COOKIE),void e._deleteCookie(e.FIRST_LAUNCH_TIME_COOKIE);var l=e._getData(e.DEVICE_ID_COOKIE);l&&""!=l||(l=t.datamodels.utils.GetGuid()),e.semanticContext.setDeviceId(l)},e.checkAndUpdateDeviceId=function(t){var n=e._getData(e.DEVICE_ID_COOKIE),i=e._getData(e.FIRST_LAUNCH_TIME_COOKIE);n!==t&&(i=(new Date).getTime().toString()),e.firstLaunchTime=parseInt(i),e._saveData(e.DEVICE_ID_COOKIE,t),e._saveData(e.FIRST_LAUNCH_TIME_COOKIE,i)},e._saveData=function(t,n){if(this._overrides)this._overrides.onSaveData(t,n);else if("undefined"!=typeof document&&"undefined"!=typeof document.cookie&&!e._disableCookies){var i=new Date;i.setTime(i.getTime()+31536e6);var r="expires="+i.toUTCString();document.cookie=t+"="+n+"; "+r}},e._getData=function(t){if(this._overrides)return this._overrides.onGetData(t)||"";if("undefined"!=typeof document&&"undefined"!=typeof document.cookie&&!e._disableCookies)for(var n=t+"=",i=document.cookie.split(";"),r=0;r<i.length;r++){for(var o=i[r],s=0;" "==o.charAt(s);)s++;if(o=o.substring(s),0==o.indexOf(n))return o.substring(n.length,o.length)}return""},e._getUserAgent=function(){return"undefined"!=typeof navigator?navigator.userAgent||"":""},e._getAppLanguage=function(){return"undefined"!=typeof document&&document.documentElement?document.documentElement.lang:null},e._getUserLanguage=function(){return"undefined"!=typeof navigator?navigator.userLanguage||navigator.language:null},e._userAgentContainsString=function(t){return e._getUserAgent().indexOf(t)>-1},e._isIe=function(){return e._userAgentContainsString("Trident")},e._isEdge=function(){return e._userAgentContainsString(e.BROWSERS.EDGE)},e._isOpera=function(){return e._userAgentContainsString("OPR/")},e._getBrowserName=function(){return e._isOpera()?e.BROWSERS.UNKNOWN:e._userAgentContainsString(e.BROWSERS.PHANTOMJS)?e.BROWSERS.PHANTOMJS:e._isIe()?e.BROWSERS.MSIE:e._isEdge()?e.BROWSERS.EDGE:e._userAgentContainsString(e.BROWSERS.ELECTRON)?e.BROWSERS.ELECTRON:e._userAgentContainsString(e.BROWSERS.CHROME)?e.BROWSERS.CHROME:e._userAgentContainsString(e.BROWSERS.FIREFOX)?e.BROWSERS.FIREFOX:e._userAgentContainsString(e.BROWSERS.SAFARI)?e.BROWSERS.SAFARI:e._userAgentContainsString(e.BROWSERS.SKYPE_SHELL)?e.BROWSERS.SKYPE_SHELL:e.BROWSERS.UNKNOWN},e._getBrowserVersion=function(){function t(){var t,n=e._getUserAgent(),i=n.match(new RegExp(e.BROWSERS.MSIE+" "+e.REGEX_VERSION));return i?i[1]:(t=n.match(new RegExp("rv:"+e.REGEX_VERSION)))?t[1]:void 0}function n(t){var n;return t===e.BROWSERS.SAFARI&&(t="Version"),n=e._getUserAgent().match(new RegExp(t+"/"+e.REGEX_VERSION)),n?n[1]:e.UNKNOWN_VERSION}return e._isIe()?t():n(e._getBrowserName())},e._getOsName=function(){var t=/(windows|win32)/i,n=/ arm;/i,i=/windows\sphone\s\d+\.\d+/i,r=/(macintosh|mac os x)/i,o=/(iPad|iPhone|iPod)(?=.*like Mac OS X)/i,s=/(linux|joli|[kxln]?ubuntu|debian|[open]*suse|gentoo|arch|slackware|fedora|mandriva|centos|pclinuxos|redhat|zenwalk)/i,a=/android/i;return e._getUserAgent().match(i)?e.OPERATING_SYSTEMS.WINDOWS_PHONE:e._getUserAgent().match(n)?e.OPERATING_SYSTEMS.WINDOWS_RT:e._getUserAgent().match(o)?e.OPERATING_SYSTEMS.IOS:e._getUserAgent().match(a)?e.OPERATING_SYSTEMS.ANDROID:e._getUserAgent().match(s)?e.OPERATING_SYSTEMS.LINUX:e._getUserAgent().match(r)?e.OPERATING_SYSTEMS.MACOSX:e._getUserAgent().match(t)?e.OPERATING_SYSTEMS.WINDOWS:e.OPERATING_SYSTEMS.UNKNOWN},e._getOsVersion=function(){function t(){var t=e._getUserAgent().match(new RegExp("Windows NT "+e.REGEX_VERSION));return t&&e.VERSION_MAPPINGS[t[1]]?e.VERSION_MAPPINGS[t[1]]:e.UNKNOWN_VERSION}function n(){var t=e._getUserAgent().match(new RegExp(e.OPERATING_SYSTEMS.MACOSX+" "+e.REGEX_VERSION_MAC));if(t){var n=t[1].replace(/_/g,"."),r=[];if(n){var o=i(n);return o?(r=n.split(o),r[0]):n}}return e.UNKNOWN_VERSION}function i(e){return e.indexOf(".")>-1?".":e.indexOf("_")>-1?"_":null}return e._getOsName()===e.OPERATING_SYSTEMS.WINDOWS?t():e._getOsName()===e.OPERATING_SYSTEMS.MACOSX?n():e.UNKNOWN_VERSION},e}();c.semanticContext=new d((!0)),c.firstLaunchTime=-1,c.BROWSERS={MSIE:"MSIE",CHROME:"Chrome",FIREFOX:"Firefox",SAFARI:"Safari",EDGE:"Edge",ELECTRON:"Electron",SKYPE_SHELL:"SkypeShell",PHANTOMJS:"PhantomJS",UNKNOWN:"Unknown"},c.OPERATING_SYSTEMS={WINDOWS:"Windows",MACOSX:"Mac OS X",WINDOWS_PHONE:"Windows Phone",WINDOWS_RT:"Windows RT",IOS:"iOS",ANDROID:"Android",LINUX:"Linux",UNKNOWN:"Unknown"},c.VERSION_MAPPINGS={5.1:"XP","6.0":"Vista",6.1:"7",6.2:"8",6.3:"8.1","10.0":"10"},c.REGEX_VERSION="([\\d,.]+)",c.REGEX_VERSION_MAC="([\\d,_,.]+)",c.UNKNOWN_VERSION="Unknown",c.DEVICE_ID_COOKIE="MicrosoftApplicationsTelemetryDeviceId",c.FIRST_LAUNCH_TIME_COOKIE="MicrosoftApplicationsTelemetryFirstLaunchTime",c._deleteCookie=function(e){"undefined"!=typeof document&&"undefined"!=typeof document.cookie&&(document.cookie=e+"=;expires=Thu, 01 Jan 1970 00:00:01 GMT;")},c._disableCookies=!1;var l;!function(e){e[e.STARTED=0]="STARTED",e[e.ENDED=1]="ENDED"}(l=t.SessionState||(t.SessionState={}));var _=function(){function e(){}return e.initialize=function(t,i){if(!e._initialized){if(!t)throw new u(a.INVALID_TENANT_TOKEN);if(e._defaultToken=t,e._tmConfig.collectorUrl="https://browser.pipe.aria.microsoft.com/Collector/3.0/",e._configuration=i,!("undefined"!=typeof window||i&&i.browserOverrides&&i.browserOverrides.onGetData))throw new u(a.INVALID_CONFIGURATION_USE_CUSTOM_GET_SET);var o=null;if(i)if(i.collectorUrl&&(e._tmConfig.collectorUrl=i.collectorUrl),i.browserOverrides){if(o=new r,i.browserOverrides.onGetData?!i.browserOverrides.onSaveData:!!i.browserOverrides.onSaveData)throw new u(a.INVALID_CONFIGURATION_USE_CUSTOM_GET_SET);o.onGetData=i.browserOverrides.onGetData,o.onSaveData=i.browserOverrides.onSaveData}else i.disableCookies&&(e._sessionEnabled=!1);n.Initialize(e._tmConfig),n.Start(),c.initialize(o,i.disableCookies),e._initialized=!0,"undefined"!=typeof window&&window.addEventListener&&(i&&i.enableAutoUserSession&&(e._logger=new f,e._logger.logSession(l.STARTED)),window.addEventListener("beforeunload",e._teardown))}},e.pauseTransmission=function(){n.Pause()},e.resumeTransmission=function(){n.Resume()},e.flush=function(e){n.Flush(e)},e.addCallbackListener=function(t){e._initialized&&n.AddListener(t)},e.setContext=function(t,n,i){e._contextProperties.setProperty(t,n,i)},e.isInitialized=function(){return e._initialized},e.getDefaultToken=function(){return e._defaultToken},e.getSemanticContext=function(){return e._semanticContext},e._getInitIdForToken=function(n){return e._initIdMap[n]||(e._initIdMap[n]=t.datamodels.utils.GetGuid()),e._initIdMap[n]},e._getSequenceForToken=function(t){return e._sequenceMap[t]||(e._sequenceMap[t]=0),e._sequenceMap[t]++,e._sequenceMap[t]},e._teardown=function(){e._logger&&e._logger.logSession(l.ENDED),e.flush()},e.__backToUninitialized=function(){e._tmConfig=new t._sender.TelemetryConfig,e._semanticContext=new d((!0)),e._contextProperties=new s,e._configuration=null,n=t._sender.TelemetryManagerFactory.CreateTelemetryManager(),e._initialized=!1,e._initIdMap={},e._sequenceMap={}},e}();_._initialized=!1,_._defaultToken=null,_._tmConfig=new t._sender.TelemetryConfig,_._logger=null,_._initIdMap={},_._sequenceMap={},_._configuration=null,_._contextProperties=new s,_._semanticContext=new d((!0)),_._sessionEnabled=!0,t.LogManager=_;var f=function(){function e(e){this._initId=null,this._tenantToken=null,this._contextProperties=new s,this._semanticContext=new d((!1)),this._sessionStartTime=0,this._sessionId=null,e?this._tenantToken=e:this._tenantToken=_.getDefaultToken(),this._initId=_._getInitIdForToken(this._tenantToken)}return e.prototype.logEvent=function(e){if(!e.name)throw new u(a.MISSING_EVENT_PROPERTIES_NAME);var t=this._createEventRecord(e.name,e.eventType);this._addPropertiesAndSendEvent(t,e)},e.prototype.logFailure=function(e,t,n,i,r){if(!e)throw new u(a.MISSING_FAILURE_SIGNATURE);if(!t)throw new u(a.MISSING_FAILURE_DETAIL);var o=this._createEventRecord("failure","failure");o.Extension.Add("Failure.Signature",e),o.Extension.Add("Failure.Detail",t),n&&o.Extension.Add("Failure.Category",n),i&&o.Extension.Add("Failure.Id",i),this._addPropertiesAndSendEvent(o,r)},e.prototype.logPageView=function(e,t,n,i,r,o){if(!e)throw new u(a.MISSING_PAGEVIEW_ID);if(!t)throw new u(a.MISSING_PAGEVIEW_NAME);var s=this._createEventRecord("pageview","pageview");s.Extension.Add("PageView.Id",e),s.Extension.Add("PageView.Name",t),n&&s.Extension.Add("PageView.Category",n),i&&s.Extension.Add("PageView.Uri",i),r&&s.Extension.Add("PageView.ReferrerUri",r),this._addPropertiesAndSendEvent(s,o)},e.prototype.logSession=function(e,n){if(_._sessionEnabled){if(e!==l.STARTED&&e!==l.ENDED)throw new u(a.INVALID_SESSION_STATE);var i=this._createEventRecord("session","session");if(e===l.STARTED){if(this._sessionStartTime>0)return;this._sessionStartTime=(new Date).getTime(),this._sessionId=t.datamodels.utils.GetGuid(),i.Extension.Add("Session.Id",this._sessionId),i.Extension.Add("Session.State","Started")}else if(e===l.ENDED){if(0==this._sessionStartTime)return;var r=Math.floor(((new Date).getTime()-this._sessionStartTime)/1e3);i.Extension.Add("Session.Duration",r.toString()),i.Extension.Add("Session.DurationBucket",this._getSessionDurationFromTime(r)),i.Extension.Add("Session.Id",this._sessionId),i.Extension.Add("Session.State","Ended"),this._sessionId=null,this._sessionStartTime=0}i.Extension.Add("Session.FirstLaunchTime",this._getISOString(new Date(c.firstLaunchTime))),this._addPropertiesAndSendEvent(i,n)}},e.prototype.getSessionId=function(){return this._sessionId},e.prototype.setContext=function(e,t,n){this._contextProperties.setProperty(e,t,n)},e.prototype.getSemanticContext=function(){return this._semanticContext},e.prototype._getSessionDurationFromTime=function(e){return e<0?"Undefined":e<=3?"UpTo3Sec":e<=10?"UpTo10Sec":e<=30?"UpTo30Sec":e<=60?"UpTo60Sec":e<=180?"UpTo3Min":e<=600?"UpTo10Min":e<=1800?"UpTo30Min":"Above30Min"},e.prototype._createEventRecord=function(e,n){var i=new t.datamodels.Record;n||(n="custom"),i.EventType=e.toLowerCase(),i.Type=n.toLowerCase(),i.Extension.Add("EventInfo.Source","JS_default_source"),i.Extension.Add("EventInfo.InitId",this._initId),i.Extension.Add("EventInfo.Sequence",_._getSequenceForToken(this._tenantToken).toString()),i.Extension.Add("EventInfo.Name",e.toLowerCase());var r=new Date;return i.Timestamp=t.datamodels.utils.GetTimeStampWithValue(r.getTime()),i.Extension.Add("EventInfo.Time",this._getISOString(r)),i.Extension.Add("EventInfo.SdkVersion","ACT-Web-JS-"+clienttelemetry_build.version),i},e.prototype._getISOString=function(e){function t(e){return e<10?"0"+e:e.toString()}function n(e){return e<10?"00"+e:e<100?"0"+e:e.toString()}return e.getUTCFullYear()+"-"+t(e.getUTCMonth()+1)+"-"+t(e.getUTCDate())+"T"+t(e.getUTCHours())+":"+t(e.getUTCMinutes())+":"+t(e.getUTCSeconds())+"."+n(e.getUTCMilliseconds())+"Z"},e.prototype._addCustomPropertiesToEvent=function(e,t){this._addSemanticContext(e,c.semanticContext),this._addSemanticContext(e,_._semanticContext),this._addSemanticContext(e,this._semanticContext),this._sessionId&&e.Extension.Add("Session.Id",this._sessionId),this._addEventPropertiesToEvent(e,_._contextProperties),this._addEventPropertiesToEvent(e,this._contextProperties),this._addEventPropertiesToEvent(e,t)},e.prototype._addSemanticContext=function(e,n){if(n&&n.contextMap){var i=n.contextMap;for(var r in n.contextMap)"UserInfo.Id"==r&&n.piiKind!=t.datamodels.PIIKind.NotSet?e.AddOrReplacePII(r,i[r],n.piiKind):e.Extension.AddOrReplace(r,i[r])}},e.prototype._addEventPropertiesToEvent=function(e,n){if(n){n.timestamp&&n.timestamp>=new Date("1/1/2000").getTime()&&(e.Timestamp=t.datamodels.utils.GetTimeStampWithValue(n.timestamp),e.Extension.AddOrReplace("EventInfo.Time",this._getISOString(new Date(n.timestamp)))),n.name&&(e.EventType=n.name.toLowerCase(),e.Extension.AddOrReplace("EventInfo.Name",n.name.toLowerCase()));var i=n.properties;if(i)for(var r in i)r&&(i[r].value||i[r].value===!1||0==i[r].value||""==i[r].value)&&(o._isPii(i[r].pii)?(e.AddOrReplacePII(r,i[r].value.toString(),i[r].pii),e.Extension.Remove(r)):(e.Extension.AddOrReplace(r,i[r].value.toString()),e.PIIExtensions.Remove(r)))}},e.prototype._addPropertiesAndSendEvent=function(e,t){this._addCustomPropertiesToEvent(e,t),_.isInitialized()&&(this._sanitizeName(e),n.SendAsync(this._tenantToken,[e]))},e.prototype._sanitizeName=function(e){var t=e.EventType.replace(/\./g,"_");e.EventType=t,e.Extension.AddOrReplace("EventInfo.Name",t)},e}();t.Logger=f}(n=t.telemetry||(t.telemetry={}))}(t=e.applications||(e.applications={}))}(microsoft||(microsoft={})),"undefined"!=typeof module&&(module.exports=microsoft.applications.telemetry);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else{var i=t();for(var n in i)("object"==typeof exports?exports:e)[n]=i[n]}}(this,function(){return function(e){function t(n){if(i[n])return i[n].exports;var r=i[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var i={};return t.m=e,t.c=i,t.i=function(e){return e},t.d=function(e,i,n){t.o(e,i)||Object.defineProperty(e,i,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var i=e&&e.e?function(){return e.default}:function(){return e};return t.d(i,"a",i),i},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=30)}([function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});!function(e){e[e.Unspecified=0]="Unspecified",e[e.String=1]="String",e[e.Int64=2]="Int64",e[e.Double=3]="Double",e[e.Boolean=4]="Boolean"}(t.AWTPropertyType||(t.AWTPropertyType={}));!function(e){e[e.NotSet=0]="NotSet",e[e.DistinguishedName=1]="DistinguishedName",e[e.GenericData=2]="GenericData",e[e.IPV4Address=3]="IPV4Address",e[e.IPv6Address=4]="IPv6Address",e[e.MailSubject=5]="MailSubject",e[e.PhoneNumber=6]="PhoneNumber",e[e.QueryString=7]="QueryString",e[e.SipAddress=8]="SipAddress",e[e.SmtpAddress=9]="SmtpAddress",e[e.Identity=10]="Identity",e[e.Uri=11]="Uri",e[e.Fqdn=12]="Fqdn",e[e.IPV4AddressLegacy=13]="IPV4AddressLegacy"}(t.AWTPiiKind||(t.AWTPiiKind={}));!function(e){e[e.NotSet=0]="NotSet",e[e.GenericContent=1]="GenericContent"}(t.AWTCustomerContentKind||(t.AWTCustomerContentKind={}));!function(e){e[e.Low=1]="Low",e[e.Normal=2]="Normal",e[e.High=3]="High"}(t.AWTEventPriority||(t.AWTEventPriority={}));!function(e){e[e.NonRetryableStatus=1]="NonRetryableStatus",e[e.KillSwitch=2]="KillSwitch",e[e.QueueFull=3]="QueueFull"}(t.AWTEventsDroppedReason||(t.AWTEventsDroppedReason={}));!function(e){e[e.InvalidEvent=1]="InvalidEvent",e[e.SizeLimitExceeded=2]="SizeLimitExceeded"}(t.AWTEventsRejectedReason||(t.AWTEventsRejectedReason={}))},function(e,t,i){"use strict";function n(e){var t=new I.Int64("0");return t.low=4294967295&e,t.high=Math.floor(e/4294967296),t}function r(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(W,function(e){var t=16*Math.random()|0;return("x"===e?t:3&t|8).toString(16)})}function o(e){return"string"==typeof e}function s(e){return(e+E)*B}function a(e){var t=e.indexOf("-");return t>-1?e.substring(0,t):""}function u(){return null===w&&(w="undefined"!=typeof navigator&&Boolean(navigator.sendBeacon)),w}function d(){return null===C&&(C="undefined"!=typeof Uint8Array&&!S()&&!A()),C}function _(e){return!isNaN(e)&&null!==e&&e>=1&&e<=3}function l(e,i){return"string"!=typeof i&&"number"!=typeof i&&"boolean"!=typeof i||(i={value:i,type:P.AWTPropertyType.Unspecified}),t.PropertyNameRegex.test(e)&&void 0!==i&&null!==i&&null!==i.value&&void 0!==i.value&&""!==i.value?(i.type=v(i.value,i.type),i.type?(void 0===i.pii&&(i.pii=P.AWTPiiKind.NotSet),void 0===i.cc&&(i.cc=P.AWTCustomerContentKind.NotSet),!T(i.pii)||!g(i.cc)||i.cc>0&&i.pii!==P.AWTPiiKind.NotSet?null:i):null):null}function c(e){return e.getUTCFullYear()+"-"+f(e.getUTCMonth()+1)+"-"+f(e.getUTCDate())+"T"+f(e.getUTCHours())+":"+f(e.getUTCMinutes())+":"+f(e.getUTCSeconds())+"."+h(e.getUTCMilliseconds())+"Z"}function p(){if(null===b){var e=new XMLHttpRequest;b=void 0===e.withCredentials&&"undefined"!=typeof XDomainRequest}return b}function f(e){return e<10?"0"+e:e.toString()}function h(e){return e<10?"00"+e:e<100?"0"+e:e.toString()}function v(e,t){return m(t)&&t!==P.AWTPropertyType.Unspecified?t===P.AWTPropertyType.String&&"string"==typeof e?t:t!==P.AWTPropertyType.Double&&t!==P.AWTPropertyType.Int64||"number"!=typeof e?t===P.AWTPropertyType.Boolean&&"boolean"==typeof e?t:void 0:t===P.AWTPropertyType.Int64&&e%1!=0?null:t:y(e)}function y(e){switch(typeof e){case"string":return P.AWTPropertyType.String;case"boolean":return P.AWTPropertyType.Boolean;case"number":return P.AWTPropertyType.Double}return P.AWTPropertyType.Unspecified}function T(e){return!isNaN(e)&&null!==e&&e>=0&&e<=13}function g(e){return!isNaN(e)&&null!==e&&e>=0&&e<=1}function m(e){return!isNaN(e)&&null!==e&&e>=0&&e<=4}function S(){if("undefined"!=typeof navigator&&navigator.userAgent){var e=navigator.userAgent.toLowerCase();if((e.indexOf("safari")>=0||e.indexOf("firefox")>=0)&&e.indexOf("chrome")<0)return!0}return!1}function A(){return!("undefined"==typeof navigator||!navigator.product)&&"ReactNative"===navigator.product}Object.defineProperty(t,"__esModule",{value:!0});var I=i(4),P=i(0),W=/[xy]/g,E=621355968e5,B=1e4;t.EventNameAndTypeRegex=/^[a-zA-Z]([a-zA-Z0-9]|_){2,98}[a-zA-Z0-9]$/,t.EventNameDotRegex=/\./g,t.PropertyNameRegex=/^[a-zA-Z](([a-zA-Z0-9|_|\.]){0,98}[a-zA-Z0-9])?$/,t.StatsApiKey="a387cfcf60114a43a7699f9fbb49289e-9bceb9fe-1c06-460f-96c5-6a0b247358bc-7238";var w=null,C=null,b=null;t.numberToBondInt64=n,t.newGuid=r,t.isString=o,t.msToTicks=s,t.getTenantId=a,t.isBeaconsSupported=u,t.isUint8ArrayAvailable=d,t.isPriority=_,t.sanitizeProperty=l,t.getISOString=c,t.useXDomainRequest=p},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){}return e.addNotificationListener=function(e){this.listeners.push(e)},e.eventsSent=function(e){for(var t=this,i=this,n=0;n<this.listeners.length;++n)!function(n){i.listeners[n].eventsSent&&setTimeout(function(){return t.listeners[n].eventsSent(e)},0)}(n)},e.eventsDropped=function(e,t){for(var i=this,n=this,r=0;r<this.listeners.length;++r)!function(r){n.listeners[r].eventsDropped&&setTimeout(function(){return i.listeners[r].eventsDropped(e,t)},0)}(r)},e.eventsRetrying=function(e){for(var t=this,i=this,n=0;n<this.listeners.length;++n)!function(n){i.listeners[n].eventsRetrying&&setTimeout(function(){return t.listeners[n].eventsRetrying(e)},0)}(n)},e.eventsRejected=function(e,t){for(var i=this,n=this,r=0;r<this.listeners.length;++r)!function(r){n.listeners[r].eventsRejected&&setTimeout(function(){return i.listeners[r].eventsRejected(e,t)},0)}(r)},e.listeners=[],e}();t.default=n},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(14),r=i(0),o=i(28),s=i(10),a=i(5),u=i(11),d=i(1),_=function(){function e(){}return e.setEventsHandler=function(e){this.t=e},e.getEventsHandler=function(){return this.t},e.scheduleTimer=function(){var e=this,t=this.r[this.a][2];this.u<0&&t>=0&&!this._&&(this.t.hasEvents()?(0===t&&this.f>0&&(t=1),this.u=setTimeout(function(){return e.h()},t*(1<<this.f)*1e3)):this.v=0)},e.initialize=function(e){var t=this;this.y=!0,this.T=e,this.t=new o.default(e.collectorUri,e.cacheMemorySizeLimitInNumberOfEvents,e.httpXHROverride),this.g(),s.default.initialize(function(e,i){if(t.T.canSendStatEvent("awt_stats")){var n=new a.default("awt_stats");n.setEventPriority(r.AWTEventPriority.High),n.setProperty("TenantId",i);for(var o in e)e.hasOwnProperty(o)&&n.setProperty(o,e[o].toString());u.default.getLogger(d.StatsApiKey).logEvent(n)}})},e.setTransmitProfile=function(e){this.a!==e&&void 0!==this.r[e]&&(this.clearTimeout(),this.a=e,this.scheduleTimer())},e.loadTransmitProfiles=function(e){this.S();for(var t in e)if(e.hasOwnProperty(t)){if(3!==e[t].length)continue;for(var i=2;i>=0;--i)if(e[t][i]<0){for(var n=i;n>=0;--n)e[t][n]=-1;break}for(var i=2;i>0;--i)if(e[t][i]>0&&e[t][i-1]>0){var r=e[t][i-1]/e[t][i];e[t][i-1]=Math.ceil(r)*e[t][i]}this.r[t]=e[t]}},e.sendEvent=function(e){this.y&&(this.t.addEvent(e),this.scheduleTimer())},e.flush=function(e){var t=(new Date).getTime();!this._&&this.A+3e4<t&&(this.A=t,this.u>-1&&(clearTimeout(this.u),this.u=-1),this.t.uploadNow(e))},e.pauseTransmission=function(){this._||(this.clearTimeout(),this.t.pauseTransmission(),this._=!0)},e.resumeTransmision=function(){this._&&(this._=!1,this.t.resumeTransmission(),this.scheduleTimer())},e.flushAndTeardown=function(){s.default.teardown(),this.y=!1,this.clearTimeout(),this.t.teardown()},e.backOffTransmission=function(){this.f<4&&(this.f++,this.clearTimeout(),this.scheduleTimer())},e.clearBackOff=function(){this.f>0&&(this.f=0,this.clearTimeout(),this.scheduleTimer())},e.S=function(){this.clearTimeout(),this.g(),this.a=n.AWT_REAL_TIME,this.scheduleTimer()},e.clearTimeout=function(){this.u>0&&(clearTimeout(this.u),this.u=-1,this.v=0)},e.h=function(){var e=r.AWTEventPriority.High;this.v++,this.v*this.r[this.a][2]===this.r[this.a][0]?(e=r.AWTEventPriority.Low,this.v=0):this.v*this.r[this.a][2]===this.r[this.a][1]&&(e=r.AWTEventPriority.Normal),this.t.sendEventsForPriorityAndAbove(e),this.u=-1,this.scheduleTimer()},e.g=function(){this.r={},this.r.REAL_TIME=[4,2,1],this.r.NEAR_REAL_TIME=[12,6,3],this.r.BEST_EFFOR=[36,18,9]},e.y=!1,e.a=n.AWT_REAL_TIME,e.u=-1,e.f=0,e._=!1,e.v=0,e.A=0,e}();t.default=_},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e){this.low=0,this.high=0,this.low=parseInt(e,10),this.low<0&&(this.high=-1)}return e.prototype.I=function(t){var i=new e(t);return this.low===i.low&&this.high===i.high},e}();t.Int64=n;var r=function(){function e(e){this.low=0,this.high=0,this.low=parseInt(e,10)}return e.prototype.I=function(t){var i=new e(t);return this.low===i.low&&this.high===i.high},e}();t.UInt64=r;var o=function(){function e(){}return e.P=function(e){return this.W(e)},e.W=function(e){return 255&e},e.B=function(e){return 2147483647&e|2147483648&e},e.w=function(e){return 4294967295&e},e}();t.Number=o},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(1),r=i(0),o=function(){function e(e){this.C={name:"",properties:{}},e&&this.setName(e)}return e.prototype.setName=function(e){this.C.name=e},e.prototype.getName=function(){if(this.C.name&&n.isString(this.C.name))return this.C.name},e.prototype.setType=function(e){this.C.type=e},e.prototype.getType=function(){if(this.C.type&&n.isString(this.C.type))return this.C.type},e.prototype.setTimestamp=function(e){this.C.timestamp=e},e.prototype.getTimestamp=function(){if(this.C.timestamp&&!isNaN(this.C.timestamp))return this.C.timestamp},e.prototype.setEventPriority=function(e){n.isPriority(e)&&(this.C.priority=e)},e.prototype.getEventPriority=function(){return this.C.priority},e.prototype.setProperty=function(e,t,i){void 0===i&&(i=r.AWTPropertyType.Unspecified);var o={value:t,type:i,pii:r.AWTPiiKind.NotSet,cc:r.AWTCustomerContentKind.NotSet};if(null===(o=n.sanitizeProperty(e,o)))return void delete this.C.properties[e];this.C.properties[e]=o},e.prototype.setPropertyWithPii=function(e,t,i,o){void 0===o&&(o=r.AWTPropertyType.Unspecified);var s={value:t,type:o,pii:i,cc:r.AWTCustomerContentKind.NotSet};if(null===(s=n.sanitizeProperty(e,s)))return void delete this.C.properties[e];this.C.properties[e]=s},e.prototype.setPropertyWithCustomerContent=function(e,t,i,o){void 0===o&&(o=r.AWTPropertyType.Unspecified);var s={value:t,type:o,pii:r.AWTPiiKind.NotSet,cc:i};if(null===(s=n.sanitizeProperty(e,s)))return void delete this.C.properties[e];this.C.properties[e]=s},e.prototype.getPropertyMap=function(){return this.C.properties},e.prototype.getEvent=function(){return this.C},e}();t.default=o},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(21),r=i(0),o=i(1),s=function(){function e(){}return e.getPayloadBlob=function(e,t){var i=new n.IO.MemoryStream,r=new n.CompactBinaryProtocolWriter(i);r.b(n.O.D,3,null),r.N(t,n.O.R,n.O.M);for(var s in e)if(e.hasOwnProperty(s)){r.U(s);var a=e[s];r.k(1,n.O.x),r.b(n.O.R,2,null),r.U("act_default_source"),r.b(n.O.R,5,null),r.U(o.newGuid()),r.b(n.O.L,6,null),r.F(o.numberToBondInt64(Date.now())),r.b(n.O.M,8,null),r.k(a.length,n.O.x);for(var u=0;u<a.length;++u)r.z(a[u].serializedEvent);r.q(!1)}return r.q(!1),i.H()},e.getEventBlob=function(e){var t=new n.IO.MemoryStream,i=new n.CompactBinaryProtocolWriter(t);i.b(n.O.R,1,null),i.U(e.id),i.b(n.O.L,3,null),i.F(o.numberToBondInt64(e.timestamp)),i.b(n.O.R,5,null),i.U(e.type),i.b(n.O.R,6,null),i.U(e.name);var s={},a=0,u={},d=0,_={},l=0,c={},p=0,f={},h=0,v={},y=0;for(var T in e.properties)if(e.properties.hasOwnProperty(T)){var g=e.properties[T];if(g.cc>0)v[T]=g,y++;else if(g.pii>0)f[T]=g,h++;else switch(g.type){case r.AWTPropertyType.String:s[T]=g.value,a++;break;case r.AWTPropertyType.Int64:u[T]=g.value,d++;break;case r.AWTPropertyType.Double:_[T]=g.value,l++;break;case r.AWTPropertyType.Boolean:c[T]=g.value,p++}}if(a){i.b(n.O.D,13,null),i.N(a,n.O.R,n.O.R);for(var T in s)if(s.hasOwnProperty(T)){var m=s[T];i.U(T),i.U(m.toString())}}if(h){i.b(n.O.D,30,null),i.N(h,n.O.R,n.O.x);for(var T in f)if(f.hasOwnProperty(T)){var g=f[T];i.U(T),i.b(n.O.j,1,null),i.K(1),i.b(n.O.j,2,null),i.K(g.pii),i.b(n.O.R,3,null),i.U(g.value.toString()),i.q(!1)}}if(p){i.b(n.O.D,31,null),i.N(p,n.O.R,n.O.Q);for(var T in c)if(c.hasOwnProperty(T)){var m=c[T];i.U(T),i.V(m)}}if(d){i.b(n.O.D,33,null),i.N(d,n.O.R,n.O.L);for(var T in u)if(u.hasOwnProperty(T)){var m=u[T];i.U(T),i.F(o.numberToBondInt64(m))}}if(l){i.b(n.O.D,34,null),i.N(l,n.O.R,n.O.G);for(var T in _)if(_.hasOwnProperty(T)){var m=_[T];i.U(T),i.X(m)}}if(y){i.b(n.O.D,36,null),i.N(y,n.O.R,n.O.x);for(var T in v)if(v.hasOwnProperty(T)){var g=v[T];i.U(T),i.b(n.O.j,1,null),i.K(g.cc),i.b(n.O.R,2,null),i.U(g.value.toString()),i.q(!1)}}return i.q(!1),t.H()},e.base64Encode=function(e){return n.J.Z(e)},e}();t.default=s},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(1),r="MicrosoftApplicationsTelemetryDeviceId",o="MicrosoftApplicationsTelemetryFirstLaunchTime",s={MSIE:"MSIE",CHROME:"Chrome",FIREFOX:"Firefox",SAFARI:"Safari",EDGE:"Edge",ELECTRON:"Electron",SKYPE_SHELL:"SkypeShell",PHANTOMJS:"PhantomJS",OPERA:"Opera"},a={WINDOWS:"Windows",MACOSX:"Mac OS X",WINDOWS_PHONE:"Windows Phone",WINDOWS_RT:"Windows RT",IOS:"iOS",ANDROID:"Android",LINUX:"Linux",UNKNOWN:"Unknown"},u={WIN:/(windows|win32)/i,WINRT:/ arm;/i,WINPHONE:/windows\sphone\s\d+\.\d+/i,OSX:/(macintosh|mac os x)/i,IOS:/(iPad|iPhone|iPod)(?=.*like Mac OS X)/i,LINUX:/(linux|joli|[kxln]?ubuntu|debian|[open]*suse|gentoo|arch|slackware|fedora|mandriva|centos|pclinuxos|redhat|zenwalk)/i,ANDROID:/android/i},d={5.1:"XP","6.0":"Vista",6.1:"7",6.2:"8",6.3:"8.1","10.0":"10"},_=function(){function e(){}return e.addPropertyStorageOverride=function(e){return!!e&&(this.Y=e,!0)},e.autoCollect=function(e,t,i){if(this.$=e,this.ee=t,this.te(),i||"undefined"==typeof navigator||(i=navigator.userAgent||""),this.ie(i),this.ee&&!this.Y)return this.ne(r),void this.ne(o);this.re()},e.checkAndSaveDeviceId=function(e){if(e){this.oe(r)!==e&&(this.se(r,e),this.se(o,n.getISOString(new Date))),this.firstLaunchTime=this.oe(o)}},e.re=function(){var e=this.oe(r);e?this.firstLaunchTime=this.oe(o):(e=n.newGuid(),this.checkAndSaveDeviceId(e)),this.$.setDeviceId(e)},e.te=function(){"undefined"!=typeof document&&document.documentElement&&this.$.setAppLanguage(document.documentElement.lang),"undefined"!=typeof navigator&&this.$.setUserLanguage(navigator.userLanguage||navigator.language);var e=(new Date).getTimezoneOffset(),t=e%60,i=(e-t)/60,n="+";i>0&&(n="-"),i=Math.abs(i),t=Math.abs(t),this.$.setUserTimeZone(n+(i<10?"0"+i:i.toString())+":"+(t<10?"0"+t:t.toString()))},e.ie=function(e){if(e){var t=this.ae(e);this.$.setDeviceBrowserName(t),this.$.setDeviceBrowserVersion(this.ue(e,t));var i=this.de(e);this.$.setDeviceOsName(i),this.$.setDeviceOsVersion(this._e(e,i))}},e.ae=function(e){return this.le("OPR/",e)?s.OPERA:this.le(s.PHANTOMJS,e)?s.PHANTOMJS:this.le(s.EDGE,e)?s.EDGE:this.le(s.ELECTRON,e)?s.ELECTRON:this.le(s.CHROME,e)?s.CHROME:this.le("Trident",e)?s.MSIE:this.le(s.FIREFOX,e)?s.FIREFOX:this.le(s.SAFARI,e)?s.SAFARI:this.le(s.SKYPE_SHELL,e)?s.SKYPE_SHELL:"Unknown"},e.le=function(e,t){return t.indexOf(e)>-1},e.ue=function(e,t){return t===s.MSIE?this.ce(e):this.pe(t,e)},e.ce=function(e){var t=e.match(new RegExp(s.MSIE+" ([\\d,.]+)"));if(t)return t[1];var i=e.match(new RegExp("rv:([\\d,.]+)"));return i?i[1]:void 0},e.pe=function(e,t){e===s.SAFARI&&(e="Version");var i=t.match(new RegExp(e+"/([\\d,.]+)"));return i?i[1]:"Unknown"},e.de=function(e){return e.match(u.WINPHONE)?a.WINDOWS_PHONE:e.match(u.WINRT)?a.WINDOWS_RT:e.match(u.IOS)?a.IOS:e.match(u.ANDROID)?a.ANDROID:e.match(u.LINUX)?a.LINUX:e.match(u.OSX)?a.MACOSX:e.match(u.WIN)?a.WINDOWS:"Unknown"},e._e=function(e,t){return t===a.WINDOWS?this.fe(e):t===a.MACOSX?this.he(e):"Unknown"},e.fe=function(e){var t=e.match(new RegExp("Windows NT ([\\d,.]+)"));return t&&d[t[1]]?d[t[1]]:"Unknown"},e.he=function(e){var t=e.match(new RegExp(a.MACOSX+" ([\\d,_,.]+)"));if(t){var i=t[1].replace(/_/g,".");if(i){var n=this.ve(i);if(n){return i.split(n)[0]}return i}}return"Unknown"},e.ve=function(e){return e.indexOf(".")>-1?".":e.indexOf("_")>-1?"_":null},e.se=function(e,t){if(this.Y)this.Y.setProperty(e,t);else if("undefined"!=typeof document&&void 0!==document.cookie&&!this.ee){var i=new Date;i.setTime(i.getTime()+31536e6);var n="expires="+i.toUTCString();document.cookie=e+"="+t+"; "+n}},e.oe=function(e){if(this.Y)return this.Y.getProperty(e)||"";if("undefined"!=typeof document&&void 0!==document.cookie&&!this.ee){e+="=";for(var t=document.cookie.split(";"),i=0;i<t.length;i++){for(var n=t[i],r=0;" "===n.charAt(r);)r++;if(n=n.substring(r),0===n.indexOf(e))return n.substring(e.length,n.length)}}return""},e.ne=function(e){"undefined"!=typeof document&&void 0!==document.cookie&&(document.cookie=e+"=;expires=Thu, 01 Jan 1970 00:00:01 GMT;")},e.ee=!1,e}();t.default=_},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(7),r=i(0),o=i(9),s=function(){function e(e,t){this.ye=e,this.Te=t}return e.prototype.setAppId=function(e){this.ge("AppInfo.Id",e)},e.prototype.setAppVersion=function(e){this.ge("AppInfo.Version",e)},e.prototype.setAppLanguage=function(e){this.ge("AppInfo.Language",e)},e.prototype.setDeviceId=function(e){this.ye&&(n.default.checkAndSaveDeviceId(e),this.ge("DeviceInfo.Id",e))},e.prototype.setDeviceOsName=function(e){this.ye&&this.ge("DeviceInfo.OsName",e)},e.prototype.setDeviceOsVersion=function(e){this.ye&&this.ge("DeviceInfo.OsVersion",e)},e.prototype.setDeviceBrowserName=function(e){this.ye&&this.ge("DeviceInfo.BrowserName",e)},e.prototype.setDeviceBrowserVersion=function(e){this.ye&&this.ge("DeviceInfo.BrowserVersion",e)},e.prototype.setDeviceMake=function(e){this.ye&&this.ge("DeviceInfo.Make",e)},e.prototype.setDeviceModel=function(e){this.ye&&this.ge("DeviceInfo.Model",e)},e.prototype.setUserId=function(e,t,i){if(!isNaN(i)&&null!==i&&i>=0&&i<=12)this.ge("UserInfo.IdType",i.toString());else{var n=void 0;switch(t){case r.AWTPiiKind.SipAddress:n=o.AWTUserIdType.SipAddress;break;case r.AWTPiiKind.PhoneNumber:n=o.AWTUserIdType.PhoneNumber;break;case r.AWTPiiKind.SmtpAddress:n=o.AWTUserIdType.EmailAddress;break;default:n=o.AWTUserIdType.Unknown}this.ge("UserInfo.IdType",n.toString())}if(isNaN(t)||null===t||t===r.AWTPiiKind.NotSet||t>13)switch(i){case o.AWTUserIdType.Skype:t=r.AWTPiiKind.Identity;break;case o.AWTUserIdType.EmailAddress:t=r.AWTPiiKind.SmtpAddress;break;case o.AWTUserIdType.PhoneNumber:t=r.AWTPiiKind.PhoneNumber;break;case o.AWTUserIdType.SipAddress:t=r.AWTPiiKind.SipAddress;break;default:t=r.AWTPiiKind.NotSet}this.me("UserInfo.Id",e,t)},e.prototype.setUserAdvertisingId=function(e){this.ge("UserInfo.AdvertisingId",e)},e.prototype.setUserTimeZone=function(e){this.ge("UserInfo.TimeZone",e)},e.prototype.setUserLanguage=function(e){this.ge("UserInfo.Language",e)},e.prototype.ge=function(e,t){"string"==typeof t&&this.Te.setProperty(e,t)},e.prototype.me=function(e,t,i){"string"==typeof t&&this.Te.setPropertyWithPii(e,t,i)},e}();t.default=s},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});!function(e){e[e.Unknown=0]="Unknown",e[e.MSACID=1]="MSACID",e[e.MSAPUID=2]="MSAPUID",e[e.ANID=3]="ANID",e[e.OrgIdCID=4]="OrgIdCID",e[e.OrgIdPUID=5]="OrgIdPUID",e[e.UserObjectId=6]="UserObjectId",e[e.Skype=7]="Skype",e[e.Yammer=8]="Yammer",e[e.EmailAddress=9]="EmailAddress",e[e.PhoneNumber=10]="PhoneNumber",e[e.SipAddress=11]="SipAddress",e[e.MUID=12]="MUID"}(t.AWTUserIdType||(t.AWTUserIdType={}));!function(e){e[e.Started=0]="Started",e[e.Ended=1]="Ended"}(t.AWTSessionState||(t.AWTSessionState={}))},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(1),r=i(2),o=function(){function e(){}return e.initialize=function(e){var t=this;this.Se=e,this.Ae=!0,r.default.addNotificationListener({eventsSent:function(e){t.Ie("records_sent_count",e.length,e[0].apiKey)},eventsDropped:function(e,i){t.Ie("records_dropped_count",e.length,e[0].apiKey)},eventsRejected:function(e,i){t.Ie("r_count",e.length,e[0].apiKey)},eventsRetrying:null}),setTimeout(function(){return t.flush()},6e4)},e.teardown=function(){this.Ae&&(this.flush(),this.Ae=!1)},e.eventReceived=function(t){e.Ie("records_received_count",1,t)},e.flush=function(){var e=this;if(this.Ae){for(var t in this.Pe)this.Pe.hasOwnProperty(t)&&this.Se(this.Pe[t],t);this.Pe={},setTimeout(function(){return e.flush()},6e4)}},e.Ie=function(e,t,i){if(this.Ae&&i!==n.StatsApiKey){var r=n.getTenantId(i);this.Pe[r]||(this.Pe[r]={}),this.Pe[r][e]?this.Pe[r][e]=this.Pe[r][e]+t:this.Pe[r][e]=t}},e.Ae=!1,e.Pe={},e}();t.default=o},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(0),r=i(12),o=i(13),s=i(3),a=i(2),u=i(7),d=function(){function e(){}return e.initialize=function(e,t){if(void 0===t&&(t={}),!this.We)return this.We=!0,r.default.defaultTenantToken=e,this.Ee(t),this.T.disableCookiesUsage&&!this.T.propertyStorageOverride&&(r.default.sessionEnabled=!1),u.default.addPropertyStorageOverride(this.T.propertyStorageOverride),u.default.autoCollect(r.default.semanticContext,this.T.disableCookiesUsage,this.T.userAgent),s.default.initialize(this.T),r.default.loggingEnabled=!0,this.getLogger()},e.getSemanticContext=function(){return r.default.semanticContext},e.flush=function(e){this.We&&!this.Be&&s.default.flush(e)},e.flushAndTeardown=function(){this.We&&!this.Be&&(this.Be=!0,s.default.flushAndTeardown(),r.default.loggingEnabled=!1)},e.pauseTransmission=function(){this.We&&!this.Be&&s.default.pauseTransmission()},e.resumeTransmision=function(){this.We&&!this.Be&&s.default.resumeTransmision()},e.setTransmitProfile=function(e){this.We&&!this.Be&&s.default.setTransmitProfile(e)},e.loadTransmitProfiles=function(e){this.We&&!this.Be&&s.default.loadTransmitProfiles(e)},e.setContext=function(e,t,i){void 0===i&&(i=n.AWTPropertyType.Unspecified),r.default.logManagerContext.setProperty(e,t,i)},e.setContextWithPii=function(e,t,i,o){void 0===o&&(o=n.AWTPropertyType.Unspecified),r.default.logManagerContext.setPropertyWithPii(e,t,i,o)},e.prototype.setContextWithCustomerContent=function(e,t,i,o){void 0===o&&(o=n.AWTPropertyType.Unspecified),r.default.logManagerContext.setPropertyWithCustomerContent(e,t,i,o)},e.getLogger=function(e){var t=e;return t&&t!==r.default.defaultTenantToken||(t=""),this.we[e]||(this.we[e]=new o.default(e)),this.we[e]},e.addNotificationListener=function(e){a.default.addNotificationListener(e)},e.Ee=function(e){e.collectorUri&&(this.T.collectorUri=e.collectorUri),e.cacheMemorySizeLimitInNumberOfEvents>0&&(this.T.cacheMemorySizeLimitInNumberOfEvents=e.cacheMemorySizeLimitInNumberOfEvents),e.httpXHROverride&&e.httpXHROverride.sendPOST&&(this.T.httpXHROverride=e.httpXHROverride),e.propertyStorageOverride&&e.propertyStorageOverride.getProperty&&e.propertyStorageOverride.setProperty&&(this.T.propertyStorageOverride=e.propertyStorageOverride),e.userAgent&&(this.T.userAgent=e.userAgent),e.disableCookiesUsage&&(this.T.disableCookiesUsage=e.disableCookiesUsage),e.canSendStatEvent&&(this.T.canSendStatEvent=e.canSendStatEvent)},e.we={},e.We=!1,e.Be=!1,e.T={collectorUri:"https://browser.pipe.aria.microsoft.com/Collector/3.0/",cacheMemorySizeLimitInNumberOfEvents:1e4,disableCookiesUsage:!1,canSendStatEvent:function(e){return!0}},e}();t.default=d},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(5),r=i(8),o=function(){function e(){}return e.logManagerContext=new n.default,e.sessionEnabled=!0,e.loggingEnabled=!1,e.defaultTenantToken="",e.semanticContext=new r.default(!0,e.logManagerContext),e}();t.default=o},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(0),r=i(9),o=i(5),s=i(1),a=i(10),u=i(2),d=i(3),_=i(12),l=i(15),c=i(8),p=i(7),f=function(){function e(e){this.Ce=e,this.be=new o.default,this.$=new c.default(!1,this.be),this.De=0,this.Oe()}return e.prototype.setContext=function(e,t,i){void 0===i&&(i=n.AWTPropertyType.Unspecified),this.be.setProperty(e,t,i)},e.prototype.setContextWithPii=function(e,t,i,r){void 0===r&&(r=n.AWTPropertyType.Unspecified),this.be.setPropertyWithPii(e,t,i,r)},e.prototype.setContextWithCustomerContent=function(e,t,i,r){void 0===r&&(r=n.AWTPropertyType.Unspecified),this.be.setPropertyWithCustomerContent(e,t,i,r)},e.prototype.getSemanticContext=function(){return this.$},e.prototype.logEvent=function(t){if(_.default.loggingEnabled){this.Ce||(this.Ce=_.default.defaultTenantToken,this.Oe());var i=!0;t instanceof o.default&&(t=t.getEvent(),i=!1),a.default.eventReceived(this.Ce),e.Ne(e.Re(t,this.Ce),i,this.be)}},e.prototype.logSession=function(t,i){if(_.default.sessionEnabled){var o={name:"session",type:"session",properties:{}};if(e.Me(o,i),o.priority=n.AWTEventPriority.High,t===r.AWTSessionState.Started){if(this.De>0)return;this.De=(new Date).getTime(),this.Ue=s.newGuid(),this.setContext("Session.Id",this.Ue)}else{if(t!==r.AWTSessionState.Ended)return;if(0===this.De)return;var a=Math.floor(((new Date).getTime()-this.De)/1e3);o.properties["Session.Id"]=this.Ue,o.properties["Session.Duration"]=a.toString(),o.properties["Session.DurationBucket"]=e.ke(a),this.De=0,this.setContext("Session.Id",null),this.Ue=void 0}o.properties["Session.FirstLaunchTime"]=p.default.firstLaunchTime,o.properties["Session.State"]=t.toString(),this.logEvent(o)}},e.prototype.getSessionId=function(){return this.Ue},e.prototype.logFailure=function(t,i,r,o,s){if(t&&i){var a={name:"failure",type:"failure",properties:{}};e.Me(a,s),a.properties["Failure.Signature"]=t,a.properties["Failure.Detail"]=i,r&&(a.properties["Failure.Category"]=r),o&&(a.properties["Failure.Id"]=o),a.priority=n.AWTEventPriority.High,this.logEvent(a)}},e.prototype.logPageView=function(t,i,n,r,o,s){if(t&&i){var a={name:"pageview",type:"pageview",properties:{}};e.Me(a,s),a.properties["PageView.Id"]=t,a.properties["PageView.Name"]=i,n&&(a.properties["PageView.Category"]=n),r&&(a.properties["PageView.Uri"]=r),o&&(a.properties["PageView.ReferrerUri"]=o),this.logEvent(a)}},e.prototype.Oe=function(){!e.xe[this.Ce]&&this.Ce&&(e.xe[this.Ce]=s.newGuid())},e.Me=function(e,t){if(t){t instanceof o.default&&(t=t.getEvent()),t.name&&(e.name=t.name),t.priority&&(e.priority=t.priority);for(var i in t.properties)t.properties.hasOwnProperty(i)&&(e.properties[i]=t.properties[i])}},e.ke=function(e){return e<0?"Undefined":e<=3?"UpTo3Sec":e<=10?"UpTo10Sec":e<=30?"UpTo30Sec":e<=60?"UpTo60Sec":e<=180?"UpTo3Min":e<=600?"UpTo10Min":e<=1800?"UpTo30Min":"Above30Min"},e.Ne=function(e,t,i){if(!e.name||!e.properties)return void u.default.eventsRejected([e],n.AWTEventsRejectedReason.InvalidEvent);if(e.name=e.name.toLowerCase(),e.name=e.name.replace(s.EventNameDotRegex,"_"),e.type?e.type=e.type.toLowerCase():e.type="custom",!s.EventNameAndTypeRegex.test(e.name)||!s.EventNameAndTypeRegex.test(e.type))return void u.default.eventsRejected([e],n.AWTEventsRejectedReason.InvalidEvent);if(isNaN(e.timestamp)&&(e.timestamp=(new Date).getTime()),t&&e.properties)for(var r in e.properties)e.properties.hasOwnProperty(r)&&(e.properties[r]=s.sanitizeProperty(r,e.properties[r]),null===e.properties[r]&&delete e.properties[r]);e.properties||(e.properties={}),this.Le(e,i.getPropertyMap()),this.Le(e,_.default.logManagerContext.getPropertyMap()),this.Fe(e,"EventInfo.InitId",this.ze(e.apiKey)),this.Fe(e,"EventInfo.Sequence",this.qe(e.apiKey)),this.Fe(e,"EventInfo.SdkVersion",l.FullVersionString),this.Fe(e,"EventInfo.Name",e.name),this.Fe(e,"EventInfo.Time",new Date(e.timestamp).toISOString()),s.isPriority(e.priority)||(e.priority=n.AWTEventPriority.Normal),this.He(e)},e.Le=function(e,t){if(t)for(var i in t)t.hasOwnProperty(i)&&(e.properties[i]||(e.properties[i]=t[i]))},e.Fe=function(e,t,i){e.properties[t]={value:i,pii:n.AWTPiiKind.NotSet,type:n.AWTPropertyType.String}},e.He=function(e){d.default.sendEvent(e)},e.Re=function(e,t){var i=e;return i.id=s.newGuid(),i.apiKey=t,i},e.ze=function(t){return e.xe[t]},e.qe=function(t){return void 0===e.je[t]&&(e.je[t]=0),(++e.je[t]).toString()},e.je={},e.xe={},e}();t.default=f},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AWT_REAL_TIME="REAL_TIME",t.AWT_NEAR_REAL_TIME="NEAR_REAL_TIME",t.AWT_BEST_EFFORT="BEST_EFFORT"},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Version="1.1.1",t.FullVersionString="AWT-Web-JS-"+t.Version},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(0);t.AWTPropertyType=n.AWTPropertyType,t.AWTPiiKind=n.AWTPiiKind,t.AWTEventPriority=n.AWTEventPriority,t.AWTEventsDroppedReason=n.AWTEventsDroppedReason,t.AWTEventsRejectedReason=n.AWTEventsRejectedReason,t.AWTCustomerContentKind=n.AWTCustomerContentKind;var r=i(9);t.AWTUserIdType=r.AWTUserIdType,t.AWTSessionState=r.AWTSessionState;var o=i(14);t.AWT_BEST_EFFORT=o.AWT_BEST_EFFORT,t.AWT_NEAR_REAL_TIME=o.AWT_NEAR_REAL_TIME,t.AWT_REAL_TIME=o.AWT_REAL_TIME;var s=i(5);t.AWTEventProperties=s.default;var a=i(13);t.AWTLogger=a.default;var u=i(11);t.AWTLogManager=u.default;var d=i(29);t.AWTTransmissionManager=d.default;var _=i(6);t.AWTSerializer=_.default;var l=i(8);t.AWTSemanticContext=l.default,t.AWT_COLLECTOR_URL_UNITED_STATES="https://us.pipe.aria.microsoft.com/Collector/3.0/",t.AWT_COLLECTOR_URL_GERMANY="https://de.pipe.aria.microsoft.com/Collector/3.0/",t.AWT_COLLECTOR_URL_JAPAN="https://jp.pipe.aria.microsoft.com/Collector/3.0/",t.AWT_COLLECTOR_URL_AUSTRALIA="https://au.pipe.aria.microsoft.com/Collector/3.0/",t.AWT_COLLECTOR_URL_EUROPE="https://eu.pipe.aria.microsoft.com/Collector/3.0/"},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});!function(e){e[e.Ke=0]="_BT_STOP",e[e.Qe=1]="_BT_STOP_BASE",e[e.Q=2]="_BT_BOOL",e[e.G=8]="_BT_DOUBLE",e[e.R=9]="_BT_STRING",e[e.x=10]="_BT_STRUCT",e[e.M=11]="_BT_LIST",e[e.D=13]="_BT_MAP",e[e.j=16]="_BT_INT32",e[e.L=17]="_BT_INT64"}(t.O||(t.O={}))},function(e,t,i){"use strict";function n(e){for(var t=[],i=0;i<e.length;++i){var n=e.charCodeAt(i);n<128?t.push(n):n<2048?t.push(192|n>>6,128|63&n):n<55296||n>=57344?t.push(224|n>>12,128|n>>6&63,128|63&n):(n=65536+((1023&n)<<10|1023&e.charCodeAt(++i)),t.push(240|n>>18,128|n>>12&63,128|n>>6&63,128|63&n))}return t}function r(e){for(var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",i=[],n=e.length%3,r=0,o=e.length-n;r<o;r+=3){var s=(e[r]<<16)+(e[r+1]<<8)+e[r+2];i.push(function(e){return[t.charAt(e>>18&63),t.charAt(e>>12&63),t.charAt(e>>6&63),t.charAt(63&e)].join("")}(s))}switch(n){case 1:var s=e[e.length-1];i.push(t.charAt(s>>2)),i.push(t.charAt(s<<4&63)),i.push("==");break;case 2:var a=(e[e.length-2]<<8)+e[e.length-1];i.push(t.charAt(a>>10)),i.push(t.charAt(a>>4&63)),i.push(t.charAt(a<<2&63)),i.push("=")}return i.join("")}function o(e){for(var t=[];4294967168&e;)t.push(127&e|128),e>>>=7;return t.push(127&e),t}function s(e){for(var t=e.low,i=e.high,n=[];i||4294967168&t;)n.push(127&t|128),t=(127&i)<<25|t>>>7,i>>>=7;return n.push(127&t),n}function a(e){if(c.BrowserChecker.Ve()){var t=new DataView(new ArrayBuffer(8));t.setFloat64(0,e,!0);for(var i=[],n=0;n<8;++n)i.push(t.getUint8(n));return i}return l.FloatUtils.Ge(e,!0)}function u(e){return(e=_.Number.B(e))<<1^e>>31}function d(e){var t=e.low,i=e.high,n=i<<1|t>>>31,r=t<<1;2147483648&i&&(n=~n,r=~r);var o=new _.UInt64("0");return o.low=r,o.high=n,o}Object.defineProperty(t,"__esModule",{value:!0});var _=i(4),l=i(19),c=i(22);t.Xe=n,t.Z=r,t.Ze=o,t.Je=s,t.Ye=a,t.$e=u,t.et=d},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){}return e.Ge=function(e,t){if(!e)return t?this.tt:this.it;var i=t?11:8,n=t?52:23,r=(1<<i-1)-1,o=1-r,s=r,a=e<0?1:0;e=Math.abs(e);for(var u=Math.floor(e),d=e-u,_=2*(r+2)+n,l=new Array(_),c=0;c<_;)l[c++]=0;for(c=r+2;c&&u;)l[--c]=u%2,u=Math.floor(u/2);for(c=r+1;c<_-1&&d>0;)d*=2,d>=1?(l[++c]=1,--d):l[++c]=0;for(var p=0;p<_&&!l[p];)p++;var f=r+1-p,h=p+n;if(l[h+1]){for(c=h;c>p&&(l[c]=1-l[c],!l);--c);c===p&&++f}if(f>s||u)return a?t?this.nt:this.rt:t?this.ot:this.st;if(f<o)return t?this.tt:this.it;if(t){var v=0;for(c=0;c<20;++c)v=v<<1|l[++p];for(var y=0;c<52;++c)y=y<<1|l[++p];v|=f+r<<20,v=a<<31|2147483647&v;var T=[255&y,y>>8&255,y>>16&255,y>>>24,255&v,v>>8&255,v>>16&255,v>>>24];return T}var g=0;for(c=0;c<23;++c)g=g<<1|l[++p];g|=f+r<<23,g=a<<31|2147483647&g;var T=[255&g,g>>8&255,g>>16&255,g>>>24];return T},e.it=[0,0,0,0],e.tt=[0,0,0,0,0,0,0,0],e.st=[0,0,128,127],e.rt=[0,0,128,255],e.ot=[0,0,0,0,0,0,240,127],e.nt=[0,0,0,0,0,0,240,255],e}();t.FloatUtils=n},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(4),r=function(){function e(){this.at=[]}return e.prototype.ut=function(e){this.at.push(n.Number.P(e))},e.prototype.dt=function(e,t,i){for(;i--;)this.ut(e[t++])},e.prototype.H=function(){return this.at},e}();t.MemoryStream=r},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(17);t.O=n.O;var r=i(18);t.J=r;var o=i(20);t.IO=o;var s=i(4);t.Int64=s.Int64,t.UInt64=s.UInt64,t.Number=s.Number;var a=function(){function e(e){this._t=e}return e.prototype.z=function(e){this._t.dt(e,0,e.length)},e.prototype.V=function(e){this._t.ut(e?1:0)},e.prototype.k=function(e,t){this.lt(t),this.ct(e)},e.prototype.N=function(e,t,i){this.lt(t),this.lt(i),this.ct(e)},e.prototype.X=function(e){var t=r.Ye(e);this._t.dt(t,0,t.length)},e.prototype.b=function(e,t,i){t<=5?this._t.ut(e|t<<5):t<=255?(this._t.ut(192|e),this._t.ut(t)):(this._t.ut(224|e),this._t.ut(t),this._t.ut(t>>8))},e.prototype.K=function(e){e=r.$e(e),this.ct(e)},e.prototype.F=function(e){this.pt(r.et(e))},e.prototype.U=function(e){if(""===e)this.ct(0);else{var t=r.Xe(e);this.ct(t.length),this._t.dt(t,0,t.length)}},e.prototype.q=function(e){this.lt(e?n.O.Qe:n.O.Ke)},e.prototype.ct=function(e){var t=r.Ze(s.Number.w(e));this._t.dt(t,0,t.length)},e.prototype.pt=function(e){var t=r.Je(e);this._t.dt(t,0,t.length)},e.prototype.lt=function(e){this._t.ut(s.Number.W(e))},e}();t.CompactBinaryProtocolWriter=a},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){}return e.Ve=function(){return"undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},e}();t.BrowserChecker=n},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){this.ft=!0,this.ht=!0,this.vt=!0,this.yt="use-collector-delta",this.Tt=!1}return e.prototype.allowRequestSending=function(){return this.vt?(this.vt=!1,this.ft=!1,!0):this.ft},e.prototype.shouldAddClockSkewHeaders=function(){return this.ht},e.prototype.getClockSkewHeaderValue=function(){return this.yt},e.prototype.setClockSkew=function(e){this.Tt||(e?this.yt=e:this.ht=!1,this.Tt=!0,this.ft=!0)},e}();t.default=n},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){this.gt={}}return e.prototype.setKillSwitchTenants=function(e,t){if(e&&t)try{var i=e.split(",");if("this-request-only"===t)return i;for(var n=1e3*parseInt(t,10),r=0;r<i.length;++r)this.gt[i[r]]=Date.now()+n}catch(e){return[]}return[]},e.prototype.isTenantKilled=function(e){return void 0!==this.gt[e]&&this.gt[e]>Date.now()||(delete this.gt[e],!1)},e}();t.default=n},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(2),r=i(0),o=function(){function e(e,t){this.mt=e,this.St=t,this.At={},this.It=0}return e.prototype.addEventToBatch=function(e){e.serializedEvent.length>this.mt?n.default.eventsRejected([e],r.AWTEventsRejectedReason.SizeLimitExceeded):(this.It+e.serializedEvent.length>this.mt&&this.flushBatch(),void 0===this.At[e.apiKey]&&(this.At[e.apiKey]=[]),this.At[e.apiKey].push(e),this.It+=e.serializedEvent.length)},e.prototype.flushBatch=function(){this.It>0&&(this.St.push(this.At),this.At={},this.It=0)},e.prototype.hasBatch=function(){return this.It>0},e}();t.default=o},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){}return e.shouldRetryForStatus=function(e){return!(e>=300&&e<500&&408!==e||501===e||505===e)},e.getMillisToBackoffForRetry=function(e){var t=0,i=Math.floor(1200*Math.random())+2400;return t=Math.pow(4,e)*i,Math.min(t,12e4)},e}();t.default=n},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(0),r=i(6),o=i(26),s=i(24),a=i(23),u=i(15),d=i(1),_=i(2),l=i(3),c="POST",p=function(){function e(e,t,i,n){var r=this;this.Pt=e,this.Wt=i,this.Et=n,this.Bt="?qsp=true&content-type=application%2Fbond-compact-binary&client-id=NO_AUTH&sdk-version="+u.FullVersionString,this.wt=new s.default,this._=!1,this.Ct=new a.default,this.bt=!1,this.Dt=0,d.isUint8ArrayAvailable()||(this.Bt+="&content-encoding=base64"),this.Bt=t+this.Bt,this.Et||(this.bt=!0,this.Et={sendPOST:function(e,t,i,n,o,s){if(d.useXDomainRequest()){var a=new XDomainRequest;a.open(c,e),a.onload=function(){o(200,null)},a.onerror=function(){n(400,null)},a.ontimeout=function(){i(500,null)},a.send(t)}else{var u=new XMLHttpRequest;u.open(c,e,!s),u.onload=function(){o(u.status,r.Ot(u.getAllResponseHeaders()))},u.onerror=function(){n(u.status,r.Ot(u.getAllResponseHeaders()))},u.ontimeout=function(){i(u.status,r.Ot(u.getAllResponseHeaders()))},u.send(t)}}})}return e.prototype.hasIdleConnection=function(){return this.Dt<2},e.prototype.sendQueuedRequests=function(){for(;this.hasIdleConnection()&&!this._&&this.Pt.length>0&&this.Ct.allowRequestSending();)this.Dt++,this.Nt(this.Pt.pop(),0,!1);this.hasIdleConnection()&&l.default.scheduleTimer()},e.prototype.isCompletelyIdle=function(){return 0===this.Dt},e.prototype.flush=function(){for(;this.Pt.length>0;)this.Nt(this.Pt.pop(),0,!0)},e.prototype.pause=function(){this._=!0},e.prototype.resume=function(){this._=!1,this.sendQueuedRequests()},e.prototype.removeQueuedRequests=function(){this.Pt.length=0},e.prototype.Nt=function(e,t,i){var o=this;if(this._)return this.Dt--,void this.Wt.addBackRequest(e);var s=0,a="";for(var u in e)e.hasOwnProperty(u)&&(this.wt.isTenantKilled(u)?(_.default.eventsDropped(e[u],n.AWTEventsDroppedReason.KillSwitch),delete e[u]):(a.length>0&&(a+=","),a+=u,s++));if(s>0){var l=r.default.getPayloadBlob(e,s),c=this.Bt+"&x-apikey="+a+"&client-time-epoch-millis="+Date.now().toString();this.Ct.shouldAddClockSkewHeaders()&&(c=c+"&time-delta-to-apply-millis="+this.Ct.getClockSkewHeaderValue());var p=void 0;p=d.isUint8ArrayAvailable()?new Uint8Array(l):r.default.base64Encode(l),this.bt&&i&&d.isBeaconsSupported()?navigator.sendBeacon(c,p):this.Et.sendPOST(c,p,function(i,n){o.Rt(i,n,e,s,a,t)},function(i,n){o.Rt(i,n,e,s,a,t)},function(i,n){o.Rt(i,n,e,s,a,t)},!1)}else i||this.Mt(null,{})},e.prototype.Rt=function(e,t,i,r,s,a){var u=this,d=!0;if(void 0!==e){if(t){var c=this.wt.setKillSwitchTenants(t["kill-tokens"],t["kill-duration-seconds"]);this.Ct.setClockSkew(t["time-delta-millis"]);for(var p=0;p<c.length;++p)_.default.eventsDropped(i[c[p]],n.AWTEventsDroppedReason.KillSwitch),delete i[c[p]],r--}else this.Ct.setClockSkew(null);if(200===e)return void this.Mt(!0,i);(!o.default.shouldRetryForStatus(e)||r<=0)&&(d=!1)}if(d)if(a<1){for(var f in i)i.hasOwnProperty(f)&&_.default.eventsRetrying(i[f]);setTimeout(function(){return u.Nt(i,a+1,!1)},o.default.getMillisToBackoffForRetry(a))}else this.Dt--,l.default.backOffTransmission(),this.Wt.addBackRequest(i);else this.Mt(!1,i)},e.prototype.Mt=function(e,t){e&&l.default.clearBackOff();for(var i in t)t.hasOwnProperty(i)&&(e?_.default.eventsSent(t[i]):_.default.eventsDropped(t[i],n.AWTEventsDroppedReason.NonRetryableStatus));this.Dt--,this.sendQueuedRequests()},e.prototype.Ot=function(e){for(var t={},i=e.split("\n"),n=0;n<i.length;++n){var r=i[n].split(": ");t[r[0]]=r[1]}return t},e}();t.default=p},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(0),r=i(27),o=i(3),s=i(25),a=i(6),u=i(2),d=2936012,_=function(){function e(e,t,i){this.Ut=t,this.kt=!1,this.xt=[],this.Lt=!1,this._=!1,this.Ft=0,this.St=[],this.zt={},this.zt[n.AWTEventPriority.High]=[],this.zt[n.AWTEventPriority.Normal]=[],this.zt[n.AWTEventPriority.Low]=[],this.qt(),this.Ht=new s.default(d,this.St),this.jt=new r.default(this.St,e,this,i)}return e.prototype.addEvent=function(e){this.Ft<this.Ut?this._&&this.Lt||(this.Ft++,this.zt[e.priority][this.zt[e.priority].length-1].push(e)):u.default.eventsDropped([e],n.AWTEventsDroppedReason.QueueFull)},e.prototype.sendEventsForPriorityAndAbove=function(e){this.Kt(e),this.jt.sendQueuedRequests()},e.prototype.hasEvents=function(){return(this.zt[n.AWTEventPriority.High][0].length>0||this.zt[n.AWTEventPriority.Normal][0].length>0||this.zt[n.AWTEventPriority.Low][0].length>0||this.Ht.hasBatch())&&this.jt.hasIdleConnection()},e.prototype.addBackRequest=function(e){if(!this._||!this.Lt){for(var t in e)if(e.hasOwnProperty(t))for(var i=0;i<e[t].length;++i)this.addEvent(e[t][i]);o.default.scheduleTimer()}},e.prototype.teardown=function(){this._||(this.Kt(n.AWTEventPriority.Low),this.jt.flush())},e.prototype.uploadNow=function(e){var t=this;this.qt(),this.kt?this.xt.push(e):(this.kt=!0,setTimeout(function(){return t.Qt(e)},0))},e.prototype.pauseTransmission=function(){this._=!0,this.jt.pause(),this.shouldDropEventsOnPause&&(this.Ft-=this.zt[n.AWTEventPriority.High][0].length+this.zt[n.AWTEventPriority.Normal][0].length+this.zt[n.AWTEventPriority.Low][0].length,this.zt[n.AWTEventPriority.High][0]=[],this.zt[n.AWTEventPriority.Normal][0]=[],this.zt[n.AWTEventPriority.Low][0]=[],this.jt.removeQueuedRequests())},e.prototype.resumeTransmission=function(){this._=!1,this.jt.resume()},e.prototype.shouldDropEventsOnPause=function(e){this.Lt=e},e.prototype.Vt=function(){this.zt[n.AWTEventPriority.High].shift(),this.zt[n.AWTEventPriority.Normal].shift(),this.zt[n.AWTEventPriority.Low].shift()},e.prototype.qt=function(){this.zt[n.AWTEventPriority.High].push([]),this.zt[n.AWTEventPriority.Normal].push([]),this.zt[n.AWTEventPriority.Low].push([])},e.prototype.Kt=function(e){for(var t=n.AWTEventPriority.High;t>=e;){for(;this.zt[t][0].length>0;){var i=this.zt[t][0].pop();this.Ft--,i.serializedEvent||(i.serializedEvent=a.default.getEventBlob(i)),this.Ht.addEventToBatch(i)}t--}this.Ht.flushBatch()},e.prototype.Qt=function(e){var t=this;this.hasEvents()&&this.sendEventsForPriorityAndAbove(n.AWTEventPriority.Low),this.Gt(function(){t.Vt(),null!==e&&void 0!==e&&e(),t.xt.length>0?setTimeout(function(){return t.Qt(t.xt.shift())},0):(t.kt=!1,t.hasEvents()&&o.default.scheduleTimer())})},e.prototype.Gt=function(e){var t=this;this.jt.isCompletelyIdle()?e():setTimeout(function(){return t.Gt(e)},250)},e}();t.default=_},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(3),r=function(){function e(){}return e.setEventsHandler=function(e){n.default.setEventsHandler(e)},e.getEventsHandler=function(){return n.default.getEventsHandler()},e.scheduleTimer=function(){n.default.scheduleTimer()},e}();t.default=r},function(e,t,i){e.exports=i(16)}])});
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Игнориране";Strings.OfficeOM.L_InvalidFormatValue="Един или повече от параметрите за форматиране имат стойности, които не са позволени. Проверете стойностите и опитайте отново.";Strings.OfficeOM.L_InvalidGetStartRowColumn="Зададените стойности за startRow или startColumn са невалидни.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported='Параметрите за координати не могат да се използват с налагане на типа "Таблица", когато таблицата съдържа обединени клетки.';Strings.OfficeOM.L_UserNotSignedIn="Нито един потребител не е влязъл в Office.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported='Параметрите за координати не могат да се използват с налагане на типа "Таблица", когато таблицата съдържа обединени клетки.';Strings.OfficeOM.L_ModalDialogOpeng="Операцията е неуспешна, защото тази добавка вече има активен модален диалогов прозорец.";Strings.OfficeOM.L_UserClickIgnore="Потребителят избра да игнорира диалоговия прозорец.";Strings.OfficeOM.L_BindingNotExist="Указаното обвързване не съществува.";Strings.OfficeOM.L_InvalidBinding="Невалидно обвързване";Strings.OfficeOM.L_CannotWriteToSelection="Не може да се запише в текущата селекция.";Strings.OfficeOM.L_ElementMissing="Не можем да форматираме клетката на таблицата, тъй като някои стойности на параметри липсват. Проверете отново параметрите и опитайте отново.";Strings.OfficeOM.L_DataNotMatchBindingSize="Подаденият обект с данни не съответства на размера на текущата селекция.";Strings.OfficeOM.L_UserAbortedMessage="Потребителят не се съгласи с разрешенията на добавката.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Ограничения на браузъра ни попречиха да създадем диалоговия прозорец. Домейнът на диалоговия прозорец и домейнът на хоста на добавката не са в една и съща зона на защита.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Достигнат е максималният брой селекции";Strings.OfficeOM.L_RequestTimeout="Повикването отне твърде много време, за да се изпълни.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Типът OsfControl не се поддържа.";Strings.OfficeOM.L_SSOConnectionLostError="Загубена е връзка по време на процеса на влизане.";Strings.OfficeOM.L_RowIndexOutOfRange="Стойността на индекса на реда е извън допустимия диапазон. Използвайте стойност (0 или по-висока), която е по-малка от броя на редовете.";Strings.OfficeOM.L_ConnectionFailureWithStatus="Искането е неуспешно с код на състоянието {0}.";Strings.OfficeOM.L_APICallFailed="Неуспешно извикване на API";Strings.OfficeOM.L_InvalidSetColumns="Посочените колони са невалидни.";Strings.OfficeOM.L_DataNotMatchCoercionType="Типът на указания обект с данни не е съвместим с текущата селекция.";Strings.OfficeOM.L_MemoryLimit="Превишено е ограничението за паметта";Strings.OfficeOM.L_APINotSupported="API не се поддържа";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Зададените стойности за rowCount или columnCount са невалидни.";Strings.OfficeOM.L_ConfirmDialog="Домейнът {0} действа като Microsoft Office и може да изпълнява Office добавки, които могат да осъществяват достъп до вашите лични данни. Ако се доверявате на домейна да се изпълнява като Office и да имате достъп до данните си, щракнете върху OK, за да продължите.";Strings.OfficeOM.L_ShuttingDown="Операцията беше неуспешна, защото данните в сървъра не са актуални.";Strings.OfficeOM.L_Timeout="Времето за изчакване на операцията изтече.";Strings.OfficeOM.L_NotImplemented="Функцията {0} не е реализирана.";Strings.OfficeOM.L_GetDataIsTooLarge="Заявеният набор данни е твърде голям.";Strings.OfficeOM.L_SelectionCannotBound="Не може да се обвърже с текущата селекция.";Strings.OfficeOM.L_InvalidGetColumns="Посочените колони са невалидни.";Strings.OfficeOM.L_OperationCancelledErrorMessage="Операцията е отменена от потребителя.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Загубена е връзка по време на процеса на влизане и е възможно потребителят да не е влязъл. Това вероятно се дължи на конфигурационните настройки на браузъра на потребителя, като напр. зоните за защита.";Strings.OfficeOM.L_DisplayDialogError="Показване на грешката в диалоговия прозорец";Strings.OfficeOM.L_DataNotMatchSelection="Предоставеният обект с данни не е съвместим с формата или размерностите на текущата селекция.";Strings.OfficeOM.L_SaveSettingsError="Грешка в настройките за записване";Strings.OfficeOM.L_InvalidAPICall="Невалидно извикване на API";Strings.OfficeOM.L_NoCapability="Нямате достатъчно разрешения за това действие.";Strings.OfficeOM.L_CustomFunctionImplementationMissing='Свойството с това име в Excel.CustomFunctions, което представлява дефиниция на функцията, трябва да съдържа свойство "call", което изпълнява функцията.';Strings.OfficeOM.L_InvalidArgumentGeneric="Аргументите, подадени на функцията, не вършат работа в тази ситуация, липсват или не са в правилния формат.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Вашата сесия на Office е изтекла или е невалидна. За да продължите, обновете страницата.";Strings.OfficeOM.L_CancelButton="Отказ";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage="Размерът на полезния обем на отговора е превишил ограничението. Консултирайте се с документацията: „https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins“.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Неуспешно добавяне на манипулатора на събитие.";Strings.OfficeOM.L_OperationCancelledError="Операцията е отменена";Strings.OfficeOM.L_InvalidSSOAddinMessage="API за самоличност не се поддържа за тази добавка.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Данните са остарели. Извлечете обекта отново.";Strings.OfficeOM.L_InvalidGetRows="Посочените редове са невалидни.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Невалиден URL адрес на ресурс е зададен в манифеста.";Strings.OfficeOM.L_InvalidParameters="Функцията {0} има невалиден параметри.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Един момент ...";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Функцията за получаване на контекст на удостоверяване липсва";Strings.OfficeOM.L_DialogRequireHTTPS="Не се поддържа протоколът HTTP. Вместо това използвайте HTTPS";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Операцията е неуспешна, защото тази добавка не поддръжка потребителско съгласие в тази категория";Strings.OfficeOM.L_UnsupportedUserIdentity="Типът самоличност на потребителя не се поддържа.";Strings.OfficeOM.L_InvalidObjectPath='Пътят на обекта "{0}" не работи за това, което се опитвате да направите. Ако използвате обекта в няколко различни повиквания на "context.sync" и извън последователно изпълнение на партида ".run", използвайте методите "context.trackedObjects.add()" и "context.trackedObjects.remove()" за управление на времето на живот на обекта.';Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Името на функцията трябва да съдържа непразно пространство на имената и непразно кратко име.";Strings.OfficeOM.L_InvalidValue="Невалидна стойност";Strings.OfficeOM.L_OutOfRange="Извън допустимия диапазон";Strings.OfficeOM.L_DialogAddressNotTrusted="Домейнът на URL адреса не е включен в елемента AppDomain в манифеста и не е поддомейн на местоположението на източника.";Strings.OfficeOM.L_RunMustReturnPromise='Функцията за партида, подадена на метода ".run", не върна обещание. Функцията трябва да върне едно обещание, така че всички автоматично проследявани обекти да могат да бъдат освободени при завършване на операцията с партидата. Обикновено връщате обещание чрез връщане на отговора от "context.sync()".';Strings.OfficeOM.L_NoHttpsWAC="Тази сесия на Office не използва защитена връзка. Препоръчваме ви да предприемате допълнителни предпазни мерки.";Strings.OfficeOM.L_FormattingReminder="Напомняне за форматиране";Strings.OfficeOM.L_DocumentIsInactive="Операцията е неуспешна, защото документът, съдържащ тази добавка, е неактивен.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Когато е отворен модален диалогов прозорец, операцията за запис не се поддържа за Office.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Неуспешно премахване на манипулатора на събитие.";Strings.OfficeOM.L_IndexOutOfRange="Индексът е извън обхват.";Strings.OfficeOM.L_NotSupported="Функцията {0} не се поддържа.";Strings.OfficeOM.L_ReadSettingsError="Грешка в настройките за четене";Strings.OfficeOM.L_UserAborted="Потребителят прекрати искането за съгласие.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Текущата селекция не е съвместима със зададения тип преобразуване.";Strings.OfficeOM.L_DocumentReadOnly="Заявената операция не е разрешена в текущия документен режим.";Strings.OfficeOM.L_TooManyIncompleteRequests="Изчакайте, докато завърши предишното повикване.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel е в режим на редактиране на клетка. Излезте от режим на редактиране, като натиснете ENTER или TAB, или изберете друга клетка и след това опитайте отново.";Strings.OfficeOM.L_ConfirmRefreshMessage="За да продължите, премахнете добавката и я добавете отново или Обновете страницата.";Strings.OfficeOM.L_ImplicitNotLoaded="Модулът не е зареден преди получаване на маркер";Strings.OfficeOM.L_ConnectionFailureWithDetails="Искането е неуспешно с код на състоянието {0}, код за грешка {1} и следното съобщение за грешка: {2}";Strings.OfficeOM.L_BindingToMultipleSelection="Не се поддържат несъседни селекции.";Strings.OfficeOM.L_InvalidCellsValue="Един или повече от параметрите на клетките имат стойности, които не са позволени. Проверете стойностите и опитайте отново.";Strings.OfficeOM.L_BindingCreationError="Грешка при създаване на обвързване";Strings.OfficeOM.L_UnsupportedDataObject="Подаденият тип на обект с данни не се поддържа.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Направете избор.";Strings.OfficeOM.L_NotTrustedWAC="Тази добавка е забранена, за да ви помогне да бъдете в безопасност. За да продължите да използвате добавката, потвърдете, че този елемент се хоства в надежден домейн или го отворете в настолното приложение на Office.";Strings.OfficeOM.L_TooManyOptionalObjects="няколко опционални обекта в списъка с параметри";Strings.OfficeOM.L_ConfirmCancelMessage="За съжаление, не можем да продължим.";Strings.OfficeOM.L_NamedItemNotFound="Наименуваният елемент не съществува.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Това номериране не се поддържа в текущото приложение хост.";Strings.OfficeOM.L_RedundantCallbackSpecification="Обратното повикване не може да се задава и в списък с аргументи, и в незадължителен обект.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API не се поддържа в тази платформа.";Strings.OfficeOM.L_SSOClientError="Възникна грешка в искането за удостоверяване от Office.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Не може да се създаде обвързване с текущата селекция и указания тип обвързване.";Strings.OfficeOM.L_RequestTokenUnavailable="Този API е ограничен, за да се забави честотата на повикване.";Strings.OfficeOM.L_FileTypeNotSupported="Зададеният тип на файл не се поддържа.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Данните не са актуални";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Операцията не се поддържа за този тип обвързване.";Strings.OfficeOM.L_InvalidSetStartRowColumn="Зададените стойности за startRow или startColumn са невалидни.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_InvalidApiCallInContext="Невалидно извикване на API в текущия контекст.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Зададеният тип обвързване не е съвместим с подадения именуван елемент.";Strings.OfficeOM.L_NavOutOfBound="Операцията е неуспешна, тъй като индексът е извън диапазона.";Strings.OfficeOM.L_InitializeNotReady="Office.js не е още напълно зареден. Опитайте отново по-късно или се уверете, че сте добавили кода за инициализация във функцията Office.initialize.";Strings.OfficeOM.L_AppNameNotExist="Не съществува име на добавка за {0}.";Strings.OfficeOM.L_InvalidBindingOperation="Невалидна операция за обвързване";Strings.OfficeOM.L_SliceSizeNotSupported="Указаният размер на сегмент не се поддържа.";Strings.OfficeOM.L_UnknownBindingType="Типът на обвързването не се поддържа.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Проблем в мрежата попречи на извличането на файла.";Strings.OfficeOM.L_InvalidSetRows="Посочените редове са невалидни.";Strings.OfficeOM.L_OverwriteWorksheetData="Операцията за настройка е неуспешна, защото подаденият обект с данни ще се запише върху данните или ще ги отмести.";Strings.OfficeOM.L_PropertyNotLoaded='Свойството "{0}" не е налично. Преди да прочетете стойността на свойството, извикайте метода за зареждане с обекта, който го съдържа, и извикайте "context.sync()" в контекста на свързаната заявка.';Strings.OfficeOM.L_CellDataAmountBeyondLimits="Забележка: Броят на клетките в таблица се предполага да бъде под 20 000 клетки.";Strings.OfficeOM.L_EventRegistrationError="Грешка при регистриране на събитие";Strings.OfficeOM.L_MissingParameter="Липсващ параметър";Strings.OfficeOM.L_InvalidReadForBlankRow="Указаният ред е празен.";Strings.OfficeOM.L_PermissionDenied="Разрешението е отказано";Strings.OfficeOM.L_GetSelectionNotSupported="Текущата селекция не се поддържа.";Strings.OfficeOM.L_DialogInvalidScheme="Схемата на URL адреса не се поддържа. Вместо това използвайте HTTPS.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod='Промените в свойство "{0}" не могат да бъдат приложени чрез метод "object.set".';Strings.OfficeOM.L_InValidOptionalArgument="невалиден незадължителен аргумент";Strings.OfficeOM.L_SSOServerError="Възникна грешка в доставчика на удостоверяване.";Strings.OfficeOM.L_ApiNotFoundDetails="Методът или свойството {0} е част от набора с изисквания за {1}, който не е наличен във вашата версия на {2}.";Strings.OfficeOM.L_DialogParentIsMinimized="Операцията е неуспешна, защото родителският прозорец е намален.";Strings.OfficeOM.L_SettingNameNotExist="Указаното име на настройка не съществува.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Тази добавка не поддържа потребителско съгласие.";Strings.OfficeOM.L_SettingsStaleError="Грешка от неактуални настройки";Strings.OfficeOM.L_DataWriteReminder="Напомняне за запис на данни";Strings.OfficeOM.L_NotSupportedEventType="Указаният тип на събитие {0} не се поддържа.";Strings.OfficeOM.L_OperationNotSupported="Тази операция не се поддържа.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Извикайте closeAsync за текущия файл, преди да извлечете друг.";Strings.OfficeOM.L_InternalError="Вътрешна грешка";Strings.OfficeOM.L_InvalidGrantMessage="Липсват разрешения за тази добавка.";Strings.OfficeOM.L_SpecifiedIdNotExist="Посоченият ИД не съществува.";Strings.OfficeOM.L_InvalidDataObject="Невалиден обект с данни";Strings.OfficeOM.L_CustomXmlNodeNotFound="Указаният възел не е намерен.";Strings.OfficeOM.L_SSOClientErrorMessage="Възникна неочаквана грешка в клиента.";Strings.OfficeOM.L_TooManyOptionalFunction="няколко опционални функции в списъка с параметри";Strings.OfficeOM.L_NetworkProblem="Мрежов проблем";Strings.OfficeOM.L_BadSelectorString="Низът, който е подаден в селектора, е неправилно форматиран или не се поддържа.";Strings.OfficeOM.L_DialogAlreadyOpened="Операцията е неуспешна, защото тази добавка вече има активен диалогов прозорец.";Strings.OfficeOM.L_ActivityLimitReached="Достигнато е ограничението за активност.";Strings.OfficeOM.L_ConfirmDialogConsent='Като щракнете върху "OK", ще позволите на {0} достъп до вашето съдържание и лични данни. ';Strings.OfficeOM.L_MissingRequiredArguments="липсват някои задължителни аргументи";Strings.OfficeOM.L_InvalidDataFormat="Форматът на указания обект с данни е невалиден.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Невалидни входни аргументи.";Strings.OfficeOM.L_InvalidFormat="Грешка, причинена от невалиден формат";Strings.OfficeOM.L_InvalidOrTimedOutSession="Невалидна или изтекла сесия";Strings.OfficeOM.L_InvalidArgument='Аргументът "{0}" не работи за този случай, липсва или не е в правилния формат.';Strings.OfficeOM.L_HostError="Грешка на хоста";Strings.OfficeOM.L_GetDataParametersConflict="Посочените параметри са в конфликт.";Strings.OfficeOM.L_CannotRegisterEvent="Манипулаторът на събитие не може да бъде регистриран.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Операцията е неуспешна, защото тази добавка вече изисква маркер за достъп.";Strings.OfficeOM.L_InternalErrorDescription="Възникна вътрешна грешка.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage="Размерът на полезния обем на заявката е превишил ограничението. Консултирайте се с документацията: „https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins“.";Strings.OfficeOM.L_InvalidTableOptionValue="Един или повече от параметрите на tableOptions имат стойности, които не са позволени. Проверете стойностите и опитайте отново.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} иска да покаже нов прозорец.";Strings.OfficeOM.L_SettingsAreStale="Настройките не можаха да се запишат, защото не са актуални.";Strings.OfficeOM.L_SSOServerErrorMessage="Възникна неочаквана грешка на сървъра.";Strings.OfficeOM.L_WorkbookHiddenMessage="Искането за API на JavaScript е неуспешно, защото работната книга е скрита. Покажете работната книга и опитайте отново.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Забележка: Наборите за форматиране, зададени от повикване на форматирането на API, се предполага да бъдат под 100.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Името на функцията може да съдържа само букви, цифри, долни черти и точки.";Strings.OfficeOM.L_InvalidRequestContext="Не може да се използва обектът в контекста на различни заявки.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty='Опит за настройка на свойство само за четене "{0}".';Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="конфигурирайте браузъра си";Strings.OfficeOM.L_MultipleNamedItemFound="Намерени са множество обекти с едно и също име.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Свойство с това име, което представлява дефиниция на функцията, трябва да съществува в Excel.CustomFunctions.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath ограничава избора до 1024 елемента.";Strings.OfficeOM.L_EventHandlerNotExist="Зададеният манипулатор на събитие не е намерен за това обвързване.";Strings.OfficeOM.L_FormatValueOutOfRange="Стойността е извън позволения диапазон.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Зададеният тип преобразуване не е съвместим с този тип обвързване.";Strings.OfficeOM.L_CoercionTypeNotSupported="Зададеният тип преобразуване не се поддържа.";Strings.OfficeOM.L_CallbackNotAFunction="Обратното повикване трябва да е от тип функция, а беше от тип {0}.";Strings.OfficeOM.L_DataStale="Данните не са актуални";Strings.OfficeOM.L_NewWindowCrossZone='Настройките за защита на вашия браузър ни пречат да създадем диалогов прозорец. Опитайте с друг браузър или {0}, така че "{1}" и домейнът, показан в адресната лента, да са в една и съща зона на защита.';Strings.OfficeOM.L_DataNotMatchBindingType="Указаният обект с данни не е съвместим с типа на обвързване.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Типът самоличност на потребителя не се поддържа.";Strings.OfficeOM.L_ColIndexOutOfRange="Стойността на индекса на колоната е извън допустимия диапазон. Използвайте стойност (0 или по-висока), която е по-малка от броя на колоните.";Strings.OfficeOM.L_BrowserAPINotSupported="Този браузър не поддържа искания API.";Strings.OfficeOM.L_ValueNotLoaded='Стойността на обекта резултат още не е заредена. Преди четене на свойството на стойността, повикайте "context.sync()" в контекста на съответната заявка.';Strings.OfficeOM.L_InvalidBindingError="Грешка от невалидно обвързване";Strings.OfficeOM.L_DataWriteError="Грешка при запис на данни";Strings.OfficeOM.L_TooManyArguments="твърде много аргументи";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Добавката вече изисква маркер за достъп.";Strings.OfficeOM.L_UnsupportedEnumeration="Неподдържано номериране";Strings.OfficeOM.L_FunctionCallFailed="Извикването на функцията {0} е неуспешно, код на грешка: {1}.";Strings.OfficeOM.L_PropertyDoesNotExist='Свойството "{0}" не съществува в обекта.';Strings.OfficeOM.L_InvalidResourceUrl="Предоставен е невалиден URL адрес на ресурс на приложение.";Strings.OfficeOM.L_SetDataIsTooLarge="Зададеният обект с данни е твърде голям.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Приложението {0} не съществува. Не е извикано Microsoft.Office.WebExtension.Initialize(причина).";Strings.OfficeOM.L_SettingsCannotSave="Настройките не можаха да бъдат записани.";Strings.OfficeOM.L_CannotNavigateTo="Обектът се намира на място, където не се поддържа навигация.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Избраното съдържание трябва да е в табличен формат. Форматирайте данните като таблица и опитайте отново.";Strings.OfficeOM.L_InvalidNode="Невалиден възел";Strings.OfficeOM.L_InvalidGrant="Липсва предварително удостоверяване.";Strings.OfficeOM.L_DataReadError="Грешка при четене на данни";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Напът сте да изпращате и получавате потенциално чувствителна информация от {0}. Щракнете върху OK само ако се доверявате на следния уеб сайт, който получава поверителна информация: {1}.";Strings.OfficeOM.L_NotSupportedBindingType="Указаният тип на обвързване {0} не се поддържа.";Strings.OfficeOM.L_ContinueButton="Продължи";Strings.OfficeOM.L_SetDataParametersConflict="Посочените параметри са в конфликт.";Strings.OfficeOM.L_DialogNavigateError="Грешка в навигацията в диалоговия прозорец";Strings.OfficeOM.L_InvalidColumnsForBinding="Посочените колони са невалидни.";Strings.OfficeOM.L_CustomXmlError="Грешка в потребителския XML.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Позволи";Strings.OfficeOM.L_InvalidCoercion="Невалидно преобразуване на тип"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_SettingsAreStale="সেটিংস সংরক্ষণ করা গেল না কারণ তারা বর্তমান সময়ের নয়।";Strings.OfficeOM.L_InvalidResourceUrl="Url এর প্রদানকরা সংস্থানটি অবৈধ।";Strings.OfficeOM.L_ShuttingDown="ক্রিয়াকলাপটি ব্যর্থ হয়েছে কারণ বর্তমানে সার্ভারে ডাটাটি নেই।";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="এই নামটি সহ একটি বৈশিষ্ট্য যেটি ফাংশনের সংজ্ঞাকে উপস্থাপন করে সেটিকে অবশ্যই Excel.CustomFunctions -এ বিদ্যমান থাকতে হবে৷";Strings.OfficeOM.L_UserAbortedMessage="ব্যবহারকারী অ্যাড-ইন অনুমতি দানে সন্মত হয়নি।";Strings.OfficeOM.L_CallbackNotAFunction="কলব্যাক অবশ্যই প্রকারের কার্যকারিতা হতে হবে, {0} প্রকারের ছিল।";Strings.OfficeOM.L_InvalidApiCallInContext="বর্তমান প্রসঙ্গের ক্ষেত্রে API কলটি অবৈধ।";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="ক্রিয়াকলাপটি এই ধরণের বাইন্ডিং-এ সমর্থিত নয়।";Strings.OfficeOM.L_CellDataAmountBeyondLimits="বিজ্ঞপ্তি: একটি টেবিলে কক্ষের সংখ্যা 20,000 এর নীচে রাখতে পরামর্শ দেওয়া হয়েছে।";Strings.OfficeOM.L_ContinueButton="অবিরত করুন";Strings.OfficeOM.L_InvalidGrant="প্রাকপ্রমাণীকরণ পাওয়া যাচ্ছে না।";Strings.OfficeOM.L_InvalidFormatValue="এক বা তার বেশী বিন্যাস প্যারামিটারগুলির যে মানগুলি আছে তারা অনুমোদিত নয়। মানগুলি দুবার পরীক্ষা করুন এবং আবার চেষ্টা করুন।";Strings.OfficeOM.L_ConnectionFailureWithStatus="{0} এর স্থিতি কোড সহ অনুরোধটি ব্যর্থ হয়েছে৷";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="ডেটাটির তারিখ অতিক্রান্ত। অবজেক্টটি আবার পুনরুদ্ধার করুন।";Strings.OfficeOM.L_InvalidSSOAddinMessage="এই অ্যাড-ইনটির জন্য শনাক্তকরণ API সমর্থিত নয়।";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="সমন্বয়সাধন প্যারামিটারগুলি কোয়ের্শিয়ান ধরনের টেবিলের ক্ষেত্রে ব্যবহার করা যায় না যখন টেবিলটির মধ্যে মার্জ হওয়া কক্ষ থাকে।";Strings.OfficeOM.L_SpecifiedIdNotExist="নির্দিষ্ট ID বিদ্যমান নেই।";Strings.OfficeOM.L_NotTrustedWAC="আপনাকে সুরক্ষিত রাখতে সহায়তা করার জন্য এই অ্যাড-ইন নিস্ক্রিয় করা হয়েছে। অ্যাড-ইন ব্যবহার করা চালিয়ে যেতে, এই আইটেম একটি বিশ্বস্ত ডোমেনে হোস্ট করা হয়েছে তা যাচাই করুন বা এটি Office ডেস্কটপ অ্যাপে এ খুলুন।";Strings.OfficeOM.L_EventHandlerNotExist="এই বাইন্ডিংয়ের জন্য নির্দিষ্ট ইভেন্ট পরিচালকটি খুঁজে পাওয়া যায়নি।";Strings.OfficeOM.L_NotSupportedBindingType="নির্দিষ্ট বাইন্ডিং প্রকারটি {0} সমর্থিত নেই।";Strings.OfficeOM.L_OverwriteWorksheetData="সরবরাহিত ডাটা অবজেক্টটি ডাটা অধিলিখিত বা স্থানান্তর করার কারণে সেট ক্রিয়াকলাপটি ব্যর্থ হয়েছে।";Strings.OfficeOM.L_InvalidGetColumns="নির্দিষ্ট কলামগুলি অকার্যকর।";Strings.OfficeOM.L_SelectionCannotBound="বর্তমান নির্বাচনের সাথে বাইন্ড করতে পারেনা।";Strings.OfficeOM.L_NoCapability="এই ক্রিয়াকলাপটির জন্য আপনার কাছে পর্যাপ্ত অনুমতি নেই।";Strings.OfficeOM.L_FunctionCallFailed="ক্রিয়াকলাপ {0}-কে কল করা ব্যর্থ হয়েছে, ত্রুটি কোড: {1}।";Strings.OfficeOM.L_NavOutOfBound="সূচিটি সীমার বাইরে থাকার কারণে ক্রিয়াকলাপটি ব্যর্থ হয়েছে।";Strings.OfficeOM.L_TooManyOptionalObjects="প্যারামিটার তালিকায় একাধিক বিকল্প ক্রিয়াকলাপ আছে";Strings.OfficeOM.L_InternalError="অভ্যন্তরীণ ত্রুটি";Strings.OfficeOM.L_RedundantCallbackSpecification="আর্গ্যুমেন্ট তালিকা এবং ঐচ্ছিক অবজেক্ট উভয়েই কলব্যাক নির্দিষ্ট করতে পারা যায় না।";Strings.OfficeOM.L_MultipleNamedItemFound="একই নামের একাধিক বস্তু পাওয়া গিয়েছে।";Strings.OfficeOM.L_SSOServerErrorMessage="সার্ভারটিতে একটি অপ্রত্যাশিত ত্রুটি দেখা দিয়েছে।";Strings.OfficeOM.L_OperationNotSupported="ক্রিয়াকলাপটি সমর্থিত নয়।";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="অনুগ্রহ করে একটি নির্বাচন তৈরী করুন।";Strings.OfficeOM.L_DialogAlreadyOpened="ক্রিয়াকলাপটি ব্যর্থ হয়েছে কারণ এই অ্যাড-ইনের ইতিমধ্যেই একটি সক্রিয় ডায়ালগ রয়েছে৷";Strings.OfficeOM.L_BrowserAPINotSupported="অনুরোধকৃত APIকে এই ব্রাউজারটি সমর্থন করে না।";Strings.OfficeOM.L_InvalidApiArgumentsMessage="ইনপুট যুক্তিগুলি অবৈধ।";Strings.OfficeOM.L_CustomXmlOutOfDateName="ডাটাটি সাম্প্রতিক নয়";Strings.OfficeOM.L_Timeout="অপারেশনের মেয়াদ শেষ হয়ে গেছে৷";Strings.OfficeOM.L_NewWindowCrossZone="আপনার ব্রাউজারের সুরক্ষা সেটিংস আমাদের ডায়লগ বক্সটি তৈরি করার ক্ষেত্রে বাধা হচ্ছে। একটি পৃথক ব্রাউজারের মাধ্যমে চেষ্টা করুন, বা {0} যেহেতু '{1}' এবং আপনার ঠিকানা বারে দেখানো ডোমেনটি একই সুরক্ষা অঞ্চলের মধ্যে আছে।";Strings.OfficeOM.L_CustomFunctionImplementationMissing='Excel.CustomFunctions -এ থাকা এই নামটি সহ একটি বৈশিষ্ট্য যেটি ফাংশনের সংজ্ঞাকে উপস্থাপন করে সেটিতে অবশ্যই একটি "কল করুন" এর বৈশিষ্ট্য থাকতে হবে যা ফাংশনটিকে সম্পাদন করে৷';Strings.OfficeOM.L_BadSelectorString="নির্বাচকে পাস হওয়া স্ট্রিংটি অনুপযুক্ত ভাবে বিন্যাসিত বা অসমর্থিত।";Strings.OfficeOM.L_ConfirmDialogConsentTitle="একটি মূহুর্ত ...";Strings.OfficeOM.L_DocumentIsInactive="ক্রিয়াকলাপটি ব্যর্থ হয়েছে কারন এই অ্যাড-ইন ধারণকারী নথিটি নিষ্ক্রিয় রয়েছে।";Strings.OfficeOM.L_ConfirmCancelMessage="দুঃখিত, আমরা চালিয়ে যেতে পারি না।";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="অ্যাড-ইন ইতিমধ্যেই কোনো অ্যাক্সেস টোকনের অনুরোধ জানিয়েছে৷";Strings.OfficeOM.L_DisplayDialogError="ডায়ালগ প্রদর্শনে ত্রুটি";Strings.OfficeOM.L_ConfirmDialog="ডোমেন {0} Microsoft Office হিসেবে কাজ করছে এবং Office অ্যাড-ইনস চালাতে পারে, যা আপনার ব্যক্তিগত ডাটা অ্যাক্সেস করতে পারে। আপনি যদি ডোমেনটিকে Office হিসেবে চালাতে এবং আপনার ডাটা অ্যাক্সেস করতে বিশ্বাস করেন তবে চালিয়ে যেতে ওকে ক্লিক করুন।";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="{0}টি আবেদনের অস্তিত্ব নেই। Microsoft.Office.WebExtension.initialize(reason) কল করা হয়নি।";Strings.OfficeOM.L_NotSupported="ক্রিয়াকলাপ {0} সমর্থিত নয়।";Strings.OfficeOM.L_InvalidColumnsForBinding="নির্দিষ্ট কলামগুলি অকার্যকর।";Strings.OfficeOM.L_NamedItemNotFound="নামযুক্ত আইটেমটি বিদ্যমান নেই।";Strings.OfficeOM.L_TooManyOptionalFunction="প্যারামিটার তালিকায় একাধিক বিকল্প ক্রিয়াকলাপ আছে";Strings.OfficeOM.L_RowIndexOutOfRange="সারি সূচির মানটি অনুমোদিত সীমার বাইরে। সারিগুলির সংখ্যার চেয়ে কম এমন একটি মান (0 বা উচ্চতর) ব্যবহার করুন।";Strings.OfficeOM.L_SettingNameNotExist="নির্দিষ্ট সেটিং নামটি বিদ্যমান নেই।";Strings.OfficeOM.L_InvalidDataFormat="নির্দিষ্ট ডাটা অবজেক্টের বিন্যাসটি অকার্যকর।";Strings.OfficeOM.L_DataWriteReminder="ডাটা লেখা অনুস্মারক";Strings.OfficeOM.L_InitializeNotReady="Office.js এখনও পুরোপুরি লোড হয়নি। অনুগ্রহ করে পরে আবার চেষ্টা করুন বা Office.initialize ক্রিয়াকলাপে আপনার সূচনাকরণ কোড যোগ করা নিশ্চিত করুন।";Strings.OfficeOM.L_SelectionNotSupportCoercionType="বর্তমান নির্বাচনটি নির্দিষ্ট কোয়ের্শন প্রকারের সাথে সুসঙ্গত নয়।";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="অ্যাড-ইন ইতিমধ্যেই কোনো অ্যাক্সেস টোকনের অনুরোধ জানানোর জন্য এই ক্রিয়াকলাপটি ব্যর্থ হয়েছে৷";Strings.OfficeOM.L_ReadSettingsError="সেটিং ত্রুটিটি পড়ুন";Strings.OfficeOM.L_OperationCancelledError="ক্রিয়াকলাপ বাতিল করা হয়েছে";Strings.OfficeOM.L_InvalidSetColumns="নির্দিষ্ট কলামগুলি অকার্যকর।";Strings.OfficeOM.L_CancelButton="বাতিল করুন";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="এই ধরণের পরিচিতিযুক্ত ব্যবহারকারী সমর্থিত নয়।";Strings.OfficeOM.L_InvalidReadForBlankRow="নির্দিষ্ট সারিটি ফাঁকা।";Strings.OfficeOM.L_UserNotSignedIn="কোন ব্যবহারকারী Office-এ সাইন ইন করেনি।";Strings.OfficeOM.L_InvalidFormat="অবৈধ বিন্যাস ত্রুটি";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="উপেক্ষা করুন";Strings.OfficeOM.L_DataStale="ডাটাটি সাম্প্রতিক নয়";Strings.OfficeOM.L_InvalidNode="অবৈধ নোড";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="আপনার ব্রাউজারটি কনফিগার করুন";Strings.OfficeOM.L_SSOClientError="Office থেকে আসা প্রমাণীকরণ অনুরোধে ত্রুটি ঘটেছে।";Strings.OfficeOM.L_InvalidGrantMessage="এই অ্যাড-ইনটির জন্য মঞ্জুরী পাওয়া যাচ্ছে না।";Strings.OfficeOM.L_DataNotMatchBindingType="নির্দিষ্ট ডাটা অবজেক্ট বাইন্ডিংয়ের প্রকারের সাথে সুসঙ্গত নয়।";Strings.OfficeOM.L_FormattingReminder="বিন্যাসকরণ অনুস্মারক";Strings.OfficeOM.L_SetDataIsTooLarge="নির্দিষ্ট ডাটা অবজেক্টটি অত্যন্ত বৃহত।";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="সমন্বয়সাধন প্যারামিটারগুলি কোয়ের্শিয়ান ধরনের টেবিলের ক্ষেত্রে ব্যবহার করা যায় না যখন টেবিলটির মধ্যে মার্জ হওয়া কক্ষ থাকে।";Strings.OfficeOM.L_TooManyArguments="অনেক বেশি আর্গ্যুমেন্ট";Strings.OfficeOM.L_NetworkProblem="নেটওয়ার্ক সমস্যা";Strings.OfficeOM.L_UserAborted="ব্যবহারকারী সন্মতি অনুরোধটি নাকচ করেছেন।";Strings.OfficeOM.L_NoHttpsWAC="এই Office অধিবেশন একটি সুরক্ষিত সংযোগ ব্যবহার করছে না। আমরা সুপারিশ করছি যে আপনি অতিরিক্ত সতর্কতা অবলম্বন করুন ।";Strings.OfficeOM.L_InvalidDataObject="অবৈধ ডাটা অবজেক্ট";Strings.OfficeOM.L_NotImplemented="ক্রিয়াকলাপ {0} প্রয়োগ করা হয়নি।";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="'{0}' বৈশিষ্ট্যের পরিবর্তনগুলো একটি \"অবজেক্ট.সেট\" পদ্ধতির মাধ্যমে প্রয়োগ করা যাবে না।";Strings.OfficeOM.L_ActivityLimitReached="সক্রিয়তা সীমায় পৌঁছে গেছে৷";Strings.OfficeOM.L_RequestTimeout="কলটি কার্যকর করতে অনেক বেশি সময় নিয়েছে।";Strings.OfficeOM.L_NetworkProblemRetrieveFile="একটি নেটওয়ার্ক সমস্যা ফাইলের পুনরুদ্ধারে বাধা দিয়েছে।";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl ধরনটি সমর্থিত নয়।";Strings.OfficeOM.L_CustomXmlExceedQuotaName="নির্বাচন করার সীমায় পৌঁছেছে";Strings.OfficeOM.L_TooManyIncompleteRequests="পূর্বের কলটি শেষ না হওয়া অবধি অপেক্ষা করুন।";Strings.OfficeOM.L_BindingToMultipleSelection="অসংলগ্ন নির্বাচনগুলি সমর্থিত নয়।";Strings.OfficeOM.L_DialogInvalidScheme="URL স্কীমটি সমর্থিত নয়। পরিবর্তে HTTPS ব্যবহার করুন।";Strings.OfficeOM.L_FormatValueOutOfRange="মানটি অনুমোদিত সীমার বাইরে।";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='অনুরোধ পে-লোডের আকার সীমা অতিক্রম করেছে । অনুগ্রহ করে ডকুমেন্টেশন দেখুন: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins"।';Strings.OfficeOM.L_CloseFileBeforeRetrieve="অন্য একটি ফাইল পুনরুদ্ধার করার আগে বর্তমান ফাইলটিতে closeAsync-কে কল করুন। ";Strings.OfficeOM.L_InvalidArgumentGeneric="বিতর্ক(গুলি) সেই কার্যপ্রণালীর মধ্যে সম্পাদিত হয়েছে যা এই পরিস্থিতিতে কাজ করবে না, সেগুলো পাওয়া যাচ্ছে না, বা সঠিক বিন্যাসে নেই।";Strings.OfficeOM.L_AppNameNotExist="{0}-এর জন্য কোন অ্যাড-ইন নাম নেই।";Strings.OfficeOM.L_MissingRequiredArguments="কিছু প্রয়োজনীয় যুক্তি অনুপলভ্য";Strings.OfficeOM.L_InvalidGetRows="নির্দিষ্ট সারিগুলি অকার্যকর।";Strings.OfficeOM.L_InvalidBinding="অবৈধ বাইন্ডিং";Strings.OfficeOM.L_InvalidValue="অবৈধ মান";Strings.OfficeOM.L_ConfirmRefreshMessage="চালিয়ে যেতে, অ্যাড-ইন সরিয়ে নিন এবং এটি আবার যোগ করুন, বা পৃষ্ঠাটি সতেজ করুন৷";Strings.OfficeOM.L_ConnectionFailureWithDetails="{0} এর স্থিতি কোড, ত্রুটি কোড {1} সহ অনুরোধটি ব্যর্থ হয়েছে এবং নিম্নলিখিত ত্রুটি বার্তাটি হল: {2}";Strings.OfficeOM.L_UnknownBindingType="বাইন্ডিংয়ের প্রকারটি সমর্থিত নয়।";Strings.OfficeOM.L_BindingNotExist="নির্দিষ্ট বাইন্ডিংটি বিদ্যমান নেই।";Strings.OfficeOM.L_FileTypeNotSupported="নির্দিষ্ট ফাইল প্রকার সমর্থিত নয়।";Strings.OfficeOM.L_SSOConnectionLostError="সাইন ইন প্রক্রিয়ার সময় একটি সংযোগ হারিয়ে গেছে।";Strings.OfficeOM.L_ConfirmDialogConsent="ওকে ক্লিক করে, আপনি আপনার সামগ্রী এবং ব্যক্তিগত তথ্য-এ {0} অ্যাক্সেস করার অনুমতি দেবেন।";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} একটি নতুন উইন্ডো দেখাতে চায়।";Strings.OfficeOM.L_InvalidSelectionForBindingType="বর্তমান নির্বাচন এবং নির্দিষ্ট করা বাইন্ডিংয়ের প্রকারের সাথে কোনও বাইন্ডিং তৈরি করতে পারা যায় না।";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="যখন একটি মডেল কথোপকথন খোলা থাকে তখন লিখন ক্রিয়াকলাপ অফিসের জন্য সমর্থিত নয়।";Strings.OfficeOM.L_UnsupportedDataObject="সরবরাহিত ডাটা অবজেক্টের প্রকারটি সমর্থিত নয়।";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel কক্ষ-সম্পাদনা মোডে রয়েছে৷ অনুগ্রহ করে কোনো ENTERবা TAB চাপার মাধ্যমে বা অন্য কক্ষ নির্বাচন করার মাধ্যমে সম্পাদনা মোড থেকে প্রস্থান করুন এবং তারপর আবার চেষ্টা করুন৷";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="ক্রিয়াকলাপটি ব্যর্থ হয়েছে কারণ এই অ্যাড-ইনটি এই বিভাগটিতে ব্যবহারকারীর সম্মতিকে সমর্থন করে না";Strings.OfficeOM.L_APICallFailed="API কল ব্যর্থ হয়েছে";Strings.OfficeOM.L_InvalidGetStartRowColumn="নির্দিষ্ট startRow বা startColumn মানগুলি অকার্যকর।";Strings.OfficeOM.L_InvalidRequestContext="অবজেক্টটি বিভিন্ন অনুরোধের সবকটির ক্ষেত্রে ব্যবহার করা যাবে না৷";Strings.OfficeOM.L_InvalidResourceUrlMessage="ম্যানিফেস্টে নির্দিষ্ট Url সংস্থানটি অবৈধ।";Strings.OfficeOM.L_InvalidBindingOperation="অবৈধ বাইন্ডিং ক্রিয়াকলাপ";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="এই অ্যাড-ইনটি ব্যবহারকারীর সম্মতিকে সমর্থন করে না৷";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript API অনুরোধটি ব্যর্থ হয়েছে কারণ অনুশীলনপুস্তিকাটি লুকানো ছিল৷ অনুগ্রহ করে অনুশীলনপুস্তিকাটি প্রত্যক্ষ করুন এবং আবার চেষ্টা করুন৷";Strings.OfficeOM.L_DocumentReadOnly="অনুরোধ করা ক্রিয়াকলাপটি বর্তমান নথি মোডে অনুমোদিত নয়।";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="সাইন ইন প্রক্রিয়ার সময় একটি সংযোগ হারিয়ে গেছে, এবং ব্যবহারকারী সাইন ইন নাও করতে পারে। এটি সম্ভবত ব্যবহারকারীর ব্রাউজারের কনফিগারেশন সেটিংসের কারণে হয়, যেমন নিরাপত্তা অঞ্চল।";Strings.OfficeOM.L_APINotSupported="API সমর্থিত নয়";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP প্রোটোকলটি সমর্থিত নয়। পরিবর্তে HTTPS ব্যবহার করুন";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="নির্দিষ্ট কোয়ের্শন প্রকারটি এই বাইন্ডিং প্রকারের সাথে সুসঙ্গত নয়।";Strings.OfficeOM.L_CannotWriteToSelection="বর্তমান নির্বাচনটিতে লিখতে পারবে না।";Strings.OfficeOM.L_SetDataParametersConflict="নির্দিষ্ট মাপদণ্ডগুলিতে বিবাদ।";Strings.OfficeOM.L_InvalidSetRows="নির্দিষ্ট সারিগুলি অকার্যকর।";Strings.OfficeOM.L_DialogOK="ঠিক আছে";Strings.OfficeOM.L_SettingsStaleError="সেটিংস ত্রুটিটি পুরোনো";Strings.OfficeOM.L_CoercionTypeNotSupported="নির্দিষ্ট কোয়ের্শন প্রকারটি সমর্থিত নয়।";Strings.OfficeOM.L_CannotNavigateTo="নেভিগেশন সমর্থিত নয় এমন একটি স্থানে অবজেক্ট অবস্থিত।";Strings.OfficeOM.L_ImplicitNotLoaded="একটি টোকেন পাওয়ার আগে মডিউলটি লোড করা হয়নি";Strings.OfficeOM.L_SettingsCannotSave="সেটিংস সংরক্ষণ করতে পারা যায়নি।";Strings.OfficeOM.L_CannotRegisterEvent="ইভেন্ট হ্যান্ডলারটিকে নিবন্ধন করা যায় নি৷";Strings.OfficeOM.L_ElementMissing="কিছু প্যারামিটারের মান হারানোর কারণে আমরা সারণী কক্ষটি বিন্যাস করতে পারিনি। প্যারামিটারগুলি দুবার পরীক্ষা করুন এবং আবার চেষ্টা করুন।";Strings.OfficeOM.L_InvalidSetStartRowColumn="নির্দিষ্ট startRow বা startColumn মানগুলি অকার্যকর।";Strings.OfficeOM.L_InvalidObjectPath='আপনি যেটি করবার চেষ্টা করছেন \'{0}\' অবজেক্ট পাথটি সেটিতে কাজ করছে না৷ যদি আপনি একাধিক "context.sync" কলগুলির মধ্যে এবং একটি ".run" ব্যাচের পর্যায়ক্র্মিক কার্যাদির বাইরে অবজেক্টটি ব্যবহার করছেন তাহলে অনুগ্রহ করে অবজেক্টটির লাইফটাইম পরিচালনা করতে "context.trackedObjects.add()" এবং "context.trackedObjects.remove()" পদ্ধতিটি ব্যবহার করুন৷';Strings.OfficeOM.L_NotSupportedEventType="নির্দিষ্ট ইভেন্ট প্রকার {0} সমর্থিত নয়।";Strings.OfficeOM.L_GetDataIsTooLarge="অনুরোধ করা ডাটা সেটটি অত্যন্ত বৃহত।";Strings.OfficeOM.L_UnsupportedEnumerationMessage="এনুমারেশনটি বর্তমান হোস্ট অ্যাপ্লিকেশনে সমর্থিত নয়।";Strings.OfficeOM.L_PropertyNotLoaded="'{0}' বৈশিষ্ট্যটি উপলভ্য নয়৷ বৈশিষ্ট্যটির মান পড়ার আগে মধ্যস্থ অবজেক্টটির ওপর লোড পদ্ধতিটি কল করুন এবং সহযোগী অনুরোধ বিষয়ে \"context.sync()\" কল করুন৷";Strings.OfficeOM.L_BindingCreationError="বাইন্ডিং তৈরী করার সময়ের ত্রুটি";Strings.OfficeOM.L_ApiNotFoundDetails="পদ্ধতি বা বৈশিষ্ট্য {0} হল {1} প্রয়োজনের সেটের অংশ, যেটি আপনার {2} এর সংস্করণে উপলভ্য নেই৷";Strings.OfficeOM.L_InvalidGetRowColumnCounts="নির্দিষ্ট rowCount বা columnCount মানগুলি অকার্যকর।";Strings.OfficeOM.L_ColIndexOutOfRange="কলাম সূচি মানটি অনুমোদিত সীমার বাইরে। কলামগুলির সংখ্যার চেয়ে কম (0 বা উচ্চতর) এমন একটি মান ব্যবহার করুন।";Strings.OfficeOM.L_InvalidCellsValue="এক বা তার বেশী কক্ষ প্যারামিটারগুলির যে মানগুলি আছে তারা অনুমোদিত নয়। মানগুলি দু-বার পরীক্ষা করুন এবং আবার চেষ্টা করুন।";Strings.OfficeOM.L_UnsupportedUserIdentity="ব্যবহারকারীর পরিচিতি ধরণটি সমর্থিত নয়।";Strings.OfficeOM.L_SaveSettingsError="সেটিং ত্রুটিটি সংরক্ষণ করুন";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="আপনার Office-এর সেশন মেয়াদোত্তীর্ণ হয়েছে বা এটি অবৈধ৷ চালিয়ে যেতে, পৃষ্ঠাটি রিফ্রেশ করুন৷";Strings.OfficeOM.L_DialogParentIsMinimized="ক্রিয়াকলাপটি ব্যর্থ হয়েছে কারন প্যারেন্ট উইন্ডোটি ক্ষুদ্রায়ন করা হয়েছে।";Strings.OfficeOM.L_PropertyDoesNotExist="অবজেক্টটিতে বৈশিষ্ট্য '{0}' -এর অস্তিত্ব নেই।";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="1024 টি আইটেমের মধ্যে XPath নির্বাচন করা সীমাবদ্ধ করেছে";Strings.OfficeOM.L_InvalidCoercion="কোয়ের্শিয়ান প্রকারটি অবৈধ";Strings.OfficeOM.L_CustomXmlNodeNotFound="নির্দিষ্ট নোড খুঁজে পাওয়া যায়নি।";Strings.OfficeOM.L_OutOfRange="ব্যপ্তির বাইরে";Strings.OfficeOM.L_GetDataParametersConflict="নির্দিষ্ট মাপদণ্ডগুলিতে বিবাদ।";Strings.OfficeOM.L_EventHandlerRemovalFailed="ঘটনা পরিচালককে অপসারণ করতে ব্যর্থ হয়েছে।";Strings.OfficeOM.L_DataNotMatchCoercionType="নির্দিষ্ট ডাটা অবজেক্টের প্রকারটি বর্তমান নির্বাচনের সাথে সুসঙ্গত নয়।";Strings.OfficeOM.L_GetSelectionNotSupported="বর্তমান নির্বাচনটি সমর্থিত নয়।";Strings.OfficeOM.L_InvalidArgument="'{0}' আরগুমেন্টটি পাওয়া যাচ্ছে না যা এই পরিস্থিতিতে কাজ করে, অথবা এটি সঠিক বিন্যাসে নেই৷";Strings.OfficeOM.L_DataNotMatchSelection="সরবরাহিত ডাটা অবজেক্টটি বর্তমান নির্বাচনের আকার বা আকৃতিগুলির সাথে সুসঙ্গত নয়।";Strings.OfficeOM.L_InValidOptionalArgument="অবৈধ বিকল্প যুক্তি";Strings.OfficeOM.L_SSOClientErrorMessage="ক্লায়েন্টে একটি অপ্রত্যাশিত ত্রুটি দেখা দিয়েছে।";Strings.OfficeOM.L_RequestTokenUnavailable="এই APIটি কলের ফ্রিকোয়েন্সিকে ধীর করতে দমন করা হয়েছে।";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="অনুমতি দিন";Strings.OfficeOM.L_DataNotMatchBindingSize="সরবরাহিত ডাটা অবজেক্টটি বর্তমান নির���বাচনের আকারের সাথে মেলে না।";Strings.OfficeOM.L_HostError="হোস্ট ত্রুটি";Strings.OfficeOM.L_InvalidBindingError="অবৈধ বাইন্ডিং ত্রুটি";Strings.OfficeOM.L_SSOUnsupportedPlatform="এই প্ল্যাটফর্মে API সমর্থিত নয়৷";Strings.OfficeOM.L_DataWriteError="ডাটা লেখা ত্রুটি";Strings.OfficeOM.L_SSOServerError="প্রমাণীকরণ প্রদানকারীর তরফে ত্রুটি ঘটেছে।";Strings.OfficeOM.L_MemoryLimit="মেমোরী সীমা অতিক্রান্ত হয়েছে";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="নির্বাচিত সামগ্রী সারণী বিন্যাসে থাকা প্রয়োজন। একটি সারণী রূপে ডাটাটি বিন্যাস করুন এবং আবার চেষ্টা করুন।";Strings.OfficeOM.L_OperationCancelledErrorMessage="ব্যবহারকারীর দ্বারা ক্রিয়াকলাপটি বাতিল করা হয়েছে৷";Strings.OfficeOM.L_IndexOutOfRange="সূচী ব্যপ্তির বাইরে।";Strings.OfficeOM.L_DataReadError="ডাটা পড়ার ত্রুটি";Strings.OfficeOM.L_DialogNavigateError="ডায়ালগ ন্যাভিগেশন ত্রুটি";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='প্রতিক্রিয়া পে-লোডের আকার সীমা অতিক্রম করেছে । অনুগ্রহ করে ডকুমেন্টেশন দেখুন: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins"।';Strings.OfficeOM.L_DialogAddressNotTrusted="ম্যানিফেস্টের মধ্যে অ্যাপডোমেনস এলিমেন্টে URLটির ডোমেনটি অর্ন্তভুক্ত নয় এবং উৎসের অবস্থানের সাবডোমেন নয়।";Strings.OfficeOM.L_MissingParameter="হারানো প্যারামিটার";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="প্রমাণীকরণ প্রসঙ্গ পাওয়ার ফাংশনটি অনুপস্থিত রয়েছে";Strings.OfficeOM.L_EventRegistrationError="ঘটনা নিবন্ধীকরণ ত্রুটি";Strings.OfficeOM.L_UnsupportedEnumeration="অসমর্থিত এনুমারেশন";Strings.OfficeOM.L_RunMustReturnPromise='ব্যাচ ফাংশনটি ".run" প্রক্রিয়াটির মধ্যে দিয়ে চালিত হলেও কোন প্রতিশ্রুতি দেয়নি৷ ফাংশনটি থেকে অবশ্যই একটি প্রতিশ্রুতি আসা উচিত, যাতে কোনো স্বয়ংক্রিয়-ট্র্যাকড অবজেক্ট ব্যাচটি সম্পূর্ণ হওয়ার পরেই মুক্ত হতে পারে৷ সাধারণত, "context.sync()" থেকে প্রত্যুত্তর ফিরিয়ে আপনি একটি প্রতিশ্রুতি পাঠিয়ে থাকেন৷';Strings.OfficeOM.L_InvalidNamedItemForBindingType="নির্দিষ্ট বাইন্ডিং প্রকারটি সরবরাহিত নামযুক্ত আইটেমের সাথে সুসঙ্গত নয়।";Strings.OfficeOM.L_PermissionDenied="অনুমতি দিতে অস্বীকার করা হয়েছে";Strings.OfficeOM.L_InvalidTableOptionValue="এক বা তার বেশী টেবিলবিকল্প প্যারামিটারগুলির যে মানগুলি আছে তারা অনুমোদিত নয়। মানগুলি দুবার পরীক্ষা করুন এবং আবার চেষ্টা করুন।";Strings.OfficeOM.L_CustomXmlError="কাস্টম XML ত্রুটি।";Strings.OfficeOM.L_ValueNotLoaded='বিষয়বস্তুর ফলাফলের মানটি এখনও লোড করা হয়নি৷ রৈশিষ্ট মানটি পড়ার আগে, সংযুক্ত অনুরোধ প্রসঙ্গটিতে "context.sync()" এ কল করুন৷';Strings.OfficeOM.L_ConfirmDialogApiTrustsParent='আপনি {0} থেকে সম্ভাব্য সংবেদনশীল তথ্য দিতে ও নিতে চলেছেন । আপনি যদি এইরকম তথ্য দেয়া নেয়া করার জন্য উক্ত ওয়েবসাইটকে বিশ্বাস করেন তাহলে "ওকে" ক্লিক করুন. {1}.';Strings.OfficeOM.L_OKButton="ওকে";Strings.OfficeOM.L_EventHandlerAdditionFailed="ঘটনা পরিচালককে যোগ করতে ব্যর্থ হয়েছে।";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="ফাংশন নামটিতে অবশ্যই একটি পূর্ণ নেমস্পেস এবং একটি পূর্ণ সংক্ষিপ্ত নাম থাকতে হবে৷";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="ফাংশন নামটিতে কেবলমাত্র অক্ষর, সংখ্যা, আন্ডারস্কোর এবং সময়পর্ব থাকতে পারে৷";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="ব্রাউজার সংক্রান্ত বিধিনিষেধ আমাদের ডায়লগ বক্সটি তৈরি করার ক্ষেত্রে বাধা হচ্ছে। ডায়লগ বক্সটির ডোমেন ও অ্যাড-ইন হোস্টটির ডোমেন একই সুরক্ষা অঞ্চলের মধ্যে নেই।";Strings.OfficeOM.L_InvalidParameters="ক্রিয়াকলাপ {0}-এর কয়েকটি অবৈধ প্যারামিটার আছে।";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="শুধুমাত্র পঠনযোগ্য বৈশিষ্ট্য '{0}' সেট করার চেষ্টা করছে।";Strings.OfficeOM.L_InternalErrorDescription="একটি অভ্যন্তরীণ ত্রুটি ঘটেছে।";Strings.OfficeOM.L_ModalDialogOpeng="ক্রিয়াকলাপটি ব্যর্থ হয়েছে কারণ এই অ্যাড-ইনের ইতিমধ্যেই একটি সক্রিয় মোডাল ডায়ালগ রয়েছে৷";Strings.OfficeOM.L_InvalidAPICall="অবৈধ API কল";Strings.OfficeOM.L_UserClickIgnore="ব্যবহারকারী কথোপকথোন বাক্সটিকে উপেক্ষা করার সিদ্ধান্ত নিয়েছে৷";Strings.OfficeOM.L_SliceSizeNotSupported="নির্দিষ্ট স্লাইসের আকারটি সীমাবদ্ধ নেই।";Strings.OfficeOM.L_InvalidOrTimedOutSession="অবৈধ বা সময় শেষ হওয়া সেশন";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="বিজ্ঞপ্তি: বিন্যাসকরণ সেটগুলি সেট করা হয়েছে একটি বিন্যাসকরণ API কলের দ্বারা যা 100 এর নীচে রাখতে পরামর্শ দেওয়া হয়েছে।"
|