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,482 @@
|
|
|
1
|
+
html, body {
|
|
2
|
+
height: 100%;
|
|
3
|
+
margin: 0px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
div#container {
|
|
7
|
+
height: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.moe-infobar-out {
|
|
11
|
+
padding: 8px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.moe-infobar-body {
|
|
15
|
+
background-color:#FCF7B6;
|
|
16
|
+
border:1px solid #D9D98B;
|
|
17
|
+
position:relative;
|
|
18
|
+
max-height:250px;
|
|
19
|
+
overflow:hidden;
|
|
20
|
+
white-space: normal;
|
|
21
|
+
font-family: "Segoe UI","Segoe UI Web",Arial,Verdana,sans-serif;
|
|
22
|
+
line-height: 1;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.moe-infobar-body:hover {
|
|
26
|
+
background-color:#FEF294;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.moe-hovered {
|
|
30
|
+
background-color:#FEF294;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.moe-infobar-infotable {
|
|
34
|
+
width:100%;
|
|
35
|
+
height:100%;
|
|
36
|
+
max-height:110px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.moe-infobar-top-left-cell {
|
|
40
|
+
width:30px;
|
|
41
|
+
min-width:30px;
|
|
42
|
+
max-width:30px;
|
|
43
|
+
vertical-align:top;
|
|
44
|
+
padding:1px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.moe-infobar-message-cell {
|
|
48
|
+
padding:7px 7px 3px 0px;
|
|
49
|
+
vertical-align:top;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.moe-infobar-top-right-cell {
|
|
53
|
+
width:20px;
|
|
54
|
+
min-width:20px;
|
|
55
|
+
max-width:20px;
|
|
56
|
+
vertical-align:top;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.moe-infobar-button-cell {
|
|
60
|
+
padding:0px 10px 6px 0px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.moe-status-warning-icon{
|
|
64
|
+
position:absolute;
|
|
65
|
+
clip:rect(0px 42px 41px 0px);
|
|
66
|
+
top:0px;
|
|
67
|
+
left:0px;
|
|
68
|
+
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.moe-status-warning-icon_ie{
|
|
72
|
+
position:absolute;
|
|
73
|
+
clip:rect(0px 42px 41px 0px);
|
|
74
|
+
top:0px;
|
|
75
|
+
left:0px;
|
|
76
|
+
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.moe-status-warning-icon:hover {
|
|
80
|
+
cursor:default;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.moe-status-error-icon{
|
|
84
|
+
position:absolute;
|
|
85
|
+
clip:rect(42px 42px 83px 0px);
|
|
86
|
+
top:-42px;
|
|
87
|
+
left:0px;
|
|
88
|
+
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.moe-status-error-icon_ie{
|
|
92
|
+
position:absolute;
|
|
93
|
+
clip:rect(42px 42px 83px 0px);
|
|
94
|
+
top:-42px;
|
|
95
|
+
left:0px;
|
|
96
|
+
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.moe-status-error-icon:hover {
|
|
100
|
+
cursor:default;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.moe-status-info-icon{
|
|
104
|
+
position:absolute;
|
|
105
|
+
clip:rect(84px 42px 125px 0px);
|
|
106
|
+
top:-84px;
|
|
107
|
+
left:0px;
|
|
108
|
+
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.moe-status-info-icon_ie{
|
|
112
|
+
position:absolute;
|
|
113
|
+
clip:rect(84px 42px 125px 0px);
|
|
114
|
+
top:-84px;
|
|
115
|
+
left:0px;
|
|
116
|
+
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.moe-status-info-icon:hover{
|
|
120
|
+
cursor:default;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.moe-status-secinfo-icon{
|
|
124
|
+
position:absolute;
|
|
125
|
+
clip:rect(210px 42px 251px 0px);
|
|
126
|
+
top:-210px;
|
|
127
|
+
left:0px;
|
|
128
|
+
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.moe-status-secinfo-icon_ie{
|
|
132
|
+
position:absolute;
|
|
133
|
+
clip:rect(210px 42px 251px 0px);
|
|
134
|
+
top:-210px;
|
|
135
|
+
left:0px;
|
|
136
|
+
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.moe-status-secinfo-icon:hover{
|
|
140
|
+
cursor:default;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.moe-infobar-warning {
|
|
144
|
+
position:absolute;
|
|
145
|
+
clip:rect(0px 75px 23px 50px);
|
|
146
|
+
top:0px;
|
|
147
|
+
left:-50px;
|
|
148
|
+
margin:7px 2px 1px 2px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.moe-infobar-error {
|
|
152
|
+
position:absolute;
|
|
153
|
+
clip:rect(26px 75px 47px 50px);
|
|
154
|
+
top:-26px;
|
|
155
|
+
left:-50px;
|
|
156
|
+
margin:7px 2px 1px 2px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.moe-infobar-info {
|
|
160
|
+
position:absolute;
|
|
161
|
+
clip:rect(52px 75px 75px 50px);
|
|
162
|
+
top:-52px;
|
|
163
|
+
left:-50px;
|
|
164
|
+
margin:7px 2px 1px 2px;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.moe-infobar-secinfo{
|
|
168
|
+
position:absolute;
|
|
169
|
+
clip:rect(175px 75px 199px 50px);
|
|
170
|
+
top:-178px;
|
|
171
|
+
left:-50px;
|
|
172
|
+
margin:7px 2px 1px 2px;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.moe-infobar-dismiss {
|
|
176
|
+
position:absolute;
|
|
177
|
+
clip:rect(83px 71px 98px 55px);
|
|
178
|
+
top:-83px;
|
|
179
|
+
right:0px;
|
|
180
|
+
margin:2px 1px 1px 2px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.moe-infobar-dismiss:hover {
|
|
184
|
+
cursor:default;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.moe-infobar-dismiss:focus {
|
|
188
|
+
-webkit-filter: brightness(50%);
|
|
189
|
+
filter: brightness(50%);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.moe-infobar-message-div {
|
|
193
|
+
overflow:hidden;
|
|
194
|
+
height:100%;
|
|
195
|
+
width:100%;
|
|
196
|
+
max-height:68px;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.moe-infobar-title {
|
|
200
|
+
font-style:Normal;
|
|
201
|
+
font-size:8pt;
|
|
202
|
+
color:#444444;
|
|
203
|
+
font-weight:bold;
|
|
204
|
+
word-wrap:break-word;
|
|
205
|
+
overflow:hidden;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.moe-infobar-message {
|
|
209
|
+
font-style:normal;
|
|
210
|
+
font-size:8pt;
|
|
211
|
+
color:#444444;
|
|
212
|
+
margin:7px 10px 0px 6px;
|
|
213
|
+
text-overflow:ellipsis;
|
|
214
|
+
overflow:hidden;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.moe-infobar-message-with-url {
|
|
218
|
+
color:#0000FF;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
button.moe-infobar-button {
|
|
222
|
+
text-transform:uppercase;
|
|
223
|
+
font-size:8pt;
|
|
224
|
+
background-color:#FFF19D;
|
|
225
|
+
border:1px solid #B4A555;
|
|
226
|
+
color:#444444;
|
|
227
|
+
text-align:center;
|
|
228
|
+
vertical-align:middle;
|
|
229
|
+
margin:3px 3px 3px 0px;
|
|
230
|
+
padding:3px 15px;
|
|
231
|
+
display:inline;
|
|
232
|
+
overflow:visible;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
button.moe-infobar-button:hover {
|
|
236
|
+
background-color:#FEF8D8;
|
|
237
|
+
border-color:#B4A555;
|
|
238
|
+
cursor:default;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
button.moe-infobar-button:active {
|
|
242
|
+
background-color:#F3E282;
|
|
243
|
+
border-color:#B4A555;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.moe-background {
|
|
247
|
+
height: 100%;
|
|
248
|
+
width:100%;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.moe-trust-prompt {
|
|
252
|
+
background-color: #ffffff;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.moe-trust-prompt-collapse {
|
|
256
|
+
position: absolute;
|
|
257
|
+
top: 15px;
|
|
258
|
+
right: 15px;
|
|
259
|
+
}
|
|
260
|
+
.moe-trust-prompt-collapse:hover {
|
|
261
|
+
cursor: pointer;
|
|
262
|
+
}
|
|
263
|
+
.collapsed .moe-trust-prompt-collapse {
|
|
264
|
+
transform: rotate(180deg);
|
|
265
|
+
}
|
|
266
|
+
.taskpane-add-in .moe-trust-prompt-collapse {
|
|
267
|
+
display: none;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.moe-trust-prompt-button {
|
|
271
|
+
box-sizing: border-box;
|
|
272
|
+
margin: 0;
|
|
273
|
+
padding: 0;
|
|
274
|
+
box-shadow: none;
|
|
275
|
+
color: #333;
|
|
276
|
+
font-size: 14px;
|
|
277
|
+
font-weight: 400;
|
|
278
|
+
background-color: #d2d2d2;
|
|
279
|
+
border: 1px solid #d2d2d2;
|
|
280
|
+
cursor: pointer;
|
|
281
|
+
display: inline-block;
|
|
282
|
+
height: 32px;
|
|
283
|
+
min-width: 80px;
|
|
284
|
+
padding: 4px 20px 6px;
|
|
285
|
+
border-radius: 2px;
|
|
286
|
+
}
|
|
287
|
+
.moe-trust-prompt-button:hover {
|
|
288
|
+
background-color: #e6e6e6;
|
|
289
|
+
border-color: #e6e6e6;
|
|
290
|
+
outline: none;
|
|
291
|
+
}
|
|
292
|
+
.moe-trust-prompt-button:active {
|
|
293
|
+
background-color: #969696;
|
|
294
|
+
border-color: #969696;
|
|
295
|
+
}
|
|
296
|
+
.WAC_Word .moe-trust-prompt-button-primary {
|
|
297
|
+
color: #ffffff;
|
|
298
|
+
background-color: #2b579a;
|
|
299
|
+
border-color: #2b579a;
|
|
300
|
+
}
|
|
301
|
+
.WAC_Word .moe-trust-prompt-button-primary:hover {
|
|
302
|
+
background-color: #4a78b0;
|
|
303
|
+
border-color: #4a78b0;
|
|
304
|
+
}
|
|
305
|
+
.WAC_Word .moe-trust-prompt-button-primary:active {
|
|
306
|
+
background-color: #124078;
|
|
307
|
+
border-color: #124078;
|
|
308
|
+
}
|
|
309
|
+
.WAC_Powerpoint .moe-trust-prompt-button-primary {
|
|
310
|
+
color: #ffffff;
|
|
311
|
+
background-color: #b7472a;
|
|
312
|
+
border-color: #b7472a;
|
|
313
|
+
}
|
|
314
|
+
.WAC_Powerpoint .moe-trust-prompt-button-primary:hover {
|
|
315
|
+
background-color: #e86e58;
|
|
316
|
+
border-color: #e86e58;
|
|
317
|
+
}
|
|
318
|
+
.WAC_Powerpoint .moe-trust-prompt-button-primary:active {
|
|
319
|
+
background-color: #a92b1a;
|
|
320
|
+
border-color: #a92b1a;
|
|
321
|
+
}
|
|
322
|
+
.WAC_Excel .moe-trust-prompt-button-primary {
|
|
323
|
+
color: #ffffff;
|
|
324
|
+
background-color: #217346;
|
|
325
|
+
border-color: #217346;
|
|
326
|
+
}
|
|
327
|
+
.WAC_Excel .moe-trust-prompt-button-primary:hover {
|
|
328
|
+
background-color: #4e9668;
|
|
329
|
+
border-color: #4e9668;
|
|
330
|
+
}
|
|
331
|
+
.WAC_Excel .moe-trust-prompt-button-primary:active {
|
|
332
|
+
background-color: #0e5c2f;
|
|
333
|
+
border-color: #0e5c2f;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.moe-trust-prompt-table {
|
|
337
|
+
width: 100%;
|
|
338
|
+
}
|
|
339
|
+
.moe-trust-prompt-row {}
|
|
340
|
+
.moe-trust-prompt-cell {
|
|
341
|
+
padding: 0px 15px;
|
|
342
|
+
margin: 0px;
|
|
343
|
+
}
|
|
344
|
+
.moe-trust-prompt-cell p {
|
|
345
|
+
margin: 0;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.moe-trust-prompt-header .moe-trust-prompt-cell {
|
|
349
|
+
max-width: 0px;
|
|
350
|
+
}
|
|
351
|
+
.moe-trust-prompt-header-title {
|
|
352
|
+
white-space: nowrap;
|
|
353
|
+
overflow: hidden;
|
|
354
|
+
text-overflow: ellipsis;
|
|
355
|
+
padding-right: 0px;
|
|
356
|
+
font-size: 16pt;
|
|
357
|
+
}
|
|
358
|
+
.WAC_Word .moe-trust-prompt-header-title {
|
|
359
|
+
color: #2b579a;
|
|
360
|
+
}
|
|
361
|
+
.WAC_Powerpoint .moe-trust-prompt-header-title {
|
|
362
|
+
color: #b7472a;
|
|
363
|
+
}
|
|
364
|
+
.WAC_Excel .moe-trust-prompt-header-title {
|
|
365
|
+
color: #217346;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.moe-trust-prompt-preview .moe-trust-prompt-cell {
|
|
369
|
+
padding-top: 5px;
|
|
370
|
+
max-width: 0px;
|
|
371
|
+
}
|
|
372
|
+
.moe-trust-prompt-preview-img {
|
|
373
|
+
width: 48px;
|
|
374
|
+
height:48px;
|
|
375
|
+
float: left;
|
|
376
|
+
background-color: #f4f4f4;
|
|
377
|
+
border: 1px solid #f4f4f4;
|
|
378
|
+
}
|
|
379
|
+
.moe-trust-prompt-preview-title {
|
|
380
|
+
padding-left: 15px;
|
|
381
|
+
font-size: 14px;
|
|
382
|
+
white-space: nowrap;
|
|
383
|
+
overflow: hidden;
|
|
384
|
+
text-overflow: ellipsis;
|
|
385
|
+
}
|
|
386
|
+
.moe-trust-prompt-preview-sub {
|
|
387
|
+
padding-left: 15px;
|
|
388
|
+
margin-top: 3px;
|
|
389
|
+
font-size: 12px;
|
|
390
|
+
white-space: nowrap;
|
|
391
|
+
overflow: hidden;
|
|
392
|
+
text-overflow: ellipsis;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.moe-trust-prompt-description .moe-trust-prompt-cell {
|
|
396
|
+
padding-top: 15px;
|
|
397
|
+
}
|
|
398
|
+
.WAC_Powerpoint .moe-trust-prompt-description .moe-trust-prompt-cell,
|
|
399
|
+
.WAC_Excel .moe-trust-prompt-description .moe-trust-prompt-cell {
|
|
400
|
+
padding-top: 10px;
|
|
401
|
+
}
|
|
402
|
+
.moe-trust-prompt-description-text {
|
|
403
|
+
font-size: 12px;
|
|
404
|
+
white-space: normal;
|
|
405
|
+
max-width: 450px;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.moe-trust-prompt-footer .moe-trust-prompt-cell {
|
|
409
|
+
padding-top: 15px;
|
|
410
|
+
}
|
|
411
|
+
.moe-trust-prompt-buttons-action { }
|
|
412
|
+
.moe-trust-prompt-buttons-url {
|
|
413
|
+
margin-left: 15px;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.taskpane-add-in thead {
|
|
417
|
+
display: none;
|
|
418
|
+
}
|
|
419
|
+
.content-add-in .moe-trust-prompt-preview {
|
|
420
|
+
display: none;
|
|
421
|
+
}
|
|
422
|
+
.content-add-in .moe-trust-prompt-header .moe-trust-prompt-cell {
|
|
423
|
+
padding-top: 15px;
|
|
424
|
+
}
|
|
425
|
+
.content-add-in .moe-trust-prompt-footer .moe-trust-prompt-cell {
|
|
426
|
+
padding-bottom: 15px;
|
|
427
|
+
}
|
|
428
|
+
.content-add-in .moe-trust-prompt-table thead,
|
|
429
|
+
.moe-trust-prompt-table tbody {
|
|
430
|
+
transition: visibility 0.1s ease-out,
|
|
431
|
+
opacity 0.3s ease-out;
|
|
432
|
+
}
|
|
433
|
+
.content-add-in.collapsed .moe-trust-prompt-table thead,
|
|
434
|
+
.collapsed .moe-trust-prompt-table tbody {
|
|
435
|
+
visibility: collapse;
|
|
436
|
+
opacity: 0;
|
|
437
|
+
transition: visibility 0.3s ease-in,
|
|
438
|
+
opacity 0.1s ease-in;
|
|
439
|
+
}
|
|
440
|
+
.content-add-in .moe-trust-prompt-table thead td,
|
|
441
|
+
.moe-trust-prompt-table tbody td {
|
|
442
|
+
transition: margin 0.1s ease-out,
|
|
443
|
+
padding 0.1s ease-out;
|
|
444
|
+
}
|
|
445
|
+
.content-add-in.collapsed .moe-trust-prompt-table thead td,
|
|
446
|
+
.collapsed .moe-trust-prompt-table tbody td {
|
|
447
|
+
margin: 0;
|
|
448
|
+
padding: 0;
|
|
449
|
+
transition: margin 0.3s ease-in,
|
|
450
|
+
padding 0.3s ease-in;
|
|
451
|
+
}
|
|
452
|
+
.content-add-in .moe-trust-prompt-table thead td > *,
|
|
453
|
+
.moe-trust-prompt-table tbody td > * {
|
|
454
|
+
transition: height 0.1s ease-out,
|
|
455
|
+
opacity 0.3s ease-out;
|
|
456
|
+
}
|
|
457
|
+
.content-add-in.collapsed .moe-trust-prompt-table thead td > *,
|
|
458
|
+
.collapsed .moe-trust-prompt-table tbody td > * {
|
|
459
|
+
height: 0;
|
|
460
|
+
opacity: 0;
|
|
461
|
+
transition: height 0.3s ease-in,
|
|
462
|
+
opacity 0.1s ease-in;
|
|
463
|
+
}
|
|
464
|
+
.content-add-in .moe-trust-prompt-buttons-url {
|
|
465
|
+
transition: visibility 0.1s ease-out,
|
|
466
|
+
height 0.1s ease-out,
|
|
467
|
+
opacity 0.3s ease-out,
|
|
468
|
+
margin 0.1s ease-out,
|
|
469
|
+
padding 0.1s ease-out;
|
|
470
|
+
}
|
|
471
|
+
.content-add-in.collapsed .moe-trust-prompt-buttons-url {
|
|
472
|
+
visibility: collapse;
|
|
473
|
+
height: 0;
|
|
474
|
+
opacity: 0;
|
|
475
|
+
margin: 0;
|
|
476
|
+
padding: 0;
|
|
477
|
+
transition: visibility 0.3s ease-in,
|
|
478
|
+
height 0.3s ease-in,
|
|
479
|
+
opacity 0.1s ease-in,
|
|
480
|
+
margin 0.3s ease-in,
|
|
481
|
+
padding 0.3s ease-in;
|
|
482
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ďťżType.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_EventHandlerAdditionFailed="á¨ááťá á áľá°áłáłáŞáá ááá¨á á ááťááá˘";Strings.OfficeOM.L_ConnectionFailureWithDetails="á {0} á¨á áá áŽáľáŁ á¨áľá
á°áľ áŽáľ {1} áĽá á¨áá¨á°ááá á¨áľá
á°áľ áááááľáĽ {2} áĽáŤáá á áá°áłáŤáá˘";Strings.OfficeOM.L_OverwriteWorksheetData="á¨á°á°á á á¨ááἠááá áááĽá áľááá°áŤ ááá áľááááá á¨á°áááá áááá á áá°áłáŤáá˘";Strings.OfficeOM.L_UserNotSignedIn="ááá áá° Office á ááááľ á¨áᣠá°á áá á¨ááá˘";Strings.OfficeOM.L_RedundantCallbackSpecification="ááá°á
á°áá á áááá áááá áĽá á áŁááŤááŤá ááá áá ááá áŁáá˝ááá˘";Strings.OfficeOM.L_InvalidRequestContext="ááአá ááá á¨á°ááŤáŠ á¨áĽáŤá á ááŁá ááá áĽá
á áá ááá á áá˝ááá˘";Strings.OfficeOM.L_DataReadError="ááἠá¨ááá ἠáľá
á°áľ";Strings.OfficeOM.L_EventRegistrationError="ááťá á¨ááááἠáľá
á°áľ";Strings.OfficeOM.L_GetDataParametersConflict="á°ááá°á á¨á°ááááľ ááááŤáá˝ áááŤáá˘";Strings.OfficeOM.L_InvalidBindingOperation="á¨ááá°áŤ ááŁáá áŚááŹá˝á";Strings.OfficeOM.L_InvalidFormat="á¨ááá°áŤ á¨á
áá˝ áľá
á°áľ";Strings.OfficeOM.L_SSOServerErrorMessage="á á áááአáá áŤáá°á á á ááľá°áľ á°á¨";Strings.OfficeOM.L_AppNameNotExist="ᨠ{0} á°á¨á᪠áľá á¨ááá˘";Strings.OfficeOM.L_APINotSupported="API áŁáá°ááá";Strings.OfficeOM.L_ConfirmRefreshMessage="áááá áᣠááľáĽ-á°á¨ááŞáá áŤáľáááąáľ áĽá áĽáá°áá áŤáááľáŁ ááá áášá áŤáľáąáľá˘";Strings.OfficeOM.L_NotImplemented="á°ááŁáŠ {0} á áá°áá¸ááá˘";Strings.OfficeOM.L_SSOUnsupportedPlatform="API á áá
ááľá¨á ááľáĽ á áá°áááá˘";Strings.OfficeOM.L_InvalidGetRowColumnCounts="á°ááá°á á¨á°ááááľ á¨áá°áł áá ፠ááá á¨áááľ áá ፠áĽá´áśá˝ áľááá áŤááá áá¸áá˘";Strings.OfficeOM.L_InvalidArgument="á¨áá᪠áĽá´áľ '{0}' ááá
áááł á áá°áŤáᣠá ááˇá ááá áľáááááá á
áá¸áľ á áá°ááá˘";Strings.OfficeOM.L_SSOServerError="á áááľ á á°áŁáĽ á á
áŤá˘á ááľáĽ áľá
á°áľ á°á¨áľáˇáá˘";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="á áłá˝áá áŤáá
áŠ";Strings.OfficeOM.L_InvalidSelectionForBindingType="á á áá áá፠áĽá á á°áá°áá á¨ááŁáá ááááľ ááŁáá ááá á á áá˝ááá˘";Strings.OfficeOM.L_CustomFunctionImplementationMissing="á Excel.CustomFunctions áá á¨á°ááŁáŠá áá˝ á¨áááá áá
áľá áŤáá áŁá
áŞá á°ááŁáŠá á áĽáŤ áá á¨ááŤáá á¨'call' áŁá
áŞá ááŤá á áá áľá˘";Strings.OfficeOM.L_InvalidColumnsForBinding="á°ááá°á á¨á°ááááľ áááśá˝ áľááá áŤááá áá¸áá˘";Strings.OfficeOM.L_InvalidNode="á¨ááá°áŤ ááľ";Strings.OfficeOM.L_InvalidObjectPath='á¨ááá ááááľ \'{0}\' áĽááľá áááľáŤáľ á ááá¨á áá áŤááľá á áá°áŤáᢠááአá áá áĽá "context.sync" áĽáŞáá˝ áĽá¨á°á ááá áľ áĽá ᨠ".run" áŁá˝ á°á¨áłáłá ááá¸á áá á¨ááᣠáĽáŁáá á¨áááŠá ááľá áááľá°áłá°á ᨠ"context.trackedObjects.add()" áĽá "context.trackedObjects.remove()" áľááľ áá ááá˘';Strings.OfficeOM.L_SaveSettingsError="á¨áááá á ááśá˝ áľá
á°áľ áŤáľáááĄ";Strings.OfficeOM.L_PermissionDenied="áááľ á°á¨áááá";Strings.OfficeOM.L_InvalidDataObject="á¨ááá°áŤ á¨ááἠá ááĽáľáľ";Strings.OfficeOM.L_SettingsStaleError="á¨áááá á ááśá˝ áľá´á áľá
á°áľ";Strings.OfficeOM.L_DialogNavigateError="á¨áááá ááľáť áľá
á°áľ";Strings.OfficeOM.L_MissingRequiredArguments="á¨á°áá°á á áľááá ááááŽá˝ áááľááłá";Strings.OfficeOM.L_InvalidDataFormat="á°áááś á¨á°ááá¸á ááἠá
áá˝ á¨ááá°áŤ ááá˘";Strings.OfficeOM.L_CancelButton="á°áá";Strings.OfficeOM.L_InvalidParameters="á°ááŁáŠ {0} á¨ááá°áŠ ááŤááľáŽá˝ á ááľá˘";Strings.OfficeOM.L_Timeout="áááá ááá á áááá˘";Strings.OfficeOM.L_NotSupported="á°ááŁáŠ {0} á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_NoCapability="áá
á á°ááŁá ááá¨ááá á á áááľ á¨áááľáá˘";Strings.OfficeOM.L_NoHttpsWAC="áá
ᨠOffice ááá áá á°á
áááą á¨á°á á á áááááľá áĽá¨á°á áá á áá°ááᢠá°á¨á᪠á
áľá áĽááá áĽáá˛ááľáą áĽááááŤááá˘";Strings.OfficeOM.L_OperationCancelledErrorMessage="áááá á á°á ááá á°á°áááá˘";Strings.OfficeOM.L_InvalidGrantMessage="ááá
ááľáĽ á áá ááľáľá á ááˇáá˘";Strings.OfficeOM.L_NetworkProblem="á ááłá¨áá¨áĽ á˝áá";Strings.OfficeOM.L_InvalidApiCallInContext="á á áá á¨áľááá á ááľ áá ááá°áŤ ᨠAPI áĽáŞá˘";Strings.OfficeOM.L_ValueNotLoaded='á¨áĽá´áą á¨áá¤áľ ááá áá á áá°áŤááᢠá¨áĽá´áľ áŁá
᪠á¨ááá áĽá á ááľáŁ á á°áŤáŤáá á¨áĽáŤá áááľ áá "context.sync()" áá°ááá˘';Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath áááŤá áá° 1024 ááĽá áááŽá˝ áááľáŁáá˘";Strings.OfficeOM.L_ShuttingDown="ááᥠá á áá á°á áľ á°áá¨áŠ áá áľááá áááá ááłáŤ á ááťááá˘";Strings.OfficeOM.L_InternalError="ááľáŁá áľá
á°áľ";Strings.OfficeOM.L_NewWindowCrossZone="á á áłá˝á ááľáĽ áŤááľá á¨á°á
áááľ á¨áááá á ááśá˝ á¨áááá áłáĽáá á¨ááá á á¨ááááááᢠá¨á°áᨠá áłá˝ ááá {0} áááአáľááá
'{1}' áĽá á á áľáŤáť áľáá áá á¨áłá¨áá á፠á á°ááłáłá á¨á°á
áááľ áá ááľáĽ áá¸áá˘";Strings.OfficeOM.L_CannotWriteToSelection="á¨á áá áá፠áá ááťá á áá˝ááá˘";Strings.OfficeOM.L_OutOfRange="á¨á ááľ ááŞ";Strings.OfficeOM.L_DataNotMatchBindingType="á°áááś á°áááá á¨ááἠááá á¨áá
á¨ááŁáá ááááą áá á¨ááŁáŁá á áá°ááá˘";Strings.OfficeOM.L_UnsupportedEnumeration="á¨ááá°áá ááĽá á á°áŁáĽ";Strings.OfficeOM.L_DialogParentIsMinimized="áááá á áá°áłáŤá ááááŤáąá á¨ááá
ááľáŽáľ áľáááá°á˘";Strings.OfficeOM.L_SelectionNotSupportCoercionType="á áá á¨á°áá¨á á á°áááś á¨á°ááá¸á á¨á áľááłá
á áááľ á¨ááŁáŁá á áá°ááá˘";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="á°áááś á¨á°áááá á áľááłá
ááááľ á¨áá
á¨ááŁáá ááááą áá á¨ááŁáŁá á áá°ááá˘";Strings.OfficeOM.L_BindingNotExist="á°áááś á¨á°áááá ááŁáá á¨ááá˘";Strings.OfficeOM.L_NotSupportedEventType="á°áááś á¨á°áááá á¨ááá áŤáĽ ááááľ {0} á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_InvalidOrTimedOutSession="áá áŤáážá ááá áá áŤááá áľ ááá áá";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="á°ááŁá˘-áĽáť áŁá
᪠'{0}' ááááááľ á áá¨áŤ ááá˘";Strings.OfficeOM.L_FunctionCallFailed="á¨á°ááŁá {0} áĽáŞ á áá°áłáŤáᣠáľá
á°áľ áŽáľ: {1}á˘";Strings.OfficeOM.L_CannotNavigateTo="ááአáłá°áł á ááá°ááá áľ áŚáł áá á°áᎠá¨ááááá˘";Strings.OfficeOM.L_ConfirmDialog="{0} á¨ááá á፠áĽáá° Microsoft Office áĽá¨á°áŤ áá áĽá ᨠOffice add-ins á ááľáŹáľ áá˝áá áá
á á¨áĽááľáá á¨áá ááἠááľá¨áľ áá˝á ááááᢠááŤá áĽáá° Office áĽáá˛á°áŤ áĽá áááĽáá áááľá¨áľ áŤáá áááá á áĽáşá á á
áŤáľááá˘";Strings.OfficeOM.L_TooManyArguments="á áŁá áĽá ááááŽá˝";Strings.OfficeOM.L_PropertyDoesNotExist="áŁá
᪠'{0}' á ááአáá á ááááá˘";Strings.OfficeOM.L_FormattingReminder="á
áá˝ á¨ááľáŤá á áľáłáá˝";Strings.OfficeOM.L_IndexOutOfRange="á˘áá´ááľ á¨á ááľ ááŞ";Strings.OfficeOM.L_InvalidCellsValue="á¨á
ááśáš ááŤááľáŽá˝ á ááą ááá á¨á á áá á¨áááááą áááá˝ ááááᢠáááášá áĽáá°áá áááľášáá¸á áĽá áĽáá°áá ááááŠá˘";Strings.OfficeOM.L_NotTrustedWAC="á°á
áááľáá á áĽá áááá¨áľ áĽáá˛á¨áł áá
ááľáĽ-á°á¨á᪠á°á°ááááᢠááľáĽ-á°á¨ááŞáá áá áá áááá áᣠáá
ááĽá á¨á°áľá°ááá°á á¨ááłáá á፠ááľáĽ áááá áŤá¨ááᥠááá ᨠOffice á´áľááśá áá°áá áŞáŤ ááľáĽ ááááąáľá˘";Strings.OfficeOM.L_CustomXmlNodeNotFound="á°áááś á¨á°áááá ááľ ááá á ááťááá˘";Strings.OfficeOM.L_CoercionTypeNotSupported="á°áááś á¨á°áááá á áľááłá
ááááľ á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_InvalidGrant="á
áľá፠áááľ ááľá áľ á ááˇáá˘";Strings.OfficeOM.L_CellDataAmountBeyondLimits="ááľáłááť: á°áá á¨áĄ áá á¨áááŠáľ á¨á
ááśá˝ ááĽá ᨠ20,000á
ááśá˝ á áłá˝ áĽáá˛áá ááá¨áŤáá˘";Strings.OfficeOM.L_TooManyOptionalObjects="áĽá á ááŤááŤá á°ááŁáŽá˝ á ááŤááľá áááá áá";Strings.OfficeOM.L_DisplayDialogError="á¨ááłáŤ áááá áľá
á°áľ";Strings.OfficeOM.L_InitializeNotReady="Office.js áĽáľáŤáá ááá áá á áá°áŤááᢠáĽáŁáá áá¨áľ áĽáá áĽáá°áá áááአááá á¨áááť áŽáľáá Office.áááť á°ááŁá áá áá¨áá áĽááá á áááá˘";Strings.OfficeOM.L_SetDataParametersConflict="á°ááá°á á¨á°ááááľ ááááŤáá˝ áááŤáá˘";Strings.OfficeOM.L_SelectionCannotBound="áá° á áá áľá፠ááŁáá á áá˝ááá˘";Strings.OfficeOM.L_UserClickIgnore="á°á ááá á¨áááá áłáĽáá á˝á áááľá ááá§áá˘";Strings.OfficeOM.L_InvalidResourceUrlMessage="á á°á áá°á ááľáĽ áá áŤááá á¨ááĽáľ Url á ááá˘";Strings.OfficeOM.L_InvalidAPICall="á¨ááá°áŤ ᨠAPI áĽáŞ";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="áá° áŁá
᪠'{0}' á¨á°á°á¨á áááŚá˝ á \"object.set\" áľááľ á áŠá áá°áá አá áá˝ááá˘";Strings.OfficeOM.L_DataNotMatchSelection="á¨áá¨á á á¨ááἠááá á áá áŤáá á¨áá፠á
áá
áĽáá˛áá áľááľá áááľ áá á ááľ á áá°ááá˘";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="á¨áá¨áá፠áááľ áááá á°ááŁá á áá°ááá";Strings.OfficeOM.L_InvalidBinding="á¨ááá°áŤ ááŁáá";Strings.OfficeOM.L_SliceSizeNotSupported="á°áááś á¨á°áááá á¨ááŤá˝ áá á á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="áĽáŁáá áá፠áŤáŤááąá˘";Strings.OfficeOM.L_SSOClientError="ᨠOffice á áááľ á á°áŁáĽ áĽáŤáá ááľáĽ áľá
á°áľ á°á¨áľáˇáá˘";Strings.OfficeOM.L_UserAbortedMessage="á°á ááá á¨ááľáĽ á áá áááśá˝á á áá°áľáááá˘";Strings.OfficeOM.L_DialogRequireHTTPS="ᨠHTTP ááŽá°áŽá á áá°á°áááᢠá ááľáŠ HTTPS á°á áá";Strings.OfficeOM.L_InvalidSetRows="á°ááá°á á¨á°ááááľ áá°áłáá˝ áľááá áŤááá áá¸áá˘";Strings.OfficeOM.L_GetDataIsTooLarge="á¨á°á á¨áá á¨ááἠáľáĽáľáĽ áĽá
á áľáá
ááá˘";Strings.OfficeOM.L_InvalidSetColumns="á°ááá°á á¨á°ááááľ áááśá˝ áľááá áŤááá áá¸áá˘";Strings.OfficeOM.L_MultipleNamedItemFound="áĽá á ááľ á áááľ áľá áŤáá¸á áááŽá˝ á°ááá°ááá˘";Strings.OfficeOM.L_OperationCancelledError="áááá á°á°ááá";Strings.OfficeOM.L_InvalidNamedItemForBindingType="á°áááś á¨á°áááá á¨ááŁáá ááááľ á¨áá¨á á á¨á°á áá° ááĽá ááá áá á¨ááŁáŁá á áá°ááá˘";Strings.OfficeOM.L_DataWriteError="ááἠá¨ááťá áľá
á°áľ";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="á áá፠á áááŁáľ áá°áľ áá áááááľ á°ááጠáá áᣠáľáááá á°á ááá ááĽáś áááá áá˝ááᢠáá
ááá á¨áá˝áá áľ ááááŤáľ á á°á ááá á áłá˝ á áááá á
ááĽáŽá˝ áááłá á¨á°á
áááľ áá ááá˝ ááá áá˝ááá˘";Strings.OfficeOM.L_EventHandlerRemovalFailed="á¨ááťá á áľá°áłáłáŞáá áááľáááľ á ááťááá˘";Strings.OfficeOM.L_InvalidReadForBlankRow="á°áááś á¨á°áááá áá°áł áŁáśáá ááá˘";Strings.OfficeOM.L_MissingParameter="á¨áłáŁ ááŤááľá";Strings.OfficeOM.L_UserAborted="á°á áá áŤáá¨á á á¨áľááááľ áĽáŤáá˘";Strings.OfficeOM.L_NavOutOfBound="áááá á áá°áłáŤá ááááŤáąá á˘áá´ááą á¨á ááą á᪠ááá˘";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="ááľáłááť: á á
áá˝ áá፠API áĽáŞ á¨á ááááľ á¨á
áá˝ áááŁáľ áľáĽáľáŚá˝ ᨠ100 á áłá˝ áĽáá˛áá ááá¨áŤáá˘";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="á áľá°áŁáŁáŞ ááŤááľáŽá˝ áłáĽááą á¨á°áááą á
ááśá˝ á áŤáá áľ áá á¨á áľááłá
á¨áłáĽááľ á áááśá˝ áá áá áá á ááťááá˘";Strings.OfficeOM.L_MemoryLimit="á¨áá¨ááť áá°áĽ áłáááá";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='á¨áĽáŤáá á¨ááŤá áá á áá°áĄá á áááᢠáĽáŁááá áá° á°ááą áááá¨áą: - "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins"á˘';Strings.OfficeOM.L_RunMustReturnPromise='áá° "run" áľááľ á¨á°áááá á¨áŁá˝ á°ááŁá ááá á áá á ááᢠááá¸áá á áŤáľá°á-áąáŤáŤá¸á á áááľá áľá áŤá áááŽá˝ áŁáš á˛á ááá
áá áááá
áĽáá˛á˝á á°ááŁáŠ á¨á°ááŁá áá ááá á á áá áľá˘ á áá°á¨áą á¨á°áᣠáááá á¨ááŤá¨áĽáŠáľ ᨠ"context.sync()" á¨ááááá ááá˝ á ááááľ ááá˘';Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="ááľáĽ á áá ááľááá á¨ááłá¨áť áśá¨á á áá á¨á
áá ááá˘";Strings.OfficeOM.L_SetDataIsTooLarge="á°áááś á°áááá á¨ááἠááá á áŁá ááá ááá˘";Strings.OfficeOM.L_NamedItemNotFound="á¨á°á áá°á ááĽá ááá á¨ááá˘";Strings.OfficeOM.L_SettingsAreStale="á¨áááá á ááśáš áá
áłá áľáááá áááᥠá ááťááá˘";Strings.OfficeOM.L_PropertyNotLoaded='áŁá
᪠{0}\' á ááááᢠá¨áŁá
᪠áĽá´áľ á¨ááá áĽá á ááľáŁ á áŤáá ááá áá áŤá á¨áŤá áľááľ ááĽáŠ áĽá á á°ďż˝ďż˝áŤáá á¨áĽáŤá á ááŁá ááá áá "context.sync()" ááĽáŠá˘';Strings.OfficeOM.L_CannotRegisterEvent="á¨ááľá°áľ áĽááłá ááááἠá áá˝ááá˘";Strings.OfficeOM.L_APICallFailed="API áĽáŞ á áá°áłáŤá";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="á¨á áłá˝ áá°áŚá˝ á¨áááá áłáĽáá á¨ááá á á¨ááááááᢠá¨áááá áłáĽá á፠áĽá á¨ááľáĽ-á áá á áľá°ááá á፠á á°ááłáłá á¨áľá
áááľ áá á áá°ááá˘";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="á¨á°áá¨á áááľ á á°áá á¨áĽ ááá ááá á áá áľá˘ áááĄá á á°áá á¨áĽ ááá áŤááááľ áĽá áĽáá°áá ááááŠáľá˘";Strings.OfficeOM.L_InvalidFormatValue="á¨á
áá˝ ááŤááľáŽá˝ á ááą ááá á¨á á áá á¨áááááą áááá˝ ááááᢠáááášá áĽáá°áá áááľášáá¸á áĽá áĽáá°áá ááááŠá˘";Strings.OfficeOM.L_RequestTokenUnavailable="áá
API á¨áĽáŞáá áááľ áĽáá˛áŤááá áłáá áá áá˘";Strings.OfficeOM.L_FormatValueOutOfRange="ááá á¨á°ááá°á á ááľ á᪠ááá˘";Strings.OfficeOM.L_DataNotMatchCoercionType="á°áááś á¨á°ááá¸á ááἠááá á¨á áá áááť áá á¨ááŁáŁá á áá°ááá˘";Strings.OfficeOM.L_OperationNotSupported="áááá á áá°á°áááá˘";Strings.OfficeOM.L_FileTypeNotSupported="á°áááś á¨á°áááá á¨ááá ááááľ á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_InvalidValue="á¨ááá°áŤ áá";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl á áááľ á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_TooManyOptionalFunction="áĽá á ááŤááŤá á°ááŁáŽá˝ á ááŤááľá áááá áá";Strings.OfficeOM.L_SSOConnectionLostError="á áá፠á áááŁáľ áá°áľ áá áááááľ á°ááጠáá áá˘";Strings.OfficeOM.L_DocumentReadOnly="á¨á°á á¨áá áááá á á áá á¨á°ááľ á áááľ á ááááľáá˘";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="á¨á°á áá á¨ááááľ ááááľ á áá°á°áááá˘";Strings.OfficeOM.L_ConfirmDialogConsentTitle="á ááľ áá...";Strings.OfficeOM.L_InvalidResourceUrl="áá áŤááá á¨áá°áá áŞáŤ ááĽáľ Url ááá§áá˘";Strings.OfficeOM.L_SettingsCannotSave="á
áá
áśáš áááᥠá áá˝ááá˘";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel á á
ááľ á ááľá áááł ááľáĽ ááᢠáĽáŁáá ENTER ááá TAB á ááŤá ááá áá á
ááľ á ááá¨áĽ á¨á ááľá áááł ááá°á ááᥠáĽá á¨á፠áĽáá°áá ááááŠá˘";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="á áľá°áŁáŁáŞ ááŤááľáŽá˝ áłáĽááą á¨á°áááą á
ááśá˝ á áŤáá áľ áá á¨á áľááłá
á¨áłáĽááľ á áááśá˝ áá áá áá á ááťááá˘";Strings.OfficeOM.L_CustomXmlError="á¨áłáἠXML áľá
á°áľá˘";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="ááᥠááá áŤááá áľ ááᢠáááŠá áĽáá°áá á°ááľá¨á áŤááĄá˘";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} á á˛áľ áááśá áááłá¨áľ áááááá˘";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="ᨠOffice á¨ááľáá áá ááá ááá ááá á ááá áłá ááá áá áŤáážáᢠáááá áᣠáášá áŤáľáąáľá˘";Strings.OfficeOM.L_InvalidBindingError="á¨ááá°áŤ ááŁáá áľá
á°áľ";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="á¨á°ááŁáŠá áá˝ á¨áááá áá
áľá áŤáá áŁá
áŞá á Excel.CustomFunctions áá ááá á áá áľá˘";Strings.OfficeOM.L_BrowserAPINotSupported="áá
áá°áť á¨á°á á¨ááá API á áá°áááá˘";Strings.OfficeOM.L_DataStale="ááᥠáá
áłá á áá°áá";Strings.OfficeOM.L_RowIndexOutOfRange="á¨áá°áłá á˘áá´ááľ áá á¨á°ááá°á á ááľ á᪠ááᢠá¨áá°áłááš ááĽá á¨ááŤááľ áá (0 ááá á¨á á¨á áá ) áŤáľááĄá˘";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="áá
á°á¨ááŞá á áá
áááľ ááľáĽ á¨á°á áá áááľá áľáááá°áá áááá á áá°áłáŤá";Strings.OfficeOM.L_InvalidSetStartRowColumn="á°ááá°á á¨á°ááááľ á¨áá°áł áááá፠ááá á¨áááľ áááá፠áĽá´áśá˝ áľááá áŤááá áá¸áá˘";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="á˝á á á";Strings.OfficeOM.L_InvalidCoercion="á¨ááá°áŤ á¨á áľááłá
á áááľ";Strings.OfficeOM.L_ConfirmDialogConsent="áĽáşá á á
á ááľá¨á {0} á¨áĽááľáá áááľ áĽá á¨áá áá¨á áĽáá˛á°ááľ ááá
áłáᢠ";Strings.OfficeOM.L_CustomXmlOutOfDateName="ááᥠáá
áłá á áá°áá";Strings.OfficeOM.L_WorkbookHiddenMessage="ᨠJavaScript API áĽáŤá á áá°áłáŤá ááááŤáąá á¨áĽáŤ á°áĽá°áŠ á°á°áĽá áá áᢠáĽáŁáá á¨áĽáŤ á°áĽá°áŠá á¨áá°á á
áŤáᥠáĽá áĽáá°áá ááááŠá˘";Strings.OfficeOM.L_BindingCreationError="ááŁáá á¨ááá á áľá
á°áľ";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="áááľ";Strings.OfficeOM.L_CloseFileBeforeRetrieve="áá ááá°á á¨áááŁáľá á ááľ á á áá ááá áá closeAsync";Strings.OfficeOM.L_DialogAlreadyOpened="áá
ááľá -á°á¨á᪠á¨áá áááá áľáá áá á áá
áľáá´á á áá°áłáŤá";Strings.OfficeOM.L_GetSelectionNotSupported="á áá á¨á°áá¨á á á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="áá
á°á¨ááŞá á¨á°á áá áááľá á áá°áááá˘";Strings.OfficeOM.L_InValidOptionalArgument="á¨ááá°áŤ á ááŤááŤá áááá";Strings.OfficeOM.L_EventHandlerNotExist="ááá
ááŁáá á¨ááá á°áááś á¨á°áááá á¨ááá áŤáĽ ááá á ááťááá˘";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="á áá
á¨ááŁáá ááááľ ááá á áá°áááá˘";Strings.OfficeOM.L_ApiNotFoundDetails="áľááľ ááá áŁá
᪠{0} á {2} áľáŞáľá ááľáĽ á¨áááá ᨠ{1} áááá áľáĽáľáĽ ááá ááá˘";Strings.OfficeOM.L_UnsupportedUserIdentity="á¨á°á áá á¨ááááľ ááááľ á áá°á°áááá˘";Strings.OfficeOM.L_ConfirmCancelMessage="áá
ááłáŁ ááá á á áá˝ááá˘";Strings.OfficeOM.L_ColIndexOutOfRange="á¨á ááľ á˘áá´ááľ ááá á¨á°ááá°á á ááľ á᪠ááᢠá¨á ááśá˝ ááĽá áŤáá° áá (0 ááá á¨á áá ) áá ááá˘";Strings.OfficeOM.L_SettingNameNotExist="á°áááś á¨á°áááá á¨á
áá
áľ áľá á¨ááá˘";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="áááłá áááá áááľ á˛áá á¨ááá ááá á Office á áá°áááá˘";Strings.OfficeOM.L_BindingToMultipleSelection="á°áŤáŤáĽ áŤááá áááŤáá˝ á áá°áááá˘";Strings.OfficeOM.L_ModalDialogOpeng="áááá á áá°áłáŤá ááááŤáąá áá
á°á¨á᪠ááľáááá á¨áá ááłá áááá áľáááá˘";Strings.OfficeOM.L_InvalidGetRows="á°ááá°á á¨á°ááááľ áá°áłáá˝ áľááá áŤááá áá¸áá˘";Strings.OfficeOM.L_NotSupportedBindingType="á°áááś á¨á°áááá á¨ááŁáá ááááľ {0} á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_InvalidArgumentGeneric="áá° á°ááŁáŠ á¨á°ááá áá᪠áĽá´áľ(áśá˝) ááá
áááł á áá°áŤáᣠá ááˇá ááá á áľááá á
áá¸áľ á áá°ááá˘";Strings.OfficeOM.L_DialogOK="áĽáş";Strings.OfficeOM.L_CallbackNotAFunction="áááśáá°áá á¨á áááľ á°ááŁá ááá á áá áľáŁ á¨ {0} á áááľ áá áá˘";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="ᨠ{0} áĽááá ááť á¨áá˝á áá¨áá ááአáĽá ááá á ááᢠáĽááá á¨ááťáá áá¨á á ááá á á¨áá¨á°ááá áľá áŁá˘áŤ á¨ááŤáá á¨áá áĽáť áĽáşá á á
áŤáľááጠ{1}á˘";Strings.OfficeOM.L_ReadSettingsError="á¨áááá á ááśá˝ áľá
á°áľ áŤááĽáĄ";Strings.OfficeOM.L_UnsupportedDataObject="á¨áá¨á á á¨ááἠááá á áááľ á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_InvalidApiArgumentsMessage="áá áŤááá á¨áá¤áľ áá᪠áĽá´áśá˝á˘";Strings.OfficeOM.L_ElementMissing="á¨á°áá á¨áĄá á
ááľ á
áá
ááľáŤá á ááťááá ááááŤáąá á ááłááľ ááá፠áĽá´áśá˝ áľáá áᢠááááŤáášá á áľáá-á áá¨ááἠáĽáá°áá ááááŠá˘";Strings.OfficeOM.L_HostError="á¨á áľá°ááá
áľá
á°áľ";Strings.OfficeOM.L_InvalidGetColumns="á°ááá°á á¨á°ááááľ áááśá˝ áľááá áŤááá áá¸áá˘";Strings.OfficeOM.L_DocumentIsInactive="áá
á°á¨á᪠ááľáĽ áŤáá á°ááľ á¨áŚáá áľááá áááá á áá°áłáŤáá˘";Strings.OfficeOM.L_NetworkProblemRetrieveFile="ááá áááś á¨ááááľ ááłá á¨á ááłá¨áá¨áĽ á˝áá á¨ááááłáá˘";Strings.OfficeOM.L_DataNotMatchBindingSize="á¨áá¨á á á¨ááἠááá á áá áŤáá á¨áá፠áá á áá á ááľ á áá°ááá˘";Strings.OfficeOM.L_InvalidGetStartRowColumn="á°ááá°á á¨á°ááááľ á¨áá°áł áááá፠ááá á¨áááľ áááá፠áĽá´áśá˝ áľááá áŤááá áá¸áá˘";Strings.OfficeOM.L_SpecifiedIdNotExist="á°áááś á¨á°áááá ID á¨ááá˘";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="á°ááŁáŠ áá°áá˝áᣠá ááá˝áᣠá°á¨áááĽáŚá˝ áĽá ááĽáŚá˝á áĽáť ááŤáŤáľáľ áá˝ááá˘";Strings.OfficeOM.L_DialogInvalidScheme="ᨠURL á ááŁáĄá á áá°á°áááᢠá ááľáŠ HTTPS á°á ááá˘";Strings.OfficeOM.L_ActivityLimitReached="á¨áĽáá
áľáá´ áá°áĽ á°ááˇáá˘";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="ááľáĽ á áá ááľááá á¨ááłá¨áť áśá¨á á áá á¨á
áá áľááá áááá á áá°áłáŤáá˘";Strings.OfficeOM.L_InternalErrorDescription="á ááľ ááłáŁá áľáá°áľ á°ááĽáŻáá˘";Strings.OfficeOM.L_BadSelectorString="áá° ááŤáŠ á¨ááŤááá áá¨áá°ááá á áľááá áŤáá°áá¨á ááá á¨ááá°áá ááá˘";Strings.OfficeOM.L_OKButton="áĽáş";Strings.OfficeOM.L_UnknownBindingType="á¨ááŁáá ááááą á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_RequestTimeout="á¨áĽáŞ ááá°áá á áŁá á¨áĽá áľááá áááá¸á áŤáľá¸ááŤáá˘";Strings.OfficeOM.L_DialogAddressNotTrusted="á¨ááŤá URL á áááť áááአá áá°áá áŞáŤ ááŤáá˝ á áŁá ááľáĽ á áá°áŤá°á°áá˘";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='á¨ááá˝ áá፠áááľ áá á áá°áĄá á ááááĄáĄ áĽáŁááá áá° á°ááą áááá¨áą: - "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins"á˘';Strings.OfficeOM.L_TooManyIncompleteRequests="áá°á áĽá á¨á°ááá¨á áĽáŞ áĽáľáŞá ááá
áá áĽáá˘";Strings.OfficeOM.L_ContinueButton="ááĽá";Strings.OfficeOM.L_SSOClientErrorMessage="á á°áá áá ááľáĽ áŤáá°á á á áľá
á°áľ á°á¨áľáˇáá˘";Strings.OfficeOM.L_InvalidTableOptionValue="á¨á°áá á¨áĽ á ááŤáŽá˝ ááŤááľáŽá˝ á ááą ááá á¨á á áá á¨áááááą áááá˝ ááááᢠáááášá áĽáá°áá áááľášáá¸á áĽá áĽáá°áá ááááŠá˘";Strings.OfficeOM.L_UnsupportedEnumerationMessage="á˘áááŹá˝á á¨á áá á áľá°ááá
áá°áá áŞáŤáá á¨áá°áá á áá°ááá˘";Strings.OfficeOM.L_CustomXmlExceedQuotaName="á¨áá፠áá°áĽ á°ááˇá";Strings.OfficeOM.L_InvalidSSOAddinMessage="á¨ááááą API á áá
ááľáĽ á áá ááľáĽ á áá°á°áááá˘";Strings.OfficeOM.L_ConnectionFailureWithStatus="á {0} á¨á áá áŽáľ áĽáŤáá á áá°áłáŤáá˘";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="áá°áá áŞáŤ {0} á¨ááᢠMicrosoft.Office.WebExtension.áááť(ááááŤáľ) á áá°á áŤáá˘";Strings.OfficeOM.L_ImplicitNotLoaded="ááľáŠá áśáá á¨ááááą á ááľ á áá°áŤáá";Strings.OfficeOM.L_DataWriteReminder="áłáł á¨ááťá á áľáłáá˝";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="á¨á°ááŁá áľá áŁáś áŤááá á¨áľá áŚáł áĽá áŁáś áŤááá á áá áľá ááŤá á áá áľá˘"
|
|
@@ -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."
|