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,11 @@
|
|
|
1
|
+
/* Excel iOS specific API library */
|
|
2
|
+
/* Version: 15.0.4420.1017 Build Time: 05/04/2015 */
|
|
3
|
+
/*
|
|
4
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*
|
|
8
|
+
Your use of this file is governed by the Microsoft Services Agreement http://go.microsoft.com/fwlink/?LinkId=266419.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
OSF.OUtil.augmentList(Microsoft.Office.WebExtension.FilterType,{OnlyVisible:"onlyVisible"});var OSF=OSF||{},OSFWebkit;(function(b){var a=function(){var a=false;function b(a){this.data=a;this.safeArrayFlag=this.isSafeArray(a)}b.prototype.dimensions=function(){var a=0;if(this.safeArrayFlag)a=this.data[0][0];else if(this.isArray())a=2;return a};b.prototype.getItem=function(){var b=[],a=null;if(this.safeArrayFlag)b=this.toArray();else b=this.data;a=b;for(var c=0;c<arguments.length;c++)a=a[arguments[c]];return a};b.prototype.lbound=function(){return 0};b.prototype.ubound=function(b){var a=this,c=0;if(a.safeArrayFlag)c=a.data[0][b];else if(a.isArray())if(b==1)return a.data.length;else if(b==2)if(OSF.OUtil.isArray(a.data[0]))return a.data[0].length;else if(a.data[0]!=null)return 1;return c};b.prototype.toArray=function(){var c=this;if(c.isArray()==a)return c.data;for(var e=[],g=c.safeArrayFlag?1:0,f=g;f<c.data.length;f++){var d=c.data[f];if(c.isSafeArray(d))e.push(new b(d));else e.push(d)}return e};b.prototype.isArray=function(){return OSF.OUtil.isArray(this.data)};b.prototype.isSafeArray=function(d){var f=a;if(OSF.OUtil.isArray(d)&&OSF.OUtil.isArray(d[0])){var c=d[0],h=c[0];if(c.length!=h+1)return a;for(var b=1,e=1;e<c.length;e++){var g=c[e];if(isFinite(g)==a)return a;b=b*g}b++;f=b==d.length}return f};return b}();b.WebkitSafeArray=a})(OSFWebkit||(OSFWebkit={}));var OSFWebkit;(function(a){(function(b){var a=null;function g(b,c){a.agaveHostCallback(b,c)}b.agaveHostCallback=g;function d(b,c){a.agaveHostEventCallback(b,c)}b.agaveHostEventCallback=d;function f(){if(a==null)a=new c("OSF.ScriptMessaging.agaveHostCallback","OSF.ScriptMessaging.agaveHostEventCallback");return a}b.GetScriptMessenger=f;var e=function(){function a(c,a,b){this.id=c;this.targetId=a;this.handler=b}return a}(),c=function(){function a(c,d){var b=this;b.callingIndex=0;b.callbackList={};b.eventHandlerList={};b.asyncMethodCallbackFunctionName=c;b.eventCallbackFunctionName=d;b.conversationId=a.getCurrentTimeMS().toString()}a.prototype.invokeMethod=function(b,d,e,c){var a={};this.postWebkitMessage(a,b,d,e,c)};a.prototype.registerEvent=function(f,i,b,a,j,g){var d={eventCallbackFunction:this.eventCallbackFunctionName},h={id:b,targetId:a},c=this.postWebkitMessage(d,f,i,h,g);this.eventHandlerList[c]=new e(b,a,j)};a.prototype.unregisterEvent=function(f,i,e,d,g){var a=this,h={id:e,targetId:d};for(var b in a.eventHandlerList)if(a.eventHandlerList.hasOwnProperty(b)){var c=a.eventHandlerList[b];if(c.id==e&&c.targetId==d)delete a.eventHandlerList[b]}a.invokeMethod(f,i,h,g)};a.prototype.agaveHostCallback=function(b,c){var a=this.callbackList[b];if(a){a(c);delete this.callbackList[b]}};a.prototype.agaveHostEventCallback=function(b,c){var a=this.eventHandlerList[b];a&&a.handler(c)};a.prototype.postWebkitMessage=function(c,g,i,j,h){var b=this,e=b.generateCorrelationId();b.callbackList[e]=h;c.methodId=i;c.params=j;c.callbackId=e;c.callbackFunction=b.asyncMethodCallbackFunctionName;var f=function(){window.webkit.messageHandlers[g].postMessage(JSON.stringify(c))},d=a.getCurrentTimeMS();if(b.lastMessageTimestamp==null||d-b.lastMessageTimestamp>=a.MESSAGE_TIME_DELTA){f();b.lastMessageTimestamp=d}else{b.lastMessageTimestamp+=a.MESSAGE_TIME_DELTA;setTimeout(function(){f()},b.lastMessageTimestamp-d)}return e};a.prototype.generateCorrelationId=function(){++this.callingIndex;return this.conversationId+this.callingIndex};a.getCurrentTimeMS=function(){return (new Date).getTime()};a.MESSAGE_TIME_DELTA=10;return a}();b.WebkitScriptMessaging=c})(a.ScriptMessaging||(a.ScriptMessaging={}));var b=a.ScriptMessaging})(OSFWebkit||(OSFWebkit={}));OSF.ScriptMessaging=OSFWebkit.ScriptMessaging;var OSFWebkit;(function(a){a.MessageHandlerName="Agave";(function(a){var j="InstanceId",i="CorrelationId",h="APISetVersion",g="SolutionToken",f="ControlIntegrationLevel",e="ActivationMode",d="DocumentUrl",c="BindingCount",b="AppDataLocale",r="APPUILocale",q="AppCapabilities",p="APIVersionSequence",o="RevisionVersion",n="MinorVersion",m="MajorVersion",l="SolutionReferenceId",k="Settings";a[a[k]=0]=k;a[a[l]=1]=l;a[a["AppType"]=2]="AppType";a[a[m]=3]=m;a[a[n]=4]=n;a[a[o]=5]=o;a[a[p]=6]=p;a[a[q]=7]=q;a[a[r]=8]=r;a[a[b]=9]=b;a[a[c]=10]=c;a[a[d]=11]=d;a[a[e]=12]=e;a[a[f]=13]=f;a[a[g]=14]=g;a[a[h]=15]=h;a[a[i]=16]=i;a[a[j]=17]=j})(a.AppContextProperties||(a.AppContextProperties={}));var c=a.AppContextProperties;(function(a){var e="GetContext",d="WriteSettings",c="UnregisterEvent",b="RegisterEvent";a[a["Execute"]=1]="Execute";a[a[b]=2]=b;a[a[c]=3]=c;a[a[d]=4]=d;a[a[e]=5]=e})(a.MethodId||(a.MethodId={}));var d=a.MethodId,b=function(){function b(a){this.hostScriptProxy=a}b.prototype.execute=function(g,f,c){var b=f;if(b==null)b=[];var e={id:g,apiArgs:b},d=function(b){var d=b;if(OSF.OUtil.isArray(b)&&b.length>=2){var e=b[0];d=b[1]}c&&c(new a.WebkitSafeArray(d))};this.hostScriptProxy.invokeMethod(OSF.Webkit.MessageHandlerName,OSF.Webkit.MethodId.Execute,e,d)};b.prototype.registerEvent=function(g,f,c,b){var d=function(b){var d=b,e=0;if(OSF.OUtil.isArray(b)&&b.length>=2){d=b[0];e=b[1]}c&&c(e,new a.WebkitSafeArray(d))},e=function(c){b&&b(new a.WebkitSafeArray(c))};this.hostScriptProxy.registerEvent(OSF.Webkit.MessageHandlerName,OSF.Webkit.MethodId.RegisterEvent,g,f,d,e)};b.prototype.unregisterEvent=function(e,d,c){var b=function(b){c(new a.WebkitSafeArray(b))};this.hostScriptProxy.unregisterEvent(OSF.Webkit.MessageHandlerName,OSF.Webkit.MethodId.UnregisterEvent,e,d,b)};return b}();a.WebkitHostController=b})(OSFWebkit||(OSFWebkit={}));OSF.Webkit=OSFWebkit;OSF.ClientHostController=new OSFWebkit.WebkitHostController(OSF.ScriptMessaging.GetScriptMessenger());OSF.ClientMode={ReadWrite:0,ReadOnly:1};OSF.DDA.RichInitializationReason={1:Microsoft.Office.WebExtension.InitializationReason.Inserted,2:Microsoft.Office.WebExtension.InitializationReason.DocumentOpened};Microsoft.Office.WebExtension.FileType={Text:"text",Compressed:"compressed"};OSF.DDA.File=function(e,c,b){OSF.OUtil.defineEnumerableProperties(this,{size:{value:c},sliceCount:{value:Math.ceil(c/b)}});var a={};a[OSF.DDA.FileProperties.Handle]=e;a[OSF.DDA.FileProperties.SliceSize]=b;var d=OSF.DDA.AsyncMethodNames;OSF.DDA.DispIdHost.addAsyncMethods(this,[d.GetDocumentCopyChunkAsync,d.ReleaseDocumentCopyAsync],a)};OSF.DDA.FileSliceOffset="fileSliceoffset";OSF.DDA.CustomXmlParts=function(){this._eventDispatches=[];var a=OSF.DDA.AsyncMethodNames;OSF.DDA.DispIdHost.addAsyncMethods(this,[a.AddDataPartAsync,a.GetDataPartByIdAsync,a.GetDataPartsByNameSpaceAsync])};OSF.DDA.CustomXmlPart=function(f,b,g){OSF.OUtil.defineEnumerableProperties(this,{builtIn:{value:g},id:{value:b},namespaceManager:{value:new OSF.DDA.CustomXmlPrefixMappings(b)}});var c=OSF.DDA.AsyncMethodNames;OSF.DDA.DispIdHost.addAsyncMethods(this,[c.DeleteDataPartAsync,c.GetPartNodesAsync,c.GetPartXmlAsync]);var e=f._eventDispatches,a=e[b];if(!a){var d=Microsoft.Office.WebExtension.EventType;a=new OSF.EventDispatch([d.DataNodeDeleted,d.DataNodeInserted,d.DataNodeReplaced]);e[b]=a}OSF.DDA.DispIdHost.addEventSupport(this,a)};OSF.DDA.CustomXmlPrefixMappings=function(b){var a=OSF.DDA.AsyncMethodNames;OSF.DDA.DispIdHost.addAsyncMethods(this,[a.AddDataPartNamespaceAsync,a.GetDataPartNamespaceAsync,a.GetDataPartPrefixAsync],b)};OSF.DDA.CustomXmlNode=function(d,c,e,b){OSF.OUtil.defineEnumerableProperties(this,{baseName:{value:b},namespaceUri:{value:e},nodeType:{value:c}});var a=OSF.DDA.AsyncMethodNames;OSF.DDA.DispIdHost.addAsyncMethods(this,[a.GetRelativeNodesAsync,a.GetNodeValueAsync,a.GetNodeXmlAsync,a.SetNodeValueAsync,a.SetNodeXmlAsync],d)};OSF.DDA.NodeInsertedEventArgs=function(b,a){OSF.OUtil.defineEnumerableProperties(this,{type:{value:Microsoft.Office.WebExtension.EventType.DataNodeInserted},newNode:{value:b},inUndoRedo:{value:a}})};OSF.DDA.NodeReplacedEventArgs=function(c,b,a){OSF.OUtil.defineEnumerableProperties(this,{type:{value:Microsoft.Office.WebExtension.EventType.DataNodeReplaced},oldNode:{value:c},newNode:{value:b},inUndoRedo:{value:a}})};OSF.DDA.NodeDeletedEventArgs=function(c,a,b){OSF.OUtil.defineEnumerableProperties(this,{type:{value:Microsoft.Office.WebExtension.EventType.DataNodeDeleted},oldNode:{value:c},oldNextSibling:{value:a},inUndoRedo:{value:b}})};OSF.DDA.RichClientSettingsManager=function(){return {read:function(b,a){var f=[],e=[];b&&b();var d=OSF._OfficeAppFactory.getInitializationHelper(),c=function(b){a&&a(OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess,b.get_settings())};OSF._OfficeAppFactory.getWebkitAppContext(null,c)},write:function(b,i,d,c){var a={},f=[],e=[];for(var g in b){f.push(g);e.push(b[g])}a["keys"]=f;a["values"]=e;d&&d();var h=function(a){c&&c(a[0],null)};OSF.ScriptMessaging.GetScriptMessenger().invokeMethod(OSF.Webkit.MessageHandlerName,OSF.Webkit.MethodId.WriteSettings,a,h)}}}();OSF._OfficeAppFactory.getWebkitAppContext=function(c,b){var a=function(c){var f,a=OSF.Webkit.AppContextProperties,g=c[a.AppType],i=false;for(var p in OSF.AppName)if(OSF.AppName[p]==g){i=true;break}if(!i)throw"Unsupported client type "+g;for(var j=c[a.Settings],h={},k=j[0],u=j[1],e=0;e<k.length;e++)h[k[e]]=u[e];var v=c[a.SolutionReferenceId],r=c[a.MajorVersion],n=c[a.AppCapabilities],q=c[a.APPUILocale],o=c[a.AppDataLocale],s=c[a.DocumentUrl],t=c[a.ActivationMode],l=c[a.ControlIntegrationLevel],d=c[a.SolutionToken];d=d?d.toString():"";var m=c[a.CorrelationId];f=new OSF.OfficeAppContext(v,g,r,q,o,s,n,h,t,l,d,m);OSF.AppTelemetry&&OSF.AppTelemetry.initialize(f);b(f)};OSF.ScriptMessaging.GetScriptMessenger().invokeMethod(OSF.Webkit.MessageHandlerName,OSF.Webkit.MethodId.GetContext,[],a)};OSF.DDA.DispIdHost.getRichClientDelegateMethods=function(e){var a={};a[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]=OSF.DDA.SafeArray.Delegate.executeAsync;a[OSF.DDA.DispIdHost.Delegates.RegisterEventAsync]=OSF.DDA.SafeArray.Delegate.registerEventAsync;a[OSF.DDA.DispIdHost.Delegates.UnregisterEventAsync]=OSF.DDA.SafeArray.Delegate.unregisterEventAsync;function b(a){return function(b){var e,d,c=function(c,a){b.onReceiving&&b.onReceiving();b.onComplete&&b.onComplete(c,a)};try{a(b.hostCallArgs,b.onCalling,c)}catch(f){e=OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;d={name:Strings.OfficeOM.L_InternalError,message:f};c(e,d)}}}function d(c,b,a){return OSF.DDA.RichClientSettingsManager.read(b,a)}function c(a,c,b){return OSF.DDA.RichClientSettingsManager.write(a[OSF.DDA.SettingsManager.SerializedSettings],a[Microsoft.Office.WebExtension.Parameters.OverwriteIfStale],c,b)}switch(e){case OSF.DDA.AsyncMethodNames.RefreshAsync.id:a[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]=b(d);break;case OSF.DDA.AsyncMethodNames.SaveAsync.id:a[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]=b(c)}return a};OSF.OUtil.setNamespace("SafeArray",OSF.DDA);OSF.DDA.SafeArray.Response={Status:0,Payload:1};OSF.DDA.SafeArray.UniqueArguments={Offset:"offset",Run:"run",BindingSpecificData:"bindingSpecificData",MergedCellGuid:"{66e7831f-81b2-42e2-823c-89e872d541b3}"};OSF.OUtil.setNamespace("Delegate",OSF.DDA.SafeArray);OSF.DDA.SafeArray.Delegate.SpecialProcessor=function(){function b(a){var b;try{var h=a.ubound(1),d=a.ubound(2);a=a.toArray();if(h==1&&d==1)b=[a];else{b=[];for(var f=0;f<h;f++){for(var c=[],e=0;e<d;e++){var g=a[f*d+e];g!=OSF.DDA.SafeArray.UniqueArguments.MergedCellGuid&&c.push(g)}c.length>0&&b.push(c)}}}catch(i){}return b}var c=[OSF.DDA.PropertyDescriptors.FileProperties,OSF.DDA.PropertyDescriptors.FileSliceProperties,OSF.DDA.PropertyDescriptors.BindingProperties,OSF.DDA.SafeArray.UniqueArguments.BindingSpecificData,OSF.DDA.SafeArray.UniqueArguments.Offset,OSF.DDA.SafeArray.UniqueArguments.Run,OSF.DDA.PropertyDescriptors.Subset,OSF.DDA.PropertyDescriptors.DataPartProperties,OSF.DDA.PropertyDescriptors.DataNodeProperties,OSF.DDA.EventDescriptors.BindingSelectionChangedEvent,OSF.DDA.EventDescriptors.DataNodeInsertedEvent,OSF.DDA.EventDescriptors.DataNodeReplacedEvent,OSF.DDA.EventDescriptors.DataNodeDeletedEvent,OSF.DDA.DataNodeEventProperties.OldNode,OSF.DDA.DataNodeEventProperties.NewNode,OSF.DDA.DataNodeEventProperties.NextSiblingNode],a={};a[Microsoft.Office.WebExtension.Parameters.Data]=function(){var c=0,a=1;return {toHost:function(b){if(typeof b!="string"&&b[OSF.DDA.TableDataProperties.TableRows]!==undefined){var d=[];d[c]=b[OSF.DDA.TableDataProperties.TableRows];d[a]=b[OSF.DDA.TableDataProperties.TableHeaders];b=d}return b},fromHost:function(f){var e;if(f.toArray){var g=f.dimensions();if(g===2)e=b(f);else{var d=f.toArray();if(d.length===2&&(d[0]!=null&&d[0].toArray||d[1]!=null&&d[1].toArray)){e={};e[OSF.DDA.TableDataProperties.TableRows]=b(d[c]);e[OSF.DDA.TableDataProperties.TableHeaders]=b(d[a])}else e=d}}else e=f;return e}}}();OSF.DDA.SafeArray.Delegate.SpecialProcessor.uber.constructor.call(this,c,a);this.pack=function(c,d){var b;if(this.isDynamicType(c))b=a[c].toHost(d);else b=d;return b};this.unpack=function(c,d){var b;if(this.isComplexType(c)||OSF.DDA.ListType.isListType(c))try{b=d.toArray()}catch(e){b=d||{}}else if(this.isDynamicType(c))b=a[c].fromHost(d);else b=d;return b}};OSF.OUtil.extend(OSF.DDA.SafeArray.Delegate.SpecialProcessor,OSF.DDA.SpecialProcessor);OSF.DDA.SafeArray.Delegate.ParameterMap=function(){var e=true,f=new OSF.DDA.HostParameterMap(new OSF.DDA.SafeArray.Delegate.SpecialProcessor),a,d=f.self;function g(a){var c=null;if(a){c={};for(var d=a.length,b=0;b<d;b++)c[a[b].name]=a[b].value}return c}function b(b){var a={},c=g(b.toHost);if(b.invertible)a.map=c;else if(b.canonical)a.toHost=a.fromHost=c;else{a.toHost=c;a.fromHost=g(b.fromHost)}f.setMapping(b.type,a)}a=OSF.DDA.FileProperties;b({type:OSF.DDA.PropertyDescriptors.FileProperties,fromHost:[{name:a.Handle,value:0},{name:a.FileSize,value:1}]});b({type:OSF.DDA.PropertyDescriptors.FileSliceProperties,fromHost:[{name:Microsoft.Office.WebExtension.Parameters.Data,value:0},{name:a.SliceSize,value:1}]});a=OSF.DDA.BindingProperties;b({type:OSF.DDA.PropertyDescriptors.BindingProperties,fromHost:[{name:a.Id,value:0},{name:a.Type,value:1},{name:OSF.DDA.SafeArray.UniqueArguments.BindingSpecificData,value:2}]});b({type:OSF.DDA.SafeArray.UniqueArguments.BindingSpecificData,fromHost:[{name:a.RowCount,value:0},{name:a.ColumnCount,value:1},{name:a.HasHeaders,value:2}]});a=OSF.DDA.SafeArray.UniqueArguments;b({type:OSF.DDA.PropertyDescriptors.Subset,toHost:[{name:a.Offset,value:0},{name:a.Run,value:1}],canonical:e});a=Microsoft.Office.WebExtension.Parameters;b({type:OSF.DDA.SafeArray.UniqueArguments.Offset,toHost:[{name:a.StartRow,value:0},{name:a.StartColumn,value:1}],canonical:e});b({type:OSF.DDA.SafeArray.UniqueArguments.Run,toHost:[{name:a.RowCount,value:0},{name:a.ColumnCount,value:1}],canonical:e});a=OSF.DDA.DataPartProperties;b({type:OSF.DDA.PropertyDescriptors.DataPartProperties,fromHost:[{name:a.Id,value:0},{name:a.BuiltIn,value:1}]});a=OSF.DDA.DataNodeProperties;b({type:OSF.DDA.PropertyDescriptors.DataNodeProperties,fromHost:[{name:a.Handle,value:0},{name:a.BaseName,value:1},{name:a.NamespaceUri,value:2},{name:a.NodeType,value:3}]});b({type:OSF.DDA.EventDescriptors.BindingSelectionChangedEvent,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:0},{name:OSF.DDA.PropertyDescriptors.Subset,value:1}]});a=OSF.DDA.DataNodeEventProperties;b({type:OSF.DDA.EventDescriptors.DataNodeInsertedEvent,fromHost:[{name:a.InUndoRedo,value:0},{name:a.NewNode,value:1}]});b({type:OSF.DDA.EventDescriptors.DataNodeReplacedEvent,fromHost:[{name:a.InUndoRedo,value:0},{name:a.OldNode,value:1},{name:a.NewNode,value:2}]});b({type:OSF.DDA.EventDescriptors.DataNodeDeletedEvent,fromHost:[{name:a.InUndoRedo,value:0},{name:a.OldNode,value:1},{name:a.NextSiblingNode,value:2}]});b({type:a.OldNode,fromHost:[{name:OSF.DDA.PropertyDescriptors.DataNodeProperties,value:d}]});b({type:a.NewNode,fromHost:[{name:OSF.DDA.PropertyDescriptors.DataNodeProperties,value:d}]});b({type:a.NextSiblingNode,fromHost:[{name:OSF.DDA.PropertyDescriptors.DataNodeProperties,value:d}]});a=Microsoft.Office.WebExtension.AsyncResultStatus;b({type:OSF.DDA.PropertyDescriptors.AsyncResultStatus,fromHost:[{name:a.Succeeded,value:0},{name:a.Failed,value:1}]});a=Microsoft.Office.WebExtension.CoercionType;b({type:Microsoft.Office.WebExtension.Parameters.CoercionType,toHost:[{name:a.Text,value:0},{name:a.Matrix,value:1},{name:a.Table,value:2},{name:a.Html,value:3},{name:a.Ooxml,value:4}]});a=Microsoft.Office.WebExtension.FileType;a&&b({type:Microsoft.Office.WebExtension.Parameters.FileType,toHost:[{name:a.Text,value:0},{name:a.Compressed,value:5}]});a=Microsoft.Office.WebExtension.BindingType;a&&b({type:Microsoft.Office.WebExtension.Parameters.BindingType,toHost:[{name:a.Text,value:0},{name:a.Matrix,value:1},{name:a.Table,value:2}],invertible:e});a=Microsoft.Office.WebExtension.ValueFormat;b({type:Microsoft.Office.WebExtension.Parameters.ValueFormat,toHost:[{name:a.Unformatted,value:0},{name:a.Formatted,value:1}]});a=Microsoft.Office.WebExtension.FilterType;b({type:Microsoft.Office.WebExtension.Parameters.FilterType,toHost:[{name:a.All,value:0},{name:a.OnlyVisible,value:1}]});a=Microsoft.Office.WebExtension.Parameters;var c=OSF.DDA.MethodDispId;b({type:c.dispidGetSelectedDataMethod,fromHost:[{name:a.Data,value:d}],toHost:[{name:a.CoercionType,value:0},{name:a.ValueFormat,value:1},{name:a.FilterType,value:2}]});b({type:c.dispidSetSelectedDataMethod,toHost:[{name:a.CoercionType,value:0},{name:a.Data,value:1}]});b({type:c.dispidGetDocumentCopyMethod,toHost:[{name:a.FileType,value:0}],fromHost:[{name:OSF.DDA.PropertyDescriptors.FileProperties,value:d}]});b({type:c.dispidGetDocumentCopyChunkMethod,toHost:[{name:OSF.DDA.FileProperties.Handle,value:0},{name:OSF.DDA.FileSliceOffset,value:1},{name:OSF.DDA.FileProperties.SliceSize,value:2}],fromHost:[{name:OSF.DDA.PropertyDescriptors.FileSliceProperties,value:d}]});b({type:c.dispidReleaseDocumentCopyMethod,toHost:[{name:OSF.DDA.FileProperties.Handle,value:0}]});b({type:c.dispidAddBindingFromSelectionMethod,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:d}],toHost:[{name:a.Id,value:0},{name:a.BindingType,value:1}]});b({type:c.dispidAddBindingFromPromptMethod,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:d}],toHost:[{name:a.Id,value:0},{name:a.BindingType,value:1},{name:a.PromptText,value:2}]});b({type:c.dispidAddBindingFromNamedItemMethod,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:d}],toHost:[{name:a.ItemName,value:0},{name:a.Id,value:1},{name:a.BindingType,value:2},{name:a.FailOnCollision,value:3}]});b({type:c.dispidReleaseBindingMethod,toHost:[{name:a.Id,value:0}]});b({type:c.dispidGetBindingMethod,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:d}],toHost:[{name:a.Id,value:0}]});b({type:c.dispidGetAllBindingsMethod,fromHost:[{name:OSF.DDA.ListDescriptors.BindingList,value:d}]});b({type:c.dispidGetBindingDataMethod,fromHost:[{name:a.Data,value:d}],toHost:[{name:a.Id,value:0},{name:a.CoercionType,value:1},{name:a.ValueFormat,value:2},{name:a.FilterType,value:3},{name:OSF.DDA.PropertyDescriptors.Subset,value:4}]});b({type:c.dispidSetBindingDataMethod,toHost:[{name:a.Id,value:0},{name:a.CoercionType,value:1},{name:a.Data,value:2},{name:OSF.DDA.SafeArray.UniqueArguments.Offset,value:3}]});b({type:c.dispidAddRowsMethod,toHost:[{name:a.Id,value:0},{name:a.Data,value:1}]});b({type:c.dispidAddColumnsMethod,toHost:[{name:a.Id,value:0},{name:a.Data,value:1}]});b({type:c.dispidClearAllRowsMethod,toHost:[{name:a.Id,value:0}]});b({type:c.dispidLoadSettingsMethod,fromHost:[{name:OSF.DDA.SettingsManager.SerializedSettings,value:d}]});b({type:c.dispidSaveSettingsMethod,toHost:[{name:OSF.DDA.SettingsManager.SerializedSettings,value:OSF.DDA.SettingsManager.SerializedSettings},{name:Microsoft.Office.WebExtension.Parameters.OverwriteIfStale,value:Microsoft.Office.WebExtension.Parameters.OverwriteIfStale}]});b({type:c.dispidAddDataPartMethod,fromHost:[{name:OSF.DDA.PropertyDescriptors.DataPartProperties,value:d}],toHost:[{name:a.Xml,value:0}]});b({type:c.dispidGetDataPartByIdMethod,fromHost:[{name:OSF.DDA.PropertyDescriptors.DataPartProperties,value:d}],toHost:[{name:a.Id,value:0}]});b({type:c.dispidGetDataPartsByNamespaceMethod,fromHost:[{name:OSF.DDA.ListDescriptors.DataPartList,value:d}],toHost:[{name:a.Namespace,value:0}]});b({type:c.dispidGetDataPartXmlMethod,fromHost:[{name:a.Data,value:d}],toHost:[{name:a.Id,value:0}]});b({type:c.dispidGetDataPartNodesMethod,fromHost:[{name:OSF.DDA.ListDescriptors.DataNodeList,value:d}],toHost:[{name:a.Id,value:0},{name:a.XPath,value:1}]});b({type:c.dispidDeleteDataPartMethod,toHost:[{name:a.Id,value:0}]});b({type:c.dispidGetDataNodeValueMethod,fromHost:[{name:a.Data,value:d}],toHost:[{name:OSF.DDA.DataNodeProperties.Handle,value:0}]});b({type:c.dispidGetDataNodeXmlMethod,fromHost:[{name:a.Data,value:d}],toHost:[{name:OSF.DDA.DataNodeProperties.Handle,value:0}]});b({type:c.dispidGetDataNodesMethod,fromHost:[{name:OSF.DDA.ListDescriptors.DataNodeList,value:d}],toHost:[{name:OSF.DDA.DataNodeProperties.Handle,value:0},{name:a.XPath,value:1}]});b({type:c.dispidSetDataNodeValueMethod,toHost:[{name:OSF.DDA.DataNodeProperties.Handle,value:0},{name:a.Data,value:1}]});b({type:c.dispidSetDataNodeXmlMethod,toHost:[{name:OSF.DDA.DataNodeProperties.Handle,value:0},{name:a.Xml,value:1}]});b({type:c.dispidAddDataNamespaceMethod,toHost:[{name:OSF.DDA.DataPartProperties.Id,value:0},{name:a.Prefix,value:1},{name:a.Namespace,value:2}]});b({type:c.dispidGetDataUriByPrefixMethod,fromHost:[{name:a.Data,value:d}],toHost:[{name:OSF.DDA.DataPartProperties.Id,value:0},{name:a.Prefix,value:1}]});b({type:c.dispidGetDataPrefixByUriMethod,fromHost:[{name:a.Data,value:d}],toHost:[{name:OSF.DDA.DataPartProperties.Id,value:0},{name:a.Namespace,value:1}]});b({type:c.dispidGetSelectedTaskMethod,fromHost:[{name:a.TaskId,value:d}]});b({type:c.dispidGetTaskMethod,fromHost:[{name:"taskName",value:0},{name:"wssTaskId",value:1},{name:"resourceNames",value:2}],toHost:[{name:a.TaskId,value:0}]});b({type:c.dispidGetTaskFieldMethod,fromHost:[{name:a.FieldValue,value:d}],toHost:[{name:a.TaskId,value:0},{name:a.FieldId,value:1},{name:a.GetRawValue,value:2}]});b({type:c.dispidGetWSSUrlMethod,fromHost:[{name:a.ServerUrl,value:0},{name:a.ListName,value:1}]});b({type:c.dispidGetSelectedResourceMethod,fromHost:[{name:a.ResourceId,value:d}]});b({type:c.dispidGetResourceFieldMethod,fromHost:[{name:a.FieldValue,value:d}],toHost:[{name:a.ResourceId,value:0},{name:a.FieldId,value:1},{name:a.GetRawValue,value:2}]});b({type:c.dispidGetProjectFieldMethod,fromHost:[{name:a.FieldValue,value:d}],toHost:[{name:a.FieldId,value:0},{name:a.GetRawValue,value:1}]});b({type:c.dispidGetSelectedViewMethod,fromHost:[{name:a.ViewType,value:0},{name:a.ViewName,value:1}]});c=OSF.DDA.EventDispId;b({type:c.dispidDocumentSelectionChangedEvent});b({type:c.dispidBindingSelectionChangedEvent,fromHost:[{name:OSF.DDA.EventDescriptors.BindingSelectionChangedEvent,value:d}]});b({type:c.dispidBindingDataChangedEvent,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:d}]});b({type:c.dispidSettingsChangedEvent});b({type:c.dispidDataNodeAddedEvent,fromHost:[{name:OSF.DDA.EventDescriptors.DataNodeInsertedEvent,value:d}]});b({type:c.dispidDataNodeReplacedEvent,fromHost:[{name:OSF.DDA.EventDescriptors.DataNodeReplacedEvent,value:d}]});b({type:c.dispidDataNodeDeletedEvent,fromHost:[{name:OSF.DDA.EventDescriptors.DataNodeDeletedEvent,value:d}]});b({type:c.dispidTaskSelectionChangedEvent});b({type:c.dispidResourceSelectionChangedEvent});b({type:c.dispidViewSelectionChangedEvent});return f}();OSF.DDA.SafeArray.Delegate._onException=function(d,c){var a,b=d.number;if(b)switch(b){case -2146828218:a=OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability;break;case -2146827850:default:a=OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError}c.onComplete&&c.onComplete(a||OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError)};OSF.DDA.SafeArray.Delegate.executeAsync=function(a){try{a.onCalling&&a.onCalling();function b(a){var c=a;if(OSF.OUtil.isArray(a))for(var f=c.length,d=0;d<f;d++)c[d]=b(c[d]);else if(OSF.OUtil.isDate(a))c=a.getVarDate();else if(typeof a==="object"&&!OSF.OUtil.isArray(a)){c=[];for(var e in a)if(!OSF.OUtil.isFunction(a[e]))c[e]=b(a[e])}return c}var d=(new Date).getTime();OSF.ClientHostController.execute(a.dispId,b(a.hostCallArgs),function(g){a.onReceiving&&a.onReceiving();var b=g.toArray(),f=b[OSF.DDA.SafeArray.Response.Status];if(a.onComplete){var c;if(f==OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess)if(b.length>2){c=[];for(var e=1;e<b.length;e++)c[e-1]=b[e]}else c=b[OSF.DDA.SafeArray.Response.Payload];else c=b[OSF.DDA.SafeArray.Response.Payload];a.onComplete(f,c)}OSF.AppTelemetry&&OSF.AppTelemetry.onMethodDone(a.dispId,a.hostCallArgs,Math.abs((new Date).getTime()-d),f)})}catch(c){OSF.DDA.SafeArray.Delegate._onException(c,a)}};OSF.DDA.SafeArray.Delegate._getOnAfterRegisterEvent=function(c,a){var b=(new Date).getTime();return function(d){a.onReceiving&&a.onReceiving();var e=d.toArray?d.toArray()[OSF.DDA.SafeArray.Response.Status]:d;a.onComplete&&a.onComplete(e);OSF.AppTelemetry&&OSF.AppTelemetry.onRegisterDone(c,a.dispId,Math.abs((new Date).getTime()-b),e)}};OSF.DDA.SafeArray.Delegate.registerEventAsync=function(a){a.onCalling&&a.onCalling();var c=OSF.DDA.SafeArray.Delegate._getOnAfterRegisterEvent(true,a);try{OSF.ClientHostController.registerEvent(a.dispId,a.targetId,function(c,b){a.onEvent&&a.onEvent(b);OSF.AppTelemetry&&OSF.AppTelemetry.onEventDone(a.dispId)},c)}catch(b){OSF.DDA.SafeArray.Delegate._onException(b,a)}};OSF.DDA.SafeArray.Delegate.unregisterEventAsync=function(a){a.onCalling&&a.onCalling();var c=OSF.DDA.SafeArray.Delegate._getOnAfterRegisterEvent(false,a);try{OSF.ClientHostController.unregisterEvent(a.dispId,a.targetId,c)}catch(b){OSF.DDA.SafeArray.Delegate._onException(b,a)}};delete Microsoft.Office.WebExtension.FileType;OSF.DDA.ExcelDocument=function(b,c){var a=new OSF.DDA.BindingFacade(this);OSF.DDA.DispIdHost.addAsyncMethods(a,[OSF.DDA.AsyncMethodNames.AddFromPromptAsync]);OSF.DDA.ExcelDocument.uber.constructor.call(this,b,a,c);OSF.OUtil.finalizeProperties(this)};OSF.OUtil.extend(OSF.DDA.ExcelDocument,OSF.DDA.JsomDocument)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* Excel web application specific API library */
|
|
2
|
+
/* Version: 15.0.4615.1000 */
|
|
3
|
+
/*
|
|
4
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*
|
|
8
|
+
Your use of this file is governed by the Microsoft Services Agreement http://go.microsoft.com/fwlink/?LinkId=266419.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
OSF.OUtil.setNamespace("XLS",OSF.DDA);OSF.OUtil.augmentList(Microsoft.Office.WebExtension.FilterType,{OnlyVisible:"onlyVisible"});OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType,{SettingsChanged:"settingsChanged"});OSF.DDA.XLS.UniqueArguments={Data:"Data",Properties:"Properties",BindingRequest:"DdaBindingsMethod",BindingResponse:"Bindings",SingleBindingResponse:"singleBindingResponse",GetData:"DdaGetBindingData",AddRowsColumns:"DdaAddRowsColumns",SetData:"DdaSetBindingData",SettingsRequest:"DdaSettingsMethod",BindingEventSource:"ddaBinding"};OSF.DDA.XLS.SettingsTranslator=function(){var b=0,a=1;return {read:function(f){var c={},d=f.Settings;for(var g in d){var e=d[g];c[e[b]]=e[a]}return c},write:function(d){var e=[];for(var f in d){var c=[];c[b]=f;c[a]=d[f];e.push(c)}return e}}}();OSF.OUtil.setNamespace("Delegate",OSF.DDA.XLS);OSF.DDA.DispIdHost.getXLSDelegateMethods=function(){var a={};a[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]=OSF.DDA.XLS.Delegate.executeAsync;a[OSF.DDA.DispIdHost.Delegates.RegisterEventAsync]=OSF.DDA.XLS.Delegate.registerEventAsync;a[OSF.DDA.DispIdHost.Delegates.UnregisterEventAsync]=OSF.DDA.XLS.Delegate.unregisterEventAsync;return a};OSF.DDA.XLS.Delegate.SpecialProcessor=function(){var b=[OSF.DDA.PropertyDescriptors.BindingProperties,OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,OSF.DDA.XLS.UniqueArguments.BindingRequest,OSF.DDA.XLS.UniqueArguments.BindingResponse,OSF.DDA.XLS.UniqueArguments.GetData,OSF.DDA.XLS.UniqueArguments.AddRowsColumns,OSF.DDA.XLS.UniqueArguments.SetData,OSF.DDA.XLS.UniqueArguments.SettingsRequest,OSF.DDA.XLS.UniqueArguments.BindingEventSource,OSF.DDA.EventDescriptors.BindingSelectionChangedEvent],a={};a[Microsoft.Office.WebExtension.Parameters.Data]=function(){var a="Rows",b="Headers";return {toHost:function(c){if(typeof c!="string"&&c[OSF.DDA.TableDataProperties.TableRows]!==undefined){var d={};d[a]=c[OSF.DDA.TableDataProperties.TableRows];d[b]=c[OSF.DDA.TableDataProperties.TableHeaders];c=d}else if(OSF.DDA.DataCoercion.determineCoercionType(c)==Microsoft.Office.WebExtension.CoercionType.Text)c=[[c]];return c},fromHost:function(d){var c;if(d[a]!=undefined){c={};c[OSF.DDA.TableDataProperties.TableRows]=d[a];c[OSF.DDA.TableDataProperties.TableHeaders]=d[b]}else c=d;return c}}}();a[OSF.DDA.SettingsManager.SerializedSettings]={toHost:OSF.DDA.XLS.SettingsTranslator.write,fromHost:OSF.DDA.XLS.SettingsTranslator.read};OSF.DDA.XLS.Delegate.SpecialProcessor.uber.constructor.call(this,b,a);this.pack=function(c,d){var b;if(this.isDynamicType(c))b=a[c].toHost(d);else b=d;return b};this.unpack=function(c,d){var b;if(this.isDynamicType(c))b=a[c].fromHost(d);else b=d;return b}};OSF.OUtil.extend(OSF.DDA.XLS.Delegate.SpecialProcessor,OSF.DDA.SpecialProcessor);OSF.DDA.XLS.Delegate.ParameterMap=function(){var j="ColCount",i="RowCount",h="StartCol",g="StartRow",m="CoerceType",l="BindingType",e="BindingId",f=new OSF.DDA.HostParameterMap(new OSF.DDA.XLS.Delegate.SpecialProcessor),a,d=f.self;function k(a){var c=null;if(a){c={};for(var d=a.length,b=0;b<d;b++)c[a[b].name]=a[b].value}return c}function b(b){var a={},c=k(b.toHost);if(b.invertible)a.map=c;else if(b.canonical)a.toHost=a.fromHost=c;else{a.toHost=c;a.fromHost=k(b.fromHost)}f.setMapping(b.type,a)}a=Microsoft.Office.WebExtension.Parameters;b({type:OSF.DDA.XLS.UniqueArguments.BindingRequest,toHost:[{name:a.ItemName,value:"ItemName"},{name:a.Id,value:e},{name:a.BindingType,value:l},{name:a.PromptText,value:"PromptText"},{name:a.FailOnCollision,value:"FailOnCollision"}]});b({type:OSF.DDA.XLS.UniqueArguments.GetData,toHost:[{name:a.Id,value:e},{name:a.CoercionType,value:m},{name:a.ValueFormat,value:"ValueFormat"},{name:a.FilterType,value:"FilterType"},{name:a.StartRow,value:g},{name:a.StartColumn,value:h},{name:a.RowCount,value:i},{name:a.ColumnCount,value:j}]});b({type:OSF.DDA.XLS.UniqueArguments.SetData,toHost:[{name:a.Id,value:e},{name:a.CoercionType,value:m},{name:a.Data,value:OSF.DDA.XLS.UniqueArguments.Data},{name:a.StartRow,value:g},{name:a.StartColumn,value:h}]});b({type:OSF.DDA.XLS.UniqueArguments.AddRowsColumns,toHost:[{name:a.Id,value:e},{name:a.Data,value:OSF.DDA.XLS.UniqueArguments.Data}]});b({type:OSF.DDA.XLS.UniqueArguments.SettingsRequest,toHost:[{name:a.OverwriteIfStale,value:"OverwriteIfStale"},{name:OSF.DDA.SettingsManager.SerializedSettings,value:OSF.DDA.XLS.UniqueArguments.Properties}],invertible:true});a=Microsoft.Office.WebExtension.BindingType;b({type:Microsoft.Office.WebExtension.Parameters.BindingType,toHost:[{name:a.Text,value:2},{name:a.Matrix,value:3},{name:a.Table,value:1}],invertible:true});a=OSF.DDA.BindingProperties;b({type:OSF.DDA.PropertyDescriptors.BindingProperties,fromHost:[{name:a.Id,value:"Name"},{name:a.Type,value:l},{name:a.RowCount,value:i},{name:a.ColumnCount,value:j},{name:a.HasHeaders,value:"HasHeaders"}]});b({type:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:0}]});b({type:OSF.DDA.PropertyDescriptors.Subset,fromHost:[{name:a.StartRow,value:g},{name:a.StartColumn,value:h},{name:a.RowCount,value:i},{name:a.ColumnCount,value:j}]});a=Microsoft.Office.WebExtension.AsyncResultStatus;b({type:OSF.DDA.PropertyDescriptors.AsyncResultStatus,fromHost:[{name:a.Succeeded,value:0},{name:a.Failed,value:1}]});b({type:OSF.DDA.EventDescriptors.BindingSelectionChangedEvent,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:OSF.DDA.XLS.UniqueArguments.BindingEventSource},{name:OSF.DDA.PropertyDescriptors.Subset,value:OSF.DDA.PropertyDescriptors.Subset}]});a=OSF.DDA.XLS.UniqueArguments;var c=OSF.DDA.MethodDispId;b({type:c.dispidGetSelectedDataMethod,fromHost:[{name:Microsoft.Office.WebExtension.Parameters.Data,value:a.Data}],toHost:[{name:a.GetData,value:d}]});b({type:c.dispidSetSelectedDataMethod,toHost:[{name:a.SetData,value:d}]});b({type:c.dispidAddBindingFromSelectionMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidAddBindingFromPromptMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidAddBindingFromNamedItemMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidReleaseBindingMethod,toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidGetBindingMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidGetAllBindingsMethod,fromHost:[{name:OSF.DDA.ListDescriptors.BindingList,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}]});b({type:c.dispidGetBindingDataMethod,fromHost:[{name:Microsoft.Office.WebExtension.Parameters.Data,value:a.Data}],toHost:[{name:a.GetData,value:d}]});b({type:c.dispidSetBindingDataMethod,toHost:[{name:a.SetData,value:d}]});b({type:c.dispidAddRowsMethod,toHost:[{name:a.AddRowsColumns,value:d}]});b({type:c.dispidAddColumnsMethod,toHost:[{name:a.AddRowsColumns,value:d}]});b({type:c.dispidClearAllRowsMethod,toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidLoadSettingsMethod,fromHost:[{name:OSF.DDA.SettingsManager.SerializedSettings,value:a.Properties}]});b({type:c.dispidSaveSettingsMethod,toHost:[{name:a.SettingsRequest,value:d}]});c=OSF.DDA.EventDispId;b({type:c.dispidDocumentSelectionChangedEvent});b({type:c.dispidBindingSelectionChangedEvent,fromHost:[{name:OSF.DDA.EventDescriptors.BindingSelectionChangedEvent,value:d}]});b({type:c.dispidBindingDataChangedEvent,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:a.BindingEventSource}]});b({type:c.dispidSettingsChangedEvent});return f}();OSF.DDA.XLS.Delegate.version=1;OSF.DDA.XLS.Delegate.executeAsync=function(a){if(!a.hostCallArgs)a.hostCallArgs={};a.hostCallArgs["DdaMethod"]={ControlId:OSF._OfficeAppFactory.getId(),Version:OSF.DDA.XLS.Delegate.version,DispatchId:a.dispId};a.onCalling&&a.onCalling();var b=(new Date).getTime();OSF._OfficeAppFactory.getClientEndPoint().invoke("executeMethod",function(e,d){a.onReceiving&&a.onReceiving();var c;if(e==Microsoft.Office.Common.InvokeResultCode.noError){OSF.DDA.XLS.Delegate.version=d["Version"];c=d["Error"]}else switch(e){case Microsoft.Office.Common.InvokeResultCode.errorHandlingRequestAccessDenied:c=OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability;break;default:c=OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError}a.onComplete&&a.onComplete(c,d);OSF.AppTelemetry&&OSF.AppTelemetry.onMethodDone(a.dispId,null,Math.abs((new Date).getTime()-b),c)},a.hostCallArgs)};OSF.DDA.XLS.Delegate._getOnAfterRegisterEvent=function(c,a){var b=(new Date).getTime();return function(e,f){a.onReceiving&&a.onReceiving();var d;if(e!=Microsoft.Office.Common.InvokeResultCode.noError)switch(e){case Microsoft.Office.Common.InvokeResultCode.errorHandlingRequestAccessDenied:d=OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability;break;default:d=OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError}else d=f?OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess:OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;a.onComplete&&a.onComplete(d);OSF.AppTelemetry&&OSF.AppTelemetry.onRegisterDone(c,a.dispId,Math.abs((new Date).getTime()-b),d)}};OSF.DDA.XLS.Delegate.registerEventAsync=function(a){a.onCalling&&a.onCalling();OSF._OfficeAppFactory.getClientEndPoint().registerForEvent(OSF.DDA.getXdmEventName(a.targetId,a.eventType),function(b){a.onEvent&&a.onEvent(b);OSF.AppTelemetry&&OSF.AppTelemetry.onEventDone(a.dispId)},OSF.DDA.XLS.Delegate._getOnAfterRegisterEvent(true,a),{controlId:OSF._OfficeAppFactory.getId(),eventDispId:a.dispId,targetId:a.targetId})};OSF.DDA.XLS.Delegate.unregisterEventAsync=function(a){a.onCalling&&a.onCalling();OSF._OfficeAppFactory.getClientEndPoint().unregisterForEvent(OSF.DDA.getXdmEventName(a.targetId,a.eventType),OSF.DDA.XLS.Delegate._getOnAfterRegisterEvent(false,a),{controlId:OSF._OfficeAppFactory.getId(),eventDispId:a.dispId,targetId:a.targetId})};OSF.DDA.ExcelWebAppDocument=function(c,d){var a=this,b=new OSF.DDA.BindingFacade(a);OSF.DDA.DispIdHost.addAsyncMethods(b,[OSF.DDA.AsyncMethodNames.AddFromPromptAsync]);OSF.DDA.ExcelWebAppDocument.uber.constructor.call(a,c,b,d);if(a.mode==OSF.ClientMode.ReadOnly)a.url=document.URL;OSF.OUtil.finalizeProperties(a)};OSF.OUtil.extend(OSF.DDA.ExcelWebAppDocument,OSF.DDA.JsomDocument)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* Excel web application specific API library */
|
|
2
|
+
/* Version: 15.0.4745.1000 */
|
|
3
|
+
/*
|
|
4
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*
|
|
8
|
+
Your use of this file is governed by the Microsoft Services Agreement http://go.microsoft.com/fwlink/?LinkId=266419.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
OSF.OUtil.setNamespace("XLS",OSF.DDA);OSF.OUtil.augmentList(Microsoft.Office.WebExtension.FilterType,{OnlyVisible:"onlyVisible"});OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType,{SettingsChanged:"settingsChanged"});OSF.DDA.XLS.UniqueArguments={Data:"Data",Properties:"Properties",BindingRequest:"DdaBindingsMethod",BindingResponse:"Bindings",SingleBindingResponse:"singleBindingResponse",GetData:"DdaGetBindingData",AddRowsColumns:"DdaAddRowsColumns",SetData:"DdaSetBindingData",SettingsRequest:"DdaSettingsMethod",BindingEventSource:"ddaBinding"};OSF.DDA.XLS.SettingsTranslator=function(){var b=0,a=1;return {read:function(f){var c={},d=f.Settings;for(var g in d){var e=d[g];c[e[b]]=e[a]}return c},write:function(d){var e=[];for(var f in d){var c=[];c[b]=f;c[a]=d[f];e.push(c)}return e}}}();OSF.OUtil.setNamespace("Delegate",OSF.DDA.XLS);OSF.DDA.DispIdHost.getXLSDelegateMethods=function(){var a={};a[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]=OSF.DDA.XLS.Delegate.executeAsync;a[OSF.DDA.DispIdHost.Delegates.RegisterEventAsync]=OSF.DDA.XLS.Delegate.registerEventAsync;a[OSF.DDA.DispIdHost.Delegates.UnregisterEventAsync]=OSF.DDA.XLS.Delegate.unregisterEventAsync;return a};OSF.DDA.XLS.Delegate.SpecialProcessor=function(){var b=[OSF.DDA.PropertyDescriptors.BindingProperties,OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,OSF.DDA.XLS.UniqueArguments.BindingRequest,OSF.DDA.XLS.UniqueArguments.BindingResponse,OSF.DDA.XLS.UniqueArguments.GetData,OSF.DDA.XLS.UniqueArguments.AddRowsColumns,OSF.DDA.XLS.UniqueArguments.SetData,OSF.DDA.XLS.UniqueArguments.SettingsRequest,OSF.DDA.XLS.UniqueArguments.BindingEventSource,OSF.DDA.EventDescriptors.BindingSelectionChangedEvent],a={};a[Microsoft.Office.WebExtension.Parameters.Data]=function(){var a="Rows",b="Headers";return {toHost:function(c){if(typeof c!="string"&&c[OSF.DDA.TableDataProperties.TableRows]!==undefined){var d={};d[a]=c[OSF.DDA.TableDataProperties.TableRows];d[b]=c[OSF.DDA.TableDataProperties.TableHeaders];c=d}else if(OSF.DDA.DataCoercion.determineCoercionType(c)==Microsoft.Office.WebExtension.CoercionType.Text)c=[[c]];return c},fromHost:function(d){var c;if(d[a]!=undefined){c={};c[OSF.DDA.TableDataProperties.TableRows]=d[a];c[OSF.DDA.TableDataProperties.TableHeaders]=d[b]}else c=d;return c}}}();a[OSF.DDA.SettingsManager.SerializedSettings]={toHost:OSF.DDA.XLS.SettingsTranslator.write,fromHost:OSF.DDA.XLS.SettingsTranslator.read};OSF.DDA.XLS.Delegate.SpecialProcessor.uber.constructor.call(this,b,a);this.pack=function(c,d){var b;if(this.isDynamicType(c))b=a[c].toHost(d);else b=d;return b};this.unpack=function(c,d){var b;if(this.isDynamicType(c))b=a[c].fromHost(d);else b=d;return b}};OSF.OUtil.extend(OSF.DDA.XLS.Delegate.SpecialProcessor,OSF.DDA.SpecialProcessor);OSF.DDA.XLS.Delegate.ParameterMap=function(){var j="ColCount",i="RowCount",h="StartCol",g="StartRow",m="CoerceType",l="BindingType",e="BindingId",f=new OSF.DDA.HostParameterMap(new OSF.DDA.XLS.Delegate.SpecialProcessor),a,d=f.self;function k(a){var c=null;if(a){c={};for(var d=a.length,b=0;b<d;b++)c[a[b].name]=a[b].value}return c}function b(b){var a={},c=k(b.toHost);if(b.invertible)a.map=c;else if(b.canonical)a.toHost=a.fromHost=c;else{a.toHost=c;a.fromHost=k(b.fromHost)}f.setMapping(b.type,a)}a=Microsoft.Office.WebExtension.Parameters;b({type:OSF.DDA.XLS.UniqueArguments.BindingRequest,toHost:[{name:a.ItemName,value:"ItemName"},{name:a.Id,value:e},{name:a.BindingType,value:l},{name:a.PromptText,value:"PromptText"},{name:a.FailOnCollision,value:"FailOnCollision"}]});b({type:OSF.DDA.XLS.UniqueArguments.GetData,toHost:[{name:a.Id,value:e},{name:a.CoercionType,value:m},{name:a.ValueFormat,value:"ValueFormat"},{name:a.FilterType,value:"FilterType"},{name:a.StartRow,value:g},{name:a.StartColumn,value:h},{name:a.RowCount,value:i},{name:a.ColumnCount,value:j}]});b({type:OSF.DDA.XLS.UniqueArguments.SetData,toHost:[{name:a.Id,value:e},{name:a.CoercionType,value:m},{name:a.Data,value:OSF.DDA.XLS.UniqueArguments.Data},{name:a.StartRow,value:g},{name:a.StartColumn,value:h}]});b({type:OSF.DDA.XLS.UniqueArguments.AddRowsColumns,toHost:[{name:a.Id,value:e},{name:a.Data,value:OSF.DDA.XLS.UniqueArguments.Data}]});b({type:OSF.DDA.XLS.UniqueArguments.SettingsRequest,toHost:[{name:a.OverwriteIfStale,value:"OverwriteIfStale"},{name:OSF.DDA.SettingsManager.SerializedSettings,value:OSF.DDA.XLS.UniqueArguments.Properties}],invertible:true});a=Microsoft.Office.WebExtension.BindingType;b({type:Microsoft.Office.WebExtension.Parameters.BindingType,toHost:[{name:a.Text,value:2},{name:a.Matrix,value:3},{name:a.Table,value:1}],invertible:true});a=OSF.DDA.BindingProperties;b({type:OSF.DDA.PropertyDescriptors.BindingProperties,fromHost:[{name:a.Id,value:"Name"},{name:a.Type,value:l},{name:a.RowCount,value:i},{name:a.ColumnCount,value:j},{name:a.HasHeaders,value:"HasHeaders"}]});b({type:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:0}]});b({type:OSF.DDA.PropertyDescriptors.Subset,fromHost:[{name:a.StartRow,value:g},{name:a.StartColumn,value:h},{name:a.RowCount,value:i},{name:a.ColumnCount,value:j}]});a=Microsoft.Office.WebExtension.AsyncResultStatus;b({type:OSF.DDA.PropertyDescriptors.AsyncResultStatus,fromHost:[{name:a.Succeeded,value:0},{name:a.Failed,value:1}]});b({type:OSF.DDA.EventDescriptors.BindingSelectionChangedEvent,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:OSF.DDA.XLS.UniqueArguments.BindingEventSource},{name:OSF.DDA.PropertyDescriptors.Subset,value:OSF.DDA.PropertyDescriptors.Subset}]});a=OSF.DDA.XLS.UniqueArguments;var c=OSF.DDA.MethodDispId;b({type:c.dispidGetSelectedDataMethod,fromHost:[{name:Microsoft.Office.WebExtension.Parameters.Data,value:a.Data}],toHost:[{name:a.GetData,value:d}]});b({type:c.dispidSetSelectedDataMethod,toHost:[{name:a.SetData,value:d}]});b({type:c.dispidAddBindingFromSelectionMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidAddBindingFromPromptMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidAddBindingFromNamedItemMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidReleaseBindingMethod,toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidGetBindingMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidGetAllBindingsMethod,fromHost:[{name:OSF.DDA.ListDescriptors.BindingList,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}]});b({type:c.dispidGetBindingDataMethod,fromHost:[{name:Microsoft.Office.WebExtension.Parameters.Data,value:a.Data}],toHost:[{name:a.GetData,value:d}]});b({type:c.dispidSetBindingDataMethod,toHost:[{name:a.SetData,value:d}]});b({type:c.dispidAddRowsMethod,toHost:[{name:a.AddRowsColumns,value:d}]});b({type:c.dispidAddColumnsMethod,toHost:[{name:a.AddRowsColumns,value:d}]});b({type:c.dispidClearAllRowsMethod,toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidLoadSettingsMethod,fromHost:[{name:OSF.DDA.SettingsManager.SerializedSettings,value:a.Properties}]});b({type:c.dispidSaveSettingsMethod,toHost:[{name:a.SettingsRequest,value:d}]});b({type:c.dispidGetActiveViewMethod,fromHost:[{name:Microsoft.Office.WebExtension.Parameters.ActiveView,value:a.Data}]});c=OSF.DDA.EventDispId;b({type:c.dispidDocumentSelectionChangedEvent});b({type:c.dispidBindingSelectionChangedEvent,fromHost:[{name:OSF.DDA.EventDescriptors.BindingSelectionChangedEvent,value:d}]});b({type:c.dispidBindingDataChangedEvent,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:a.BindingEventSource}]});b({type:c.dispidSettingsChangedEvent});return f}();OSF.DDA.XLS.Delegate.version=1;OSF.DDA.XLS.Delegate.executeAsync=function(a){if(!a.hostCallArgs)a.hostCallArgs={};a.hostCallArgs["DdaMethod"]={ControlId:OSF._OfficeAppFactory.getId(),Version:OSF.DDA.XLS.Delegate.version,DispatchId:a.dispId};a.onCalling&&a.onCalling();var b=(new Date).getTime();OSF._OfficeAppFactory.getClientEndPoint().invoke("executeMethod",function(e,d){a.onReceiving&&a.onReceiving();var c;if(e==Microsoft.Office.Common.InvokeResultCode.noError){OSF.DDA.XLS.Delegate.version=d["Version"];c=d["Error"]}else switch(e){case Microsoft.Office.Common.InvokeResultCode.errorHandlingRequestAccessDenied:c=OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability;break;default:c=OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError}a.onComplete&&a.onComplete(c,d);OSF.AppTelemetry&&OSF.AppTelemetry.onMethodDone(a.dispId,null,Math.abs((new Date).getTime()-b),c)},a.hostCallArgs)};OSF.DDA.XLS.Delegate._getOnAfterRegisterEvent=function(c,a){var b=(new Date).getTime();return function(e,f){a.onReceiving&&a.onReceiving();var d;if(e!=Microsoft.Office.Common.InvokeResultCode.noError)switch(e){case Microsoft.Office.Common.InvokeResultCode.errorHandlingRequestAccessDenied:d=OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability;break;default:d=OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError}else d=f?OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess:OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;a.onComplete&&a.onComplete(d);OSF.AppTelemetry&&OSF.AppTelemetry.onRegisterDone(c,a.dispId,Math.abs((new Date).getTime()-b),d)}};OSF.DDA.XLS.Delegate.registerEventAsync=function(a){a.onCalling&&a.onCalling();OSF._OfficeAppFactory.getClientEndPoint().registerForEvent(OSF.DDA.getXdmEventName(a.targetId,a.eventType),function(b){a.onEvent&&a.onEvent(b);OSF.AppTelemetry&&OSF.AppTelemetry.onEventDone(a.dispId)},OSF.DDA.XLS.Delegate._getOnAfterRegisterEvent(true,a),{controlId:OSF._OfficeAppFactory.getId(),eventDispId:a.dispId,targetId:a.targetId})};OSF.DDA.XLS.Delegate.unregisterEventAsync=function(a){a.onCalling&&a.onCalling();OSF._OfficeAppFactory.getClientEndPoint().unregisterForEvent(OSF.DDA.getXdmEventName(a.targetId,a.eventType),OSF.DDA.XLS.Delegate._getOnAfterRegisterEvent(false,a),{controlId:OSF._OfficeAppFactory.getId(),eventDispId:a.dispId,targetId:a.targetId})};OSF.DDA.ExcelWebAppDocument=function(c,d){var a=this,b=new OSF.DDA.BindingFacade(a);OSF.DDA.DispIdHost.addAsyncMethods(b,[OSF.DDA.AsyncMethodNames.AddFromPromptAsync]);OSF.DDA.DispIdHost.addAsyncMethods(a,[OSF.DDA.AsyncMethodNames.GetActiveViewAsync]);OSF.DDA.ExcelWebAppDocument.uber.constructor.call(a,c,b,d);if(a.mode==OSF.ClientMode.ReadOnly)a.url=document.URL;OSF.OUtil.finalizeProperties(a)};OSF.OUtil.extend(OSF.DDA.ExcelWebAppDocument,OSF.DDA.JsomDocument)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* Excel web application specific API library */
|
|
2
|
+
/* Version: 15.0.4420.1017 Build Time: 03/31/2014 */
|
|
3
|
+
/*
|
|
4
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*
|
|
8
|
+
Your use of this file is governed by the Microsoft Services Agreement http://go.microsoft.com/fwlink/?LinkId=266419.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
OSF.OUtil.setNamespace("XLS",OSF.DDA);OSF.OUtil.augmentList(Microsoft.Office.WebExtension.FilterType,{OnlyVisible:"onlyVisible"});OSF.OUtil.augmentList(Microsoft.Office.WebExtension.EventType,{SettingsChanged:"settingsChanged"});OSF.DDA.XLS.UniqueArguments={Data:"Data",Properties:"Properties",BindingRequest:"DdaBindingsMethod",BindingResponse:"Bindings",SingleBindingResponse:"singleBindingResponse",GetData:"DdaGetBindingData",AddRowsColumns:"DdaAddRowsColumns",SetData:"DdaSetBindingData",SettingsRequest:"DdaSettingsMethod",BindingEventSource:"ddaBinding"};OSF.DDA.XLS.SettingsTranslator=function(){var b=0,a=1;return {read:function(f){var c={},d=f.Settings;for(var g in d){var e=d[g];c[e[b]]=e[a]}return c},write:function(d){var e=[];for(var f in d){var c=[];c[b]=f;c[a]=d[f];e.push(c)}return e}}}();OSF.OUtil.setNamespace("Delegate",OSF.DDA.XLS);OSF.DDA.DispIdHost.getXLSDelegateMethods=function(){var a={};a[OSF.DDA.DispIdHost.Delegates.ExecuteAsync]=OSF.DDA.XLS.Delegate.executeAsync;a[OSF.DDA.DispIdHost.Delegates.RegisterEventAsync]=OSF.DDA.XLS.Delegate.registerEventAsync;a[OSF.DDA.DispIdHost.Delegates.UnregisterEventAsync]=OSF.DDA.XLS.Delegate.unregisterEventAsync;return a};OSF.DDA.XLS.Delegate.SpecialProcessor=function(){var b=[OSF.DDA.PropertyDescriptors.BindingProperties,OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,OSF.DDA.XLS.UniqueArguments.BindingRequest,OSF.DDA.XLS.UniqueArguments.BindingResponse,OSF.DDA.XLS.UniqueArguments.GetData,OSF.DDA.XLS.UniqueArguments.AddRowsColumns,OSF.DDA.XLS.UniqueArguments.SetData,OSF.DDA.XLS.UniqueArguments.SettingsRequest,OSF.DDA.XLS.UniqueArguments.BindingEventSource,OSF.DDA.EventDescriptors.BindingSelectionChangedEvent],a={};a[Microsoft.Office.WebExtension.Parameters.Data]=function(){var a="Rows",b="Headers";return {toHost:function(c){if(typeof c!="string"&&c[OSF.DDA.TableDataProperties.TableRows]!==undefined){var d={};d[a]=c[OSF.DDA.TableDataProperties.TableRows];d[b]=c[OSF.DDA.TableDataProperties.TableHeaders];c=d}else if(OSF.DDA.DataCoercion.determineCoercionType(c)==Microsoft.Office.WebExtension.CoercionType.Text)c=[[c]];return c},fromHost:function(d){var c;if(d[a]!=undefined){c={};c[OSF.DDA.TableDataProperties.TableRows]=d[a];c[OSF.DDA.TableDataProperties.TableHeaders]=d[b]}else c=d;return c}}}();a[OSF.DDA.SettingsManager.SerializedSettings]={toHost:OSF.DDA.XLS.SettingsTranslator.write,fromHost:OSF.DDA.XLS.SettingsTranslator.read};OSF.DDA.XLS.Delegate.SpecialProcessor.uber.constructor.call(this,b,a);this.pack=function(c,d){var b;if(this.isDynamicType(c))b=a[c].toHost(d);else b=d;return b};this.unpack=function(c,d){var b;if(this.isDynamicType(c))b=a[c].fromHost(d);else b=d;return b}};OSF.OUtil.extend(OSF.DDA.XLS.Delegate.SpecialProcessor,OSF.DDA.SpecialProcessor);OSF.DDA.XLS.Delegate.ParameterMap=function(){var j="ColCount",i="RowCount",h="StartCol",g="StartRow",m="CoerceType",l="BindingType",e="BindingId",f=new OSF.DDA.HostParameterMap(new OSF.DDA.XLS.Delegate.SpecialProcessor),a,d=f.self;function k(a){var c=null;if(a){c={};for(var d=a.length,b=0;b<d;b++)c[a[b].name]=a[b].value}return c}function b(b){var a={},c=k(b.toHost);if(b.invertible)a.map=c;else if(b.canonical)a.toHost=a.fromHost=c;else{a.toHost=c;a.fromHost=k(b.fromHost)}f.setMapping(b.type,a)}a=Microsoft.Office.WebExtension.Parameters;b({type:OSF.DDA.XLS.UniqueArguments.BindingRequest,toHost:[{name:a.ItemName,value:"ItemName"},{name:a.Id,value:e},{name:a.BindingType,value:l},{name:a.PromptText,value:"PromptText"},{name:a.FailOnCollision,value:"FailOnCollision"}]});b({type:OSF.DDA.XLS.UniqueArguments.GetData,toHost:[{name:a.Id,value:e},{name:a.CoercionType,value:m},{name:a.ValueFormat,value:"ValueFormat"},{name:a.FilterType,value:"FilterType"},{name:a.StartRow,value:g},{name:a.StartColumn,value:h},{name:a.RowCount,value:i},{name:a.ColumnCount,value:j}]});b({type:OSF.DDA.XLS.UniqueArguments.SetData,toHost:[{name:a.Id,value:e},{name:a.CoercionType,value:m},{name:a.Data,value:OSF.DDA.XLS.UniqueArguments.Data},{name:a.StartRow,value:g},{name:a.StartColumn,value:h}]});b({type:OSF.DDA.XLS.UniqueArguments.AddRowsColumns,toHost:[{name:a.Id,value:e},{name:a.Data,value:OSF.DDA.XLS.UniqueArguments.Data}]});b({type:OSF.DDA.XLS.UniqueArguments.SettingsRequest,toHost:[{name:a.OverwriteIfStale,value:"OverwriteIfStale"},{name:OSF.DDA.SettingsManager.SerializedSettings,value:OSF.DDA.XLS.UniqueArguments.Properties}],invertible:true});a=Microsoft.Office.WebExtension.BindingType;b({type:Microsoft.Office.WebExtension.Parameters.BindingType,toHost:[{name:a.Text,value:2},{name:a.Matrix,value:3},{name:a.Table,value:1}],invertible:true});a=OSF.DDA.BindingProperties;b({type:OSF.DDA.PropertyDescriptors.BindingProperties,fromHost:[{name:a.Id,value:"Name"},{name:a.Type,value:l},{name:a.RowCount,value:i},{name:a.ColumnCount,value:j},{name:a.HasHeaders,value:"HasHeaders"}]});b({type:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:0}]});b({type:OSF.DDA.PropertyDescriptors.Subset,fromHost:[{name:a.StartRow,value:g},{name:a.StartColumn,value:h},{name:a.RowCount,value:i},{name:a.ColumnCount,value:j}]});a=Microsoft.Office.WebExtension.AsyncResultStatus;b({type:OSF.DDA.PropertyDescriptors.AsyncResultStatus,fromHost:[{name:a.Succeeded,value:0},{name:a.Failed,value:1}]});b({type:OSF.DDA.EventDescriptors.BindingSelectionChangedEvent,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:OSF.DDA.XLS.UniqueArguments.BindingEventSource},{name:OSF.DDA.PropertyDescriptors.Subset,value:OSF.DDA.PropertyDescriptors.Subset}]});a=OSF.DDA.XLS.UniqueArguments;var c=OSF.DDA.MethodDispId;b({type:c.dispidGetSelectedDataMethod,fromHost:[{name:Microsoft.Office.WebExtension.Parameters.Data,value:a.Data}],toHost:[{name:a.GetData,value:d}]});b({type:c.dispidSetSelectedDataMethod,toHost:[{name:a.SetData,value:d}]});b({type:c.dispidAddBindingFromSelectionMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidAddBindingFromPromptMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidAddBindingFromNamedItemMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidReleaseBindingMethod,toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidGetBindingMethod,fromHost:[{name:OSF.DDA.XLS.UniqueArguments.SingleBindingResponse,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}],toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidGetAllBindingsMethod,fromHost:[{name:OSF.DDA.ListDescriptors.BindingList,value:OSF.DDA.XLS.UniqueArguments.BindingResponse}]});b({type:c.dispidGetBindingDataMethod,fromHost:[{name:Microsoft.Office.WebExtension.Parameters.Data,value:a.Data}],toHost:[{name:a.GetData,value:d}]});b({type:c.dispidSetBindingDataMethod,toHost:[{name:a.SetData,value:d}]});b({type:c.dispidAddRowsMethod,toHost:[{name:a.AddRowsColumns,value:d}]});b({type:c.dispidAddColumnsMethod,toHost:[{name:a.AddRowsColumns,value:d}]});b({type:c.dispidClearAllRowsMethod,toHost:[{name:a.BindingRequest,value:d}]});b({type:c.dispidLoadSettingsMethod,fromHost:[{name:OSF.DDA.SettingsManager.SerializedSettings,value:a.Properties}]});b({type:c.dispidSaveSettingsMethod,toHost:[{name:a.SettingsRequest,value:d}]});c=OSF.DDA.EventDispId;b({type:c.dispidDocumentSelectionChangedEvent});b({type:c.dispidBindingSelectionChangedEvent,fromHost:[{name:OSF.DDA.EventDescriptors.BindingSelectionChangedEvent,value:d}]});b({type:c.dispidBindingDataChangedEvent,fromHost:[{name:OSF.DDA.PropertyDescriptors.BindingProperties,value:a.BindingEventSource}]});b({type:c.dispidSettingsChangedEvent});return f}();OSF.DDA.XLS.Delegate.version=1;OSF.DDA.XLS.Delegate.executeAsync=function(a){if(!a.hostCallArgs)a.hostCallArgs={};a.hostCallArgs["DdaMethod"]={ControlId:OSF._OfficeAppFactory.getId(),Version:OSF.DDA.XLS.Delegate.version,DispatchId:a.dispId};a.onCalling&&a.onCalling();var b=(new Date).getTime();OSF._OfficeAppFactory.getClientEndPoint().invoke("executeMethod",function(e,d){a.onReceiving&&a.onReceiving();var c;if(e==Microsoft.Office.Common.InvokeResultCode.noError){OSF.DDA.XLS.Delegate.version=d["Version"];c=d["Error"]}else switch(e){case Microsoft.Office.Common.InvokeResultCode.errorHandlingRequestAccessDenied:c=OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability;break;default:c=OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError}a.onComplete&&a.onComplete(c,d);OSF.AppTelemetry&&OSF.AppTelemetry.onMethodDone(a.dispId,null,Math.abs((new Date).getTime()-b),c)},a.hostCallArgs)};OSF.DDA.XLS.Delegate._getOnAfterRegisterEvent=function(c,a){var b=(new Date).getTime();return function(e,f){a.onReceiving&&a.onReceiving();var d;if(e!=Microsoft.Office.Common.InvokeResultCode.noError)switch(e){case Microsoft.Office.Common.InvokeResultCode.errorHandlingRequestAccessDenied:d=OSF.DDA.ErrorCodeManager.errorCodes.ooeNoCapability;break;default:d=OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError}else d=f?OSF.DDA.ErrorCodeManager.errorCodes.ooeSuccess:OSF.DDA.ErrorCodeManager.errorCodes.ooeInternalError;a.onComplete&&a.onComplete(d);OSF.AppTelemetry&&OSF.AppTelemetry.onRegisterDone(c,a.dispId,Math.abs((new Date).getTime()-b),d)}};OSF.DDA.XLS.Delegate.registerEventAsync=function(a){a.onCalling&&a.onCalling();OSF._OfficeAppFactory.getClientEndPoint().registerForEvent(OSF.DDA.getXdmEventName(a.targetId,a.eventType),function(b){a.onEvent&&a.onEvent(b);OSF.AppTelemetry&&OSF.AppTelemetry.onEventDone(a.dispId)},OSF.DDA.XLS.Delegate._getOnAfterRegisterEvent(true,a),{controlId:OSF._OfficeAppFactory.getId(),eventDispId:a.dispId,targetId:a.targetId})};OSF.DDA.XLS.Delegate.unregisterEventAsync=function(a){a.onCalling&&a.onCalling();OSF._OfficeAppFactory.getClientEndPoint().unregisterForEvent(OSF.DDA.getXdmEventName(a.targetId,a.eventType),OSF.DDA.XLS.Delegate._getOnAfterRegisterEvent(false,a),{controlId:OSF._OfficeAppFactory.getId(),eventDispId:a.dispId,targetId:a.targetId})};OSF.DDA.ExcelWebAppDocument=function(c,d){var a=this,b=new OSF.DDA.BindingFacade(a);OSF.DDA.DispIdHost.addAsyncMethods(b,[OSF.DDA.AsyncMethodNames.AddFromPromptAsync]);OSF.DDA.ExcelWebAppDocument.uber.constructor.call(a,c,b,d);if(a.mode==OSF.ClientMode.ReadOnly)a.url=document.URL;OSF.OUtil.finalizeProperties(a)};OSF.OUtil.extend(OSF.DDA.ExcelWebAppDocument,OSF.DDA.JsomDocument)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="عملیات انجام نشد، زیرا این افزونه پیش از این درخواست، رمز دسترسی داشته است.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="محدودیتهای مرورگر مانع از ایجاد کادر گفتگو میشود. دامنه کادر گفتگو و دامنه میزبان افزونه در یک منطقه امنیتی مشابه نیستند.";Strings.OfficeOM.L_RequestTokenUnavailable="این API کنترل شده است تا فرکانس تماس پایین بیاید.";Strings.OfficeOM.L_InvalidArgument="آرگومان «{0}» در این حالت کار نمیکند، موجود نیست یا قالب آن مناسب نیست.";Strings.OfficeOM.L_InvalidGetColumns="ستون های معین شده نامعتبر هستند.";Strings.OfficeOM.L_ValueNotLoaded="مقدار شئ نتیجه هنوز بارگیری نشده است. قبل از خواندن ویژگی مقدار، با «context.sync()» در زمینه درخواست مرتبط تماس بگیرید.";Strings.OfficeOM.L_InvalidResourceUrlMessage="آدرس اینترنتی منبع نامعتبر در مانیفست مشخص شد.";Strings.OfficeOM.L_RedundantCallbackSpecification="بازگشت تماس را نمی توان در لیست آرگومان و نیز در شیء اختیاری مشخص کرد.";Strings.OfficeOM.L_DataReadError="خطای خواندن داده";Strings.OfficeOM.L_OperationCancelledErrorMessage="عملیات توسط کاربر لغو شد.";Strings.OfficeOM.L_UnsupportedDataObject="نوع شیء داده معین شده پشتیبانی نمیشود.";Strings.OfficeOM.L_OverwriteWorksheetData="عملیات تنظیم شده ناموفق بود زیرا شیء داده تأمین شده جانویسی می شود و یا داده را تغییر می دهد.";Strings.OfficeOM.L_NamedItemNotFound="مورد معین شده وجود ندارد.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath، انتخاب را به ۱۰۲۴ مورد محدود میکند.";Strings.OfficeOM.L_SliceSizeNotSupported="اندازه قسمت معین شده پشتیبانی نمیشود.";Strings.OfficeOM.L_ConfirmCancelMessage="با عرض پوزش، نمیتوانیم ادامه دهیم.";Strings.OfficeOM.L_BindingCreationError="خطای ایجاد پیوند اجزا";Strings.OfficeOM.L_ContinueButton="ادامه";Strings.OfficeOM.L_ElementMissing="ما نتوانستیم سلول جدول را قالب بندی کنیم زیرا بعضی از مقادیر پارامتری موجود نیستند. لطفاً پارامترها را بررسی کرده و دوباره امتحان کنید.";Strings.OfficeOM.L_InvalidGetRows="ردیف های معین شده نامعتبر هستند.";Strings.OfficeOM.L_RequestTimeout="اجرای تماس بیش از اندازه طول کشید.";Strings.OfficeOM.L_SelectionCannotBound="پیوست به موارد انتخابی ممکن نیست.";Strings.OfficeOM.L_UnsupportedUserIdentity="نوع هویت کاربر پشتیبانی نمیشود.";Strings.OfficeOM.L_Timeout="مدت عملیات به پایان رسیده است.";Strings.OfficeOM.L_InvalidFormatValue="یک یا چند پارامتر قالب دارای مقادیری هستند که مجاز نمیباشد. این مقادیر را بررسی کرده و دوباره امتحان کنید.";Strings.OfficeOM.L_OperationCancelledError="عملیات لغو شد";Strings.OfficeOM.L_DataWriteError="خطای نوشتن داده";Strings.OfficeOM.L_BindingNotExist="پیوستگی معین شده وجود ندارد.";Strings.OfficeOM.L_InvalidBindingOperation="عملیات پیوستگی نامعتبر";Strings.OfficeOM.L_RowIndexOutOfRange="مقدار فهرست ردیف خارج از محدوده مجاز است. از مقداری (0 یا بیشتر) استفاده کنید که کمتر از تعداد ردیف ها باشد.";Strings.OfficeOM.L_OutOfRange="خارج از محدوده";Strings.OfficeOM.L_CustomXmlExceedQuotaName="به حد مجاز انتخاب رسیدید";Strings.OfficeOM.L_ConfirmDialogConsentTitle="یک لحظه ...";Strings.OfficeOM.L_NotImplemented="کارکرد {0} اجرا نمیشود.";Strings.OfficeOM.L_DataStale="داد به روز نیست";Strings.OfficeOM.L_AppNameNotExist="نام افزونه برای {0} موجود نیست.";Strings.OfficeOM.L_CancelButton="لغو";Strings.OfficeOM.L_InvalidNode="گره نامعتبر";Strings.OfficeOM.L_DataNotMatchBindingSize="شیء داده تأمینی با اندازه مورد انتخابی فعلی مطابقت ندارد.";Strings.OfficeOM.L_SSOServerError="خطا در ارائه دهنده تأیید اعتبار روی داد.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="نمی توان از پارامترهای مختصات برای جدول تبدیل خودکار، هنگامی که جدول حاوی سلولهای ادغام شده است، استفاده کرد.";Strings.OfficeOM.L_OsfControlTypeNotSupported="نوع OsfControl پشتیبانی نمیشود.";Strings.OfficeOM.L_UnsupportedEnumeration="شمارش پشتیبانی نشده";Strings.OfficeOM.L_InternalErrorDescription="خطایی داخلی رخ داد.";Strings.OfficeOM.L_DialogInvalidScheme="طرح نشانی اینترنتی پشتیبانی نمیشود. به جای آن، از HTTPS استفاده کنید.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="تلاش برای تنظیم ویژگی فقط خواندنی «{0}».";Strings.OfficeOM.L_InvalidApiCallInContext="تماس API در زمینه فعلی نامعتبر است.";Strings.OfficeOM.L_FileTypeNotSupported="نوع فایل معین شده پشتیبانی نمیشود.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="محتوای انتخابی باید در قالب جدول باشد. داده را به صورت جدول قالببندی کرده و دوباره امتحان کنید.";Strings.OfficeOM.L_DialogAddressNotTrusted="دامنه URL در عنصر AppDomains در مانیفست گنجانده نشده است، و دامنه فرعی مکان مبدأ نیست.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="شما در آستانه ارسال و دریافت اطلاعات بالقوه حساسی از طرف {0} هستید. فقط در صورتی که به این وب سایت که اطلاعات حساس {1} را دریافت میکند، اعتماد دارید «تأیید» را کلیک کنید.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="این افزونه از موافقت کاربر پشتیبانی نمیکند.";Strings.OfficeOM.L_InvalidParameters="کارکرد {0} دارای پارامیترهای نامعتبر است.";Strings.OfficeOM.L_DocumentIsInactive="عملیات انجام نشد زیرا سند حاوی این افزونه غیرفعال است.";Strings.OfficeOM.L_SetDataParametersConflict="پارامترهای معین شده با هم در تناقض هستند.";Strings.OfficeOM.L_DialogRequireHTTPS="پروتکل HTTP پشتیبانی نمیشود. به جای آن، از HTTPS استفاده کنید.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="نمی توان از پارامترهای مختصات برای جدول تبدیل خودکار، هنگامی که جدول حاوی سلولهای ادغام شده است، استفاده کرد.";Strings.OfficeOM.L_NotTrustedWAC="این افزونه غیرفعال شده است تا به حفظ امنیت شما کمک کند. برای ادامه استفاده از این افزونه، تأیید کنید که این مورد در دامنهای مورد اعتمادی میزبانی میشود یا آن را در برنامه Office رایانه باز کنید.";Strings.OfficeOM.L_ShuttingDown="عملیات ناموفق بود زیرا داده ها در سرور به روز نیستند.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="جلسه Office شما منقضی شده است یا نامعتبر است. برای ادامه، صفحه را تازهسازی کنید.";Strings.OfficeOM.L_NewWindowCrossZone="تنظیمات امنیتی در مرورگر شما مانع از ایجاد کادر گفتگوی میشود. یک مرورگر دیگر را امتحان کنید یا {0}، بنابراین، «{1}» و دامنه نشان داده شده در نوار آدرس شما در منطقه امنیتی مشابهی هستند.";Strings.OfficeOM.L_BindingToMultipleSelection="انتخاب های کنارهم پشتیبانی نمی شود.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="افزونه قبلاً رمز دسترسی را درخواست کرده است.";Strings.OfficeOM.L_ConfirmDialogConsent="با کلیک روی تأیید، به {0} اجازه میدهید به اطلاعات شخصی و محتوای شما دسترسی داشته باشد. ";Strings.OfficeOM.L_InvalidSetColumns="ستون های معین شده نامعتبر هستند.";Strings.OfficeOM.L_CannotRegisterEvent="در دست دارنده رویداد را نمیتوان ثبت کرد.";Strings.OfficeOM.L_InvalidAPICall="تماس API نامعتبر";Strings.OfficeOM.L_SaveSettingsError="خطای تنظیمات ذخیره";Strings.OfficeOM.L_InvalidSelectionForBindingType="با موارد انتخابی فعلی و نوع پیوستگی معین شده نمی توان پیوستگی ایجاد کرد.";Strings.OfficeOM.L_TooManyArguments="تعداد بیش از اندازه آرگومان";Strings.OfficeOM.L_CustomXmlOutOfDateName="دادهها بهروز نیستند";Strings.OfficeOM.L_DataNotMatchCoercionType="نوع شیء داده معین شده با مورد انتخابی فعلی سازگار نیست.";Strings.OfficeOM.L_NetworkProblem="مشکل شبکه";Strings.OfficeOM.L_InvalidArgumentGeneric="استدلال(ها) که وارد تابع شدند، برای این موقعیت کارآمد نیستند، وجود ندارند یا در قالب درست نیستند.";Strings.OfficeOM.L_ColIndexOutOfRange="مقدار فهرست ستون خارج از محدوده مجاز است. از مقداری (0 یا بیشتر) استفاده کنید که کمتر از تعداد ستون ها باشد.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="قبل از بازیابی فایلی دیگر در مورد فایل فعلی با closeAsync تماس بگیرید.";Strings.OfficeOM.L_DialogAlreadyOpened="عملیات ناموفق بود زیرا افزونه از قبل پنجره فعال دارد.";Strings.OfficeOM.L_ModalDialogOpeng="عملیات انجام نشد زیرا این افزونه از قبل کادر محاورهای شرطی فعال دارد.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="تابع دریافت بافتار تأیید اعتبار موجود نیست";Strings.OfficeOM.L_ImplicitNotLoaded="پودمان قبل از به دست آوردن رمز بارگیری نشد";Strings.OfficeOM.L_EventHandlerRemovalFailed="حذف اداره کننده رویداد ناموفق بود.";Strings.OfficeOM.L_SettingsStaleError="خطای نقص تنظیمات";Strings.OfficeOM.L_MemoryLimit="از حد مجاز حافظه فراتر رفتید";Strings.OfficeOM.L_CannotNavigateTo="این شیء در مکانی قرار دارد که راه یابی آن پشتیبانی نمیشود.";Strings.OfficeOM.L_TooManyOptionalObjects="چندین شیء اختیاری در لیست پارامترها وجود دارد";Strings.OfficeOM.L_DialogOK="تأیید";Strings.OfficeOM.L_InvalidNamedItemForBindingType="نوع پیوستگی معین شده با مورد معین شده تأمینی سازگار نیست.";Strings.OfficeOM.L_BrowserAPINotSupported="این مرورگر از API درخواستی پشتیبانی نمی کند.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="استدلالهای ورودی نامعتبر.";Strings.OfficeOM.L_MissingRequiredArguments="بعضی از آرگومان های لازم موجود نیستند";Strings.OfficeOM.L_DialogParentIsMinimized="این عملیات انجام نشد زیرا پنجره والد کوچک شده است.";Strings.OfficeOM.L_CallbackNotAFunction="بازگشت تماس باید از نوع کارکردی باشد، از نوع {0} بود.";Strings.OfficeOM.L_DocumentReadOnly="عملیات درخواستی در حالت فعلی سند مجاز نیست.";Strings.OfficeOM.L_UserClickIgnore="کاربر پنجره را نادیده گرفت.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="نام تابع باید شامل فضای نام غیر خالی و نام کوتاه غیر خالی باشد.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="نادیده گرفتن";Strings.OfficeOM.L_ApiNotFoundDetails="روش یا حق مالکیت {0} بخشی از پیشنیاز {1} تعیین شده است که در نسخه {2} شما موجود نیست.";Strings.OfficeOM.L_ReadSettingsError="خطای تنظیمات خواندن";Strings.OfficeOM.L_NetworkProblemRetrieveFile="خطای شبکه مانع بازیابی فایل شده است.";Strings.OfficeOM.L_GetDataParametersConflict="پارامترهای معین شده با هم در تناقض هستند.";Strings.OfficeOM.L_InvalidResourceUrl="آدرس اینترنتی منبع برنامه نامعتبر ارائه شد.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="هنگام باز بودن یک کادر محاوره وجهی، عملیات نوشتن برای Office پشتیبانی نمیشود.";Strings.OfficeOM.L_DataNotMatchBindingType="شیء داده معین شده با این نوع پیوستگی سازگار نیست.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="مقدارهای rowCount یا columnCount معین شده نامعتبر هستند.";Strings.OfficeOM.L_SettingsCannotSave="تنظیمات ذخیره نمی شود.";Strings.OfficeOM.L_PermissionDenied="مجوز رد شد";Strings.OfficeOM.L_FunctionCallFailed="کارکرد تماس {0} ناموفق بود، کد خطا: {1}.";Strings.OfficeOM.L_InvalidCoercion="نوع تبدیل داده نامعتبر";Strings.OfficeOM.L_ConnectionFailureWithStatus="درخواست با کد وضعیت {0} انجام نشد.";Strings.OfficeOM.L_SpecifiedIdNotExist="شناسه معین شده وجود ندارد.";Strings.OfficeOM.L_CoercionTypeNotSupported="نوع تبدیل داده معین شده پشتیبانی نمیشود.";Strings.OfficeOM.L_SSOServerErrorMessage="یک خطای غیرمنتظره در سرور روی داد.";Strings.OfficeOM.L_InvalidGrant="تأیید اعتبار قبلی وجود ندارد.";Strings.OfficeOM.L_InvalidSSOAddinMessage="API هویت برای این افزونه پشتیبانی نمیشود.";Strings.OfficeOM.L_OperationNotSupported="این عملیات پشتیبانی نمیشود.";Strings.OfficeOM.L_EventHandlerNotExist="اداره کننده رویداد معین شده برای این پیوستگی یافت شند.";Strings.OfficeOM.L_SSOClientError="خطا در درخواست تأیید اعتبار از Office رخ داد.";Strings.OfficeOM.L_SSOConnectionLostError="یک اتصال طی فرآیند ورود به سیستم از دست رفت.";Strings.OfficeOM.L_NotSupportedEventType="نوع رویداد معین شده {0} پشتیبانی نمیشود.";Strings.OfficeOM.L_UserAbortedMessage="کاربر برای مجوزهای افزونه اعلام رضایت نکرد.";Strings.OfficeOM.L_InvalidGetStartRowColumn="مقدارهای startRow یا startColumn معین شده نامعتبر هستند.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="عملیات بر روی این نوع پیوستگی پشتیب��نی نمیشود.";Strings.OfficeOM.L_SettingsAreStale="تنظیمات قابل ذخیره نیستند زیرا به روز نمیباشند.";Strings.OfficeOM.L_NoHttpsWAC="این جلسه Office از اتصال امن استفاده نمیکند. توصیه میکنیم که اقدامات احتیاطی بیشتری انجام دهید.";Strings.OfficeOM.L_InvalidOrTimedOutSession="جلسه نامعتبر یا به پایان رسیده";Strings.OfficeOM.L_FormatValueOutOfRange="این مقدار خارج از محدوده مجاز است.";Strings.OfficeOM.L_NotSupportedBindingType="نوع پیوستگی معین شده {0} پشتیبانی نمیشود.";Strings.OfficeOM.L_CustomXmlNodeNotFound="گره معین شده یافت نشد.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='اندازه بار پاسخها از حد مجاز فراتر رفته است. لطفاً به مستندات مراجعه کنید: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_UserAborted="کاربر درخواست رضایت را لغو کرده است.";Strings.OfficeOM.L_EventRegistrationError="خطای ثبت رویداد";Strings.OfficeOM.L_RunMustReturnPromise="عملکرد انبوه ارائه شده به متد «.run» جواب حتمی ارائه نداد. تابع باید حتماً جواب حتمی ارائه کند تا اشیای ردیابیشده به طور خودکار در هنگام تکمیل عملکرد انبوه آزاد شوند. معمولاً جواب حتمی با پاسخ از «context.sync()» برگردانده میشود.";Strings.OfficeOM.L_PropertyDoesNotExist="ویژگی «{0}» در شئ وجود ندارد.";Strings.OfficeOM.L_DataNotMatchSelection="شیء داده تأمینی با شکل و ابعاد مورد انتخابی فعلی مطابقت ندارد.";Strings.OfficeOM.L_CannotWriteToSelection="نوشتن در موارد انتخابی ممکن نیست.";Strings.OfficeOM.L_ConfirmRefreshMessage="برای ادامه، افزونه را حذف و دوباره آن را اضافه کنید، یا صفحه را تازهسازی کنید.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="نوع هویت کاربر پشتیبانی نمیشود.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="مورد انتخابی فعلی با نوع تبدیل داده معین شده سازگار نیست.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="توجه: پیشنهاد می شود مجموعه های قالب بندي تعیین شده توسط تماس قالب بندي API زیر 100 باشند.";Strings.OfficeOM.L_BadSelectorString="رشته وارد شده به انتخابگر به درستی قالب بندی نشده است یا پشتیبانی نمی شود.";Strings.OfficeOM.L_SSOClientErrorMessage="یک خطای غیر منتظره در مشتری روی داد.";Strings.OfficeOM.L_InvalidTableOptionValue="یک یا چند پارامتر tableOptions دارای مقادیری هستند که مجاز نمیباشد. این مقادیر را بررسی کرده و دوباره امتحان کنید.";Strings.OfficeOM.L_TooManyIncompleteRequests="منتظر بمانید تا تماس قبلی کامل شود.";Strings.OfficeOM.L_InvalidSetStartRowColumn="مقدارهای startRow یا startColumn معین شده نامعتبر هستند.";Strings.OfficeOM.L_ActivityLimitReached="محدویت فعالیت فرا رسید.";Strings.OfficeOM.L_NoCapability="شما مجوزهای لازم برای این اقدام را ندارید.";Strings.OfficeOM.L_InternalError="خطای داخلی";Strings.OfficeOM.L_MultipleNamedItemFound="چندین شیء با نام یکسان یافت شدند.";Strings.OfficeOM.L_InvalidCellsValue="یک یا چند پارامتر سلولها دارای مقادیری هستند که مجاز نمیباشد. این مقادیر را بررسی کرده و دوباره امتحان کنید.";Strings.OfficeOM.L_OKButton="تأیید";Strings.OfficeOM.L_GetDataIsTooLarge="مجموعه داده درخواستی بیش از اندازه بزرگ است.";Strings.OfficeOM.L_InvalidRequestContext="شئ در بین موضوعهای درخواست مختلف استفاده نمیشود.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="مشخصهای با این نام که نشاندهنده تعریف تابع است باید در Excel.Script.CustomFunctions موجود باشد.";Strings.OfficeOM.L_InvalidDataObject="شیء داده نامعتبر";Strings.OfficeOM.L_InvalidDataFormat="قالب شیء داده معین شده نامعتبر است.";Strings.OfficeOM.L_MissingParameter="پارامتر ناموجود";Strings.OfficeOM.L_InvalidValue="مقدار نامعتبر";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="دادهها قدیمی است. جسم را دوباره بازیابی کنید.";Strings.OfficeOM.L_DataWriteReminder="یادآور نوشتن داده";Strings.OfficeOM.L_NotSupported="کارکرد {0} پشتیبانی نمیشود.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='اندازه بار درخواستها از حد مجاز فراتر رفته است. لطفاً به مستندات مراجعه کنید: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_HostError="خطای میزبان";Strings.OfficeOM.L_ConnectionFailureWithDetails="درخواست با کد وضعیت {0}، کد خطای {1} و پیام خطای زیر انجام نشد: {2}";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="تغییر به ویژگی «{0}» را نمیتوان از طریق یک روش «object.set» اعمال کرد.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API در این پلتفرم پشتیبانی نمیشود.";Strings.OfficeOM.L_InvalidBinding="پیوستگی نامعتبر";Strings.OfficeOM.L_EventHandlerAdditionFailed="افزودن اداره کننده رویداد ناموفق بود.";Strings.OfficeOM.L_GetSelectionNotSupported="مورد انتخابی پشتیبانی نمی شود.";Strings.OfficeOM.L_UnknownBindingType="نوع پیوستگی پشتیبانی نمیشود.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="نام تابع باید تنها شامل حروف، ارقام، خطوط زیرین و نقطه باشد.";Strings.OfficeOM.L_FormattingReminder="قالببندی یادآور";Strings.OfficeOM.L_APICallFailed="تماس API ناموفق بود";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="مرورگر خود را پیکربندی کنید";Strings.OfficeOM.L_ConfirmDialog="دامنه {0} بهعنوان Microsoft Office عمل میکند و میتواند افزونههای Office را اجرا کند، که میتواند به اطلاعات شخصی شما دسترسی داشته باشد. اگر به این دامنه اعتماد دارید تا بهعنوان Office اجرا شده و به دادههای شما دسترسی داشته باشد، برای ادامه روی «تأیید» کلیک کنید.";Strings.OfficeOM.L_InvalidSetRows="ردیف های معین شده نامعتبر هستند.";Strings.OfficeOM.L_InvalidFormat="خطای قالب نامعتبر";Strings.OfficeOM.L_InvalidObjectPath="مسیر شئ «{0}» برای هدف شما کار نمیکند. اگر میخواهید از شئ در چندین فراخوانی «context.sync» و در خارج از اجرای ترتیبی دسته «.run» استفاده کنید، لطفاً از متدهای «context.trackedObjects.add()» و «context.trackedObjects.remove()» برای مدیریت چرخه عمر شئ استفاده کنید.";Strings.OfficeOM.L_DisplayDialogError="خطا در نمایش پنجره";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel در حالت ویرایش سلول است. لطفاً با فشار دادن «ENTER» یا «TAB» یا انتخاب یک سلول دیگر، از حالت ویرایش خارج شوید و سپس دوباره امتحان کنید.";Strings.OfficeOM.L_IndexOutOfRange="فهرست خارج از محدوده است.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} میخواهد پنجره جدیدی نمایش دهد.";Strings.OfficeOM.L_SetDataIsTooLarge="شیء داده معین شده بیش از اندازه بزرگ است.";Strings.OfficeOM.L_WorkbookHiddenMessage="درخواست API جاوا اسکریپت انجام نشد زیرا کتاب کار پنهان بود. لطفاً کتاب کار را از حالت پنهان در آورید و مجدداً امتحان کنید.";Strings.OfficeOM.L_CustomFunctionImplementationMissing='مشخصهای با این نام در Excel.Script.CustomFunctions که نشاندهنده تعریف تابع است باید شامل ویژگی "call" باشد که این تابع را اجرا کند.';Strings.OfficeOM.L_InValidOptionalArgument="آرگومان اختیاری نامعتبر";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="نوع تبدیل داده معین شده با این نوع پیوستگی سازگار نیست.";Strings.OfficeOM.L_CustomXmlError="خطای XML سفارشی.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="لطفاً انتخاب خود را انجام دهید.";Strings.OfficeOM.L_DialogNavigateError="خطا در پیمایش پنجره";Strings.OfficeOM.L_SettingNameNotExist="نام تنظیمات معین شده وجود ندارد.";Strings.OfficeOM.L_NavOutOfBound="عملیات ناموفق بود زیرا فهرست خارج از دامنه است.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="عملیات با موفقیت انجام نشد زیرا این افزونه از موافقت کاربر در این مقوله پشتیبانی نمیکند";Strings.OfficeOM.L_InitializeNotReady="Office.js هنوز بهطور کامل بارگیری نشده است. لطفاً دوباره تلاش کنید یا حتماً کل ارزش دهی اولیه را در کارکرد Office.initialize اضافه کنید.";Strings.OfficeOM.L_APINotSupported="API پشتیبانی نمی شود";Strings.OfficeOM.L_InvalidBindingError="خطای پیوستگی نامعتبر";Strings.OfficeOM.L_UserNotSignedIn="هیچ کاربر Office وارد نشده است.";Strings.OfficeOM.L_InvalidReadForBlankRow="ردیف معین شده خالی است.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="برنامه {0} موجود نیست. با Microsoft.Office.WebExtension.initialize(reason) تماس گرفته نشده است.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="توجه: پیشنهاد می شو تعداد سلول های جدول زیر 20000 سلول باشد.";Strings.OfficeOM.L_TooManyOptionalFunction="چندین کارکرد اختیاری در لیست پارامترها وجود دارد";Strings.OfficeOM.L_UnsupportedEnumerationMessage="شمارش در برنامه میزبان فعلی پشتیبانی نمیشوند.";Strings.OfficeOM.L_InvalidGrantMessage="این افزونه اعطا نشده است.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="اجازه دادن";Strings.OfficeOM.L_InvalidColumnsForBinding="ستون های معین شده نامعتبر هستند.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="یک اتصال طی فرآیند ورود به سیستم از دست رفت و ممکن است کاربر وارد سیستم نشده باشد. این امر احتمالاً به دلیل تنظیمات پیکربندی مرورگر کاربر، از جمله مناطق امنیتی، بهوجود آمده است.";Strings.OfficeOM.L_PropertyNotLoaded="مشخصه «{0}» موجود نیست. قبل از خواندن مقدار مشخصه، متد بارگیری را بر روی شئ دارنده فراخوانی کنید و سپس «context.sync()» را در موضوع درخواست مرتبط فراخوانی کنید."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_ConfirmRefreshMessage="Jos haluat jatkaa, poista apuohjelma ja lisää se uudelleen tai Päivitä sivu.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Valittu pakotustyyppi ei ole yhteensopiva tämän sidontatyypin kanssa.";Strings.OfficeOM.L_SettingsAreStale="Asetuksien tallennus epäonnistui, koska ne ovat eivät ole ajan tasalla.";Strings.OfficeOM.L_InvalidSetStartRowColumn="Määritetyt aloitusrivi-/aloitussarake-arvot ovat virheellisiä.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage="Pyynnön tietojen koko on ylittänyt sallitun rajan. Katso ohjeet: ”https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins”.";Strings.OfficeOM.L_APICallFailed="Ohjelmointirajapinnan kutsu epäonnistui";Strings.OfficeOM.L_DocumentIsInactive="Toiminto epäonnistui, koska tämän apuohjelman sisältävä tiedosto ei ole aktiivinen.";Strings.OfficeOM.L_InvalidResourceUrl="Annettu sovelluksen resurssin URL-osoite on virheellinen.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Valinnan raja saavutettu";Strings.OfficeOM.L_UnsupportedEnumeration="Luettelointia ei tueta";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Valitun sisällön on oltava taulukkomuodossa. Muotoile tiedot taulukoksi ja yritä uudelleen.";Strings.OfficeOM.L_SSOClientErrorMessage="Odottamaton virhe asiakasohjelmassa.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Tee valinta.";Strings.OfficeOM.L_InvalidCellsValue="Vähintään yhdessä cells-parametrissa on arvoja, joita ei sallita. Tarkista arvot ja yritä uudelleen.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Määritetty sidontatyyppi ei ole yhteensopiva annetun nimetyn kohteen kanssa.";Strings.OfficeOM.L_DataWriteError="Virhe kirjoitettaessa tietoja";Strings.OfficeOM.L_SetDataIsTooLarge="Tietojoukko on liian suuri.";Strings.OfficeOM.L_CoercionTypeNotSupported="Määritettyä pakotustyyppiä ei tueta.";Strings.OfficeOM.L_InvalidReadForBlankRow="Määritetty rivi on tyhjä.";Strings.OfficeOM.L_BindingCreationError="Sidonnan luontivirhe";Strings.OfficeOM.L_RowIndexOutOfRange="Rivi-indeksin arvo on sallitun alueen ulkopuolella. Käytä arvoa (vähintään 0), joka on pienempi kuin rivien määrä.";Strings.OfficeOM.L_ValueNotLoaded="Tulosobjektin arvoa ei ole vielä ladattu. Kutsu arvoon liittyvässä pyyntökontekstissa context.sync() ennen arvo-ominaisuuden lukemista.";Strings.OfficeOM.L_RequestTokenUnavailable="Tämä ohjelmointirajapinta on määritetty hidastamaan kutsun taajutta.";Strings.OfficeOM.L_UnknownBindingType="Sidontatyyppiä ei tueta.";Strings.OfficeOM.L_UserNotSignedIn="Kukaan ei ole kirjautunut Officeen.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Huomautus: on suositeltavaa, että taulukossa on alle 20 000 solua.";Strings.OfficeOM.L_RedundantCallbackSpecification="Takaisinsoittoa ei voi määrittää sekä argumenttiluettelossa ja valinnaisessa objektissa.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Yritetään määrittää vain luku -ominaisuutta {0}.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP-protokolla ei ole tuettu. Käytä sen sijaan HTTPS-protokollaa";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ohita";Strings.OfficeOM.L_NoHttpsWAC="Tämä Office-istunto ei käytä suojattua yhteyttä. On suositeltavaa noudattaa erityistä varovaisuutta.";Strings.OfficeOM.L_GetSelectionNotSupported="Nykyistä valintaa ei tueta.";Strings.OfficeOM.L_DataStale="Tiedot eivät ole ajan tasalla";Strings.OfficeOM.L_DataReadError="Tietojen lukuvirhe";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Virheellisiä syöteargumentteja.";Strings.OfficeOM.L_InvalidFormatValue="Vähintään yhdessä format-parametrissa on arvoja, joita ei sallita. Tarkista arvot ja yritä uudelleen.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Toimintoa ei tueta tässä sidostyypissä.";Strings.OfficeOM.L_APINotSupported="Ohjelmointirajapintaa ei tueta";Strings.OfficeOM.L_EventRegistrationError="Tapahtuman rekisteröintivirhe";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Funktion nimessä on oltava muu kuin tyhjä nimitila ja muu kuin tyhjä lyhyt nimi.";Strings.OfficeOM.L_SSOServerError="Virhe käyttöoikeuksien todentamispalvelun tarjoajassa.";Strings.OfficeOM.L_DataNotMatchBindingSize="Annettu tieto-objekti ei vastaa nykyisen valinnan kokoa.";Strings.OfficeOM.L_DialogAlreadyOpened="Toiminto epäonnistui, koska tällä apuohjelmalla on jo aktiivinen valintaikkuna.";Strings.OfficeOM.L_InvalidTableOptionValue="Vähintään yhdessä tableOptions-parametrissa on arvoja, joita ei sallita. Tarkista arvot ja yritä uudelleen.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Hetki…";Strings.OfficeOM.L_DataNotMatchBindingType="Määritetty tieto-objekti ei ole yhteensopiva sidontatyypin kanssa.";Strings.OfficeOM.L_ConnectionFailureWithStatus="Pyyntö epäonnistui tilakoodilla {0}.";Strings.OfficeOM.L_InvalidSetColumns="Määritetyt sarakkeet eivät kelpaa.";Strings.OfficeOM.L_OutOfRange="Ei alueella";Strings.OfficeOM.L_UnsupportedUserIdentity="Käyttäjätietotyyppiä ei tueta.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Virheellinen tai aikakatkaistu istunto";Strings.OfficeOM.L_ShuttingDown="Toiminto epäonnistui, koska palvelimen tiedot eivät ole ajan tasalla.";Strings.OfficeOM.L_FileTypeNotSupported="Määritettyä tiedostotyyppiä ei tueta.";Strings.OfficeOM.L_BindingToMultipleSelection="Epäyhtenäistä valintaa ei tueta.";Strings.OfficeOM.L_MemoryLimit="Muistiraja ylitetty";Strings.OfficeOM.L_NotTrustedWAC="Tämä apuohjelma on poistettu käytöstä, jotta voit käyttää laitettasi turvallisesti. Jos haluat jatkaa apuohjelman käyttöä, varmista, että sitä isännöidään luotettavassa toimialueessa, ja avaa se Office-työpöytäsovelluksessa.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Tämä apuohjelma ei tue käyttäjän suostumusta.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Tapahtumakäsittelijän lisääminen epäonnistui.";Strings.OfficeOM.L_ImplicitNotLoaded="Moduulia ei ole ladattu ennen tunnuksen hankkimista";Strings.OfficeOM.L_SettingsStaleError="Vanhentuneet asetukset";Strings.OfficeOM.L_BadSelectorString="Valitsimeen välitetyn merkkijonon muoto ei ole kelvollinen tai sitä ei tueta.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Sovellusta {0} ei ole. Kohdetta Microsoft.Office.WebExtension.initialize(reason) ei ole kutsuttu.";Strings.OfficeOM.L_NetworkProblem="Verkkovirhe";Strings.OfficeOM.L_NamedItemNotFound="Nimettyä kohdetta ei ole olemassa.";Strings.OfficeOM.L_InvalidGetStartRowColumn="Määritetyt aloitusrivi-/aloitussarake-arvot ovat virheellisiä.";Strings.OfficeOM.L_CannotWriteToSelection="Nykyiseen valintaan kirjoittaminen ei onnistu.";Strings.OfficeOM.L_InvalidBinding="Virheellinen sidonta";Strings.OfficeOM.L_InvalidGrant="Esivaltuutus puuttuu.";Strings.OfficeOM.L_InvalidGrantMessage="Apuohjelman käyttöoikeus puuttuu.";Strings.OfficeOM.L_ConfirmDialog="Toimialue {0} toimii Microsoft Office ja voi suorittaa Office apuosia, jotka voivat käyttää henkilökohtaisia tietojasi. Jos luotat toimialueen suorittamiseen Office ja pystyt käyttämään tietojasi, jatka valitsemalla OK.";Strings.OfficeOM.L_InvalidBindingOperation="Virheellinen sidontatoiminto";Strings.OfficeOM.L_SaveSettingsError="Asetuksien tallennusvirhe";Strings.OfficeOM.L_SpecifiedIdNotExist="Määritettyä tunnusta ei ole.";Strings.OfficeOM.L_InvalidColumnsForBinding="Määritetyt sarakkeet eivät kelpaa.";Strings.OfficeOM.L_NotImplemented="Toimintoa {0} ei ole toteutettu.";Strings.OfficeOM.L_InvalidValue="Virheellinen arvo";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl-tyyppiä ei tueta.";Strings.OfficeOM.L_FormattingReminder="Muotoilumuistutus";Strings.OfficeOM.L_MultipleNamedItemFound="Löytyi useita saman nimisiä kohteita.";Strings.OfficeOM.L_RunMustReturnPromise=".run-menetelmään välitetty erätoiminto ei palauttanut lupausta. Toiminnon on palautettava lupaus, jotta mahdolliset automaattisesti seuratut objektit voidaan vapauttaa erätoiminnon valmistuessa. Yleensä lupauksen palautus tapahtuu palauttamalla vastaus kohteesta context.sync().";Strings.OfficeOM.L_NavOutOfBound="Toiminto epäonnistui, koska indeksi on alueen ulkopuolella.";Strings.OfficeOM.L_ColIndexOutOfRange="Sarakeindeksin arvo on sallitun alueen ulkopuolella. Käytä arvoa (vähintään 0), joka on pienempi kuin rivien määrä.";Strings.OfficeOM.L_CustomXmlError="Mukautettu XML -virhe.";Strings.OfficeOM.L_InvalidDataFormat="Määritetyn tieto-objektin muoto on virheellinen.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} haluaa avata uuden ikkunan.";Strings.OfficeOM.L_SelectionCannotBound="Sitominen nykyiseen valintaan ei onnistu.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Verkkovirhe esti tiedoston hakemisen.";Strings.OfficeOM.L_DocumentReadOnly="Pyydetty toiminto ei ole sallittu tiedoston nykyisessä tilassa.";Strings.OfficeOM.L_ApiNotFoundDetails="Menetelmä tai ominaisuus {0} on osa vaatimusjoukkoa {1}, joka ei ole käytettävissä siinä ohjelman {2} versiossa, joka sinulla on käytössäsi.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Toiminto epäonnistui, koska apuohjelma pyytää jo käyttöoikeustietuetta.";Strings.OfficeOM.L_PermissionDenied="Käyttö estetty";Strings.OfficeOM.L_MissingRequiredArguments="jotkin pakolliset argumentit puuttuuvat";Strings.OfficeOM.L_SSOUnsupportedPlatform="Tämä ympäristö ei tue ohjelmointirajapintoja.";Strings.OfficeOM.L_DialogNavigateError="Valintaikkunan siirtymisvirhe";Strings.OfficeOM.L_NoCapability="Sinulla ei ole oikeuksia tämän toiminnon tekemiseen.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Luettelotiedostossa määritetty resurssin URL-osoite on virheellinen.";Strings.OfficeOM.L_InValidOptionalArgument="valinnainen argumentti ei kelpaa";Strings.OfficeOM.L_NotSupported="Toimintoa {0} ei tueta.";Strings.OfficeOM.L_DialogParentIsMinimized="Toiminto epäonnistui, koska pääikkuna on pienennetty.";Strings.OfficeOM.L_DialogInvalidScheme="URL-malli ei ole tuettu. Käytä sen sijaan HTTPS-protokollaa.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Sovelluksen määritetty pakotustyyppi ei tue nykyistä valintaa.";Strings.OfficeOM.L_Timeout="Toiminto aikakatkaistiin.";Strings.OfficeOM.L_InvalidApiCallInContext="Virheellinen API-kutsu nykyisessä kontekstissa.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Excel.Script.CustomFunctions-kohteen tämän nimisessä ominaisuudessa, joka kuvaa funktion määritystä, on oltava call-ominaisuus, joka ottaa funktion käyttöön.";Strings.OfficeOM.L_DisplayDialogError="Valintaikkuna esitysvirhe";Strings.OfficeOM.L_PropertyNotLoaded="Ominaisuus {0} ei ole käytettävissä. Ennen kuin luet ominaisuuden arvon, kutsu Load-menetelmä sisältävään objektiin ja kutsu context.sync() siihen liittyvään pyyntökontekstiin.";Strings.OfficeOM.L_InvalidParameters="Toiminnon {0} parametrit ovat virheellisiä.";Strings.OfficeOM.L_ModalDialogOpeng="Toiminto epäonnistui, koska apuohjelmalla on jo aktiivinen modaalinen valintaikkuna.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Tapahtumakäsittelijän poistaminen epäonnistui.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Office-istunto on vanhentunut tai se on virheellinen. Jatka päivittämällä sivu.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Käyttöoikeuskontekstin hankkimistoiminto puuttuu";Strings.OfficeOM.L_CancelButton="Peruuta";Strings.OfficeOM.L_GetDataParametersConflict="Määritetyt parametrit ovat ristiriidassa.";Strings.OfficeOM.L_ContinueButton="Jatka";Strings.OfficeOM.L_NotSupportedBindingType="Määritettyä sidontatyyppiä {0} ei tueta.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Nykyisellä valinnalla ja määritetyllä sidontatyypillä ei voi luoda sidontaa.";Strings.OfficeOM.L_NotSupportedEventType="Määritettyä tapahtumatyyppiä {0} ei tueta.";Strings.OfficeOM.L_InvalidAPICall="Virheellinen API-kutsu";Strings.OfficeOM.L_TooManyOptionalFunction="useita valinnaisia toimintoja parametriluettelossa";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Koordinointiparametreja ei voi käyttää pakotustyyppitaulukossa, kun taulukossa on yhdistettyjä soluja.";Strings.OfficeOM.L_UnsupportedDataObject="Annettua tieto-objektia ei tueta.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel on solujen muokkaustilassa. Poistu muokkaustilasta painamalla Enter- tai sarkainnäppäintä tai valitsemalla toinen solu. Yritä sitten uudelleen.";Strings.OfficeOM.L_ActivityLimitReached="Toimintojen raja on saavutettu.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Määritetyt rivien määrä- / sarakkeiden määrä -arvot ovat virheellisiä.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Selainrajoitukset estivät valintaikkunan luomisen. Valintaikkunan toimialue ja apuohjelman isännän toimialue eivät ole samassa suojausvyöhykkeessä.";Strings.OfficeOM.L_PropertyDoesNotExist="Ominaisuutta {0} ei ole olemassa objektissa.";Strings.OfficeOM.L_InvalidArgument="Argumentti {0} ei sovi tähän tilanteeseen, se puuttuu tai se ei ole oikeassa muodossa.";Strings.OfficeOM.L_MissingParameter="Parametri puuttuu";Strings.OfficeOM.L_SetDataParametersConflict="Määritetyt parametrit ovat ristiriidassa.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage="Vastauksen tietojen koko on ylittänyt sallitun rajan. Katso ohjeet: ”https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins”.";Strings.OfficeOM.L_InternalError="Sisäinen virhe";Strings.OfficeOM.L_ConfirmDialogConsent="Valitsemalla OK sallit käyttäjälle {0} pääsyn sisältöösi ja henkilökohtaisiin tietoihisi. ";Strings.OfficeOM.L_SSOClientError="Officen todentamispyynnössä tapahtui virhe.";Strings.OfficeOM.L_InvalidCoercion="Pakotuksen tyyppi ei kelpaa";Strings.OfficeOM.L_SliceSizeNotSupported="Määritettyä sektorin kokoa ei tueta.";Strings.OfficeOM.L_OperationCancelledError="Toiminto peruutettu";Strings.OfficeOM.L_InvalidGetRows="Määritetyt rivit eivät kelpaa.";Strings.OfficeOM.L_CannotNavigateTo="Objekti on paikassa, joka ei tue siirtymistä.";Strings.OfficeOM.L_CallbackNotAFunction="Takaisinkutsun on oltava tyyppiä toiminto, se oli tyyppiä {0}.";Strings.OfficeOM.L_OperationNotSupported="Toiminto ei ole tuettu.";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript-ohjelmointi raja pinta pyyntö epäonnistui, koska työkirja on piilotettu. Näytä työkirja ja yritä uudelleen.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_BrowserAPINotSupported="Tämä selain ei tue pyydettyä ohjelmointirajapintaa.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Toiminto epäonnistui, koska apuohjelma ei tue käyttäjän suostumusta tässä luokassa";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Ominaisuuteen {0} tehtyjä muutoksia ei voi ottaa käyttöön object.set-menetelmällä.";Strings.OfficeOM.L_DataNotMatchSelection="Annettu tieto-objekti ei ole yhteensopiva nykyisen valinnan muodon tai mittojen kanssa.";Strings.OfficeOM.L_IndexOutOfRange="Indeksi on alueen ulkopuolella.";Strings.OfficeOM.L_InvalidFormat="Virheellinen tiedostomuoto";Strings.OfficeOM.L_UserAbortedMessage="Käyttäjä ei antanut lupaa apuohjelman käyttöoikeuksille.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="määritä selain";Strings.OfficeOM.L_InvalidSSOAddinMessage="Tämä apuohjelma ei tue käyttäjätietojen ohjelmointirajapintaa.";Strings.OfficeOM.L_HostError="Isäntävirhe";Strings.OfficeOM.L_InvalidNode="Virheellinen solmu";Strings.OfficeOM.L_FunctionCallFailed="Toiminnon {0} kutsu epäonnistui, virhekoodi: {1}.";Strings.OfficeOM.L_InvalidDataObject="Virheellinen tieto-objekti";Strings.OfficeOM.L_AppNameNotExist="Apuohjelmaa {0} ei ole olemassa.";Strings.OfficeOM.L_GetDataIsTooLarge="Pyydetty tietojoukko on liian suuri.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Huomautus: muotoilu-API-kutsun määrittämien muotoilujoukkojen arvo on suositeltavaa olla alle 100.";Strings.OfficeOM.L_OperationCancelledErrorMessage="Käyttäjä peruutti toiminnon.";Strings.OfficeOM.L_UserClickIgnore="Käyttäjä ohitti valintaikkunan.";Strings.OfficeOM.L_BindingNotExist="Määritettyä sidontaa ei ole.";Strings.OfficeOM.L_InvalidBindingError="Virheellinen sidonta -virhe";Strings.OfficeOM.L_InvalidArgumentGeneric="Funktioon välitetyt argumentit eivät sovi tähän tilanteeseen, ne puuttuvat tai ovat väärässä muodossa.";Strings.OfficeOM.L_DialogAddressNotTrusted="URL-osoitteen toimi alue ei sisälly luettelo tiedoston AppDomains-elementtiin, eikä se ole lähde sijainnin aliverkkotunnus.";Strings.OfficeOM.L_RequestTimeout="Kutsun suorittaminen vei liian kauan.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Office ei tue kirjoitustoimintoa, kun modaalinen valintaikkuna on avoinna.";Strings.OfficeOM.L_InternalErrorDescription="Sisäinen virhe.";Strings.OfficeOM.L_SSOConnectionLostError="Yhteys katkesi kirjautumisen aikana.";Strings.OfficeOM.L_ReadSettingsError="Lukuasetusvirhe";Strings.OfficeOM.L_InitializeNotReady="Office.js-tiedostoa ei ole vielä ladattu kokonaan. Yritä myöhemmin uudelleen tai varmista, että lisäät alustuskoodin Office.initialize-toimintoon.";Strings.OfficeOM.L_SettingNameNotExist="Määritettyä asetuksen nimeä ei ole.";Strings.OfficeOM.L_DataNotMatchCoercionType="Määritetyn tieto-objektin tyyppi ei ole yhteensopiva nykyisen valinnan kanssa.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Käyttäjän käyttäjätietotyyppiä ei tueta.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Koordinointiparametreja ei voi käyttää pakotustyyppitaulukossa, kun taulukossa on yhdistettyjä soluja.";Strings.OfficeOM.L_ElementMissing="Taulukon solua ei voitu muotoilla, koska parametriarvoja puuttuu. Tarkista parametrit ja yritä uudelleen.";Strings.OfficeOM.L_CustomXmlNodeNotFound="Määritettyä solmua ei löydy.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Funktion nimessä voi olla ainoastaan kirjaimia, numeroita, alaviivoja ja pisteitä.";Strings.OfficeOM.L_TooManyIncompleteRequests="Odota, kunnes aiempi kutsu on valmis.";Strings.OfficeOM.L_ConfirmCancelMessage="Valitettavasti jatkaminen ei onnistu.";Strings.OfficeOM.L_SettingsCannotSave="Asetusten tallentaminen epäonnistui.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Salli";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Apuohjelma pyytää jo käyttöoikeustietuetta.";Strings.OfficeOM.L_CannotRegisterEvent="Tapahtumakäsittelijää ei voi rekisteröidä.";Strings.OfficeOM.L_SSOServerErrorMessage="Odottamaton palvelinvirhe.";Strings.OfficeOM.L_InvalidGetColumns="Määritetyt sarakkeet eivät kelpaa.";Strings.OfficeOM.L_DataWriteReminder="Tietojen kirjoittamismuistutus";Strings.OfficeOM.L_ConnectionFailureWithDetails="Pyyntö epäonnistui. Tilakoodi on {0} ja virhekoodi on {1}. Virheviesti on seuraava: {2}";Strings.OfficeOM.L_TooManyArguments="liian monta argumenttia";Strings.OfficeOM.L_CustomXmlOutOfDateName="Tiedot eivät ole ajan tasalla";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Luettelointia ei tueta nykyisessä isäntäsovelluksessa.";Strings.OfficeOM.L_FormatValueOutOfRange="Arvo on sallitun alueen ulkopuolella.";Strings.OfficeOM.L_NewWindowCrossZone="Selaimen suojausasetukset estävät valintaikkunan luomisen. Kokeile toista selainta tai {0} niin, että {1} ja otsikkorivin toimialue ovat samalla suojausvyöhykkeellä.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Kutsu closeAsync nykyisestä tiedostosta ennen toisen hakemista.";Strings.OfficeOM.L_InvalidObjectPath="Objektin polku {0} ei toimi tässä yhteydessä. Jos käytät objektia useissa context.sync-kutsuissa sekä .run-erän peräkkäisen suorituksen ulkopuolella, käytä context.trackedObjects.add()- ja context.trackedObjects.remove()-menetelmiä objektin elinkaaren hallintaan.";Strings.OfficeOM.L_TooManyOptionalObjects="useita valinnaisia objekteja parametriluettelossa";Strings.OfficeOM.L_InvalidSetRows="Määritetyt rivit eivät kelpaa.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath rajoittaa valinnan 1024 kohteeseen.";Strings.OfficeOM.L_EventHandlerNotExist="Sidonnalle ei löytynyt määritettyä tapahtumakäsittelijää.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Tiedot eivät ole ajan tasalla. Nouda objekti uudelleen.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Excel.Script.CustomFunctions-kohteessa on oltava tämän niminen ominaisuus, joka kuvaa funktion määritystä.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Yhteys katkesi kirjautumisen aikana, eikä käyttäjää ehkä kirjattu sisään. Tämä johtui todennäköisesti käyttäjän selaimen määritysasetuksista, esimerkiksi suojausvyöhykkeistä.";Strings.OfficeOM.L_OverwriteWorksheetData="Asetustoiminto epäonnistui, koska annettu tieto-objekti korvaa tai siirtää tiedot.";Strings.OfficeOM.L_UserAborted="Käyttäjä keskeytti lupapyynnön.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Olet lähettämässä ja vastaanottamassa mahdollisesti arkaluontoisia tietoja {0}. Valitse OK vain, jos luotat seuraavaan sivustoon, joka vastaanottaa luottamuksellisia tietoja: {1}.";Strings.OfficeOM.L_InvalidRequestContext="Objektia ei voi käyttää eri pyyntökonteksteissa."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_OperationNotSupported="Hindi suportado ang operasyon.";Strings.OfficeOM.L_CustomXmlError="Error ng Pasadyang XML.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Ang mga coordinate parameter ay hindi maaaring gamitin sa uri ng pampwersa na Talahanayan kapag ang talahanayan ay naglalaman ng mga pinag-isang cell.";Strings.OfficeOM.L_UserNotSignedIn="Walang user na naka-sign in sa Office.";Strings.OfficeOM.L_InvalidSetRows="Hindi tama ang tinukoy na mga hanay.";Strings.OfficeOM.L_NoCapability="Wala kang sapat na pahintulot para sa aksyong ito.";Strings.OfficeOM.L_SettingsStaleError="Dati nang Error ng mga Setting";Strings.OfficeOM.L_InvalidApiCallInContext="May hindi tamang API call sa kasalukuyang konteksto.";Strings.OfficeOM.L_RequestTokenUnavailable="Sinakal ang API na ito para pabagalin ang frequency ng tawag.";Strings.OfficeOM.L_InvalidAPICall="Hindi Tamang API Call";Strings.OfficeOM.L_NotSupported="Ang function {0} ay hindi suportado.";Strings.OfficeOM.L_ContinueButton="Magpatuloy";Strings.OfficeOM.L_SSOConnectionLostError="Nawala ang isang koneksyon habang nasa proseso ng pagsa-sign.";Strings.OfficeOM.L_ModalDialogOpeng="Nabigo ang operasyon dahil may aktibo nang modal dialog ang add-in na ito.";Strings.OfficeOM.L_ActivityLimitReached="Naabot ang limitasyon sa aktibidad.";Strings.OfficeOM.L_UserClickIgnore="Pinili ng gumagamit na balewalain ang dialog box.";Strings.OfficeOM.L_SettingsAreStale="Hindi mai-save ang mga setting dahil ang mga ito ay hindi napapanahon.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Hindi suportado ang OsfControl.";Strings.OfficeOM.L_SettingNameNotExist="Hindi umiiral ang tinukoy na pangalan ng setting.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Hindi napapanahon ang data. Kunin ulit ang object.";Strings.OfficeOM.L_NoHttpsWAC="Ang sesyon na ito ng Office ay hindi gumagamit ng secure na koneksyon. Inirerekomenda namin na magdagdag ka ng pag-iingat.";Strings.OfficeOM.L_CustomXmlNodeNotFound="Hindi mahanap ang tinukoy na node.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Mangyaring gumawa ng seleksyon.";Strings.OfficeOM.L_ConfirmDialog="Kumikilos ang domain na {0} bilang Microsoft Office at maaaring magpagana ng mga add-in ng Office, na maaaring mag-access sa iyong personal na data. Kung pinagkakatiwalaan mo ang domain na gumana bilang Office at i-access ang iyong data, i-click ang OK para magpatuloy.";Strings.OfficeOM.L_OutOfRange="Lampas sa Saklaw";Strings.OfficeOM.L_RedundantCallbackSpecification="Hindi matuloy ang pagbalik-tawag sa parehong listahan ng argumento at sa osyunal na bagay.";Strings.OfficeOM.L_CannotRegisterEvent="Hindi marehistro ang event handler.";Strings.OfficeOM.L_InvalidNode="Hindi Tamang Node";Strings.OfficeOM.L_InvalidSetColumns="Hindi tama ang tinukoy na mga column.";Strings.OfficeOM.L_PropertyDoesNotExist="Walang property na '{0}' sa object.";Strings.OfficeOM.L_DocumentReadOnly="Hindi pinapayagan ang hiniling na operasyon sa kasalukuyang mode ng dokumento.";Strings.OfficeOM.L_TooManyIncompleteRequests="Maghintay hanggang sa matapos ang ang nakaraang tawag.";Strings.OfficeOM.L_SSOClientErrorMessage="Nagkaroon ng hindi inaasahang error sa client.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Humihiling na ang add-in ng access token.";Strings.OfficeOM.L_PermissionDenied="Tinanggihan ang Pahintulot";Strings.OfficeOM.L_TooManyOptionalFunction="maramihang opsyunal na mga function sa listahan ng parameter";Strings.OfficeOM.L_ConfirmCancelMessage="Paumanhin, hindi kami makapagpapatuloy.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Ang write operation ay hindi sinusuportahan para sa Office kapag nakabukas na modal na dialog.";Strings.OfficeOM.L_SSOServerError="Nagkaroon ng error sa authentication provider.";Strings.OfficeOM.L_InvalidBindingOperation="Operasyon ng Hindi Tamang Binding";Strings.OfficeOM.L_DialogParentIsMinimized="Nabigo ang operasyon dahil naka-minimize ang parent window.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Hindi tama ang value ng tinukoy na rowCount o columnCount.";Strings.OfficeOM.L_ConfirmRefreshMessage="Para magpatuloy, alisin ang add-in at idagdag ito muli, o i-refresh ang pahina.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Hindi suportado ang operasyon sa uring ito ng binding.";Strings.OfficeOM.L_FormatValueOutOfRange="Lamampas ang value sa pinapayagang saklaw.";Strings.OfficeOM.L_InvalidRequestContext="Hindi magagamit ang object sa lahat ng iba't-ibang mga konteksto ng kahilingan.";Strings.OfficeOM.L_NewWindowCrossZone="Hinahadlangan kami ng mga setting ng seguridad sa iyong browser na gumawa ng isang dialog box. Sumubok ng ibang browser, o {0} nang sa gayon ay ang '{1}' at ang domain na ipinapakita sa iyong address bar ay nasa parehong zone ng seguridad.";Strings.OfficeOM.L_UnsupportedDataObject="Hindi suportado ang inilaan na uri ng bagay ng data.";Strings.OfficeOM.L_WorkbookHiddenMessage="Hindi natuloy ang hiling ng JavaScript API dahil nakatago ang workbook. Paki-unhide ang workbook at subukang muli.";Strings.OfficeOM.L_DialogAlreadyOpened="Hindi nakumpleto ang operasyon dahil may aktibo nang dialog ang add-in na ito.";Strings.OfficeOM.L_APICallFailed="Pumalya ang API Call";Strings.OfficeOM.L_MultipleNamedItemFound="May nakitang maramihang mga bagay na may kaparehong pangalan.";Strings.OfficeOM.L_SSOClientError="Nagkaroon ng error sa kahilingan ng pagpapatotoo sa Office.";Strings.OfficeOM.L_ImplicitNotLoaded="Hindi na-load ang module bago kumuha ng token";Strings.OfficeOM.L_DataReadError="Error sa Pagbasa ng Data";Strings.OfficeOM.L_NamedItemNotFound="Hindi umiiral ang pinangalanang item.";Strings.OfficeOM.L_BindingCreationError="Error sa Paggawa ng Binding";Strings.OfficeOM.L_DialogAddressNotTrusted="Hindi kasama ang domain ng URL sa elemento ng AppDomains sa manifest, at hindi ito subdomain ng lokasyon ng pinagmulan.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Paalala: Ang mga set ng pag-format na isinaayos ng Formatting API call ay iminungkahi na dapat ay mababa sa 100.";Strings.OfficeOM.L_DialogInvalidScheme="Hindi sinusuportahan ang scheme ng URL. Gamitin ang HTTPS sa halip.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Hindi sinusuportahan ng add-in na ito ang pahintulot ng gumagamit.";Strings.OfficeOM.L_EventHandlerRemovalFailed="nabigong tanggalin ang nangangasiwa ng kaganapan.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Hinadlangan kami ng mga paghihigpit sa browser na gumawa gamit ang dialog box. Ang domain ng dialog box at ang domain ng add-in ay wala sa parehong zone ng seguridad.";Strings.OfficeOM.L_InvalidReadForBlankRow="Blangko ang tinukoy na hanay.";Strings.OfficeOM.L_SSOUnsupportedPlatform="Hindi sinusuportahan sa platform na ito ang API.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Hindi makagawa ng binding sa kasalukuyang seleksyon at sa tinukoy na uri ng binding.";Strings.OfficeOM.L_DialogRequireHTTPS="Hindi sinusuportahan ang protocol na HTTP. Gamitin ang HTTPS sa halip";Strings.OfficeOM.L_NotSupportedBindingType="Ang uri ng tinukoy na binding {0} ay hindi suportado.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Sandali lang ...";Strings.OfficeOM.L_FormattingReminder="Paalala sa Pag-format";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Nag-expire na o hindi wasto ang iyong Office session. Para magpatuloy, i-refresh ang pahina.";Strings.OfficeOM.L_RunMustReturnPromise='Hindi nagbalik ng pangako ang batch function na idinaan sa ".run" na paraan. Kailangang magbalik ng isang pangako ang function, para mailabas ang anumang mga object na awtomatikong sinusubaybayan kapag nakumpleto na ang batch operation. Karaniwan, nagbabalik ka ng isang pangako sa pamamagitan ng pagbalik sa tugon na mula sa "context.sync()".';Strings.OfficeOM.L_SetDataParametersConflict="Sumasalungat ang tinukoy na mga parameter.";Strings.OfficeOM.L_ShuttingDown="Pumalya ang operasyon dahil ang data ay hindi nasa kasalukuyang server.";Strings.OfficeOM.L_MemoryLimit="Lumampas sa Limitasyon ng Memory";Strings.OfficeOM.L_UnknownBindingType="Hindi suportado ang uri ng binding.";Strings.OfficeOM.L_InitializeNotReady="Hindi pa lubos na nai-load ang Office.js. Mangyaring subukan muli sa ibang pagkakataon o tiyaking idagdag ang iyong code ng pagsisimula sa Office.initialize function.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Dapat na mayroon sa Excel.Script.CustomFunctions na property na may ganitong pangalan na kumakatawan sa kahulugan ng function.";Strings.OfficeOM.L_InValidOptionalArgument="hindi tamang opsyunal na argumento";Strings.OfficeOM.L_GetDataIsTooLarge="Masyadong malaki ang hiniling na set ng data.";Strings.OfficeOM.L_GetSelectionNotSupported="Hindi suportado ang kasalukuyang seleksyon.";Strings.OfficeOM.L_InternalError="Panloob na Error";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Ang Excel ay nasa cell-editing mode. Mangyaring lumabas sa edit mode sa pamamagitan ng pagpindot sa ENTER o TAB o pumili ng ibang cell, at pagkatapos ay subukang muli.";Strings.OfficeOM.L_ConfirmDialogConsent="Sa pamamagitan ng pag-click sa OK, papayagan mo ang {0} na ma-access ang iyong content at personal na impormasyon. ";Strings.OfficeOM.L_SSOServerErrorMessage="Nagkaroon ng hindi inaasahang error sa server.";Strings.OfficeOM.L_UserAbortedMessage="Hindi pinayagan ng gumagamit ang mga pahintulot ng add-in.";Strings.OfficeOM.L_TooManyOptionalObjects="maramihang opsyunal na mga bagay sa listahan ng parameter";Strings.OfficeOM.L_InvalidArgument="Ang argumentong '{0}' ay hindi gumagana para sa sitwasyong ito, ay nawawala o wala sa tamang format.";Strings.OfficeOM.L_ApiNotFoundDetails="Ang paraan o property na {0} ay bahagi ng requirement set ng {1}, na hindi available sa iyong bersyon ng {2}.";Strings.OfficeOM.L_InvalidDataFormat="Hindi tama ang format ng tinukoy na bagay ng data.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Pumalya ang operasyon dahil hindi sinusuportahan ng add-in na ito ang pahintulot ng gumagamit sa kategoryang ito";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Maaari lang maglaman ang pangalan ng function ng mga titik, digit, underscore, at tuldok.";Strings.OfficeOM.L_InvalidTableOptionValue="Isa o higit pang mga parameter ng tableOptions ang mayroong value na hindi pinapayagan. I-double-check ang mga value at subukan muli.";Strings.OfficeOM.L_UnsupportedEnumeration="Hindi Suportadong Pagnunumero";Strings.OfficeOM.L_DataNotMatchSelection="Ang inilaan na bagay ng data ay hindi akma sa hugis o mga dimension ng kasalukuyang seleksyon.";Strings.OfficeOM.L_BindingNotExist="Hindi umiiral ang tinukoy na binding.";Strings.OfficeOM.L_DataStale="Hindi Napapanahon ang Data";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Sinusubukang itakda ang read-only property na '{0}'.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="ikompigura ang iyong browser";Strings.OfficeOM.L_FunctionCallFailed="Function {0} bigong tawag, error code: {1}.";Strings.OfficeOM.L_NotSupportedEventType="Hindi suportado ang tinukoy na uri ng kaganapan na {0}.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Dahil sa problema sa network, nahadlangan ang pagbawi ng file.";Strings.OfficeOM.L_IndexOutOfRange="Lampas sa saklaw ng indese.";Strings.OfficeOM.L_AppNameNotExist="Hindi umiiral ang Pangalan ng Dagdag-pa para sa {0}.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Dapat na maglaman ang pangalan ng function ng hindi bakanteng namespace at hindi bakanteng maikling pangalan.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='Lumagpas sa limitasyon ang laki ng tugong payload. Sumangguni sa dokumentasyon: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_InvalidGetColumns="Hindi tama ang tinukoy na mga column.";Strings.OfficeOM.L_NetworkProblem="Problema sa Network";Strings.OfficeOM.L_CustomXmlOutOfDateName="Hindi Napapanahon Ang Data";Strings.OfficeOM.L_PropertyNotLoaded="Hindi available ang property na '{0}'. Bago basahin ang value ng property, gawin ang paraan ng pag-load sa naglalaman ng object at gawin ang \"context.sync()\" sa nauugnay na konteksto ng kahilingan.";Strings.OfficeOM.L_InvalidParameters="Function {0} ay may hindi tamang mga parameter.";Strings.OfficeOM.L_SpecifiedIdNotExist="Hindi umiiral ang tinukoy na ID.";Strings.OfficeOM.L_InvalidCoercion="Hindi Tamang Uri ng Pampwersa";Strings.OfficeOM.L_InvalidSSOAddinMessage="Ang identity API ay hindi sinusuportahan para sa add-in na ito.";Strings.OfficeOM.L_SliceSizeNotSupported="Hindi suportado ang tinukoy na laki ng hiwa.";Strings.OfficeOM.L_InvalidFormatValue="Isa o higit pang mga parameter ng format ang mayroong value na hindi pinapayagan. I-double-check ang mga value at subukan muli.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Hindi akma ang tinukoy na uri ng pampwersa sa uring ito ng binding.";Strings.OfficeOM.L_InvalidValue="Hindi Tamang Value";Strings.OfficeOM.L_DataNotMatchBindingType="Hindi akma ang tinukoy na bagay ng data sa uri ng binding.";Strings.OfficeOM.L_InvalidColumnsForBinding="Hindi tama ang tinukoy na mga column.";Strings.OfficeOM.L_APINotSupported="Hindi Suportado ang API";Strings.OfficeOM.L_DisplayDialogError="Ipakita ang Dialog ng Error";Strings.OfficeOM.L_CannotNavigateTo="Ang object ay nasa lugar na kung saan hindi suportado ang nabigasyon.";Strings.OfficeOM.L_SettingsCannotSave="Hindi mai-save ang mga setting.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Balewalain";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Hindi sinusuportahan ang uri ng pagkakakilanlan ng gumagamit.";Strings.OfficeOM.L_Timeout="Nag-time out na ang operation.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Magpapadala ka pa lang at makakatanggap ka ng potensyal na sensitibong impormasyon mula {0}. I-click lang ang OK kung pinagkakatiwalaan mo ang sumusunod na website na tumatanggap ng sensitibong impormasyon: {1}.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Hindi akma ang kasalukuyang seleksyon sa tukoy na uri ng pamwersa.";Strings.OfficeOM.L_InvalidBindingError="Error ng Hindi Tamang Binding";Strings.OfficeOM.L_InvalidGetStartRowColumn="Hindi tama ang tinukoy na mga value ng startRow o startColumn.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Ang mga coordinate parameter ay hindi maaaring gamitin sa uri ng pampwersa na Talahanayan kapag ang talahanayan ay naglalaman ng mga pinag-isang cell.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Ang piniling nilalaman ay dapat nasa format na talahanayan. I-format ang data bilang talahanayan at subukan muli.";Strings.OfficeOM.L_SelectionCannotBound="Hindi ma-bind sa kasalukuyang napili.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='Lumagpas sa limitasyon ang laki ng hiling na payload. Sumangguni sa dokumentasyon: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_MissingParameter="Nawawalang Parameter";Strings.OfficeOM.L_ShowWindowDialogNotification="Gustong magpakita ng {0} ng bagong window.";Strings.OfficeOM.L_InternalErrorDescription="May naganap na panloob na error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="Nililimitahan ng XPath ang pagpili sa 1024 na item.";Strings.OfficeOM.L_DataNotMatchCoercionType="Hindi akma sa kasalukuyang seleksyon ang uri ng tinukoy na bagay ng data.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Nawawala ang function para kunin ang konteksto ng pagpapatunay";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_DataWriteError="Error sa Pagsulat sa Data";Strings.OfficeOM.L_BadSelectorString="Hindi wastong nai-format o hindi suportado ang string na ipinasa sa pampili.";Strings.OfficeOM.L_InvalidCellsValue="Isa o higit pang mga parameter ng cell ang mayroong value na hindi pinapayagan. I-double-check ang mga value at subukan muli.";Strings.OfficeOM.L_UnsupportedUserIdentity="Hindi sinusuportahan ang uri ng pagkakakilanlan.";Strings.OfficeOM.L_HostError="Error ng Host";Strings.OfficeOM.L_ValueNotLoaded='Ang value ng resultang object ay hindi pa nalo-load. Bago i-read ang property value, i-call ang "context.sync()" sa nauugnay na request context.';Strings.OfficeOM.L_RequestTimeout="Natagalang i-execute ang tawag.";Strings.OfficeOM.L_RowIndexOutOfRange="Ang value ng index ng row ay lampas sa pinapayagang saklaw. Gumamit ng value (0 o mas mataas) na mas mababa kaysa sa bilang ng mga row.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Payagan";Strings.OfficeOM.L_InvalidArgumentGeneric="Ang (mga) argument na ipinasa sa function ay hindi gumagana para sa sitwasyong ito, nawawala, o wala sa tamang format.";Strings.OfficeOM.L_MissingRequiredArguments="nawawala ang ilang kailangang mga argumento";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Hindi wastong mga input argument.";Strings.OfficeOM.L_FileTypeNotSupported="Hindi suportado ang tinukoy na uri ng file.";Strings.OfficeOM.L_BrowserAPINotSupported="Hindi sinusurtahan ng browser na ito ang hiniling na API.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Dapat na maglaman ang property na may ganitong pangalan sa Excel.CustomFunctions na kumakatawan sa kahulugan ng function ng property na 'call' na nagpapatupad sa function.";Strings.OfficeOM.L_ConnectionFailureWithStatus="Nabigo ang kahilingan nang may status code na {0}.";Strings.OfficeOM.L_CallbackNotAFunction="Dapat na nasa uring function ang balik-tawag, nasa uring {0}.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Nabigong idagdag ang nangangasiwa ng kaganapan.";Strings.OfficeOM.L_NotTrustedWAC="Ang pag-add-in na ito ay hindi pinagana para mapanatili kang ligtas. Para patuloy na magamit ang pag-add-in, patunayan ang na ang item na ito ay naka-host sa isang pinagkakatiwalaang domain o buksan ito sa Office desktop app.";Strings.OfficeOM.L_CancelButton="Kanselahin";Strings.OfficeOM.L_InvalidDataObject="Hindi Tamang Bagay ng Data";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Nawala ang isang koneksyon habang nasa proseso ng pagsa-sign, at maaaring hindi naka-sign in ang gumagamit. Malamang ay dahil ito sa mga setting ng kompigurasyon ng browser ng gumagamit, gaya ng mga zone na panseguridad.";Strings.OfficeOM.L_InvalidBinding="Hindi Tamang Binding";Strings.OfficeOM.L_SetDataIsTooLarge="Masyadong malaki ang tinukoy na bagay ng data.";Strings.OfficeOM.L_CoercionTypeNotSupported="Hindi suportado ang tinukoy na uri ng pampwersa.";Strings.OfficeOM.L_ColIndexOutOfRange="Ang indese ng column ay lampas sa pinapayagang saklaw. Gumamit ng value (0 o mas mataas) na mas kaunti kaysa sa bilang ng mga column.";Strings.OfficeOM.L_GetDataParametersConflict="Sumasalungat ang tinukoy na mga parameter.";Strings.OfficeOM.L_TooManyArguments="masyadong maraming mga argumento";Strings.OfficeOM.L_InvalidSetStartRowColumn="Hindi tama ang tinukoy na mga value ng startRow o startColumn.";Strings.OfficeOM.L_InvalidFormat="Error na Hindi Tamang Format";Strings.OfficeOM.L_DataNotMatchBindingSize="Ang inilaan na bagay ng data ay hindi tumutugma sa laki ng kasalukuyang seleksyon.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Isara ang pag-sync ng tawag sa kasalukuyang File bago kumuhang muli ng iba.";Strings.OfficeOM.L_ConnectionFailureWithDetails="Nabigo ang kahilingan nang may status code na {0}, error code na {1} at sumusunod na mensahe ng error: {2}";Strings.OfficeOM.L_OverwriteWorksheetData="Pumalya ang naka-set na operasyon dahil ang ibinigay na bagay ng data ay papatong o maglilipat ng data.";Strings.OfficeOM.L_DocumentIsInactive="Nabigo ang operasyon dahil hindi aktibo ang dokumentong naglalaman ng add-in na ito.";Strings.OfficeOM.L_InvalidGrantMessage="Nawawalang grant para sa add-in na ito.";Strings.OfficeOM.L_OperationCancelledErrorMessage="Kinansela ng gumagamit ang operation.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Ang mga pagbabago sa property na '{0}' ay hindi maaaring ilapat sa pamamagitan ng isang \"object.set\" method.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Ang pagnunumero ay hindi suportado sa kasalukuyang host na application.";Strings.OfficeOM.L_InvalidGetRows="Hindi tama ang tinukoy na mga hanay.";Strings.OfficeOM.L_UserAborted="Na-abort ng gumagamit ang kahilingan ng pahintulot.";Strings.OfficeOM.L_NavOutOfBound="Pumalya ang operasyon dahil lampas sa saklaw ang indese.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Naabot na ang Limitasyon sa Pagpili";Strings.OfficeOM.L_DialogNavigateError="Dialog ng Error sa Navigation";Strings.OfficeOM.L_EventHandlerNotExist="Hindi makita ang tinukoy na nangangasiwa ng kaganapan para sa binding na ito.";Strings.OfficeOM.L_ElementMissing="Hindi namin mai-format ang cell ng talahanayan dahil nawawala ang ilang value ng parameter.";Strings.OfficeOM.L_InvalidGrant="Nawawala ang preauthorization.";Strings.OfficeOM.L_OperationCancelledError="Nakansela ang Operation";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Nabigo ang operation dahil humihiling na ng access token ang add-in na ito.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Hindi Wasto O Nag-time Out Ang Session";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Paalala: Ang bilang ng mga cell sa talahanayan ay iminungkahing mababa sa 20,000 cell.";Strings.OfficeOM.L_BindingToMultipleSelection="Hindi suportado ang hindi magkatabing mga seleksyon.";Strings.OfficeOM.L_ReadSettingsError="Error ng mga Setting ng Basa";Strings.OfficeOM.L_NotImplemented="Ang function {0} ay hindi ipinatupad.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Hindi umiiral ang application na {0}. Microsoft.Office.WebExtension.initialize(dahilan) ay hindi natawag.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Hindi akma ang tinukoy na uri ng binding sa ibinigay na pinangalanang item.";Strings.OfficeOM.L_InvalidResourceUrlMessage="May tinukoy na hindi wastong resource Url sa manifest.";Strings.OfficeOM.L_CannotWriteToSelection="Hindi makapagsulat sa kasalukuyang seleksyon.";Strings.OfficeOM.L_EventRegistrationError="Error ng Rehistrasyon ng Kaganapan";Strings.OfficeOM.L_InvalidResourceUrl="Nagbigay ng hindi wastong application resource Url.";Strings.OfficeOM.L_SaveSettingsError="Error ng mga Setting ng I-save";Strings.OfficeOM.L_InvalidObjectPath='Hindi gumagana ang object path na \'{0}\' sa sinusubukan mong gawin. Kung ginagamit mo ang object sa maraming "context.sync" na pagtawag at sa labas ng magkakasunod na pagsasapatupad ng isang ".run" batch, pakigamit ang "context.trackedObjects.add()" at "context.trackedObjects.remove()" na mga paraan para pamahalaan ang itatagal ng object.';Strings.OfficeOM.L_DataWriteReminder="Paalala sa Pagsulat sa Data"
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Le type de forçage spécifié n’est pas compatible avec ce type de liaison.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Remarque : nous vous suggérons de limiter le nombre de cellules d’un tableau à 20 000.";Strings.OfficeOM.L_HostError="Une erreur relative à l'hôte s'est produite";Strings.OfficeOM.L_NamedItemNotFound="L’élément nommé n’existe pas.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Des restrictions définies sur le navigateur nous ont empêché de créer la boîte de dialogue. Le domaine de la boîte de dialogue et le domaine de l’hôte du complément ne se trouvent pas dans la même zone de sécurité.";Strings.OfficeOM.L_ConnectionFailureWithStatus="La demande a échoué avec le code d’état {0}.";Strings.OfficeOM.L_NotSupportedEventType="Le type d'événement {0} spécifié n'est pas pris en charge.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Les paramètres de coordonnées ne peuvent pas être utilisés avec le type de forçage Tableau lorsque le tableau contient des cellules fusionnées.";Strings.OfficeOM.L_InvalidObjectPath="Le chemin d’accès à l’objet « {0} » ne fonctionne pas pour l’action que vous essayez d’effectuer. Si vous utilisez l’objet sur plusieurs appels « context.sync » et en dehors de l’exécution séquentielle d’un lot « .run », veuillez utiliser les méthodes « context.trackedObjects.add() » et « context.trackedObjects.remove() » pour gérer la durée de vie de l’objet.";Strings.OfficeOM.L_WorkbookHiddenMessage="La demande de l’API JavaScript a échoué, car le classeur a été masqué. Veuillez afficher le classeur, puis réessayez.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Nous tentons de définir la propriété en lecture seule « {0} ».";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Ce type de liaison ne prend pas en charge cette action.";Strings.OfficeOM.L_DialogRequireHTTPS="Le protocole HTTP n’est pas pris en charge. Utilisez le protocole HTTPS à la place";Strings.OfficeOM.L_DataNotMatchBindingType="L’objet de données spécifié n’est pas compatible avec le type de liaison.";Strings.OfficeOM.L_DataNotMatchBindingSize="L’objet de données fourni ne correspond pas à la taille de la sélection actuelle.";Strings.OfficeOM.L_DisplayDialogError="Erreur d’affichage de la boîte de dialogue";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Les valeurs rowCount ou columnCount spécifiées sont incorrectes.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configurez votre navigateur";Strings.OfficeOM.L_ConfirmDialog="Le {0} de domaine fait office de Microsoft Office et peut exécuter Office compléments, qui peuvent accéder à vos données personnelles. Si vous faites confiance au domaine pour qu’il s’exécute en tant que Office et accédez à vos données, cliquez sur OK pour continuer.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Le nom de la fonction ne peut contenir que des lettres, des chiffres, des traits de soulignement et des points.";Strings.OfficeOM.L_UnknownBindingType="Le type de liaison n’est pas pris en charge.";Strings.OfficeOM.L_NewWindowCrossZone="Les paramètres de sécurité de votre navigateur nous empêchent de créer une boîte de dialogue. Essayez d’utiliser un autre navigateur, ou {0} de sorte que « {1} » et le domaine affiché dans la barre d’adresse se trouvent dans la même zone de sécurité.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="La propriété portant ce nom sur Excel.Script.CustomFunctions qui représente la définition de la fonction doit contenir une propriété « call » qui implémente la fonction.";Strings.OfficeOM.L_InvalidTableOptionValue="Les valeurs d’un ou de plusieurs paramètres TableauOptions ne sont pas autorisées. Vérifiez-les, puis réessayez.";Strings.OfficeOM.L_InvalidRequestContext="Vous ne pouvez pas utiliser l’objet sur des contextes de demande différents.";Strings.OfficeOM.L_NotTrustedWAC="Ce complément a été désactivé pour vous aider à rester en sécurité. Pour continuer à utiliser le complément, validez l’hébergement de cet élément dans un domaine approuvé ou ouvrez-le dans l’application de bureau Office.";Strings.OfficeOM.L_NoCapability="Vous ne disposez pas des autorisations suffisantes pour cette action.";Strings.OfficeOM.L_Timeout="L’opération a expiré.";Strings.OfficeOM.L_UnsupportedEnumeration="Énumération non prise en charge";Strings.OfficeOM.L_InvalidNode="Nœud incorrect";Strings.OfficeOM.L_InvalidDataObject="L'objet de données est incorrect";Strings.OfficeOM.L_TooManyOptionalObjects="la liste des paramètres inclut plusieurs objets facultatifs";Strings.OfficeOM.L_SetDataParametersConflict="Les paramètres spécifiés sont en conflit.";Strings.OfficeOM.L_ShuttingDown="Nous n’avons pas pu terminer l’opération car les données du serveur ne sont pas actualisées.";Strings.OfficeOM.L_InvalidCellsValue="Les valeurs d’un ou de plusieurs paramètres de cellule ne sont pas autorisées. Vérifiez-les, puis réessayez.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="L’énumération n’est pas prise en charge dans l’application hôte actuelle.";Strings.OfficeOM.L_AppNameNotExist="Le nom du complément {0} n’existe pas.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Le nom de la fonction doit contenir un espace de noms non vide et un nom court non vide.";Strings.OfficeOM.L_EventHandlerNotExist="Le gestionnaire d’événements spécifié est introuvable sur cette liaison.";Strings.OfficeOM.L_OutOfRange="Hors plage";Strings.OfficeOM.L_UserAborted="L’utilisateur a annulé la demande d’autorisation.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Les paramètres de coordonnées ne peuvent pas être utilisés avec le type de forçage Tableau lorsque le tableau contient des cellules fusionnées.";Strings.OfficeOM.L_DataReadError="Une erreur s'est produite lors de la lecture des données";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Autoriser";Strings.OfficeOM.L_InvalidBindingOperation="Opération de liaison incorrecte";Strings.OfficeOM.L_NotImplemented="La fonction {0} n'est pas implémentée.";Strings.OfficeOM.L_InvalidGetColumns="Les colonnes spécifiées ne sont pas valides.";Strings.OfficeOM.L_ModalDialogOpeng="L’opération a échoué, car ce complément a déjà une boîte de dialogue modale active.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limite le nombre de sélections à 1 024 éléments.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Le type OsfControl n'est pas pris en charge.";Strings.OfficeOM.L_NavOutOfBound="L’opération a échoué, car l’index est hors limites.";Strings.OfficeOM.L_MissingRequiredArguments="des arguments requis sont manquants";Strings.OfficeOM.L_RunMustReturnPromise="La fonction de traitement par lots transmise à la méthode « .run » n’a pas renvoyé de promesse. La fonction doit renvoyer une promesse de sorte que les objets suivis automatiquement puissent être libérés à la fin de l’opération de traitement par lots. En règle générale, vous renvoyez une promesse en renvoyant la réponse à partir de « context.sync() ».";Strings.OfficeOM.L_InvalidValue="Valeur incorrecte";Strings.OfficeOM.L_SelectionCannotBound="Nous ne pouvons pas effectuer de liaison avec la sélection actuelle.";Strings.OfficeOM.L_InvalidGrant="Autorisation préalable manquante.";Strings.OfficeOM.L_PermissionDenied="L'autorisation a été refusée";Strings.OfficeOM.L_InitializeNotReady="Office.js n’est pas encore complètement chargé. Veuillez réessayer plus tard ou ajouter votre code d’initialisation dans la fonction Office.initialize.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Ce complément ne prend pas en charge le consentement de l’utilisateur.";Strings.OfficeOM.L_RequestTimeout="L’exécution de l’appel a pris trop de temps.";Strings.OfficeOM.L_BindingCreationError="Une erreur s'est produite lors de la création de la liaison";Strings.OfficeOM.L_ConfirmDialogConsent="En cliquant sur OK, vous autorisez à {0} d’accéder à votre contenu et à vos informations personnelles. ";Strings.OfficeOM.L_InvalidFormatValue="Les valeurs d’un ou de plusieurs paramètres de format ne sont pas autorisées. Vérifiez-les, puis réessayez.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Données obsolètes";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Limite du nombre de sélections atteinte";Strings.OfficeOM.L_InvalidArgument="L’argument « {0} » ne fonctionne pas dans ce cas, est manquant ou n’a pas le bon format.";Strings.OfficeOM.L_DialogParentIsMinimized="L’opération a échoué car la fenêtre parente est réduite.";Strings.OfficeOM.L_ConfirmRefreshMessage="Pour continuer, supprimez le complément et rajoutez-le ou actualisez la page.";Strings.OfficeOM.L_SSOClientError="Une erreur s’est produite dans la demande d’authentification émise par Office.";Strings.OfficeOM.L_ValueNotLoaded='La valeur de l’objet de résultat n’a pas encore été chargée. Avant de lire la propriété de la valeur, appelez "context.sync()" dans le contexte de la requête associée.';Strings.OfficeOM.L_DataNotMatchSelection="L’objet de données fourni n’est pas compatible avec la forme ou les dimensions de la sélection actuelle.";Strings.OfficeOM.L_OperationNotSupported="L’opération n’est pas prise en charge.";Strings.OfficeOM.L_UserClickIgnore="L’utilisateur a choisi d’ignorer la boîte de dialogue.";Strings.OfficeOM.L_DataWriteError="Une erreur s’est produite lors de l’écriture des données";Strings.OfficeOM.L_InvalidSetRows="Les lignes spécifiées ne sont pas valides.";Strings.OfficeOM.L_MissingParameter="Paramètre manquant";Strings.OfficeOM.L_APINotSupported="L’API n’est pas prise en charge";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="L’opération a échoué, car ce complément ne prend pas en charge le consentement de l’utilisateur dans cette catégorie";Strings.OfficeOM.L_SSOClientErrorMessage="Une erreur s'est produite dans le logiciel client.";Strings.OfficeOM.L_GetDataParametersConflict="Les paramètres spécifiés sont en conflit.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignorer";Strings.OfficeOM.L_MemoryLimit="Limite de mémoire dépassée";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='La taille de la charge utile de réponse a dépassé la limite. Veuillez vous reporter à la documentation : "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InternalErrorDescription="Une erreur interne s’est produite.";Strings.OfficeOM.L_NetworkProblem="Problème réseau";Strings.OfficeOM.L_SelectionNotSupportCoercionType="La sélection actuelle n’est pas compatible avec le type de forçage spécifié.";Strings.OfficeOM.L_MultipleNamedItemFound="Nous avons trouvé plusieurs objets du même nom.";Strings.OfficeOM.L_DataWriteReminder="Rappel d’écriture de données";Strings.OfficeOM.L_InvalidFormat="Une erreur de format incorrect s'est produite";Strings.OfficeOM.L_InvalidArgumentGeneric="Le ou les arguments transmis à la fonction ne fonctionnent pas dans ce cas, sont manquants ou ne sont pas au format correct.";Strings.OfficeOM.L_NotSupportedBindingType="Le type de liaison {0} spécifié n'est pas pris en charge.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='La taille de la charge utile de la demande a dépassé la limite. Veuillez vous reporter à la documentation : "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_SettingsStaleError="Erreur : les paramètres sont périmés.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} souhaite afficher une nouvelle fenêtre.";Strings.OfficeOM.L_InvalidParameters="Les paramètres de la fonction {0} sont incorrects.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_SSOServerErrorMessage="Une erreur s’est produite sur le serveur.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Veuillez effectuer une sélection.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Une URL de ressource non valide a été spécifiée dans le manifeste.";Strings.OfficeOM.L_ActivityLimitReached="La limite d’activité a été atteinte.";Strings.OfficeOM.L_SettingsAreStale="Nous n’avons pas pu enregistrer les paramètres car ils ne sont pas actualisés.";Strings.OfficeOM.L_GetSelectionNotSupported="La sélection actuelle n'est pas prise en charge.";Strings.OfficeOM.L_ConfirmCancelMessage="Désolé... nous ne pouvons pas continuer.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Le type d’identité de l’utilisateur n’est pas pris en charge.";Strings.OfficeOM.L_InvalidColumnsForBinding="Les colonnes spécifiées ne sont pas valides.";Strings.OfficeOM.L_InvalidCoercion="Le type de forçage de type est incorrect";Strings.OfficeOM.L_CancelButton="Annuler";Strings.OfficeOM.L_DialogNavigateError="Erreur de navigation dans la boîte de dialogue";Strings.OfficeOM.L_FileTypeNotSupported="Le type de fichier spécifié n’est pas pris en charge.";Strings.OfficeOM.L_ElementMissing="Nous n’avons pas pu mettre en forme la cellule de tableau car certaines valeurs de paramètre sont manquantes. Vérifiez à nouveau les paramètres et réessayez.";Strings.OfficeOM.L_FormattingReminder="Mise en forme du rappel";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Votre session Office a expiré ou n’est pas valide. Pour continuer, actualisez la page.";Strings.OfficeOM.L_InvalidGetStartRowColumn="Les valeurs startRow ou startColumn spécifiées sont incorrectes.";Strings.OfficeOM.L_ImplicitNotLoaded="Le module n’est pas chargé avant l’acquisition d’un jeton.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Une propriété portant ce nom qui représente la définition de la fonction doit exister sur Excel.Script.CustomFunctions.";Strings.OfficeOM.L_TooManyArguments="il y a trop d'arguments";Strings.OfficeOM.L_RequestTokenUnavailable="Cette API a été limitée pour diminuer la fréquence des appels.";Strings.OfficeOM.L_InvalidBindingError="Erreur de liaison incorrecte";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Une connexion a été perdue lors du processus de connexion et l’utilisateur risque de ne pas être connecté. Ce problème est probablement dû aux paramètres de configuration du navigateur de l’utilisateur, tels que les zones de sécurité.";Strings.OfficeOM.L_InvalidApiCallInContext="L'appel d'API n'est pas correct dans le contexte actuel.";Strings.OfficeOM.L_RowIndexOutOfRange="La valeur d’index de ligne se trouve en dehors de la plage autorisée. Utilisez une valeur (supérieure ou égale à 0) inférieure au nombre de lignes.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_CannotRegisterEvent="Le gestionnaire d’événements ne peut pas être inscrit.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="L’opération d’écriture n’est pas prise en charge par Office lorsqu’une boîte de dialogue modale est ouverte.";Strings.OfficeOM.L_DialogInvalidScheme="Le schéma d’URL n’est pas pris en charge. Utilisez le protocole HTTPS à la place.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Nous ne pouvons pas créer de liaison avec la sélection actuelle et le type de liaison spécifié.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Remarque : nous vous suggérons de limiter les jeux de mise en forme définis par un appel de l’API de mise en forme à 100.";Strings.OfficeOM.L_UnsupportedUserIdentity="Le type d’identité de l’utilisateur n’est pas pris en charge.";Strings.OfficeOM.L_InternalError="Une erreur interne s'est produite";Strings.OfficeOM.L_PropertyDoesNotExist="La propriété « {0} » n’existe pas sur l’objet.";Strings.OfficeOM.L_TooManyOptionalFunction="la liste des paramètres inclut plusieurs fonctions facultatives";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Les modifications apportées à la propriété « {0} » ne peuvent pas être appliquées via une méthode « object.set ».";Strings.OfficeOM.L_IndexOutOfRange="L’index est hors limites.";Strings.OfficeOM.L_GetDataIsTooLarge="Le jeu de données demandé est trop volumineux.";Strings.OfficeOM.L_CustomXmlError="Une erreur relative à du code XML personnalisé s’est produite.";Strings.OfficeOM.L_TooManyIncompleteRequests="Attendez la fin de l’appel précédent.";Strings.OfficeOM.L_InvalidSSOAddinMessage="L’API d’identité n’est pas prise en charge pour ce complément.";Strings.OfficeOM.L_DialogAlreadyOpened="L’opération a échoué car ce complément a déjà une boîte de dialogue active.";Strings.OfficeOM.L_InvalidResourceUrl="Une URL de ressource d’application non valide a été fournie.";Strings.OfficeOM.L_SetDataIsTooLarge="L’objet de données spécifié est trop volumineux.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Appeler closeAsync sur le fichier en cours avant d’en récupérer un autre.";Strings.OfficeOM.L_InvalidDataFormat="Le format de l’objet de données spécifié est incorrect.";Strings.OfficeOM.L_NoHttpsWAC="Cette session Office n’utilise pas de connexion sécurisée. Nous vous recommandons de prendre des précautions supplémentaires.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Nous n'avons pas pu ajouter le gestionnaire d'événements.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Les données ne sont pas à jour. Veuillez récupérer de nouveau l’objet.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Arguments d’entrée incorrects.";Strings.OfficeOM.L_APICallFailed="L’appel de l’API a échoué";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="L’opération a échoué car ce complément demande déjà un jeton d’accès.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Vous êtes sur le point d’envoyer et de recevoir des informations potentiellement sensibles de {0}. Cliquez uniquement sur OK si vous faites confiance au site web suivant qui reçoit les informations sensibles : {1}.";Strings.OfficeOM.L_PropertyNotLoaded="La propriété « {0} » n’est pas disponible. Avant de lire la valeur de la propriété, appelez la méthode de chargement sur l’objet conteneur et appelez « context.sync() » sur le contexte de demande associé.";Strings.OfficeOM.L_ColIndexOutOfRange="La valeur d’index de colonne se trouve en dehors de la plage autorisée. Utilisez une valeur (supérieure ou égale à 0) inférieure au nombre de colonnes.";Strings.OfficeOM.L_ContinueButton="Continuer";Strings.OfficeOM.L_OverwriteWorksheetData="L’opération SET a échoué car l’objet de données fourni remplacera ou décalera les données.";Strings.OfficeOM.L_ConnectionFailureWithDetails="La demande a échoué avec le code d’état {0}, le code d’erreur {1} et le message d’erreur suivant : {2}";Strings.OfficeOM.L_UserAbortedMessage="L’utilisateur n’a pas accepté les autorisations liées au complément.";Strings.OfficeOM.L_InvalidReadForBlankRow="La ligne spécifiée est vide.";Strings.OfficeOM.L_InvalidBinding="Liaison incorrecte";Strings.OfficeOM.L_BindingToMultipleSelection="Les sélections non contiguës ne sont pas prises en charge.";Strings.OfficeOM.L_InvalidGrantMessage="Autorisation manquante pour ce complément.";Strings.OfficeOM.L_BadSelectorString="le format de la chaîne transmise au sélecteur n'est pas correct ou n'est pas pris en charge.";Strings.OfficeOM.L_DocumentReadOnly="L’opération demandée n’est pas autorisée sur le mode de document actuel.";Strings.OfficeOM.L_ApiNotFoundDetails="La méthode ou la propriété {0} fait partie de l’ensemble de conditions {1}, lequel n’est pas disponible dans votre version de {2}.";Strings.OfficeOM.L_UserNotSignedIn="Aucun utilisateur n’est connecté à Office.";Strings.OfficeOM.L_InValidOptionalArgument="L'argument facultatif est incorrect.";Strings.OfficeOM.L_OperationCancelledError="Opération annulée";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Un problème lié au réseau a empêché la récupération du fichier.";Strings.OfficeOM.L_SliceSizeNotSupported="La taille de secteur spécifiée n’est pas prise en charge.";Strings.OfficeOM.L_RedundantCallbackSpecification="Le rappel ne peut pas être spécifié à la fois dans la liste d'arguments et dans l'objet facultatif.";Strings.OfficeOM.L_OperationCancelledErrorMessage="L’opération a été annulée par l’utilisateur.";Strings.OfficeOM.L_CallbackNotAFunction="Le rappel était de type {0}, alors qu'il doit être de type fonction.";Strings.OfficeOM.L_InvalidAPICall="L'appel d'API est incorrect";Strings.OfficeOM.L_EventRegistrationError="Une erreur s'est produite lors de l'enregistrement de l'événement";Strings.OfficeOM.L_DocumentIsInactive="L’opération a échoué, car le document contenant ce complément est inactif.";Strings.OfficeOM.L_DialogAddressNotTrusted="Le domaine de l'URL n'est pas inclus dans l'élément AppDomain du manifeste et n'est pas un sous-domaine de l'emplacement source.";Strings.OfficeOM.L_CannotNavigateTo="L’objet est situé dans un emplacement où la navigation n’est pas prise en charge.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Nous n'avons pas pu supprimer le gestionnaire d'événements.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="La fonction pour obtenir le contexte de l’authentification est manquante.";Strings.OfficeOM.L_SaveSettingsError="Erreur lors de l'enregistrement des paramètres.";Strings.OfficeOM.L_InvalidGetRows="Les lignes spécifiées ne sont pas valides.";Strings.OfficeOM.L_SettingsCannotSave="Nous n'avons pas pu enregistrer les paramètres.";Strings.OfficeOM.L_BindingNotExist="La liaison spécifiée n’existe pas.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Session non valide ou expirée";Strings.OfficeOM.L_FunctionCallFailed="Nous n'avons pas pu appeler la fonction {0}. Le code d'erreur est le suivant : {1}.";Strings.OfficeOM.L_SSOConnectionLostError="Une connexion a été perdue lors du processus de connexion.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel est en mode d’édition de cellule. Quittez le mode d’édition en appuyant sur Entrée ou Tab, ou en sélectionnant une autre cellule, puis réessayez.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Le contenu sélectionné doit être dans un format de tableau. Placez les données sous forme de tableau, puis réessayez.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Le type de liaison spécifié n’est pas compatible avec l’élément nommé fourni.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Le complément demande déjà un jeton d’accès.";Strings.OfficeOM.L_SSOUnsupportedPlatform="L’API n’est pas prise en charge sur cette plateforme.";Strings.OfficeOM.L_NotSupported="La fonction {0} n’est pas prise en charge.";Strings.OfficeOM.L_InvalidSetColumns="Les colonnes spécifiées ne sont pas valides.";Strings.OfficeOM.L_InvalidSetStartRowColumn="Les valeurs startRow ou startColumn spécifiées sont incorrectes.";Strings.OfficeOM.L_SpecifiedIdNotExist="L’ID spécifié n’existe pas.";Strings.OfficeOM.L_DataStale="Les données ne sont pas à jour";Strings.OfficeOM.L_CoercionTypeNotSupported="Le type de forçage spécifié n’est pas pris en charge.";Strings.OfficeOM.L_SettingNameNotExist="Le nom de paramètre spécifié n’existe pas.";Strings.OfficeOM.L_ReadSettingsError="Une erreur s'est produite lors de la lecture des paramètres";Strings.OfficeOM.L_UnsupportedDataObject="Le type d’objet de données fourni n’est pas pris en charge.";Strings.OfficeOM.L_FormatValueOutOfRange="La valeur se trouve en dehors de la plage autorisée.";Strings.OfficeOM.L_SSOServerError="Une erreur s’est produite dans le fournisseur d’authentification.";Strings.OfficeOM.L_BrowserAPINotSupported="Ce navigateur ne prend pas en charge l’API demandée.";Strings.OfficeOM.L_CannotWriteToSelection="Nous ne pouvons pas écrire vers la sélection actuelle.";Strings.OfficeOM.L_DataNotMatchCoercionType="Le type de l’objet de données spécifié n’est pas compatible avec la sélection actuelle.";Strings.OfficeOM.L_CustomXmlNodeNotFound="Nous n’avons pas trouvé le nœud spécifié.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Veuillez patienter un moment...";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="L'application {0} n'existe pas. Microsoft.Office.WebExtension.initialize(reason) n'est pas appelé."
|
|
@@ -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."
|