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
|
@@ -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_FunctionCallFailed="فشل استدعاء الدالة {0}، رمز الخطأ: {1}.";Strings.OfficeOM.L_SetDataParametersConflict="تعارض المعلمات المحددة.";Strings.OfficeOM.L_RunMustReturnPromise='لم ترجع الوظيفة الدفعية التي تم تمريرها إلى أسلوب ".run" أي تعهد. يجب أن تُرجع الوظيفة أي تعهد، بحيث يمكن إصدار أي عناصر يتم تعقبها تلقائياً عند اكتمال العملية الدفعية. عادةً، يمكن إرجاع التعهد بإرجاع الاستجابة من"context.sync()".';Strings.OfficeOM.L_ConfirmRefreshMessage="للمتابعة، قم بإزالة الوظيفة الإضافية وإضافتها مرة أخرى أو تحديث الصفحة.";Strings.OfficeOM.L_InvalidBinding="الربط غير صالح";Strings.OfficeOM.L_DataNotMatchBindingSize="لا يتطابق عنصر البيانات الذي تم توفيره مع حجم التحديد الحالي.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="محاولة تعيين خاصية '{0}' للقراءة فقط.";Strings.OfficeOM.L_OKButton="موافق";Strings.OfficeOM.L_InvalidDataFormat="تنسيق عنصر البيانات المحدد غير صحيح.";Strings.OfficeOM.L_PropertyDoesNotExist='لا توجد الخاصية "{0}" في العنصر.';Strings.OfficeOM.L_DataWriteReminder="تذكير بكتابة البيانات";Strings.OfficeOM.L_InvalidGetRowColumnCounts="قيم rowCount أو columnCount المحددة غير صحيحة.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="ملاحظة: يُقترح أن يكون عدد الخلايا الموجود في جدول أقل من 20000 خلية.";Strings.OfficeOM.L_UnknownBindingType="نوع الربط غير معتمد.";Strings.OfficeOM.L_UnsupportedUserIdentity="نوع هوية المستخدم غير مدعم.";Strings.OfficeOM.L_ShowWindowDialogNotification="يريد {0} عرض نافذة جديدة.";Strings.OfficeOM.L_NetworkProblem="مشكلة في الشبكة";Strings.OfficeOM.L_CancelButton="إلغاء";Strings.OfficeOM.L_SettingNameNotExist="اسم الإعداد المحدد غير موجود.";Strings.OfficeOM.L_InvalidArgument='الوسيطة "{0}" لا تعمل لهذه الحالة أو مفقودة أو ليست بتنسيق صحيح.';Strings.OfficeOM.L_NotSupportedBindingType="نوع الربط المحدد {0} غير معتمد.";Strings.OfficeOM.L_SpecifiedIdNotExist="إن المعرف المحدد غير موجود.";Strings.OfficeOM.L_ConfirmCancelMessage="عذراً، يتعذر علينا المتابعة.";Strings.OfficeOM.L_InValidOptionalArgument="وسيطة اختيارية غير صالحة";Strings.OfficeOM.L_WorkbookHiddenMessage="فشل طلب JavaScript API لأنه تم إخفاء المصنف. الرجاء قم بإظهار المصنف، ثم أعد المحاولة.";Strings.OfficeOM.L_SSOServerError="حدث خطأ في موفر المصادقة.";Strings.OfficeOM.L_UserAborted="أوقف المستخدم طلب الموافقة قبل اكتماله.";Strings.OfficeOM.L_TooManyOptionalObjects="عناصر اختيارية متعددة في قائمة المعلمات";Strings.OfficeOM.L_CustomXmlError="خطأ في XML المخصص.";Strings.OfficeOM.L_InvalidGrantMessage="لم يتم منح الإذن لهذه الوظيفة الإضافية.";Strings.OfficeOM.L_ConnectionFailureWithStatus="فشل الطلب برمز الحالة {0}.";Strings.OfficeOM.L_InvalidTableOptionValue="تحتوي معلمة واحدة أو أكثر من معلمات tableOptions على قيم غير مسموح بها. تحقق من القيم مرة أخرى ثم أعد المحاولة.";Strings.OfficeOM.L_InvalidGrant="لم يتم منح التفويض المسبق.";Strings.OfficeOM.L_PermissionDenied="تم رفض الإذن";Strings.OfficeOM.L_BindingCreationError="خطأ في إنشاء الربط";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="يجب أن يحتوي اسم الدالة على مساحة اسم غير فارغة واسم قصير غير فارغ.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="لا تدعم هذه الوظيفة الإضافية موافقة المستخدم.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="يجب أن تحتوي الخاصية التي تحمل هذا الاسم في Excel.Script.CustomFunctions الذي يمثل تعريف الدالة على الخاصية 'استدعاء' المسؤولة عن تنفيذ الدالة.";Strings.OfficeOM.L_ImplicitNotLoaded="لم يتم تحميل الوحدة النمطية قبل الحصول على رمز مميز";Strings.OfficeOM.L_InvalidCoercion="نوع الاندماج غير صالح";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="تحدد XPath التحديد إلى 1024 عنصراً.";Strings.OfficeOM.L_EventHandlerAdditionFailed="فشل في إضافة معالج الحدث.";Strings.OfficeOM.L_InvalidFormatValue="تحتوي معلمة واحدة أو أكثر من معلمات التنسيق على قيم غير مسموح بها. تحقق من القيم مرة أخرى ثم أعد المحاولة.";Strings.OfficeOM.L_RequestTokenUnavailable="تم إحباط API هذه لإبطاء تكرار المكالمة.";Strings.OfficeOM.L_InvalidBindingError="خطأ الربط غير صالح";Strings.OfficeOM.L_DataNotMatchBindingType="عنصر البيانات المحدد غير متوافق مع نوع الربط.";Strings.OfficeOM.L_GetDataParametersConflict="تعارض المعلمات المحددة.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent='أنت علي وشك إرسال المعلومات الحساسة المحتملة وتلقيها من {0}. انقر فوق "موافق" فقط إذا كنت تثق في موقع الويب التالي الذي يتلقى المعلومات الحساسة: {1}.';Strings.OfficeOM.L_SSOConnectionLostError="تم فقد الاتصال أثناء عملية تسجيل الدخول.";Strings.OfficeOM.L_DialogRequireHTTPS="بروتوكول HTTP غير مدعوم. استخدم HTTPS بدلاً من ذلك";Strings.OfficeOM.L_BrowserAPINotSupported="لا يعتمد هذا المستعرض API المطلوبة.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="حالت مشكلة في الشبكة دون استرداد الملف.";Strings.OfficeOM.L_DialogInvalidScheme="نظام عنوان URL غير مدعوم. استخدم HTTPS بدلاً من ذلك.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="التحديد الحالي غير متوافق مع نوع الاندماج المحدد.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="الرجاء إجراء تحديد.";Strings.OfficeOM.L_PropertyNotLoaded="الخاصية '{0}' غير متاحة. قبل قراءة قيمة الخاصية، قم باستدعاء أسلوب التحميل على العنصر المضمن وقم باستدعاء \"context.sync()\" في سياق الطلب المقترن.";Strings.OfficeOM.L_InvalidSetColumns="الأعمدة المحددة غير صالحة.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="استدعاء closeAsync على الملف الحالي قبل استرداد آخر.";Strings.OfficeOM.L_IndexOutOfRange="الفهرس خارج النطاق.";Strings.OfficeOM.L_SetDataIsTooLarge="عنصر البيانات المحدد طويل جداً.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="لحظة واحدة ...";Strings.OfficeOM.L_CannotRegisterEvent="تعذر تسجيل معالج الأحداث.";Strings.OfficeOM.L_InvalidBindingOperation="عملية الربط غير صالحة";Strings.OfficeOM.L_UnsupportedEnumeration="قائمة تعداد غير معتمدة";Strings.OfficeOM.L_InvalidNamedItemForBindingType="نوع الربط المحدد غير متوافق مع العنصر المسمى الموفر.";Strings.OfficeOM.L_ActivityLimitReached="تم بلوغ حد النشاط.";Strings.OfficeOM.L_GetDataIsTooLarge="مجموعة البيانات المطلوبة كبيرة جداً.";Strings.OfficeOM.L_InvalidSetRows="الصفوف المحددة غير صالحة.";Strings.OfficeOM.L_CannotNavigateTo="إن العنصر موجود في موقع حيث التنقل غير معتمد.";Strings.OfficeOM.L_HostError="خطأ المضيف";Strings.OfficeOM.L_RowIndexOutOfRange="إن قيمة فهرس الصف خارج النطاق المسموح به. استخدم قيمة (0 أو أعلى) تكون أصغر من عدد الصفوف.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="تكوين المستعرض";Strings.OfficeOM.L_Timeout="انقضت مهلة العملية.";Strings.OfficeOM.L_InvalidDataObject="عنصر البيانات غير صالح";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="ملاحظة: يُقترح أن تكون مجموعات التنسيق المعينة بواسطة استدعاء API الخاص بالتنسيق أقل من 100.";Strings.OfficeOM.L_OutOfRange="خارج النطاق";Strings.OfficeOM.L_DialogNavigateError="خطأ في التنقل في مربع الحوار";Strings.OfficeOM.L_FileTypeNotSupported="نوع الملف المحدد غير معتمد.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="تجاهل";Strings.OfficeOM.L_APINotSupported="API غير معتمدة";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="يجب أن يكون المحتوى المحدد بتنسيق الجدول. قم بتنسيق البيانات كجدول وحاول مرة أخرى.";Strings.OfficeOM.L_OverwriteWorksheetData="فشلت عملية التعيين لأن عنصر البيانات الذي تم توفيره سيكتب فوق البيانات أو سينقلها.";Strings.OfficeOM.L_GetSelectionNotSupported="التحديد الحالي غير معتمد.";Strings.OfficeOM.L_ApiNotFoundDetails="الأسلوب أو الخاصية {0} هي جزء من مجموعة متطلبات {1} وهي غير متوفرة في الإصدار {2}.";Strings.OfficeOM.L_AppNameNotExist="لا يوجد اسم وظيفة إضافية لـ {0}.";Strings.OfficeOM.L_CustomXmlOutOfDateName="البيانات ليست حديثة";Strings.OfficeOM.L_NewWindowCrossZone="إعدادات الأمان في المستعرض تحول دون إنشاء مربع حوار. حاول استخدام مستعرض مختلف، أو {0} وبذلك يكونا '{1}' والمجال المعروض في شريط العنوان في نفس منطقة الأمان.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='تجاوز حجم حمولة الاستجابة الحد المسموح به. الرجاء الرجوع إلى الوثائق: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="عملية الكتابة غير مدعمة لـ Office عند فتح مربع حوار مشروط.";Strings.OfficeOM.L_DialogAddressNotTrusted="لم يتم تضمين مجال عنوان URL في عنصر AppDomains في البيان، وليس مجالًا فرعيًا لموقع المصدر.";Strings.OfficeOM.L_InvalidRequestContext="لا يمكن استخدام العنصر عبر سياقات طلب مختلفة.";Strings.OfficeOM.L_InvalidSelectionForBindingType="لا يمكن إنشاء ربط مع التحديد الحالي ونوع الربط المحدد.";Strings.OfficeOM.L_MultipleNamedItemFound="تم العثور على عدة عناصر بالاسم نفسه.";Strings.OfficeOM.L_DataStale="البيانات غير حديثة";Strings.OfficeOM.L_CustomXmlExceedQuotaName="تم الوصول إلى الحد الأقصى للتحديد";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="البيانات غير محدثة. قم باسترداد العنصر مرة أخرى.";Strings.OfficeOM.L_DialogAlreadyOpened="فشلت العملية لأن هذه الوظيفة الإضافية بها مربع حوار نشط بالفعل.";Strings.OfficeOM.L_SSOClientError="حدث خطأ في طلب المصادقة من Office.";Strings.OfficeOM.L_NavOutOfBound="فشلت العملية لأن الفهرس خارج النطاق.";Strings.OfficeOM.L_OsfControlTypeNotSupported="نوع OsfControl غير معتمد.";Strings.OfficeOM.L_InvalidResourceUrlMessage="تم تحديد Url غير صالح للمورد في البيان.";Strings.OfficeOM.L_MissingParameter="معلمة مفقودة";Strings.OfficeOM.L_EventRegistrationError="خطأ في تسجيل الأحداث";Strings.OfficeOM.L_FormatValueOutOfRange="إن القيمة خارج النطاق المسموح به.";Strings.OfficeOM.L_CoercionTypeNotSupported="نوع الاندماج المحدد غير معتمد.";Strings.OfficeOM.L_UserAbortedMessage="لم يوافق المستخدم على أذونات الوظيفة الإضافية.";Strings.OfficeOM.L_UserNotSignedIn="لم يسجل أي مستخدم دخوله إلى Office.";Strings.OfficeOM.L_InvalidCellsValue="تحتوي معلمة واحدة أو أكثر من معلمات الخلايا على قيم غير مسموح بها. تحقق من القيم مرة أخرى ثم أعد المحاولة.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="انتهت صلاحيه جلسة Office أو انها غير صالحه. للمتابعة ، قم بتحديث الصفحة.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="تم فقد الاتصال أثناء عملية تسجيل الدخول، وربما لم يتم تسجيل دخول المستخدم. وهذا على الأغلب بسبب إعدادات تكوين مستعرض المستخدم، مثل مناطق الأمان.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="يمكن أن يحتوي اسم الدالة على أحرف وأرقام وتسطير سفلي ونقاط.";Strings.OfficeOM.L_InvalidSSOAddinMessage="API للهوية غير مدعمة لهذه الوظيفة الإضافية.";Strings.OfficeOM.L_SaveSettingsError="خطأ في إعدادات الحفظ";Strings.OfficeOM.L_ContinueButton="متابعة";Strings.OfficeOM.L_NonUniformPartialGetNotSupported='لا يمكن استخدام معلمات الإحداثيات مع "جدول" بنوع الاندماج عندما يحتوي الجدول على خلايا مدمجة.';Strings.OfficeOM.L_InvalidObjectPath='لا يعمل مسار العنصر "{0}" لما تحاول القيام به. إذا كنت تستخدم العنصر عبر عدة استدعاءات "context.sync" وخارج التنفيذ المتسلسل لدفعة ".run"، يرجى استخدام الأسلوبين "context.trackedObjects.add()" و"context.trackedObjects.remove()" لإدارة مدة بقاء العنصر.';Strings.OfficeOM.L_DocumentIsInactive="فشلت العملية لأن المستند الذي يحتوي على هذه الوظيفة الإضافية غير نشط.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="قائمة التعداد غير معتمدة في تطبيق المضيف الحالي.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="سماح";Strings.OfficeOM.L_ShuttingDown="فشلت العملية لأن البيانات غير حديثة على الخادم.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="التطبيق {0} غير موجود. لم يتم استدعاء Microsoft.Office.WebExtension.initialize (السبب).";Strings.OfficeOM.L_RedundantCallbackSpecification="لا يمكن تعيين رد الاستدعاء في كل من قائمة الوسائط وفي العنصر الاختياري.";Strings.OfficeOM.L_InternalErrorDescription="حدث خطأ داخلي.";Strings.OfficeOM.L_InternalError="خطأ داخلي";Strings.OfficeOM.L_BindingNotExist="الربط المحدد غير موجود.";Strings.OfficeOM.L_SettingsStaleError="خطأ ف�� الإعدادات القديمة";Strings.OfficeOM.L_UserClickIgnore="اختار المستخدم تجاهل مربع الحوار.";Strings.OfficeOM.L_InvalidNode="العقدة غير صالحة";Strings.OfficeOM.L_ColIndexOutOfRange="إن قيمة فهرس العمود خارج النطاق المسموح به. استخدم قيمة (0 أو أعلى) تكون أصغر من عدد الأعمدة.";Strings.OfficeOM.L_RequestTimeout="استغرقت المكالمة وقتاً طويلاً وبالتالي يتعذر تنفيذها.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="تتطلب الوظيفة الإضافية بالفعل رمزاً مميزاً للوصول.";Strings.OfficeOM.L_SettingsCannotSave="تعذر حفظ الإعدادات.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="العملية غير معتمدة على هذا النوع من الربط.";Strings.OfficeOM.L_InvalidGetStartRowColumn="قيم startRow أو startColumn المحددة غير صحيحة.";Strings.OfficeOM.L_DisplayDialogError="عرض خطأ مربع الحوار";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="دالة الحصول على سياق المصادقة مفقودة";Strings.OfficeOM.L_DocumentReadOnly="العملية المطلوبة غير مسموح بها في وضع المستند الحالي.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel الآن في وضع تحرير الخلية. الرجاء إنهاء وضع التحرير بالضغط على مفتاح الإدخال ENTER أو مفتاح TAB أو تحديد خلية أخرى، ثم إعادة المحاولة.";Strings.OfficeOM.L_InvalidOrTimedOutSession="جلسة غير صالحة أو انتهت مهلتها";Strings.OfficeOM.L_EventHandlerNotExist="لم يتم العثور على معالج الأحداث المحدد لهذا الربط.";Strings.OfficeOM.L_OperationNotSupported="العملية غير معتمدة.";Strings.OfficeOM.L_FormattingReminder="تذكير بالتنسيق";Strings.OfficeOM.L_ReadSettingsError="خطأ في إعدادات القراءة";Strings.OfficeOM.L_InvalidSetStartRowColumn="قيم startRow أو startColumn المحددة غير صحيحة.";Strings.OfficeOM.L_DataNotMatchSelection="عنصر البيانات الذي تم توفيره غير متوافق مع شكل التحديد الحالي أو أبعاده.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="فشلت العملية لأن هذه الوظيفة الإضافية لا تدعم موافقة المستخدم في هذه الفئة";Strings.OfficeOM.L_TooManyOptionalFunction="دالات اختيارية متعددة في قائمة المعلمات";Strings.OfficeOM.L_ConfirmDialogConsent='بالنقر فوق "موافق"، ستسمح لـ {0} بالوصول إلى المحتوى والمعلومات الشخصية. ';Strings.OfficeOM.L_OperationCancelledError="تم إلغاء العملية";Strings.OfficeOM.L_NotSupported="الدالة {0} غير معتمدة.";Strings.OfficeOM.L_NotTrustedWAC="تم تعطيل هذه الوظيفة الاضافيه للمساعدة في الحفاظ علي أمانك. لمتابعه استخدام الوظيفة الاضافيه ، تحقق من ان هذا العنصر تمت استضافته في مجال موثوق به أو قم بفتحه في تطبيق Office لسطح المكتب.";Strings.OfficeOM.L_TooManyArguments="العديد من الوسيطات";Strings.OfficeOM.L_MissingRequiredArguments="فقدان بعض الوسيطات المطلوبة";Strings.OfficeOM.L_ConnectionFailureWithDetails="فشل الطلب برمز الحالة {0} ورمز الخطأ {1} وظهرت رسالة الخطأ التالية: {2}";Strings.OfficeOM.L_MemoryLimit="تجاوز حد الذاكرة";Strings.OfficeOM.L_NotSupportedEventType="نوع الحدث المحدد {0} غير معتمد.";Strings.OfficeOM.L_InvalidParameters="للدالة {0} معلمات غير صالحة.";Strings.OfficeOM.L_InvalidApiCallInContext="استدعاء API غير صالح في السياق الحالي.";Strings.OfficeOM.L_NoHttpsWAC="لا تستخدم جلسة عمل Office هذه اتصالاً أمناً. نوصي باتخاذ احتياطات إضافية.";Strings.OfficeOM.L_ConfirmDialog='تعمل {0} المجال ك Microsoft Office ويمكنها تشغيل وظائف Office الإضافية التي قد يمكنها الوصول إلى بياناتك الشخصية. إذا كنت تثق في المجال الذي سيتم تشغيله ك Office والوصول إلى بياناتك، انقر فوق "موافق" للمتابعة.';Strings.OfficeOM.L_DialogOK="موافق";Strings.OfficeOM.L_SelectionCannotBound="يتعذر الربط بالتحديد الحالي.";Strings.OfficeOM.L_InvalidValue="قيمة غير صالحة";Strings.OfficeOM.L_SliceSizeNotSupported="حجم الشريحة المحدد غير معتمد.";Strings.OfficeOM.L_APICallFailed="فشل استدعاء API";Strings.OfficeOM.L_InvalidColumnsForBinding="الأعمدة المحددة غير صالحة.";Strings.OfficeOM.L_SSOClientErrorMessage="حدث خطأ غير متوقع في العميل.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="فشلت العملية لأن هذه الوظيفة الإضافية تتطلب رمزاً مميزاً للوصول.";Strings.OfficeOM.L_TooManyIncompleteRequests="انتظر حتى اكتمال المكالمة السابقة.";Strings.OfficeOM.L_CannotWriteToSelection="لا يمكن الكتابة إلى التحديد الحالي.";Strings.OfficeOM.L_NotImplemented="لم يتم تنفيذ الدالة {0}.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported='لا يمكن استخدام معلمات الإحداثيات مع "جدول" بنوع الاندماج عندما يحتوي الجدول على خلايا مدمجة.';Strings.OfficeOM.L_DataReadError="خطأ في قراءة البيانات";Strings.OfficeOM.L_BadSelectorString="لم يتم تنسيق السلسة التي تم تمريرها إلى المحدد بشكل سليم أو أنها غير معتمدة.";Strings.OfficeOM.L_SSOUnsupportedPlatform="واجهة برمجة التطبيقات (API) غير مدعمة في هذا النظام الأساسي.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="يلزم وجود خاصية تحمل هذا الاسم تمثل تعريف الدالة في Excel.Script.CustomFunctions.";Strings.OfficeOM.L_EventHandlerRemovalFailed="فشلت عملية إزالة معالج الحدث.";Strings.OfficeOM.L_InvalidFormat="خطأ تنسيق غير صالح";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="نوع هوية المستخدم غير مدعم.";Strings.OfficeOM.L_SSOServerErrorMessage="حدث خطأ غير متوقع في الخادم.";Strings.OfficeOM.L_NoCapability="لا تملك الأذونات الكافية لهذا الإجراء.";Strings.OfficeOM.L_CustomXmlNodeNotFound="لم يتم العثور على العقدة المحددة.";Strings.OfficeOM.L_BindingToMultipleSelection="لا يتم اعتماد التحديدات المتقطعة.";Strings.OfficeOM.L_InvalidResourceUrl="تم إدخال Url غير صالح لمورد التطبيق.";Strings.OfficeOM.L_InvalidReadForBlankRow="إن الصف المحدد فارغ.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="وسيطات الإدخال غير صالحة.";Strings.OfficeOM.L_ValueNotLoaded='لم يتم تحميل قيمة عنصر النتيجة بعد. قم باستدعاء "context.sync()" في سياق الطلب المقترن قبل قراءة خاصية القيمة.';Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='تجاوز حجم حمولة الطلب الحد المسموح به. الرجاء الرجوع إلى الوثائق: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_DialogParentIsMinimized="فشلت العملية بسبب تصغير النافذة الأصل.";Strings.OfficeOM.L_DataWriteError="خطأ في كتابة البيانات";Strings.OfficeOM.L_InvalidAPICall="استدعاء API غير صالح";Strings.OfficeOM.L_OperationCancelledErrorMessage="تم إلغاء العملية بواسطة المستخدم.";Strings.OfficeOM.L_ModalDialogOpeng="فشلت العملية لأن هذه الوظيفة الإضافية تحتوي بالفعل على مربع حوار مشروط نشط.";Strings.OfficeOM.L_InvalidArgumentGeneric="الوسيطة (الوسيطات) التي خضعت للدالة لا تتماشى مع هذا الموقف أو مفقودة أو ليست بالتنسيق الصحيح.";Strings.OfficeOM.L_InitializeNotReady="لم يتم تحميل Office.js بشكل كامل بعد. يرجى إعادة المحاولة لاحقاً للتأكد من إضافة رمز التهيئة في وظيفة Office.initialize.";Strings.OfficeOM.L_DataNotMatchCoercionType="نوع عنصر البيانات المحدد غير متوافق مع التحديد الحالي.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="منعتنا قيود المستعرض من إنشاء مربع الحوار. مجال مربع الحوار ومجال مضيف الوظيفة الإضافية ليسا في نفس منطقة الأمان.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="نوع الاندماج المحدد غير متوافق مع هذا النوع من الربط.";Strings.OfficeOM.L_InvalidGetColumns="الأعمدة المحددة غير صالحة.";Strings.OfficeOM.L_NamedItemNotFound="العنصر المسمى غير موجود.";Strings.OfficeOM.L_UnsupportedDataObject="نوع عنصر البيانات الذي تم توفيره غير معتمد.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="يتعذر تطبيق التغييرات التي تم إجراؤها على خاصية '{0}' من خلال أسلوب \"object.set\".";Strings.OfficeOM.L_SettingsAreStale="تعذر حفظ الإعدادات نظراً لأنها غير حديثة.";Strings.OfficeOM.L_InvalidGetRows="الصفوف المحددة غير صالحة.";Strings.OfficeOM.L_ElementMissing="تعذر علينا تنسيق خلية الجدول لأن بعض قيم المعلمات مفقودة. تحقق من المعلمات مرة أخرى ثم أعد المحاولة.";Strings.OfficeOM.L_CallbackNotAFunction="يجب أن يكون رد الاستدعاء من دالة النوع، وكان من النوع {0}."
|
|
@@ -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,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."
|
xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.8.0.min.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var clienttelemetry_build;!function(e){e.version="2.8.0"}(clienttelemetry_build||(clienttelemetry_build={}));var Microsoft;!function(e){var t;!function(e){!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"}(e.BondDataType||(e.BondDataType={}));e.BondDataType;!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"}(e.ProtocolType||(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._floatZero=[0,0,0,0],e._doubleZero=[0,0,0,0,0,0,0,0],e._floatInifinity=[0,0,128,127],e._floatNegInifinity=[0,0,128,255],e._doubleInifinity=[0,0,0,0,0,0,240,127],e._doubleNegInifinity=[0,0,0,0,0,0,240,255],e}()}(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={}));var 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(){"undefined"==typeof i.status&&(i.status=200),e.complete(i)},i.ontimeout=function(){"undefined"==typeof i.status&&(i.status=500),e.complete(i)},i.onerror=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._isSafari=null,t._isReactNative=null,t._usingXDomainRequest=null,t}();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,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"}(t.RecordType||(t.RecordType={}));t.RecordType;!function(e){e[e.NotSet=0]="NotSet",e[e.O365=1]="O365",e[e.SkypeBI=2]="SkypeBI",e[e.SkypeData=3]="SkypeData"}(t.PIIScrubber||(t.PIIScrubber={}));t.PIIScrubber;!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.PIIKind||(t.PIIKind={}));t.PIIKind;!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.UserIdType||(t.UserIdType={}));var i=(t.UserIdType,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=i;var r=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=r;var o=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=o;var s=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=s}(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){!function(e){e[e.SENT=0]="SENT",e[e.SEND_FAILED=1]="SEND_FAILED"}(t.CallbackEventType||(t.CallbackEventType={}));var n=t.CallbackEventType;!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"}(t.DATARV_ERROR||(t.DATARV_ERROR={}));var i=t.DATARV_ERROR,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=null!=o&&o.status>=200&&o.status<300;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&&(!o||o.status&&400!=o.status))return this._Verbose("retry statusCode: "+(o?o.status:0)),this._eventsCache.AddEvents(i,r),void this._ScheduleTimer(!0);for(var c=0;c<this._listeners.length;++c)this._listeners[c](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._eventTypeRegex=/^[a-zA-Z0-9]([a-zA-Z0-9]|_){2,98}[a-zA-Z0-9]$/,t._tag=0,t}(),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=new r}return e.COLLECTOR_URL_UNITED_STATES="https://us.pipe.aria.microsoft.com/Collector/3.0/",e.COLLECTOR_URL_GERMANY="https://de.pipe.aria.microsoft.com/Collector/3.0/",e.COLLECTOR_URL_AUSTRALIA="https://au.pipe.aria.microsoft.com/Collector/3.0/",e.COLLECTOR_URL_JAPAN="https://jp.pipe.aria.microsoft.com/Collector/3.0/",e.COLLECTOR_URL_EUROPE="https://eu.pipe.aria.microsoft.com/Collector/3.0/",e}();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._propertyNameRegex=/^[a-zA-Z0-9](([a-zA-Z0-9|_|\.]){0,98}[a-zA-Z0-9])?$/,e}();t.EventProperties=s,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"}(t.TelemetryError||(t.TelemetryError={}));var a=t.TelemetryError,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){this._overrides=n;var i=e._getAppLanguage();i&&e.semanticContext.setAppLanguage(i);var r=e._getUserLanguage();r&&e.semanticContext.setUserLanguage(r);var o=(new Date).getTimezoneOffset(),s=o%60,a=(o-s)/60,u="+";a>0&&(u="-"),e.semanticContext.setUserTimeZone(u+(a<10?"0"+a:a.toString())+":"+(s<10?"0"+s:s.toString()));var d=e._getUserAgent();d&&(e.semanticContext.setDeviceBrowserName(e._getBrowserName()),e.semanticContext.setDeviceBrowserVersion(e._getBrowserVersion()),e.semanticContext.setDeviceOsName(e._getOsName()),e.semanticContext.setDeviceOsVersion(e._getOsVersion()));var c=e._getData(e.DEVICE_ID_COOKIE);c&&""!=c||(c=t.datamodels.utils.GetGuid()),e.semanticContext.setDeviceId(c)},e.checkAndUpdateDeviceId=function(t){var n=e._getData(e.DEVICE_ID_COOKIE);n!=t&&(e._saveData(e.DEVICE_ID_COOKIE,t),e._saveData(e.FIRST_LAUNCH_TIME_COOKIE,(new Date).getTime().toString()));var i=e._getData(e.FIRST_LAUNCH_TIME_COOKIE);e.firstLaunchTime=parseInt(i)},e._saveData=function(e,t){if(this._overrides.onSaveData)this._overrides.onSaveData(e,t);else if("undefined"!=typeof document&&document.cookie){var n="expires=Mon, 31 Dec 2029 23:59:59 GMT";document.cookie=e+"="+t+"; "+n}},e._getData=function(e){if(this._overrides.onGetData)return this._overrides.onGetData(e)||"";if("undefined"!=typeof document&&document.cookie)for(var t=e+"=",n=document.cookie.split(";"),i=0;i<n.length;i++){for(var r=n[i],o=0;" "==r.charAt(o);)o++;if(r=r.substring(o),0==r.indexOf(t))return r.substring(t.length,r.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.semanticContext=new d((!0)),e.firstLaunchTime=-1,e.BROWSERS={MSIE:"MSIE",CHROME:"Chrome",FIREFOX:"Firefox",SAFARI:"Safari",EDGE:"Edge",ELECTRON:"Electron",SKYPE_SHELL:"SkypeShell",PHANTOMJS:"PhantomJS",UNKNOWN:"Unknown"},e.OPERATING_SYSTEMS={WINDOWS:"Windows",MACOSX:"Mac OS X",WINDOWS_PHONE:"Windows Phone",WINDOWS_RT:"Windows RT",IOS:"iOS",ANDROID:"Android",LINUX:"Linux",UNKNOWN:"Unknown"},e.VERSION_MAPPINGS={5.1:"XP","6.0":"Vista",6.1:"7",6.2:"8",6.3:"8.1","10.0":"10"},e.REGEX_VERSION="([\\d,.]+)",e.REGEX_VERSION_MAC="([\\d,_,.]+)",e.UNKNOWN_VERSION="Unknown",e.DEVICE_ID_COOKIE="MicrosoftApplicationsTelemetryDeviceId",e.FIRST_LAUNCH_TIME_COOKIE="MicrosoftApplicationsTelemetryFirstLaunchTime",e}();!function(e){e[e.STARTED=0]="STARTED",e[e.ENDED=1]="ENDED"}(t.SessionState||(t.SessionState={}));var l=t.SessionState,_=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=new r;if(i&&(i.collectorUrl&&(e._tmConfig.collectorUrl=i.collectorUrl),i.browserOverrides)){if(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}n.Initialize(e._tmConfig),n.Start(),c.initialize(o),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,e._defaultToken=null,e._tmConfig=new t._sender.TelemetryConfig,e._logger=null,e._initIdMap={},e._sequenceMap={},e._configuration=null,e._contextProperties=new s,e._semanticContext=new d((!0)),e}();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(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);
|