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 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limite le nombre de sélections à 1024 éléments.";Strings.OfficeOM.L_RequestTimeout="L’exécution de l’appel a pris trop de temps.";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_MissingRequiredArguments="des arguments requis sont manquants";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_NotSupportedBindingType="Le type de liaison {0} spécifié n'est pas pris en charge.";Strings.OfficeOM.L_CallbackNotAFunction="Le rappel était de type {0}, alors qu'il doit être de type fonction.";Strings.OfficeOM.L_BadSelectorString="Désolé... le format de la chaîne transmise au sélecteur n'est pas correct ou n'est pas pris en charge.";Strings.OfficeOM.L_InvalidSSOAddinMessage="L’API d’identité n’est pas prise en charge pour ce complément.";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_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_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_RequestTokenUnavailable="Cette API a été limitée pour diminuer la fréquence des appels.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Le type de liaison spécifié n’est pas compatible avec l’élément nommé fourni.";Strings.OfficeOM.L_ConfirmCancelMessage="Désolé... nous ne pouvons pas continuer.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Les données ne sont pas à jour. Veuillez récupérer de nouveau l’objet.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Remarque : nous vous suggérons de limiter le nombre de cellules d’un tableau à 20 000.";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_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_CoercionTypeNotMatchBinding="Le type de forçage spécifié n’est pas compatible avec ce type de liaison.";Strings.OfficeOM.L_OperationCancelledError="Opération annulée";Strings.OfficeOM.L_SSOServerError="Une erreur s’est produite dans le fournisseur d’authentification.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="L’énumération n’est pas prise en charge dans l’application hôte actuelle.";Strings.OfficeOM.L_InvalidRequestContext="Vous ne pouvez pas utiliser l’objet sur des contextes de demande différents.";Strings.OfficeOM.L_ConfirmDialogConsent="En cliquant sur OK, vous autorisez à {0} d’accéder à votre contenu et à vos informations personnelles. ";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Le complément demande déjà un jeton d’accès.";Strings.OfficeOM.L_DocumentReadOnly="L’opération demandée n’est pas autorisée sur le mode de document actuel.";Strings.OfficeOM.L_InvalidColumnsForBinding="Les colonnes spécifiées ne sont pas valides.";Strings.OfficeOM.L_DataNotMatchSelection="Désolé... L’objet de données fourni n’est pas compatible avec la forme ou les dimensions de la sélection actuelle.";Strings.OfficeOM.L_InvalidDataObject="L'objet de données est incorrect";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Veuillez effectuer une sélection.";Strings.OfficeOM.L_ImplicitNotLoaded="Le module n’est pas chargé avant l’acquisition d’un jeton";Strings.OfficeOM.L_EventHandlerNotExist="Le gestionnaire d’événements spécifié est introuvable sur cette liaison.";Strings.OfficeOM.L_InvalidNode="Nœud incorrect";Strings.OfficeOM.L_NotTrustedWAC="Ce complément a été désactivé pour vous aider à rester en sécurité. Pour continuer à utiliser le complément, vérifiez que cet élément est hébergé dans un domaine approuvé ou ouvrez-le dans l’application de bureau Office.";Strings.OfficeOM.L_FileTypeNotSupported="Désolé... Le type de fichier spécifié n’est pas pris en charge.";Strings.OfficeOM.L_GetSelectionNotSupported="La sélection actuelle n'est pas prise en charge.";Strings.OfficeOM.L_UserClickIgnore="L’utilisateur a choisi d’ignorer la boîte de dialogue.";Strings.OfficeOM.L_InvalidGetRows="Les lignes spécifiées ne sont pas valides.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Ce complément ne prend pas en charge le consentement de l’utilisateur.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Le type d’identité de l’utilisateur n’est pas pris en charge.";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_InValidOptionalArgument="l'argument facultatif est incorrect";Strings.OfficeOM.L_ConnectionFailureWithStatus="La demande a échoué avec le code d’état {0}.";Strings.OfficeOM.L_NamedItemNotFound="Désolé... L’élément nommé n’existe pas.";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_InvalidGetStartRowColumn="Les valeurs startRow ou startColumn spécifiées sont incorrectes.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Un problème lié au réseau a empêché la récupération du fichier.";Strings.OfficeOM.L_InvalidBindingError="Erreur de liaison incorrecte";Strings.OfficeOM.L_InvalidSelectionForBindingType="Désolé... Nous ne pouvons pas créer de liaison avec la sélection actuelle et le type de liaison spécifié.";Strings.OfficeOM.L_MissingParameter="Paramètre manquant";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Arguments d’entrée incorrects.";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_InvalidReadForBlankRow="La ligne spécifiée est vide.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configurez votre navigateur";Strings.OfficeOM.L_DialogInvalidScheme="Le schéma d’URL n’est pas pris en charge. Utilisez le protocole HTTPS à la place.";Strings.OfficeOM.L_SettingsStaleError="Une erreur relative à des paramètres périmés s'est produite";Strings.OfficeOM.L_InvalidFormat="Une erreur de format incorrect s'est produite";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Autoriser";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_DataNotMatchBindingType="L’objet de données spécifié n’est pas compatible avec le type de liaison.";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_InvalidArgument="L’argument « {0} » ne fonctionne pas dans ce cas, est manquant ou n’a pas le bon format.";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_InternalErrorDescription="Une erreur interne s’est produite.";Strings.OfficeOM.L_UserAborted="L’utilisateur a annulé la demande d’autorisation.";Strings.OfficeOM.L_SettingsAreStale="Désolé... Nous n’avons pas pu enregistrer les paramètres, car ils ne sont pas actualisés.";Strings.OfficeOM.L_SetDataIsTooLarge="L’objet de données spécifié est trop volumineux.";Strings.OfficeOM.L_FormattingReminder="Mise en forme du rappel";Strings.OfficeOM.L_SelectionNotSupportCoercionType="La sélection actuelle n’est pas compatible avec le type de forçage spécifié.";Strings.OfficeOM.L_SSOConnectionLostError="Une connexion a été perdue lors du processus de connexion.";Strings.OfficeOM.L_InvalidSetStartRowColumn="Les valeurs startRow ou startColumn spécifiées sont incorrectes.";Strings.OfficeOM.L_CancelButton="Annuler";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_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_InvalidDataFormat="Le format de l’objet de données spécifié est incorrect.";Strings.OfficeOM.L_OperationCancelledErrorMessage="L’opération a été annulée par l’utilisateur.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Les valeurs rowCount ou columnCount spécifiées sont incorrectes.";Strings.OfficeOM.L_SpecifiedIdNotExist="L’ID spécifié n’existe pas.";Strings.OfficeOM.L_PermissionDenied="L'autorisation a été refusée";Strings.OfficeOM.L_CannotWriteToSelection="Désolé... Nous ne pouvons pas écrire vers la sélection actuelle.";Strings.OfficeOM.L_EventRegistrationError="Une erreur s'est produite lors de l'enregistrement de l'événement";Strings.OfficeOM.L_CustomXmlOutOfDateName="Données obsolètes";Strings.OfficeOM.L_InvalidGrant="Autorisation préalable manquante.";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_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_InvalidOrTimedOutSession="Session non valide ou expirée";Strings.OfficeOM.L_UserAbortedMessage="L’utilisateur n’a pas accepté les autorisations liées au complément.";Strings.OfficeOM.L_InvalidSetColumns="Les colonnes spécifiées ne sont pas valides.";Strings.OfficeOM.L_MemoryLimit="Limite de mémoire dépassée";Strings.OfficeOM.L_GetDataParametersConflict="Les paramètres spécifiés sont en conflit.";Strings.OfficeOM.L_InvalidBinding="Liaison incorrecte";Strings.OfficeOM.L_BindingNotExist="Désolé… La liaison spécifiée n’existe pas.";Strings.OfficeOM.L_CannotRegisterEvent="Le gestionnaire d’événements ne peut pas être inscrit.";Strings.OfficeOM.L_CannotNavigateTo="L’objet est situé dans un emplacement où la navigation n’est pas prise en charge.";Strings.OfficeOM.L_UserNotSignedIn="Aucun utilisateur n’est connecté à Office.";Strings.OfficeOM.L_NoCapability="Vous ne disposez pas des autorisations suffisantes pour cette action.";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_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_InvalidValue="Valeur incorrecte";Strings.OfficeOM.L_DataWriteReminder="Rappel d’écriture de données";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_BindingToMultipleSelection="Les sélections non contiguës ne sont pas prises en charge.";Strings.OfficeOM.L_Timeout="L’opération a expiré.";Strings.OfficeOM.L_DocumentIsInactive="L’opération a échoué, car le document contenant ce complément est inactif.";Strings.OfficeOM.L_AppNameNotExist="Le nom du complément {0} n’existe pas.";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_DataWriteError="Une erreur s’est produite lors de l’écriture des données";Strings.OfficeOM.L_SelectionCannotBound="Désolé... Nous ne pouvons pas effectuer de liaison avec la sélection actuelle.";Strings.OfficeOM.L_RedundantCallbackSpecification="Désolé... le rappel ne peut pas être spécifié à la fois dans la liste d'arguments et dans l'objet facultatif.";Strings.OfficeOM.L_InvalidBindingOperation="Opération de liaison incorrecte";Strings.OfficeOM.L_ShuttingDown="Désolé... Nous n’avons pas pu terminer l’opération, car les données du serveur ne sont pas actualisées.";Strings.OfficeOM.L_APINotSupported="L’API n’est pas prise en charge";Strings.OfficeOM.L_TooManyIncompleteRequests="Attendez la fin de l’appel précédent.";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_NavOutOfBound="L’opération a échoué, car l’index est hors limites.";Strings.OfficeOM.L_InvalidParameters="Désolé... les paramètres de la fonction {0} sont incorrects.";Strings.OfficeOM.L_InvalidResourceUrl="Une URL de ressource d’application non valide a été fournie.";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_IndexOutOfRange="L’index est hors limites.";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_NotImplemented="Désolé... la fonction {0} n'est pas implémentée.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Nous tentons de définir la propriété en lecture seule « {0} ».";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Votre session Office a expiré ou n’est pas valide. Pour continuer, actualisez la page.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} souhaite afficher une nouvelle fenêtre.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Désolé... nous n'avons pas pu ajouter le gestionnaire d'événements.";Strings.OfficeOM.L_InternalError="Une erreur interne s'est produite";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Veuillez patienter un moment...";Strings.OfficeOM.L_DataReadError="Une erreur s'est produite lors de la lecture des données";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_BindingCreationError="Une erreur s'est produite lors de la création de la liaison";Strings.OfficeOM.L_DisplayDialogError="Erreur d’affichage de la boîte de dialogue";Strings.OfficeOM.L_SettingsCannotSave="Désolé... nous n'avons pas pu enregistrer les paramètres.";Strings.OfficeOM.L_SSOServerErrorMessage="Une erreur inattendue s’est produite sur le serveur.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="L'application {0} n'existe pas. Microsoft.Office.WebExtension.initialize(reason) n'est pas appelé.";Strings.OfficeOM.L_ContinueButton="Continuer";Strings.OfficeOM.L_CustomXmlNodeNotFound="Désolé... Nous n’avons pas trouvé le nœud spécifié.";Strings.OfficeOM.L_SaveSettingsError="Une erreur s'est produite lors de l'enregistrement des paramètres";Strings.OfficeOM.L_InvalidGetColumns="Les colonnes spécifiées ne sont pas valides.";Strings.OfficeOM.L_CustomXmlError="Une erreur relative à du code XML personnalisé s’est produite.";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_OutOfRange="Hors plage";Strings.OfficeOM.L_FunctionCallFailed="Désolé... nous n'avons pas pu appeler la fonction {0}. Le code d'erreur est le suivant : {1}.";Strings.OfficeOM.L_SettingNameNotExist="Désolé… Le nom de paramètre spécifié n’existe pas.";Strings.OfficeOM.L_DataStale="Les données ne sont pas à jour";Strings.OfficeOM.L_FormatValueOutOfRange="La valeur se trouve en dehors de la plage autorisée.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignorer";Strings.OfficeOM.L_DataNotMatchBindingSize="L’objet de données fourni ne correspond pas à la taille de la sélection actuelle.";Strings.OfficeOM.L_HostError="Une erreur relative à l'hôte s'est produite";Strings.OfficeOM.L_DialogRequireHTTPS="Le protocole HTTP n’est pas pris en charge. Utilisez le protocole HTTPS à la place";Strings.OfficeOM.L_MultipleNamedItemFound="Nous avons trouvé plusieurs objets du même nom.";Strings.OfficeOM.L_TooManyArguments="il y a trop d'arguments";Strings.OfficeOM.L_APICallFailed="L’appel de l’API a échoué";Strings.OfficeOM.L_UnsupportedDataObject="Le type d’objet de données fourni n’est pas pris en charge.";Strings.OfficeOM.L_UnsupportedEnumeration="Énumération non prise en charge";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_ActivityLimitReached="La limite d’activité a été atteinte.";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_BrowserAPINotSupported="Ce navigateur ne prend pas en charge l’API demandée.";Strings.OfficeOM.L_NetworkProblem="Problème réseau";Strings.OfficeOM.L_TooManyOptionalFunction="la liste des paramètres inclut plusieurs fonctions facultatives";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_SSOClientErrorMessage="Une erreur inattendue s'est produite dans le client.";Strings.OfficeOM.L_DialogParentIsMinimized="L’opération a échoué car la fenêtre parente est réduite.";Strings.OfficeOM.L_SliceSizeNotSupported="La taille de secteur spécifiée n’est pas prise en charge.";Strings.OfficeOM.L_TooManyOptionalObjects="la liste des paramètres inclut plusieurs objets facultatifs";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_InvalidSetRows="Les lignes spécifiées ne sont pas valides.";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_CloseFileBeforeRetrieve="Appeler closeAsync sur le fichier en cours avant d’en récupérer un autre.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Désolé... le type OsfControl n'est pas pris en charge.";Strings.OfficeOM.L_SSOUnsupportedPlatform="L’API n’est pas prise en charge sur cette plateforme.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="La propriété portant ce nom sur Excel.Script.CustomFunctions et représentant la définition de la fonction doit contenir une propriété « call » qui implémente la fonction.";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_InvalidResourceUrlMessage="Une URL de ressource non valide a été spécifiée dans le manifeste.";Strings.OfficeOM.L_InvalidGrantMessage="Autorisation manquante pour ce complément.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="L’opération a échoué, car ce complément demande déjà un jeton d’accès.";Strings.OfficeOM.L_SetDataParametersConflict="Les paramètres spécifiés sont en conflit.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_OperationNotSupported="L’opération n’est pas prise en charge.";Strings.OfficeOM.L_ReadSettingsError="Une erreur s'est produite lors de la lecture des paramètres";Strings.OfficeOM.L_GetDataIsTooLarge="Le jeu de données demandé est trop volumineux.";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_NotSupported="La fonction {0} n’est pas prise en charge.";Strings.OfficeOM.L_InvalidAPICall="L'appel d'API est incorrect";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_UnsupportedUserIdentity="Le type d’identité de l’utilisateur n’est pas pris en charge.";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_OperationNotSupportedOnThisBindingType="Désolé... Ce type de liaison ne prend pas en charge cette action.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="La fonction pour obtenir le contexte de l’authentification est manquante";Strings.OfficeOM.L_ConfirmRefreshMessage="Pour continuer, supprimez le complément et rajoutez-le ou actualisez la page.";Strings.OfficeOM.L_CoercionTypeNotSupported="Le type de forçage spécifié n’est pas pris en charge.";Strings.OfficeOM.L_UnknownBindingType="Le type de liaison n’est pas pris en charge.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Désolé... nous n'avons pas pu supprimer le gestionnaire d'événements.";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_SSOClientError="Une erreur s’est produite dans la demande d’authentification émise par Office.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Une propriété portant ce nom et représentant la définition de la fonction doit exister sur Excel.Script.CustomFunctions.";Strings.OfficeOM.L_DialogNavigateError="Erreur de navigation dans la boîte de dialogue";Strings.OfficeOM.L_PropertyDoesNotExist="La propriété « {0} » n’existe pas sur l’objet.";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_InvalidCoercion="Le type de forçage de type est incorrect";Strings.OfficeOM.L_NotSupportedEventType="Le type d'événement {0} spécifié n'est pas pris en charge.";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_CustomXmlExceedQuotaName="Limite du nombre de sélections atteinte";Strings.OfficeOM.L_InvalidApiCallInContext="L'appel d'API n'est pas correct dans le contexte actuel.";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é."
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_TooManyArguments="número excesivo de argumentos";Strings.OfficeOM.L_UnsupportedEnumerationMessage="A enumeración non é compatible coa aplicación do computador servidor actual.";Strings.OfficeOM.L_NotImplemented="A función {0} non está implementada.";Strings.OfficeOM.L_ColIndexOutOfRange="O valor do índice de columna está fóra do intervalo permitido. Utiliza un valor (0 ou superior) menor que o número de columnas.";Strings.OfficeOM.L_SliceSizeNotSupported="O tamaño dos sectores non é compatible.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinar parámetros non se pode utilizar co tipo de coerción Táboa cando a táboa contén celas combinadas.";Strings.OfficeOM.L_UnsupportedDataObject="O tipo de obxecto de datos fornecido non é compatible.";Strings.OfficeOM.L_NetworkProblem="Problema de rede";Strings.OfficeOM.L_OsfControlTypeNotSupported="O tipo OsfControl non é compatible.";Strings.OfficeOM.L_InvalidBindingError="Erro de vinculación non válida";Strings.OfficeOM.L_APICallFailed="Produciuse un erro na chamada á API";Strings.OfficeOM.L_SSOServerError="Ocorreu un erro no fornecedor de autenticación.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} quere mostrar unha ventá nova.";Strings.OfficeOM.L_InvalidBinding="Vinculación non válida";Strings.OfficeOM.L_DocumentReadOnly="A operación solicitada non se permite no modo de documento actual.";Strings.OfficeOM.L_ElementMissing="Non puidemos formatar a cela da táboa porque algúns valores de parámetros están ausentes. Verifica outra vez os parámetros e téntao de novo.";Strings.OfficeOM.L_CallbackNotAFunction="A chamada de retorno debe ser de tipo función, pero era de tipo {0}.";Strings.OfficeOM.L_UnsupportedUserIdentity="Non se admite o tipo de identidade do usuario.";Strings.OfficeOM.L_CannotRegisterEvent="O indicador de eventos non se pode rexistrar.";Strings.OfficeOM.L_DataNotMatchBindingType="O obxecto de datos especificado non é compatible co tipo de vinculación.";Strings.OfficeOM.L_NotSupportedBindingType="O tipo de vinculación especificado {0} non é compatible.";Strings.OfficeOM.L_DialogInvalidScheme="Non se admite o esquema de URL. Usa HTTPS.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Estás a piques de enviar e recibir información potencialmente confidencial de {0}. Preme Aceptar só se confías no seguinte sitio web para que reciba a información confidencial: {1}.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="A selección actual non é compatible co tipo de coerción especificada.";Strings.OfficeOM.L_InitializeNotReady="Aínda non se cargou totalmente Office.js. Téntao de novo máis tarde ou asegúrate de engadir o teu código de inicialización na función Office.initialize.";Strings.OfficeOM.L_TooManyOptionalObjects="múltiples obxectos opcionais na lista de parámetros";Strings.OfficeOM.L_ActivityLimitReached="Alcanzouse o límite de actividade.";Strings.OfficeOM.L_NotSupported="A función {0} non é compatible.";Strings.OfficeOM.L_OperationCancelledErrorMessage="O usuario cancelou a operación.";Strings.OfficeOM.L_ConfirmDialogConsent="Ao premer Aceptar permitirás que {0} acceda ao teu contido e información persoal. ";Strings.OfficeOM.L_DialogNavigateError="Erro de navegación por diálogo";Strings.OfficeOM.L_IndexOutOfRange="Índice fóra do intervalo.";Strings.OfficeOM.L_CustomFunctionImplementationMissing='A propiedade con este nome en Excel.Script.CustomFunctions que represente a definición da función debe conter unha propiedade "call" que aplique a función.';Strings.OfficeOM.L_InvalidParameters="A función {0} ten parámetros non válidos.";Strings.OfficeOM.L_SSOClientErrorMessage="Ocorreu un erro inesperado no cliente.";Strings.OfficeOM.L_DataReadError="Erro de lectura de datos";Strings.OfficeOM.L_NavOutOfBound="A operación fallou porque o índice está fóra do intervalo.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Non se pode crear unha vinculación coa selección actual e o tipo de vinculación especificada.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod='Non se poden aplicar os cambios á propiedade "{0}" a través dun método "object.set".';Strings.OfficeOM.L_InternalErrorDescription="Houbo un erro interno.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limita a selección a 1024 elementos.";Strings.OfficeOM.L_SSOClientError="Ocorreu un erro na solicitude de autenticación de Office.";Strings.OfficeOM.L_InvalidFormat="Erro de formato non válido";Strings.OfficeOM.L_DisplayDialogError="Erro de presentación de diálogo";Strings.OfficeOM.L_InvalidSSOAddinMessage="Non se admite a API de identidade neste suplemento.";Strings.OfficeOM.L_InvalidCellsValue="Un ou máis dos parámetros de celas teñen valores non permitidos. Verifica outra vez os valores e téntao de novo.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Límite de selección alcanzado";Strings.OfficeOM.L_InvalidNamedItemForBindingType="O tipo de vinculación especificada non é compatible co elemento con nome fornecido.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="A operación de escritura non é compatible con Office cando está aberto un cadro de diálogo modal.";Strings.OfficeOM.L_CancelButton="Cancelar";Strings.OfficeOM.L_ModalDialogOpeng="Non se pode completar a operación porque o suplemento xa ten un diálogo modal activo.";Strings.OfficeOM.L_RequestTokenUnavailable="Esta API limitouse para diminuír a frecuencia de chamadas.";Strings.OfficeOM.L_BindingCreationError="Erro de creación da vinculación";Strings.OfficeOM.L_BadSelectorString="A cadea pasada ao selector non ten o formato correcto ou non é compatible.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignorar";Strings.OfficeOM.L_RequestTimeout="A chamada tardou demasiado en executarse.";Strings.OfficeOM.L_FileTypeNotSupported="O tipo de ficheiro especificado non é compatible.";Strings.OfficeOM.L_SettingNameNotExist="O nome de configuración especificada non existe.";Strings.OfficeOM.L_OperationCancelledError="Operación cancelada";Strings.OfficeOM.L_ApiNotFoundDetails="O método ou propiedade {0} forma parte do conxunto de requirimentos de {1}, o que non está dispoñible na túa versión de {2}.";Strings.OfficeOM.L_DataNotMatchCoercionType="O tipo do obxecto de datos especificado non é compatible coa selección actual.";Strings.OfficeOM.L_InvalidResourceUrl="Forneceuse un URL de recurso de aplicación non válido.";Strings.OfficeOM.L_SetDataParametersConflict="Os parámetros especificados teñen conflitos.";Strings.OfficeOM.L_SettingsAreStale="Non se puido gardar a configuración porque non é actual.";Strings.OfficeOM.L_UserAbortedMessage="O usuario non consentiu os permisos do suplemento.";Strings.OfficeOM.L_InvalidTableOptionValue="Un ou máis dos parámetros tableOptions teñen valores non permitidos. Verifica outra vez os valores e téntao de novo.";Strings.OfficeOM.L_WorkbookHiddenMessage="Erro na solicitude API de JavaScript porque se ocultou o libro. Mostra o libro e téntao de novo.";Strings.OfficeOM.L_InvalidSetColumns="As columnas especificadas non son válidas.";Strings.OfficeOM.L_CannotWriteToSelection="Non se pode escribir na selección actual.";Strings.OfficeOM.L_InvalidGetRows="As filas especificadas non son válidas.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Erro ao engadir o indicador de eventos.";Strings.OfficeOM.L_SSOServerErrorMessage="Ocorreu un erro inesperado no servidor.";Strings.OfficeOM.L_GetSelectionNotSupported="A selección actual non é compatible.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Argumentos de entrada non válidos.";Strings.OfficeOM.L_RunMustReturnPromise='A función de lotes que pasou ao método ".run" non devolveu unha promesa. A función debe devolver unha promesa para que os obxectos con rastrexamento automático se poidan liberar ao final da operación de lotes. Normalmente, devólvese unha promesa ao devolver a resposta de "context.sync()".';Strings.OfficeOM.L_MissingParameter="Parámetro ausente";Strings.OfficeOM.L_InvalidGrantMessage="Falta unha concesión para este suplemento.";Strings.OfficeOM.L_InValidOptionalArgument="argumento opcional non válido";Strings.OfficeOM.L_GetDataParametersConflict="Os parámetros especificados teñen conflitos.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty='Tentando establecer a propiedade só de lectura "{0}".';Strings.OfficeOM.L_InvalidSetStartRowColumn="Os valores de startRow ou startColumn especificados non son válidos.";Strings.OfficeOM.L_NewWindowCrossZone='A configuración de seguranza do teu explorador evita a creación dunha caixa de diálogo. Proba con outro explorador ou {0} para que "{1}" e o dominio que se mostran na barra de enderezos estean na mesma zona de seguranza.';Strings.OfficeOM.L_DataNotMatchSelection="O obxecto de datos fornecido non é compatible coa forma ou as dimensións da selección actual.";Strings.OfficeOM.L_DialogAddressNotTrusted="O dominio do URL non se inclúe no elemento AppDomains do manifesto e non é o subdominio da localización de orixe.";Strings.OfficeOM.L_InvalidNode="Nodo non válido";Strings.OfficeOM.L_InvalidBindingOperation="Operación de vinculación non válida";Strings.OfficeOM.L_Timeout="A operación excedeu o tempo de espera.";Strings.OfficeOM.L_InvalidDataObject="Obxecto de datos non válido";Strings.OfficeOM.L_DialogRequireHTTPS="Non se admite o protocolo HTTP. Usa HTTPS.";Strings.OfficeOM.L_SaveSettingsError="Erro de configuración da función gardar";Strings.OfficeOM.L_OutOfRange="Fóra do intervalo";Strings.OfficeOM.L_InvalidAPICall="Chamada API non válida";Strings.OfficeOM.L_ReadSettingsError="Erro de configuración da función ler";Strings.OfficeOM.L_UserClickIgnore="O usuario escolleu ignorar a caixa de diálogo.";Strings.OfficeOM.L_BindingToMultipleSelection="As seleccións non contiguas non son compatibles.";Strings.OfficeOM.L_SelectionCannotBound="Non se pode vincular á selección actual.";Strings.OfficeOM.L_NotTrustedWAC="Este suplemento desactivouse para manterte protexido. Para continuar usándoo, validar que este elemento se aloxa nun dominio de confianza ou ábreo na aplicación de escritorio de Office.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Erro ao eliminar o indicador de eventos.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Non se puido completar a operación porque este suplemento xa está a solicitar un token de acceso.";Strings.OfficeOM.L_OperationNotSupported="A operación non é compatible.";Strings.OfficeOM.L_CustomXmlError="Erro de XML personalizado.";Strings.OfficeOM.L_SetDataIsTooLarge="O obxecto de datos especificado é moi grande.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinar parámetros non se pode utilizar co tipo de coerción Táboa cando a táboa contén celas combinadas.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Especificouse un URL de recurso non válido no manifesto.";Strings.OfficeOM.L_DataNotMatchBindingSize="O obxecto de datos fornecido non coincide co tamaño da selección actual.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API non é compatible con esta plataforma.";Strings.OfficeOM.L_InvalidGrant="Falta a autorización previa.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Un problema de rede non permitiu a recuperación do ficheiro.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Permitir";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Este suplemento non admite o consentimento do usuario.";Strings.OfficeOM.L_EventHandlerNotExist="Non se atopou o indicador de eventos especificado para esta vinculación.";Strings.OfficeOM.L_InvalidArgument='O argumento "{0}" non funciona para esta situación, falta ou non ten o formato correcto.';Strings.OfficeOM.L_ConfirmDialogConsentTitle="Un momento...";Strings.OfficeOM.L_CannotNavigateTo="O obxecto está situado nun lugar onde a navegación non é compatible.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="O tipo de coerción especificado non é compatible con este tipo de vinculación.";Strings.OfficeOM.L_DialogOK="Aceptar";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Nota: Suxírese que os conxuntos de formatación configurados por unha chamada á API de formatación sexan inferiores a 100.";Strings.OfficeOM.L_RowIndexOutOfRange="O valor do índice de fila está fóra do intervalo permitido. Utiliza un valor (0 ou superior) menor que o número de filas.";Strings.OfficeOM.L_ConfirmCancelMessage="Sentímolo, non podemos continuar.";Strings.OfficeOM.L_HostError="Erro do computador servidor";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='O tamaño da carga de solicitude superou o límite. Consulta a documentación: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Fai unha selección.";Strings.OfficeOM.L_PermissionDenied="Permiso negado";Strings.OfficeOM.L_EventRegistrationError="Erro do rexistro de eventos";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Unha propiedade con este nome que representa que a definición da función debe existir en Excel.Script.CustomFunctions.";Strings.OfficeOM.L_InvalidGetStartRowColumn="Os valores de startRow ou startColumn especificados non son válidos.";Strings.OfficeOM.L_DataWriteError="Erro de escritura de datos";Strings.OfficeOM.L_AppNameNotExist="O nome de suplemento para {0} non existe.";Strings.OfficeOM.L_SpecifiedIdNotExist="O ID especificado non existe.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="A aplicación {0} non existe. Non se chamou a Microsoft.Office.WebExtension.initialize(motivo).";Strings.OfficeOM.L_TooManyOptionalFunction="múltiples funcións opcionais na lista de parámetros";Strings.OfficeOM.L_InvalidGetColumns="As columnas especificadas non son válidas.";Strings.OfficeOM.L_BindingNotExist="A vinculación especificada non existe.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Os valores de rowCount ou columnCount especificados non son válidos.";Strings.OfficeOM.L_DialogParentIsMinimized="Non se pode completar a operación porque a ventá principal está minimizada.";Strings.OfficeOM.L_InvalidFormatValue="Un ou máis dos parámetros de formato teñen valores non permitidos. Verifica outra vez os valores e téntao de novo.";Strings.OfficeOM.L_InvalidDataFormat="O formato do obxecto de datos especificado non é válido.";Strings.OfficeOM.L_InvalidObjectPath='O camiño de obxecto "{0}" non funciona para o que estás intentando facer. Se estás a usar o obxecto en varias chamadas de "context.sync" e fóra da execución secuencial dun lote ".run", usa os métodos "context.trackedObjects.add()" e "context.trackedObjects.remove()" para xestionar a duración do obxecto.';Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Produciuse un erro na operación porque este suplemento non admite o consentimento do usuario nesta categoría.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="O nome da función só pode conter letras, díxitos, guións baixos e puntos.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel está en modo de edición de celas. Para saír do modo de edición, preme INTRO ou TAB ou selecciona outra cela, e téntao de novo.";Strings.OfficeOM.L_InvalidArgumentGeneric="Os argumentos que se pasaron á función non funcionaron para esta situación, faltan ou non teñen o formato axeitado.";Strings.OfficeOM.L_SettingsStaleError="Erro de configuración obsoleta";Strings.OfficeOM.L_FormatValueOutOfRange="O valor está fóra do intervalo permitido.";Strings.OfficeOM.L_OKButton="Aceptar";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Perdeuse a conexión durante o proceso de inicio de sesión e pode que o usuario non iniciase sesión. Probablemente iso produciuse debido á configuración do navegador do usuario, como as zonas de seguranza.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="A operación non é compatible neste tipo de vinculación.";Strings.OfficeOM.L_FormattingReminder="Aviso de formatación";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='O tamaño da carga de resposta superou o límite. Consulta a documentación: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_MissingRequiredArguments="faltan algúns argumentos obrigatorios";Strings.OfficeOM.L_InternalError="Erro interno";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Falta a función para obter o contexto de autenticación";Strings.OfficeOM.L_GetDataIsTooLarge="O conxunto de datos solicitados é moi grande.";Strings.OfficeOM.L_CustomXmlNodeNotFound="Non se atopou o nodo especificado.";Strings.OfficeOM.L_ConfirmRefreshMessage="Para continuar, elimina o suplemento e engádeo de novo ou actualiza a páxina.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Chama a closeAsync no ficheiro actual antes de recuperar outro.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="O contido seleccionado ten que estar en formato de táboa. Formata os datos como unha táboa e téntao de novo.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Non se admite o tipo de identidade do usuario.";Strings.OfficeOM.L_ConnectionFailureWithStatus="Erro na solicitude. Código de estado: {0}.";Strings.OfficeOM.L_NotSupportedEventType="O tipo de evento especificado {0} non é compatible.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="O suplemento xa está a solicitar un token de acceso.";Strings.OfficeOM.L_ConfirmDialog="O dominio {0} está a actuar como Microsoft Office e pode executar suplementos de Office que poden acceder aos teus datos persoais. Se confías no dominio para executarse como Office e acceder aos teus datos, preme Aceptar para continuar.";Strings.OfficeOM.L_InvalidSetRows="As filas especificadas non son válidas.";Strings.OfficeOM.L_InvalidCoercion="Tipo de coerción non válido";Strings.OfficeOM.L_NamedItemNotFound="O elemento con nome non existe.";Strings.OfficeOM.L_ImplicitNotLoaded="Non se cargou o módulo antes de adquirir un token";Strings.OfficeOM.L_ContinueButton="Continuar";Strings.OfficeOM.L_RedundantCallbackSpecification="A chamada de retorno non se pode especificar na lista de argumentos e no obxecto opcional.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="O nome da función debe conter un espazo de nome que non estea baleiro e un nome corto que non estea baleiro.";Strings.OfficeOM.L_NoCapability="Non tes permisos suficientes para esta acción.";Strings.OfficeOM.L_DocumentIsInactive="Non se pode completar a operación porque o documento que contén este suplemento está inactivo.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configurar o teu explorador";Strings.OfficeOM.L_APINotSupported="A API non é compatible";Strings.OfficeOM.L_DataStale="Datos non actuais";Strings.OfficeOM.L_InvalidApiCallInContext="Chamada API non válida no contexto actual.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Datos non actuais";Strings.OfficeOM.L_UnknownBindingType="O tipo de vinculación non é compatible.";Strings.OfficeOM.L_SettingsCannotSave="Non se pode gardar a configuración.";Strings.OfficeOM.L_ValueNotLoaded='O valor do obxecto de resultado aínda non se cargou. Antes de ler a propiedade do valor, chama a "context.sync()" no contexto da solicitude asociada.';Strings.OfficeOM.L_DialogAlreadyOpened="Non se pode completar a operación porque o suplemento xa ten un diálogo activo.";Strings.OfficeOM.L_ShuttingDown="A operación fallou porque os datos no servidor non son actuais.";Strings.OfficeOM.L_ConnectionFailureWithDetails="Erro na solicitude. Código de estado: {0}; código de erro: {1}; mensaxe de erro: {2}";Strings.OfficeOM.L_FunctionCallFailed="Erro na chamada da función {0}, código de erro: {1}.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="As restricións do explorador evitou que se crease a caixa de diálogo. O dominio da caixa de diálogo e o dominio do host do suplemento non están na mesma zona de seguranza.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Nota: Suxírese que o número de celas nunha táboa sexa inferior a 20.000 celas.";Strings.OfficeOM.L_PropertyDoesNotExist='A propiedade "{0}" non existe no obxecto.';Strings.OfficeOM.L_DataWriteReminder="Aviso de escribir datos";Strings.OfficeOM.L_SSOConnectionLostError="Perdeuse a conexión durante o proceso de inicio de sesión.";Strings.OfficeOM.L_InvalidRequestContext="Non se pode usar o obxecto en distintos contextos de solicitudes.";Strings.OfficeOM.L_UserNotSignedIn="Ningún usuario iniciou sesión en Office.";Strings.OfficeOM.L_PropertyNotLoaded='A propiedade "{0}" non está dispoñible. Antes de ler o valor da propiedade, chama ao método de carga no obxecto contedor e chama a "context.sync()" no contexto de solicitude atribuído.';Strings.OfficeOM.L_InvalidColumnsForBinding="As columnas especificadas non son válidas.";Strings.OfficeOM.L_InvalidValue="Valor non válido";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="A sesión de Office caducou ou non é válida. Para continuar, actualiza a páxina.";Strings.OfficeOM.L_TooManyIncompleteRequests="Agarda a que remate a chamada anterior.";Strings.OfficeOM.L_InvalidReadForBlankRow="A fila especificada está en branco.";Strings.OfficeOM.L_UnsupportedEnumeration="Enumeración non compatible";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="A data é incorrecta. Volve recuperar o obxecto.";Strings.OfficeOM.L_UserAborted="O usuario cancelou a solicitude de consentimento.";Strings.OfficeOM.L_MultipleNamedItemFound="Atopáronse varios obxectos co mesmo nome.";Strings.OfficeOM.L_CoercionTypeNotSupported="O tipo de coerción especificado non é compatible.";Strings.OfficeOM.L_MemoryLimit="Superouse o límite de memoria";Strings.OfficeOM.L_NoHttpsWAC="Esta sesión de Office non usa unha conexión segura. Recomendámosche que tomes precaucións adicionais.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Superouse o tempo de espera da sesión ou non é válida";Strings.OfficeOM.L_OverwriteWorksheetData="A operación de conxunto fallou porque o obxecto de datos fornecido sobrescribirá ou intercambiará datos.";Strings.OfficeOM.L_BrowserAPINotSupported="Este explorador non é compatible coa API solicitada."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APINotSupported="API સમર્થિત નથી";Strings.OfficeOM.L_UserNotSignedIn="Office માં કોઈ ઉપયોગકર્તા સાઇન ઇન થયેલ નથી.";Strings.OfficeOM.L_NotSupportedEventType="નિર્દિષ્ટ ઇવેંટ પ્રકાર {0} સમર્થિત નથી.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="તમે {0} થી સંભવિત રીતે સંવેદનશીલ જાણકારી પ્રાપ્ત કરવા, અને તેને મોકલવા, જઈ રહ્યાં છો. જો તમને નીચે આપેલ વેબસાઇટ દ્વારા સંવેદનશીલ જાણકારી પ્રાપ્ત કરવા પર વિશ્વાસ હોય, તો જ ‘ઠીક’ પર ક્લિક કરો: {1}.";Strings.OfficeOM.L_TooManyOptionalObjects="પેરામીટર સૂચિમાં બહુવિધ વૈકલ્પિક ઑબ્જેક્ટ્સ છે";Strings.OfficeOM.L_Timeout="ઑપરેશનનો સમય સમાપ્ત થયો છે.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="તમારા બ્રાઉઝરને કન્ફિગર કરો";Strings.OfficeOM.L_InvalidFormat="અમાન્ય સ્વરૂપ ભૂલ";Strings.OfficeOM.L_PropertyDoesNotExist="ગુણધર્મ '{0}' ઑબ્જેક્ટ પર હાજર નથી.";Strings.OfficeOM.L_InvalidGetRows="નિર્દિષ્ટ પંક્તિઓ અમાન્ય છે.";Strings.OfficeOM.L_SetDataParametersConflict="નિર્ધિષ્ટ પેરામીટર્સ વિરોધ.";Strings.OfficeOM.L_CustomXmlNodeNotFound="નિર્દિષ્ટ મોડ મળ્યો ન હતો.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="પસંદગી મર્યાદા સુધી પહોંચી";Strings.OfficeOM.L_InvalidGetStartRowColumn="નિર્દિષ્ટ startRow અથવા startColumn મૂલ્યો માન્ય નથી.";Strings.OfficeOM.L_UnsupportedEnumeration="અસમર્થિત ગણના";Strings.OfficeOM.L_UserAbortedMessage="ઉપયોગકર્તાએ ઍડ-ઇન અનુમતિઓની સંમતિ આપી નથી.";Strings.OfficeOM.L_DialogOK="ઠીક";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="જ્યારે કોષ્ટકમાં મર્જ કરેલ કોષો સામેલ હોય ત્યારે નિગ્રહ પ્રકારના કોષ્ટક સાથે અનુબદ્ધ પેરામીટર્સનો ઉપયોગ કરી શકાતો નથી.";Strings.OfficeOM.L_SettingsAreStale="સેટિંગ્સ સાચવી શકાઈ નથી કારણ કે તે વર્તમાન નથી.";Strings.OfficeOM.L_NotSupportedBindingType="નિર્દિષ્ટ બાઇંડિંગ પ્રકાર {0} સમર્થિત નથી.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="એપ્લિકેશન {0} હાજર નથી Microsoft.Office.WebExtension.initialize(reason) ને કૉલ કરેલ નથી.";Strings.OfficeOM.L_InvalidDataFormat="નિર્દિષ્ટ ડેટા ઑબ્જેક્ટનું સ્વરૂપ અમાન્ય છે.";Strings.OfficeOM.L_GetDataParametersConflict="નિર્ધિષ્ટ પેરામીટર્સ વિરોધ.";Strings.OfficeOM.L_NewWindowCrossZone="તમારા બ્રાઉઝરમાંના સુરક્ષા સેટિંગ્સ અમને સંવાદ બૉક્સ બનાવતાં અટકાવે છે. એક ભિન્ન બ્રાઉઝરનો પ્રયાસ કરો, અથવા {0} કે જેથી '{1}' અને તમારી સરનામા પટ્ટીમાં બતાવેલ ડોમેન એક જ સુરક્ષા ઝોનમાં રહે.";Strings.OfficeOM.L_NotTrustedWAC="તમને સલામત રાખવામાં સહાય માટે આ ઍડ-ઇન અક્ષમ કરવામાં આવ્યું છે. ઍડ-ઇનનો ઉપયોગ ચાલુ રાખવા માટે, માન્ય કરો કે આ આઇટમ કોઈ વિશ્વસનીય ડોમેનમાં હોસ્ટ કરેલી છે અથવા તેને Office ડેસ્કટૉપ એપ્લિકેશનમાં ખોલો.";Strings.OfficeOM.L_NoCapability="તમારી પાસે આ ક્રિયા માટે પર્યાપ્ત અનુમતિઓ નથી.";Strings.OfficeOM.L_InvalidGrant="પૂર્વ પ્રમાણીકરણ ખૂંટે છે.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="ધ્યાન ન આપો";Strings.OfficeOM.L_NetworkProblemRetrieveFile="એક નેટવર્ક સમસ્યાએ ફાઇલની પુનઃપ્રાપ્તિને અટકાવેલ છે.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="નોંધ: સ્વરૂપણ API કૉલ દ્વારા સેટ કરવામાં આવેલ સ્વરૂપણ સેટ્સ 100 કરતા ઓછા હોવાનું સૂચવેલ છે.";Strings.OfficeOM.L_TooManyOptionalFunction="પેરામીટર સૂચિમાં બહુવિધ વૈકલ્પિક ફંક્શન્સ છે";Strings.OfficeOM.L_HostError="હોસ્ટ ભૂલ";Strings.OfficeOM.L_FunctionCallFailed="ફંક્શન {0} કૉલ નિષ્ફળ થયો, ભૂલ કોડ: {1}.";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript API વિનંતી નિષ્ફળ થઈ કારણ કે કાર્યપુસ્તિકા છુપાવેલ હતી. કૃપયા કાર્યપુસ્તિકાને સામે લાવો અને ફરી પ્રયાસ કરો.";Strings.OfficeOM.L_DataStale="ડેટા વર્તમાન નથી";Strings.OfficeOM.L_EventHandlerNotExist="આ બાઇંડિંગ માટે નિર્દિષ્ટ ઇવેંટ હેન્ડલર મળ્યું ન હતું.";Strings.OfficeOM.L_InvalidSelectionForBindingType="વર્તમાન પસંદગી અને નિર્દિષ્ટ કરેલ બાઇંડિંગ પ્રકાર સાથે બાઇંડિંગ બનાવી શકાતું નથી.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP પ્રોટોકૉલ સમર્થિત નથી. તેના બદલે HTTPS નો ઉપયોગ કરો";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="પરવાનગી આપો";Strings.OfficeOM.L_DocumentIsInactive="ઑપરેશન નિષ્ફળ થયું કારણ કે આ ઍડ-ઇન ધરાવતો દસ્તાવેજ નિષ્ક્રિય છે.";Strings.OfficeOM.L_EventHandlerAdditionFailed="ઇવેંટ હેન્ડલર ઍડ કરવામાં નિષ્ફળ થયું.";Strings.OfficeOM.L_CannotNavigateTo="ઑબ્જેક્ટ એવા સ્થાનમાં સ્થિત છે કે જ્યાં નેવિગેશન સમર્થિત નથી.";Strings.OfficeOM.L_OutOfRange="રેંજની બહાર";Strings.OfficeOM.L_InvalidCellsValue="કોષો પેરામીટર્સમાંથી એક કે વધુમાં એવા મૂલ્યો છે કે જેની પરવાનગી આપેલ નથી. મૂલ્યને બીજીવાર તપાસો અને ફરી પ્રયાસ કરો.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="ઑપરેશન નિષ્ફળ ગયું કારણ કે આ ઍડ-ઇન આ શ્રેણીમાં ઉપયોગકર્તાની સંમતિને સમર્થન કરતું નથી";Strings.OfficeOM.L_EventRegistrationError="ઇવેંટ નોંધણીમાં ભૂલ";Strings.OfficeOM.L_MissingRequiredArguments="કેટલીક આવશ્યક દલીલો ખૂટે છે";Strings.OfficeOM.L_InvalidCoercion="અમાન્ય નિગ્રહ પ્રકાર";Strings.OfficeOM.L_SliceSizeNotSupported="નિર્દિષ્ટ સ્લાઇસ કદ સમર્થિત નથી.";Strings.OfficeOM.L_InitializeNotReady="Office.js હજુ સુધી સંપૂર્ણપણે લોડ થયું નથી. કૃપયા પછીથી ફરી પ્રયાસ કરો અથવા Office.initialize ફંક્શન પર પ્રારંભિક કોડ ઍડ કરવાનું સુનિશ્ચિત કરો.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="1024 આઇટમ્સ માટે XPath પસંદગી મર્યાદિત કરે છે.";Strings.OfficeOM.L_CallbackNotAFunction="કૉલબેક ફંક્શનનો પ્રકાર હોવો આવશ્યક છે, {0} પ્રકારનું હતું.";Strings.OfficeOM.L_CannotWriteToSelection="વર્તમાન પસંદગી પર લખી શકાતું નથી.";Strings.OfficeOM.L_InternalError="આંતરિક ભૂલ";Strings.OfficeOM.L_FormatValueOutOfRange="આ મૂલ્ય પરવાનગી આપેલ રેંજથી વધારે છે.";Strings.OfficeOM.L_InvalidSetRows="નિર્દિષ્ટ પંક્તિઓ અમાન્ય છે.";Strings.OfficeOM.L_SettingsStaleError="સેટિંગ્સ સ્ટૉલમાં ભૂલ";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='વિનંતી પેલોડ આકારે સીમાને વટાવી દીધી છે. કૃપયા આ દસ્તાવેજીકરણનો સંદર્ભ લો: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_NamedItemNotFound="નામવાળી આઇટમ હાજર નથી.";Strings.OfficeOM.L_InvalidTableOptionValue="એક કે વધુ tableOptions પેરામીટર્સમાં એવા મૂલ્યો છે કે જેની પરવાનગી આપેલ નથી. મૂલ્યોને બીજીવાર તપાસો અને ફરી પ્રયાસ કરો.";Strings.OfficeOM.L_RedundantCallbackSpecification="કૉલબેકને દલીલ સૂચિ અને વૈકલ્પિક ઑબ્જેક્ટ બન્નેમાં નિર્દિષ્ટ કરી શકાતું નથી.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="ઍડ-ઇને પહેલેથી એક ઍક્સેસ ટોકનની વિનંતી કરી હોવાને કારણે ઑપરેશન નિષ્ફળ થયું.";Strings.OfficeOM.L_DataNotMatchSelection="પૂરો પાડેલ ડેટા ઑબ્જેક્ટ વર્તમાન પસંદગીની આકૃતિ અથવા પરિમાણોથી સુસંગત નથી.";Strings.OfficeOM.L_RequestTimeout="કૉલને ક્રિયાન્વિત થવામાં લાંબો સમય લાગ્યો.";Strings.OfficeOM.L_InvalidArgument="દલીલ '{0}' આ પરિસ્થિતિ માટે કાર્ય કરતી નથી, તે ખૂટે છે અથવા યોગ્ય સ્વરૂપમાં નથી.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="નિર્દિષ્ટ બાઇંડિંગ પ્રકાર પૂરી પાડેલ નામની આઇટમ સાથે સુસંગત નથી.";Strings.OfficeOM.L_ConfirmDialog="ડોમેન {0} Microsoft Office તરીકે કાર્ય કરી રહ્યું છે અને Office ઍડ-ઇન્સ ચલાવી શકે છે, જે તમારા વ્યક્તિગત ડેટાને ઍક્સેસ કરી શકે છે. જો તમે Office તરીકે ચલાવવા અને તમારા ડેટાને ઍક્સેસ કરવા માટે ડોમેન પર વિશ્વાસ કરતા હોય, તો ચાલુ રાખવા માટે ઠીક પર ક્લિક કરો.";Strings.OfficeOM.L_SSOClientErrorMessage="ક્લાયંટમાં એક અનપેક્ષિત ભૂલ આવી.";Strings.OfficeOM.L_NotSupported="ફંક્શન {0} સમર્થિત નથી.";Strings.OfficeOM.L_SSOClientError="Office તરફથી પ્રમાણીકરણ વિનંતીમાં ભૂલ આવી.";Strings.OfficeOM.L_BadSelectorString="સિલેક્ટરમાં પસાર કરવામાં આવેલી આ સ્ટ્રિંગ અગ્યોય રીતે સ્વરૂપિત છે અથવા અસમર્થિત છે.";Strings.OfficeOM.L_InvalidSSOAddinMessage="ઓળખ API આ ઍડ-ઇન માટે સમર્થિત નથી.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="જ્યારે કોષ્ટકમાં મર્જ કરેલ કોષો સામેલ હોય ત્યારે નિગ્રહ પ્રકારના કોષ્ટક સાથે અનુબદ્ધ પેરામીટર્સનો ઉપયોગ કરી શકાતો નથી.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="પ્રમાણીકરણ સંદર્ભ મેળવવા માટેનું ફંક્શન ગુમ છે";Strings.OfficeOM.L_InvalidApiCallInContext="વર્તમાન સંદર્ભમાં અમાન્ય API કૉલ.";Strings.OfficeOM.L_ConfirmDialogConsent="ઠીક પર ક્લિક કરીને, તમે {0}ને તમારી સામગ્રી અને વ્યક્તિગત જાણકારીની ઍક્સેસની પરવાનગી આપશો.";Strings.OfficeOM.L_BindingNotExist="નિર્દિષ્ટ બાઇંડિંગ હાજર નથી.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl પ્રકાર સમર્થિત નથી.";Strings.OfficeOM.L_InvalidDataObject="અમાન્ય ડેટા ઑબ્જેક્ટ";Strings.OfficeOM.L_TooManyArguments="ઘણી બધી દલીલો છે";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="ઉપયોગકર્તાનો ઓળખ પ્રકાર સમર્થિત નથી.";Strings.OfficeOM.L_ImplicitNotLoaded="ટોકન પ્રાપ્ત કરવા પહેલાં મૉડ્યૂલ લોડ કરાયેલ નથી";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="આ બાઇંડિંગ પ્રકાર પર ઑપરેશન સમર્થિત નથી.";Strings.OfficeOM.L_InvalidAPICall="અમાન્ય API કૉલ";Strings.OfficeOM.L_MultipleNamedItemFound="સમાન નામવાળા બહુવિધ ઑબ્જેક્ટ્સ મળ્યાં હતાં.";Strings.OfficeOM.L_NoHttpsWAC="આ Office સત્ર સુરક્ષિત કનેક્શનનો ઉપયોગ કરી રહ્યું નથી. અમે તમને વધારાની સાવચેતી રાખવાની ભલામણ કરીએ છીએ.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="ડેટા જ���નો છે. ઑબ્જેક્ટ ફરીથી પુન:પ્રાપ્ત કરો.";Strings.OfficeOM.L_ColIndexOutOfRange="હરોળ અનુક્રમણિકા મૂલ્ય પરવાનગી આપેલ રેંજની બહાર છે. હરોળોની સંખ્યા કરતા ઓછું હોય તેવા (0 અથવા વધુ) મૂલ્ય પસંદ કરો.";Strings.OfficeOM.L_InvalidBinding="અમાન્ય બાઇંડિંગ";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="પસંદ કરેલી સામગ્રી કોષ્ટક સ્વરૂપમાં હોવી જરૂરી છે. ડેટાને એક કોષ્ટક તરીકે સ્વરૂપિત કરો અને ફરી પ્રયાસ કરો.";Strings.OfficeOM.L_ActivityLimitReached="પ્રવૃત્તિ સીમા પર પહોંચી ગયા.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="ગુણધર્મ '{0}' માટેનાં પરિવર્તનો \"object.set\" પદ્ધતિ મારફતે લાગુ કરી શકાતા નથી.";Strings.OfficeOM.L_GetDataIsTooLarge="વિનંતી કરેલ ડેટા સેટ ખૂબ મોટો છે.";Strings.OfficeOM.L_InvalidSetColumns="નિર્દિષ્ટ હરોળો અમાન્ય છે.";Strings.OfficeOM.L_TooManyIncompleteRequests="પહેલાનો કૉલ પૂર્ણ થાય ત્યાં સુધી પ્રતીક્ષા કરો.";Strings.OfficeOM.L_ReadSettingsError="વાંચો સેટિંગ્સમાં ભૂલ";Strings.OfficeOM.L_SettingsCannotSave="સેટિંગ્સ સાચવી શકાઈ નથી.";Strings.OfficeOM.L_SSOConnectionLostError="સાઇન ઇન કરવાની પ્રક્રિયા દરમિયાન એક કનેક્શન ગુમ થઈ ગયું હતું.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="તમારા Office સત્રની સમય સીમા સમાપ્ત થઈ અથવા તે અમાન્ય છે. ચાલુ રાખવા માટે પૃષ્ઠને તાજું કરો.";Strings.OfficeOM.L_InvalidNode="અમાન્ય નોડ";Strings.OfficeOM.L_PropertyNotLoaded="ગુણધર્મ '{0}' ઉપલબ્ધ નથી. ગુણધર્મનું મૂલ્ય વાંચતા પહેલાં, ઑબ્જેક્ટ સામેલ થવા પર લોડ પદ્ધતિને કૉલ કરો અને સંકળાયેલ વિનંતી સંદર્ભ પર \"context.sync()\" ને કૉલ કરો.";Strings.OfficeOM.L_DocumentReadOnly="વિનંતી કરેલ ઑપરેશનની વર્તમાન દસ્તાવેજ મોડ પર પરવાનગી નથી.";Strings.OfficeOM.L_CustomXmlOutOfDateName="ડેટા વર્તમાન નથી";Strings.OfficeOM.L_ContinueButton="ચાલુ રાખો";Strings.OfficeOM.L_InternalErrorDescription="કોઈ આંતરિક ભૂલ આવી છે.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='પ્રતિસાદ પેલોડ આકારે સીમાને વટાવી દીધી છે. કૃપયા આ દસ્તાવેજીકરણનો સંદર્ભ લો: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidBindingOperation="અમાન્ય બાઇંડિંગ ઑપરેશન";Strings.OfficeOM.L_ApiNotFoundDetails="પદ્ધતિ અથવા ગુણધર્મ {0} જરૂરિયાત સમૂહ {1} નો ભાગ છે, જે તમારા {2} ના વર્ઝનમાં ઉપલબ્ધ નથી.";Strings.OfficeOM.L_NavOutOfBound="ઑપરેશન નિષ્ફળ થયું કારણ કે અનુક્રમણિકા રેંજની બહાર છે.";Strings.OfficeOM.L_DialogParentIsMinimized="ઑપરેશન નિષ્ફળ થયું કારણ કે પેરેંટ વિંડોને નાની કરેલી છે.";Strings.OfficeOM.L_CancelButton="રદ કરો";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="બ્રાઉઝર પ્રતિબંધો અમને સંવાદ બૉક્સ બનાવતાં અટકાવે છે. સંવાદ બૉક્સનું ડોમેન અને ઍડ-ઇન હોસ્ટનું ડોમેન એક જ સુરક્ષા ઝોનમાં નથી.";Strings.OfficeOM.L_ConfirmRefreshMessage="ચાલુ રાખવા માટે, ઍડ-ઇનને દૂર કરો અને તેને ફરીથી ઉમેરો અથવા પૃષ્ઠને તાજું કરો.";Strings.OfficeOM.L_InvalidValue="અમાન્ય મૂલ્ય";Strings.OfficeOM.L_SelectionCannotBound="વર્તમાન પસંદગીથી બાઇંડ કરી શકાતું નથી.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="આ નામ સાથેનો ગુણધર્મ જે ફંક્શનની વ્યાખ્યાને રજૂ કરે છે તે Excel પર અસ્તિત્વમાં હોવો આવશ્યક છે. કસ્ટમફંક્શન્સ.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="એક ક્ષણ ...";Strings.OfficeOM.L_ElementMissing="અમે કોષ્ટક કોષને સ્વરૂપિત કરી શકતા નથી કારણ કે કેટલાક પેરામીટર મૂલ્યો ખૂટે છે. પેરામીટર્સને બીજીવાર તપાસો અને ફરી પ્રયાસ કરો.";Strings.OfficeOM.L_MissingParameter="પેરામીટર ખૂટે છે";Strings.OfficeOM.L_NotImplemented="ફંક્શન {0} લાગુ કરાયેલ નથી.";Strings.OfficeOM.L_MemoryLimit="મેમરી સીમા વટાવી";Strings.OfficeOM.L_DialogAddressNotTrusted="URL નું ડોમેન મેનિફેસ્ટમાં AppDomains તત્વમાં સામલે નથી, અને તે સ્રોત સ્થાનનું પેટાડોમેન નથી.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="આ ઍડ-ઇન ઉપયોગકર્તાની સંમતિને સમર્થન કરતું નથી.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="માત્ર વાંચનલક્ષી ગુણધર્મ '{0}' ને સેટ કરવાનો પ્રયાસ કરે છે.";Strings.OfficeOM.L_UnsupportedUserIdentity="ઉપયોગકર્તા ઓળખ પ્રકાર સમર્થિત નથી.";Strings.OfficeOM.L_OverwriteWorksheetData="સેટ ઑપરેશન નિષ્ફળ થયું કારણ કે પૂરો પાડેલ ડેટા ઑબ્જેક્ટ ડેટાને અધિલેખિત કરશે અથવા ખસેડશે.";Strings.OfficeOM.L_RunMustReturnPromise='".run" પદ્ધતિ પર પાસ કરવામાં આવેલ બૅચ ફંક્શને વચન પાછું કર્યુ નથી. ફંક્શને વચન પાછું કરવું આવશ્યક છે, જેથી સ્વચાલિત રૂપે ટ્રૅક થયેલ કોઈપણ ઑબ્જેક્ટ્સ બૅચ ઑપરેશનની સમાપ્તિ પર રિલીઝ થઈ શકે. સામાન્ય રીતે, તમે "context.sync()" થી પ્રતિસાદ પાછો કરીને વચન પાછું કરો છો.';Strings.OfficeOM.L_OKButton="ઠીક";Strings.OfficeOM.L_DataNotMatchBindingType="નિર્દિષ્ટ ડેટા ઑબ્જેક્ટ બાઇંડિંગ પ્રકાર સાથે સુસંગત નથી.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="ફંક્શનના નામમાં કોઈ બિન-ખાલી નામ સ્થાન અને કોઈ બિન-ખાલી ટૂંકા નામ હોવું આવશ્યક છે.";Strings.OfficeOM.L_CustomXmlError="કસ્ટમ XML ભૂલ.";Strings.OfficeOM.L_InValidOptionalArgument="અમાન્ય વૈકલ્પિક દલીલ";Strings.OfficeOM.L_CoercionTypeNotSupported="નિર્દિષ્ટ નિગ્રહ પ્રકાર સમર્થિત નથી.";Strings.OfficeOM.L_OperationCancelledErrorMessage="ઉપયોગકર્તા દ્વારા ઑપરેશન રદ કરવામાં આવ્યું હતું.";Strings.OfficeOM.L_IndexOutOfRange="અનુક્રમણિકાની રેંજ સમાપ્ત.";Strings.OfficeOM.L_OperationNotSupported="ઑપરેશન સમર્થિત નથી.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="નોંધ: કોષ્ટકમાં કોષોની સંખ્યા 20,000 કોષો કરતા નીચે હોવાનું સૂચવેલ છે.";Strings.OfficeOM.L_ConfirmCancelMessage="ક્ષમા કરશો, અમે અહીં ચાલુ રાખી શકતા નથી.";Strings.OfficeOM.L_SetDataIsTooLarge="નિર્દિષ્ટ ડેટા ઑબ્જેક્ટ ખૂબ મોટો છે.";Strings.OfficeOM.L_InvalidColumnsForBinding="નિર્દિષ્ટ હરોળો અમાન્ય છે.";Strings.OfficeOM.L_InvalidGetColumns="નિર્દિષ્ટ હરોળો અમાન્ય છે.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="બીજી પ્રાપ્ત કરતા પહેલાં વર્તમાન ફાઇલ પર closeAsync ને કૉલ કરો.";Strings.OfficeOM.L_FileTypeNotSupported="નિર્દિષ્ટ ફાઇલ પ્રકાર સમર્થિત નથી.";Strings.OfficeOM.L_CannotRegisterEvent="ઇવેન્ટ હેન્ડલર નોંધાવી શકાતું નથી.";Strings.OfficeOM.L_SpecifiedIdNotExist="નિર્દિષ્ટ ID હાજર નથી.";Strings.OfficeOM.L_DialogInvalidScheme="URL યોજના સમર્થિત નથી. તેના બદલે HTTPS નો ઉપયોગ કરો.";Strings.OfficeOM.L_InvalidOrTimedOutSession="અમાન્ય અથવા સમય સમાપ્ત થયેલ સત્ર";Strings.OfficeOM.L_InvalidGetRowColumnCounts="નિર્દિષ્ઠ rowCount અથવા columnCount મૂલ્યો અમાન્ય છે.";Strings.OfficeOM.L_UserClickIgnore="ઉપયોગકર્તા સંવાદ બૉક્સને અવગણવાનું પસંદ કરે છે.";Strings.OfficeOM.L_NetworkProblem="નેટવર્ક સમસ્યા";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} નવી વિંડો પ્રદર્શિત કરવા માગે છે.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="કૃપયા એક પસંદગી કરો.";Strings.OfficeOM.L_UnsupportedDataObject="પૂરો પાડેલ ડેટા ઑબ્જેક્ટ પ્રકાર સમર્થિત નથી.";Strings.OfficeOM.L_AppNameNotExist="{0} માટે ઍડ-ઇન નામ હાજર નથી.";Strings.OfficeOM.L_ConnectionFailureWithStatus="{0} ના સ્થિતિ કોડ સાથે વિનંતી નિષ્ફળ થઈ છે.";Strings.OfficeOM.L_InvalidParameters="ફંક્શન {0} માં અમાન્ય પેરામીટર્સ છે.";Strings.OfficeOM.L_DataReadError="ડેટા વાંચનમાં ભૂલ";Strings.OfficeOM.L_InvalidReadForBlankRow="નિર્દિષ્ટ પંક્તિ રિક્ત છે.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="ઍડ-ઇને પહેલેથી એક ઍક્સેસ ટોકનની વિનંતી કરી છે.";Strings.OfficeOM.L_SSOServerErrorMessage="સર્વર પર એક અનપેક્ષિત ભૂલ આવી.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="વર્તમાન પસંદગી નિર્દિષ્ટ નિગ્રહ પ્રકાર સાથે સુસંગત નથી.";Strings.OfficeOM.L_EventHandlerRemovalFailed="ઇવેંટ હેન્ડલર કાઢી નાંખવામાં નિષ્ફળ થયું.";Strings.OfficeOM.L_InvalidGrantMessage="આ ઍડ-ઇન માટે પરવાનગી ખૂંટે છે.";Strings.OfficeOM.L_UnknownBindingType="બાઇંડિંગ પ્રકાર સમર્થિત નથી.";Strings.OfficeOM.L_SSOServerError="પ્રમાણીકરણ પ્રદાતામાં ભૂલ આવી.";Strings.OfficeOM.L_ValueNotLoaded='પરિણામ ઑબ્જેક્ટનું મૂલ્ય હજી સુધી લોડ કરવામાં આવ્યું નથી. મૂલ્ય ગુણધર્મ વાંચતા પહેલાં, સંકળાયેલ વિનંતી સંદર્ભ પર "context.sync()" ને કૉલ કરો.';Strings.OfficeOM.L_BindingCreationError="બાઇંડિંગની રચનામાં ભૂલ";Strings.OfficeOM.L_InvalidResourceUrl="અમાન્ય એપ્લિકેશન સ્રોત Url પ્રદાન કરી હતી.";Strings.OfficeOM.L_OperationCancelledError="ઑપરેશન રદ કર્યું";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel એ કોષ-સંપાદન મોડમાં છે. કૃપા કરીને ENTER અથવા TAB દબાવીને અથવા અન્ય કોષ પસંદ કરીને સંપાદન મોડથી બહાર નીકળો અને ફરીથી પ્રયાસ કરો.";Strings.OfficeOM.L_RowIndexOutOfRange="પંક્તિ અનુક્રમણિકા મૂલ્ય પરવાનગી આપેલ રેંજની બહાર છે. પંક્તિઓની સંખ્યા કરતા ઓછું હોય તેવા (0 અથવા વધુ) મૂલ્ય પસંદ કરો.";Strings.OfficeOM.L_BrowserAPINotSupported="આ બ્રાઉઝર વિનંતી કરેલ API નું સમર્થન કરતું નથી.";Strings.OfficeOM.L_DialogAlreadyOpened="ઑપરેશન નિષ્ફળ થયું કારણ કે આ ઍડ-ઇનમાં પહેલેથી સક્રિય સંવાદ છે.";Strings.OfficeOM.L_DataWriteError="ડેટા લેખનમાં ભૂલ";Strings.OfficeOM.L_DataWriteReminder="ડેટા લેખન રીમાઇન્ડર";Strings.OfficeOM.L_InvalidResourceUrlMessage="મેનિફેસ્ટમાં અમાન્ય સ્રોત Url ઉલ્લેખિત છે.";Strings.OfficeOM.L_ShuttingDown="ઑપરેશન નિષ્ફળ થયું કારણ કે સર્વર પરનો ડેટા વર્તમાન નથી.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="સાઇન ઇન કરવાની પ્રક્રિયા દરમિયાન એક કનેક્શન ગુમ થઈ ગયું હતું અને ઉપયોગકર્તા સાઇન ઇન થઈ શક્યાં નહીં હોય. આ સંભવતઃ સુરક્ષા ઝોન્સના જેવી ઉપયોગકર્તાની બ્રાઉઝર કન્ફિગરેશન સેટિંગ્સ કારણે થયું હોઈ શકે છે.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="જ્યારે મોડાલ સંવાદ ખુલ્લો હોય ત્યારે Office માટે લખો ઑપરેશન સમર્થિત નથી.";Strings.OfficeOM.L_UserAborted="ઉપયોગકર્તાએ સંમતિની વિનંતી નિરસ્ત કરી.";Strings.OfficeOM.L_InvalidBindingError="અમાન્ય બાઇંડિંગ ભૂલ";Strings.OfficeOM.L_APICallFailed="API કૉલ નિષ્ફળ થયો";Strings.OfficeOM.L_GetSelectionNotSupported="વર્તમાન પસંદગી સમર્થિત નથી.";Strings.OfficeOM.L_InvalidArgumentGeneric="દલીલ(લો) ફંક્શંનમાંથી પાસ કરેલ છે જે આ સ્થિતિ માટે કાર્ય નથી કરતી, ખૂટે છે અથવા યોગ્ય સ્વરૂપમાં નથી.";Strings.OfficeOM.L_BindingToMultipleSelection="અસંનિહિત પસંદગીઓ સમર્થિત નથી.";Strings.OfficeOM.L_RequestTokenUnavailable="કૉલ આવર્તન દેખાડવા માટે આ API ને રોકવામાં આવેલ છે.";Strings.OfficeOM.L_SSOUnsupportedPlatform="આ પ્લેટફોર્મમાં API સમર્થિત નથી.";Strings.OfficeOM.L_ConnectionFailureWithDetails="{0} ના સ્થિતિ કોડ, {1} ભૂલ કોડ અને નીચેના ભૂલ સંદેશ સાથે વિનંતી નિષ્ફળ થઈ છે: {2}";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="ફંક્શનના નામમાં માત્ર અક્ષરો, આંકડા અને અન્ડરસ્કોર્સ અને પીરિયડ્સ હોઈ શકે છે.";Strings.OfficeOM.L_SettingNameNotExist="નિર્દિષ્ટ સેટિંગ નામ હાજર નથી.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="વર્તમાન હોસ્ટ એપ્લિકેશનમાં ગણના સમર્થિત નથી.";Strings.OfficeOM.L_PermissionDenied="પરવાનગી નકારાઈ";Strings.OfficeOM.L_InvalidFormatValue="એક કે વધુ સ્વરૂપ પેરામીટર્સમાં એવા મૂલ્યો છે કે જેની પરવાનગી આપેલ નથી. મૂલ્યોને બીજીવાર તપાસો અને ફરી પ્રયાસ કરો.";Strings.OfficeOM.L_DialogNavigateError="સંવાદ નેવિગેશન ભૂલ";Strings.OfficeOM.L_InvalidSetStartRowColumn="નિર્દિષ્ટ startRow અથવા startColumn મૂલ્યો માન્ય નથી.";Strings.OfficeOM.L_DataNotMatchBindingSize="પૂરો પાડેલ ડેટા ઑબ્જેક્ટ વર્તમાન પસંદગીના કદથી મેળ ખાતો નથી.";Strings.OfficeOM.L_DataNotMatchCoercionType="નિર્દિષ્ટ ડેટા ઑબ્જેક્ટનો પ્રકાર વર્તમાન પસંદગી સાથે સુસંગત નથી.";Strings.OfficeOM.L_FormattingReminder="સ્વરૂપણ રીમાઇન્ડર";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="નિર્દિષ્ટ નિગ્રહ પ્રકાર આ બાઇંડિંગ પ્રકાર સાથે સમર્થિત નથી.";Strings.OfficeOM.L_ModalDialogOpeng="ઑપરેશન નિષ્ફળ થયું કારણ કે આ ઍડ-ઇનમાં પહેલેથી સક્રિય મૉડલ સંવાદ છે.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="અમાન્ય ઇનપુટ દલીલો.";Strings.OfficeOM.L_SaveSettingsError="સાચવો સેટિંગ્સમાં ભૂલ";Strings.OfficeOM.L_InvalidRequestContext="ભિન્ન વિનંતી સંદર્ભો પર ઑબ્જેક્ટનો ઉપયોગ કરી શકાતો નથી.";Strings.OfficeOM.L_DisplayDialogError="પ્રદર્શન સંવાદ ભૂલ";Strings.OfficeOM.L_InvalidObjectPath='ઑબ્જેક્ટ પાથ \'{0}\' તમે જે કાર્ય કરવાનો પ્રયાસ કરી રહ્યા છો તેના માટે કાર્ય કરતો નથી. જો તમે બહુવિધ "context.sync" કૉલ્સ પર અને ".run" બૅચના પરિણામી અપવાદોની બહાર ઑબ્જેક્ટનો ઉપયોગ કરતા હોય, તો કૃપયા ઑબ્જેક્ટનો લાઇફટાઇમ મેનેજ કરવા માટે "context.trackedObjects.add()" અને "context.trackedObjects.remove()" પદ્ધતિઓનો ઉપયોગ કરો.';Strings.OfficeOM.L_CustomFunctionImplementationMissing="Excel.Script.CustomFunctions પર આ નામ સાથેનો ગુણધર્મ જે ફંક્શનની વ્યાખ્યાને રજૂ કરે છે તેમાં 'કૉલ' ગુણધર્મનો સમાવેશ હોવો જ જોઈએ જે ફંક્શનને અમલમાં મૂકે છે."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidSetStartRowColumn="ערכי startRow או startColumn שצוינו אינם חוקיים.";Strings.OfficeOM.L_MissingParameter="חסר פרמטר";Strings.OfficeOM.L_DocumentReadOnly="הפעולה המבוקשת אינה מותרת במצב המסמך הנוכחי.";Strings.OfficeOM.L_SettingsCannotSave="לא היתה אפשרות לשמור את ההגדרות.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="רגע אחד בבקשה ...";Strings.OfficeOM.L_InvalidGetRows="השורות שצוינו אינן חוקיות.";Strings.OfficeOM.L_InvalidColumnsForBinding="העמודות שצוינו אינן חוקיות.";Strings.OfficeOM.L_InvalidSetColumns="העמודות שצוינו אינן חוקיות.";Strings.OfficeOM.L_CancelButton="ביטול";Strings.OfficeOM.L_RedundantCallbackSpecification="אין אפשרות לציין התקשרות חזרה גם ברשימת הארגומנטים וגם באובייקט האופציונלי.";Strings.OfficeOM.L_InvalidGrantMessage="לא הוענקו הרשאות עבור תוספת זו.";Strings.OfficeOM.L_SpecifiedIdNotExist="המזהה שצוין לא קיים.";Strings.OfficeOM.L_NotSupportedEventType="סוג האירוע שצוין {0} אינו נתמך.";Strings.OfficeOM.L_CoercionTypeNotSupported="סוג הכפייה שצוין אינו נתמך.";Strings.OfficeOM.L_InitializeNotReady="Office.js עדיין לא נטען במלואו. נסה שוב מאוחר יותר או הקפד להוסיף את קוד האתחול שלך בפונקציה Office.initialize.";Strings.OfficeOM.L_OperationCancelledErrorMessage="הפעולה בוטלה על-ידי המשתמש.";Strings.OfficeOM.L_InvalidGetStartRowColumn="ערכי startRow או startColumn שצוינו אינם חוקיים.";Strings.OfficeOM.L_NoHttpsWAC="הפעלת Office זו אינה משתמשת בחיבור מאובטח. אנו ממליצים לך לprecautions יותר.";Strings.OfficeOM.L_CustomXmlNodeNotFound="הצומת שצוין לא נמצא.";Strings.OfficeOM.L_CannotNavigateTo="האובייקט נמצא במקום שבו ניווט אינו נתמך.";Strings.OfficeOM.L_NavOutOfBound="הפעולה נכשלה מכיוון שהאינדקס נמצא מחוץ לטווח.";Strings.OfficeOM.L_InvalidBindingError="שגיאת איגוד לא חוקי";Strings.OfficeOM.L_CustomXmlError="שגיאת XML מותאם אישית.";Strings.OfficeOM.L_InvalidBindingOperation="פעולת איגוד לא חוקית";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="אין אפשרות להחיל שינויים על המאפיין '{0}' באמצעות פעולת שירות של \"object.set\".";Strings.OfficeOM.L_DataStale="הנתונים אינם עדכניים";Strings.OfficeOM.L_CustomFunctionImplementationMissing="המאפיין בשם זה ב- Excel.Script.CustomFunctions שמייצג את הגדרת הפונקציה חייב להכיל מאפיין 'call' המיישם את הפונקציה.";Strings.OfficeOM.L_BindingNotExist="האיגוד שצוין לא קיים.";Strings.OfficeOM.L_InvalidFormat="שגיאת תבנית לא חוקית";Strings.OfficeOM.L_GetDataParametersConflict="הפרמטרים שצוינו מתנגשים.";Strings.OfficeOM.L_InvalidBinding="איגוד לא חוקי";Strings.OfficeOM.L_InvalidGetRowColumnCounts="ערכי rowCount או columnCount שצוינו אינם חוקיים.";Strings.OfficeOM.L_UserAbortedMessage="המשתמש לא הסכים להרשאות התוספת.";Strings.OfficeOM.L_EventHandlerAdditionFailed="הוספת המטפל באירועים נכשלה.";Strings.OfficeOM.L_OverwriteWorksheetData="פעולת ההגדרה נכשלה משום שאובייקט הנתונים שסופק יחליף או יעביר נתונים.";Strings.OfficeOM.L_SetDataIsTooLarge="אובייקט הנתונים שצוין גדול מדי.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="סוג האיגוד שצוין אינו תואם לפריט בעל השם שסופק.";Strings.OfficeOM.L_NotSupportedBindingType="סוג האיגוד שצוין {0} אינו נתמך.";Strings.OfficeOM.L_DataNotMatchSelection="אובייקט הנתונים שסופק לא תואם לצורה או לממדים של הבחירה הנוכחית.";Strings.OfficeOM.L_ColIndexOutOfRange="ערך אינדקס העמודה נמצא מחוץ לטווח המותר. השתמש בערך (0 ומעלה) הקטן ממספר העמודות.";Strings.OfficeOM.L_DialogAlreadyOpened="הפעולה נכשלה מכיוון שתוספת זו כוללת כבר תיבת דו-שיח פעילה.";Strings.OfficeOM.L_SSOClientError="אירעה שגיאה בבקשת האימות מ- Office.";Strings.OfficeOM.L_InvalidArgument="הארגומנט '{0}' חסר, אינו פועל במצב זה או אינו בתבנית הנכונה.";Strings.OfficeOM.L_DialogOK="אישור";Strings.OfficeOM.L_NotImplemented="הפונקציה {0} אינה מיושמת.";Strings.OfficeOM.L_SSOClientErrorMessage="אירעה שגיאה לא צפויה בלקוח.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="פעולת כתיבה אינה נתמכת עבור Office כאשר תיבת דו-שיח מודאלית פתוחה.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="הבחירה הנוכחית אינה תואמת לסוג הכפייה שצוין.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="הפעולה נכשלה מכיוון שתוספת זו מבקשת כבר אסימון גישה.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="ארגומנטי קלט לא חוקיים.";Strings.OfficeOM.L_SettingNameNotExist="שם ההגדרה שצוין לא קיים.";Strings.OfficeOM.L_PropertyNotLoaded="המאפיין '{0}' אינו זמין. לפני קריאת ערך המאפיין, בצע קריאה לפעולת השירות של הטעינה באובייקט המכיל ובצע קריאה ל- \"context.sync()\" בהקשר הבקשה המשויך.";Strings.OfficeOM.L_InvalidDataObject="אובייקט נתונים לא חוקי";Strings.OfficeOM.L_ElementMissing="לא היתה אפשרות לעצב את תא הטבלה מאחר שערכי פרמטרים מסוימים חסרים. בדוק את הפרמטרים ונסה שוב.";Strings.OfficeOM.L_DialogAddressNotTrusted="התחום של כתובת ה-URL אינו כלול ברכיב AppDomains במניפסט, והוא אינו תחום משנה של מיקום מקור.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="הנתונים אינם עדכניים. אחזר שוב את האובייקט.";Strings.OfficeOM.L_EventHandlerNotExist="המטפל באירועים שצוין לא נמצא עבור איגוד זה.";Strings.OfficeOM.L_ConfirmDialogConsent="על-ידי לחיצה על 'אישור', אתה מעניק ל- {0} גישה לתוכן ולמידע האישי שלך. ";Strings.OfficeOM.L_UserAborted="המשתמש ביטל את בקשת ההסכמה.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="התוכן שנבחר צריך להיות בתבנית טבלה. עצב את הנתונים כטבלה ונסה שוב.";Strings.OfficeOM.L_BindingCreationError="שגיאה ביצירת איגוד";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="התעלם";Strings.OfficeOM.L_InvalidDataFormat="התבנית של אובייקט הנתונים שצוין אינה חוקית.";Strings.OfficeOM.L_DataReadError="שגיאה בקריאת נתונים";Strings.OfficeOM.L_ConnectionFailureWithStatus="הבקשה נכשלה עם קוד המצב {0}.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="שם הפונקציה יכול להכיל רק אותיות, ספרות, מקפים תחתונים ונקודות.";Strings.OfficeOM.L_NetworkProblem="בעיית רשת";Strings.OfficeOM.L_IndexOutOfRange="האינדקס מחוץ לטווח.";Strings.OfficeOM.L_DisplayDialogError="שגיאה בהצגת תיבת דו-שיח";Strings.OfficeOM.L_MemoryLimit="חריגה ממגבלת זיכרון";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="תוקף הפעלת Office פג או שאינו חוקי. כדי להמשיך, רענן את הדף.";Strings.OfficeOM.L_SSOConnectionLostError="חיבור אבד בעת תהליך הכניסה.";Strings.OfficeOM.L_InValidOptionalArgument="ארגומנט אופציונלי לא חוקי";Strings.OfficeOM.L_InvalidCoercion="סוג כפייה לא חוקי";Strings.OfficeOM.L_SettingsAreStale="לא ניתן היה לשמור את ההגדרות משום שהן לא עדכניות.";Strings.OfficeOM.L_SSOServerErrorMessage="אירעה שגיאה בלתי צפויה בשרת.";Strings.OfficeOM.L_UnsupportedEnumeration="ספירה לא נתמכת";Strings.OfficeOM.L_SettingsStaleError="שגיאת הגדרות ישנות";Strings.OfficeOM.L_ConfirmCancelMessage="מצטערים, לא ניתן להמשיך.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="הספירה אינה נתמכת ביישום המארח הנוכחי.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath מגביל את הבחירה ל- 1024 פריטים.";Strings.OfficeOM.L_MultipleNamedItemFound="נמצאו אובייקטים מרובים בעלי שם זהה.";Strings.OfficeOM.L_OperationCancelledError="הפעולה בוטלה";Strings.OfficeOM.L_DialogRequireHTTPS="הפרוטוקול HTTP אינו נתמך. השתמש ב- HTTPS במקום זאת";Strings.OfficeOM.L_FormatValueOutOfRange="הערך נמצא מחוץ לטווח המותר.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="הערה: מומלץ שמספר התאים בטבלה יהיה קטן מ- 20,000.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="לא ניתן להשתמש בפרמטרי קואורדינטות עם סוג הכפייה 'טבלה' כאשר הטבלה מכילה תאים ממוזגים.";Strings.OfficeOM.L_BadSelectorString="המחרוזת שהועברה לתוך הבורר מעוצבת באופן לא תקין או שאינה נתמכת.";Strings.OfficeOM.L_FunctionCallFailed="הקריאה לפונקציה {0} נכשלה, קוד שגיאה: {1}.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="תוספת זו אינה תומכת בהסכמת משתמש.";Strings.OfficeOM.L_ApiNotFoundDetails="פעולת השירות או המאפיין {0} מהווים חלק מערכת הדרישות של {1}, שאינה זמינה בגירסת {2} שברשותך.";Strings.OfficeOM.L_InvalidSetRows="השורות שצוינו אינן חוקיות.";Strings.OfficeOM.L_TooManyArguments="ארגומנטים רבים מדי";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="הערה: מומלץ שמספר ערכות העיצוב המוגדרות על-ידי קריאה ל- API של עיצוב יהיה קטן מ- 100.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='גודל תוכן המנה של הבקשה חרג מהמגבלה. עיין בתיעוד: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_OKButton="אישור";Strings.OfficeOM.L_CannotRegisterEvent="אין אפשרות לרשום את המטפל באירועים.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="בעיית רשת מנעה את אחזור הקובץ.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="הגעת למגבלת הבחירה";Strings.OfficeOM.L_NamedItemNotFound="הפריט בעל השם לא קיים.";Strings.OfficeOM.L_APICallFailed="קריאה ל- API נכשלה";Strings.OfficeOM.L_WorkbookHiddenMessage="בקשת ה- API של JavaScript נכשלה מאחר שחוברת העבודה הוסתרה. בטל את הסתרת חוברת העבודה ונסה שוב.";Strings.OfficeOM.L_InvalidAPICall="קריאה לא חוקית ל- API";Strings.OfficeOM.L_DialogInvalidScheme="סכימת כתובת ה- URL אינה נתמכת. השתמש ב- HTTPS במקום זאת.";Strings.OfficeOM.L_UserNotSignedIn="אף משתמש לא נכנס ל- Office.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="הגבלות דפדפן מנעו מאתנו ליצור את תיבת הדו-שיח. התחום של תיבת הדו-שיח והתחום של מארח התוספת אינם נמצאים באותו אזור אבטחה.";Strings.OfficeOM.L_FileTypeNotSupported="סוג הקובץ שצוין אינו נתמך.";Strings.OfficeOM.L_InvalidReadForBlankRow="השורה שצוינה ריקה.";Strings.OfficeOM.L_InvalidGrant="חסר מתן הרשאות מראש.";Strings.OfficeOM.L_InvalidSSOAddinMessage="ה- API של הזהות אינו נתמך עבור תוספת זו.";Strings.OfficeOM.L_InvalidTableOptionValue="לאחד או יותר מפרמטרי tableOptions יש ערכים שאינם מותרים. בדוק את הערכים ונסה שוב.";Strings.OfficeOM.L_RunMustReturnPromise='פונקציית האצווה שהועברה לפעולת השירות ".run" לא החזירה הבטחה. הפונקציה חייבת להחזיר הבטחה, כדי שתהיה אפשרות לשחרר אובייקטים הנמצאים במעקב אוטומטי בעת השלמת פעולת האצווה. בדרך כלל, ניתן להחזיר הבטחה על-ידי החזרת התגובה מ- "context.sync()".';Strings.OfficeOM.L_OutOfRange="מחוץ לטווח";Strings.OfficeOM.L_AppNameNotExist="לא קיים שם תוספת עבור {0}.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="סוג הכפייה שצוין אינו תואם לסוג איגוד זה.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="הפעולה נכשלה מכיוון שתוספת זו אינה תומכת בהסכמת משתמש בקטגוריה זו";Strings.OfficeOM.L_InvalidApiCallInContext="קריאה לא חוקית ל- API בהקשר הנוכחי.";Strings.OfficeOM.L_ConnectionFailureWithDetails="הבקשה נכשלה עם קוד המצב {0}, קוד השגיאה {1} והודעת השגיאה הבאה: {2}";Strings.OfficeOM.L_NewWindowCrossZone="הגדרות האבטחה בדפדפן שלך מונעות מאתנו ליצור תיבת דו-שיח. נסה דפדפן אחר, או {0} כך ש- '{1}' והתחום המוצג בשורת הכתובת שלך יהיו באותו אזור אבטחה.";Strings.OfficeOM.L_UserClickIgnore="המשתמש בחר להתעלם מתיבת הדו-שיח.";Strings.OfficeOM.L_EventRegistrationError="שגיאת רישום אירוע";Strings.OfficeOM.L_OperationNotSupported="הפעולה אינה נתמכת.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="חיבור אבד בעת תהליך הכניסה, וייתכן שהמשתמש לא נכנס. סביר להניח שהגורם לכך הוא הגדרות תצורה של הדפדפן של המשתמש, כגון אזורי אבטחה.";Strings.OfficeOM.L_InvalidSelectionForBindingType="אין אפשרות ליצור איגוד עם הבחירה הנוכחית וסוג האיגוד שצוין.";Strings.OfficeOM.L_PermissionDenied="ההרשאה נדחתה";Strings.OfficeOM.L_TooManyIncompleteRequests="המתן עד להשלמת הקריאה הקודמת.";Strings.OfficeOM.L_InvalidResourceUrlMessage="צוינה כתובת URL לא חוקית של משאב במניפסט.";Strings.OfficeOM.L_DataWriteReminder="תזכורת כתיבת נתונים";Strings.OfficeOM.L_InvalidRequestContext="אין אפשרות להשתמש באובייקט בהקשרי בקשה שונים.";Strings.OfficeOM.L_DocumentIsInactive="הפעולה נכשלה מכיוון שהמסמך המכיל תוספת זו אינו פעיל.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="אפשר";Strings.OfficeOM.L_RowIndexOutOfRange="ערך אינדקס השורה נמצא מחוץ לטווח המותר. השתמש בערך (0 ומעלה) הקטן ממספר השורות.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="בצע בחירה.";Strings.OfficeOM.L_SaveSettingsError="שגיאה בשמירת הגדרות";Strings.OfficeOM.L_NotSupported="הפונקציה {0} אינה נתמכת.";Strings.OfficeOM.L_APINotSupported="אין תמיכה ב- API";Strings.OfficeOM.L_MissingRequiredArguments="כמה ארגומנטים נדרשים חסרים";Strings.OfficeOM.L_InternalErrorDescription="אירעה שגיאה פנימית.";Strings.OfficeOM.L_Timeout="הזמן שהוקצב לפעולה הסתיים.";Strings.OfficeOM.L_DataNotMatchBindingType="אובייקט הנתונים שצוין אינו תואם לסוג האיגוד.";Strings.OfficeOM.L_GetDataIsTooLarge="ערכת הנתונים המבוקשת גדולה מדי.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel נמצא במצב עריכת תא. צא ממצב העריכה על-ידי הקשה על ENTER או TAB או בחירת תא אחר, ולאחר מכן נסה שוב.";Strings.OfficeOM.L_InvalidNode="צומת לא חוקי";Strings.OfficeOM.L_FormattingReminder="תזכורת עיצוב";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="הפונקציה לקבלת הקשר אימות חסרה";Strings.OfficeOM.L_TooManyOptionalObjects="אובייקטים אופציונליים מרובים ברשימת הפרמטרים";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="התוספת מבקשת כבר אסימון גישה.";Strings.OfficeOM.L_ActivityLimitReached="המערכת הגיעה למגבלת הפעילות.";Strings.OfficeOM.L_InvalidOrTimedOutSession="הפעלה לא חוקית או הפעלה שהזמן הקצוב שלה הסתיים";Strings.OfficeOM.L_HostError="שגיאת מארח";Strings.OfficeOM.L_ValueNotLoaded='הערך של אובייקט התוצאה עדיין לא נטען. לפני קריאת מאפיין הערך, בצע קריאה ל- "context.sync()" בהקשר הבקשה המשויך.';Strings.OfficeOM.L_ConfirmRefreshMessage="כדי להמשיך, הסר את התוספת והוסף אותה שוב, או רענן את הדף.";Strings.OfficeOM.L_InternalError="שגיאה פנימית";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='גודל תוכן המנה של התגובה חרג מהמגבלה. עיין בתיעוד: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_UnsupportedUserIdentity="סוג זהות המשתמש אינו נתמך.";Strings.OfficeOM.L_ReadSettingsError="שגיאה בקריאת הגדרות";Strings.OfficeOM.L_InvalidGetColumns="העמודות שצוינו אינן חוקיות.";Strings.OfficeOM.L_ModalDialogOpeng="הפעולה נכשלה מאחר שתוספת זו כוללת כבר תיבת דו-שיח מודאלית פעילה.";Strings.OfficeOM.L_RequestTokenUnavailable="API זה ווסת כדי להאט את תדירות הקריאות.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="בצע קריאה ל- closeAsync בקובץ הנוכחי לפני אחזור קובץ אחר.";Strings.OfficeOM.L_DialogParentIsMinimized="הפעולה נכשלה מאחר שחלון האב ממוזער.";Strings.OfficeOM.L_EventHandlerRemovalFailed="הסרת המטפל באירועים נכשלה.";Strings.OfficeOM.L_TooManyOptionalFunction="פונקציות אופציונליות מרובות ברשימת הפרמטרים";Strings.OfficeOM.L_SliceSizeNotSupported="גודל הפרוסה שצוין אינו נתמך.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="אתה עומד לשלוח ולקבל מידע שעשוי להיות רגיש {0}. לחץ על 'אישור' רק אם אתה נותן אמון באתר האינטרנט הבא המקבל את המידע הרגיש: {1}.";Strings.OfficeOM.L_ImplicitNotLoaded="המודול לא נטען לפני השגת אסימון";Strings.OfficeOM.L_SelectionCannotBound="אין אפשרות לאגד לבחירה הנוכחית.";Strings.OfficeOM.L_SetDataParametersConflict="הפרמטרים שצוינו מתנגשים.";Strings.OfficeOM.L_BrowserAPINotSupported="דפדפן זה אינו תומך ב- API המבוקש.";Strings.OfficeOM.L_RequestTimeout="ביצוע הקריאה נמשך זמן רב מדי.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="מנסה להגדיר את המאפיין לקריאה בלבד '{0}'.";Strings.OfficeOM.L_UnsupportedDataObject="סוג אובייקט הנתונים שסופק אינו נתמך.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="הפעולה אינה נתמכת באיגוד מסוג זה.";Strings.OfficeOM.L_BindingToMultipleSelection="אין תמיכה בבחירות לא רציפות.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} מעוניין להציג חלון חדש.";Strings.OfficeOM.L_InvalidObjectPath='נתיב האובייקט \'{0}\' אינו עובד עבור הפעולה שאתה מנסה לבצע. אם אתה משתמש באובייקט בקריאות "context.sync" מרובות ומחוץ לביצוע הרציף של אצוות ".run", השתמש בפעולות השירות "context.trackedObjects.add()" ו- "context.trackedObjects.remove()" כדי לנהל את אורך החיים של האובייקט.';Strings.OfficeOM.L_PropertyDoesNotExist="המאפיין '{0}' לא קיים באובייקט.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API אינו נתמך בפלטפורמה זו.";Strings.OfficeOM.L_InvalidFormatValue="לאחד או יותר מפרמטרי העיצוב יש ערכים שאינם מותרים. בדוק את הערכים ונסה שוב.";Strings.OfficeOM.L_CannotWriteToSelection="אין אפשרות לכתוב לבחירה הנוכחית.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="שם הפונקציה חייב להכיל מרחב שמות שאינו ריק ושם קצר שאינו ריק.";Strings.OfficeOM.L_DataNotMatchBindingSize="אובייקט הנתונים שסופק לא תואם לגודל הבחירה הנוכחית.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="סוג הזהות של המשתמש אינו נתמך.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="לא ניתן להשתמש בפרמטרי קואורדינטות עם סוג הכפייה 'טבלה' כאשר הטבלה מכילה תאים ממוזגים.";Strings.OfficeOM.L_OsfControlTypeNotSupported="אין תמיכה בסוג OsfControl.";Strings.OfficeOM.L_ContinueButton="המשך";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="מאפיין בשם זה המייצג את הגדרת הפונקציה חייב להיות קיים ב- Excel.Script.CustomFunctions.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="היישום {0} לא קיים. לא בוצעה קריאה עבור Microsoft.Office.WebExtension.initialize(reason).";Strings.OfficeOM.L_CustomXmlOutOfDateName="הנתונים אינם עדכניים";Strings.OfficeOM.L_InvalidParameters="הפונקציה {0} כוללת פרמטרים לא חוקיים.";Strings.OfficeOM.L_InvalidValue="ערך לא חוקי";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="קבע את תצורת הדפדפן";Strings.OfficeOM.L_NoCapability="אין לך הרשאות מספיקות לביצוע פעולה זו.";Strings.OfficeOM.L_DataNotMatchCoercionType="סוג אובייקט הנתונים שצוין לא תואם לבחירה הנוכחית.";Strings.OfficeOM.L_ConfirmDialog="תחום {0} פועל Microsoft Office ובאפשרותך Office תוספות, שעשויות לגשת לנתונים האישיים שלך. אם אתה נותן אמון בתחום כך שהוא יפעל Office הנתונים שלך, לחץ על 'אישור' כדי להמשיך.";Strings.OfficeOM.L_InvalidCellsValue="לאחד או יותר מפרמטרי התאים יש ערכים שאינם מותרים. בדוק את הערכים ונסה שוב.";Strings.OfficeOM.L_SSOServerError="אירעה שגיאה בספק האימות.";Strings.OfficeOM.L_InvalidResourceUrl="סופקה כתובת URL לא חוקית של משאב יישום.";Strings.OfficeOM.L_DialogNavigateError="שגיאת ניווט בתיבת דו-שיח";Strings.OfficeOM.L_GetSelectionNotSupported="הבחירה הנוכחית אינה נתמכת.";Strings.OfficeOM.L_UnknownBindingType="סוג האיגוד אינו נתמך.";Strings.OfficeOM.L_CallbackNotAFunction="סוג ההתקשרות חזרה חייב להיות פונקציה, הסוג היה {0}.";Strings.OfficeOM.L_ShuttingDown="הפעולה נכשלה משום שהנתונים בשרת לא עדכניים.";Strings.OfficeOM.L_NotTrustedWAC="תוספת זו הפכה ללא זמינה כדי להגן עליך. כדי להמשיך להשתמש בתוספת, ודא שפריט זה מתארח בתחום מהימן או פתח אותו באפליקציית שולחן העבודה של Office.";Strings.OfficeOM.L_DataWriteError="שגיאה בכתיבת נתונים";Strings.OfficeOM.L_InvalidArgumentGeneric="הארגומנטים שהועברו אל הפונקציה אינם פועלים במצב זה, חסרים או אינם בתבנית הנכונה."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_CustomXmlOutOfDateName="डेटा वर्तमान का नहीं है";Strings.OfficeOM.L_CancelButton="रद्द करें";Strings.OfficeOM.L_UnsupportedUserIdentity="उपयोगकर्ता पहचान प्रकार समर्थित नहीं है.";Strings.OfficeOM.L_RunMustReturnPromise='".run" विधि से पास किए गए बैच फ़ंक्शन ने प्रॉमिस नहीं लौटाया. फ़ंक्शन को प्रॉमिस लौटाना चाहिए, जिससे कोई भी स्वचालित रूप से ट्रैक किया गया ऑब्जेक्ट बैच ऑपरेशन के पूर्ण होने पर रिलीज़ किए जा सकते हैं. आमतौर पर, आप "context.sync()" से प्रतिसाद लौटाकर आप प्रॉमिस लौटाते हैं.';Strings.OfficeOM.L_UserAborted="उपयोगकर्ता ने अनुमति अनुरोध निरस्त कर दिया है.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="गुण '{0}' के लिए बदलाव \"object.set\" विधि के माध्यम से लागू नहीं किए जा सकते है.";Strings.OfficeOM.L_AppNameNotExist="{0} के लिए AppName मौज़ूद नहीं है.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl प्रकार समर्थित नहीं है.";Strings.OfficeOM.L_InvalidSelectionForBindingType="वर्तमान चयन के साथ बाइंडिंग और निर्दिष्ट बाइंडिंग प्रकार नहीं बनाया जा सकता.";Strings.OfficeOM.L_FileTypeNotSupported="निर्दिष्ट फ़ाइल प्रकार समर्थित नहीं है.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='अनुरोध पेलोड आकार सीमा से अधिक हो गया है. कृपया दस्तावेज़ीकरण देख: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidOrTimedOutSession="अमान्य या समय बाह्य सत्र";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="जब तालिका में मर्ज किए गए कक्ष हों, तो कोएर्शन प्रकार तालिका के साथ समन्वय पैरामीटर्स का उपयोग नहीं किया जा सकता.";Strings.OfficeOM.L_InvalidObjectPath='आप जिस कार्य को करने का प्रयास कर रहे हैं उसके लिए ऑब्जेक्ट पथ \'{0}\' कार्य नहीं कर रहा है. यदि आप सभी एकाधिक "context.sync" कॉल और ".run" बैच के क्रमिक कार्यान्वन के बाहर ऑब्जेक्ट का उपयोग कर रहे हैं, तो कृपया ऑब्जेक्ट के जीवनकाल को प्रबंधित करने के लिए "context.trackedObjects.add()" और "context.trackedObjects.remove()" विधियों का उपयोग करें.';Strings.OfficeOM.L_RequestTimeout="कॉल को निष्पादित होने में बहुत अधिक समय लगा.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="कार्रवाई विफल रही क्योंकि यह ऐड-इन इस श्रेणी में उपयोगकर्ता सहमति का समर्थन नहीं करता";Strings.OfficeOM.L_DataNotMatchBindingSize="दिया गया डेटा ऑब्जेक्ट वर्तमान चयन के आकार से मेल नहीं खाता है.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="जब तालिका में मर्ज किए गए कक्ष हों, तो कोएर्शन प्रकार तालिका के साथ समन्वय पैरामीटर्स का उपयोग नहीं किया जा सकता.";Strings.OfficeOM.L_TooManyIncompleteRequests="पिछले कॉल पूर्ण होने तक प्रतीक्षा करें.";Strings.OfficeOM.L_HostError="होस्ट त्रुटि";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="इस बाइंडिंग प्रकार पर कार्रवाई समर्थित नहीं है.";Strings.OfficeOM.L_ConnectionFailureWithStatus="स्थिति कोड {0} के साथ अनुरोध विफल हुआ.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="फ़ंक्शन नाम में केवल अक्षर, अंक, अंडरस्कोर्स और पीरियड हो सकते हैं.";Strings.OfficeOM.L_RowIndexOutOfRange="पंक्ति अनुक्रमणिका मान स्वीकार्य श्रेणी से बाहर है. किसी ऐसे मान का उपयोग करें (0 या उच्च) जो कि पंक्तियों की संख्या से कम हो.";Strings.OfficeOM.L_InvalidApiCallInContext="वर्तमान प्रसंग में अमान्य API कॉल.";Strings.OfficeOM.L_NewWindowCrossZone="आपके ब्राउज़र की सुरक्षा सेटिंग हमें कोई संवाद बॉक्स बनाने से रोकती है. कोई भिन्न ब्राउज़र आज़माएँ या {0} ताकि '{1}' और आपकी पता पट्टी में प्रदर्शित डोमेन एक ही सुरक्षा ज़ोन में हों.";Strings.OfficeOM.L_CannotNavigateTo="ऑब्जेक्ट किसी ऐसे स्थान पर स्थित है जहाँ नेविगेशन समर्थित नहीं है.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="आपके Office सत्र की समय सीमा समाप्त हो गई है या अमान्य है. जारी रखने के लिए, पृष्ठ को ताज़ा करें.";Strings.OfficeOM.L_EventHandlerNotExist="निर्दिष्ट ईवेंट हैंडलर इस बाइंडिंग के लिए नहीं मिला.";Strings.OfficeOM.L_NotImplemented="फ़ंक्शन {0} लागू नहीं किया गया है.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="फ़ाइल की पुनर्प्राप्ति को किसी नेटवर्क समस्या द्वारा रोका गया है.";Strings.OfficeOM.L_DialogParentIsMinimized="कार्रवाई विफल रही क्योंकि पैरेंट विंडो छोटी की गई है.";Strings.OfficeOM.L_InvalidBinding="अमान्य बाइंडिंग";Strings.OfficeOM.L_DataWriteError="डेटा लेखन त्रुटि";Strings.OfficeOM.L_SpecifiedIdNotExist="निर्दिष्ट ID मौजूद नहीं है.";Strings.OfficeOM.L_FormatValueOutOfRange="मान स्वीकार्य श्रेणी से बाहर है.";Strings.OfficeOM.L_EventRegistrationError="ईवेंट पंजीकरण त्रुटि";Strings.OfficeOM.L_EventHandlerAdditionFailed="ईवेंट हैंडलर जोड़ने में विफल.";Strings.OfficeOM.L_DataNotMatchCoercionType="निर्दिष्ट डेटा ऑब्जेक्ट का प्रकार वर्तमान चयन के साथ संगत नहीं है.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP प्रोटोकॉल समर्थित नहीं है. इसके बजाय HTTPS का उपयोग करें";Strings.OfficeOM.L_SettingNameNotExist="निर्दिष्ट सेटिंग नाम मौजूद नहीं है.";Strings.OfficeOM.L_InvalidRequestContext="भिन्न अनुरोध संदर्भों में ऑब्जेक्ट का उपयोग नहीं कर सकते.";Strings.OfficeOM.L_UserNotSignedIn="Office में कोई उपयोगकर्ता साइन इन नहीं है.";Strings.OfficeOM.L_NetworkProblem="नेटवर्क समस्या";Strings.OfficeOM.L_CellDataAmountBeyondLimits="नोट: तालिका में मौजूद कक्षों की संख्या 20,000 कक्षों से कम होनी चाहिए.";Strings.OfficeOM.L_OKButton="ठीक";Strings.OfficeOM.L_InvalidArgument="इस स्थिति के लिए तर्क '{0}' कार्य नहीं करता है, अनुपलब्ध है या सही स्वरूप में नहीं है.";Strings.OfficeOM.L_OperationNotSupported="यह कार्रवाई समर्थित नहीं है.";Strings.OfficeOM.L_InvalidFormatValue="एक या अधिक स्वरूप पैरामीटर में ऐसे मान हैं जिनकी अनुमति नहीं है. मानों की दोबारा जाँच करें और पुनः प्रयास करें.";Strings.OfficeOM.L_ConfirmDialogConsent="ठीक पर क्लिक करके, आप {0} को अपनी सामग्री और व्यक्तिगत जानकारी तक पहुँच की अनुमति देंगे. ";Strings.OfficeOM.L_InvalidBindingError="अमान्य बाइंडिंग त्रुटि";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="ध्यान न दें";Strings.OfficeOM.L_ConnectionFailureWithDetails="स्थिति कोड {0}, त्रुटि कोड {1} और निम्न त्रुटि संदेश के साथ अनुरोध विफल हुआ: {2}";Strings.OfficeOM.L_APINotSupported="API समर्थित नहीं है";Strings.OfficeOM.L_UnknownBindingType="बाइंडिंग प्रकार समर्थित नहीं है.";Strings.OfficeOM.L_InvalidAPICall="अमान्य API कॉल";Strings.OfficeOM.L_ApiNotFoundDetails="पद्धति या गुण {0} {1} आवश्यकता सेट का भाग है जो आपके {2} के संस्करण में उपलब्ध नहीं है.";Strings.OfficeOM.L_DataNotMatchBindingType="निर्दिष्ट डेटा ऑब्जेक्ट, बाइंडिंग प्रकार के साथ संगत नहीं है.";Strings.OfficeOM.L_InValidOptionalArgument="अमान्य वैकल्पिक तर्क";Strings.OfficeOM.L_BindingNotExist="निर्दिष्ट बाइंडिंग मौजूद नहीं है.";Strings.OfficeOM.L_SSOConnectionLostError="साइन इन प्रक्रिया के दौरान कनेक्शन खो गया था.";Strings.OfficeOM.L_DialogAlreadyOpened="कार्रवाई विफल रही क्योंकि इस एड-इन में पहले से ही एक सक्रिय संवाद है.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="अपना ब्राउज़र कॉन्फ़िगर करें";Strings.OfficeOM.L_BindingToMultipleSelection="गैर-सन्निहित चयन समर्थित नहीं हैं.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="निर्दिष्ट कोएर्शन प्रकार के साथ वर्तमान चयन संगत नहीं है.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="कृपया एक चयन करें.";Strings.OfficeOM.L_OverwriteWorksheetData="सेट कार्रवाई विफल हुई क्योंकि दिया गया डेटा ऑब्जेक्ट डेटा को अधिलेखित या स्थानांतरित कर देगा.";Strings.OfficeOM.L_InternalErrorDescription="कोई आंतरिक त्रुटि उत्पन्न हुई.";Strings.OfficeOM.L_DocumentReadOnly="वर्तमान दस्तावेज़ मोड पर अनुरोधित कार्रवाई की अनुमति नहीं है.";Strings.OfficeOM.L_InvalidSSOAddinMessage="पहचान API इस ऐड-इन के लिए समर्थित नहीं है.";Strings.OfficeOM.L_InvalidDataFormat="निर्दिष्ट डेटा ऑब्जेक्ट का स्वरूप अमान्य है.";Strings.OfficeOM.L_CannotWriteToSelection="वर्तमान चयन पर नहीं लिख सकते.";Strings.OfficeOM.L_SetDataIsTooLarge="निर्दिष्ट डेटा ऑब्जेक्ट बहुत बड़ा है.";Strings.OfficeOM.L_SelectionCannotBound="वर्तमान चयन पर बाइंड नहीं किया जा सकता है.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="डेटा पुराना हो गया है. ऑब्जेक्ट को दोबारा पुनर्प्राप्त करें.";Strings.OfficeOM.L_CoercionTypeNotSupported="निर्दिष्ट कोएर्शन प्रकार समर्थित नहीं है.";Strings.OfficeOM.L_SaveSettingsError="सेटिंग्स त्रुटि सहेजें";Strings.OfficeOM.L_RedundantCallbackSpecification="तर्क सूची और वैकल्पिक आब्जेक्ट दोनों में कॉलबैक निर्दिष्ट नहीं किया जा सकता.";Strings.OfficeOM.L_ContinueButton="जारी रखें";Strings.OfficeOM.L_CustomXmlExceedQuotaName="चयन सीमा पूरी हो गई";Strings.OfficeOM.L_APICallFailed="API कॉल विफल हुआ";Strings.OfficeOM.L_DataReadError="डेटा पठन त्रुटि";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="अनुमति दें";Strings.OfficeOM.L_UnsupportedEnumeration="असमर्थित प्रगणना";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="यह ऐड-इन उपयोगकर्ता सहमति का समर्थन नहीं करता.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="प्रमाणीकरण प्रसंग प्राप्त करने के लिए फ़ंक्शन अनुपलब्ध है";Strings.OfficeOM.L_InvalidDataObject="अमान्य डेटा ऑब्जेक्ट";Strings.OfficeOM.L_InvalidResourceUrl="अमान्य एप्लिकेशन संसाधन Url प्रदान किया गया.";Strings.OfficeOM.L_InvalidResourceUrlMessage="सूची में निर्दिष्ट अमान्य संसाधन Url.";Strings.OfficeOM.L_Timeout="कार्रवाई टाइमआउट हो गई है.";Strings.OfficeOM.L_InvalidCoercion="अमान्य बल-प्रयोग प्रकार";Strings.OfficeOM.L_GetSelectionNotSupported="वर्तमान चयन समर्थित नहीं है.";Strings.OfficeOM.L_OperationCancelledError="कार्रवाई को रद्द कर दिया";Strings.OfficeOM.L_SSOClientErrorMessage="क्लाइंट में कोई अनपेक्षित त्रुटि आई.";Strings.OfficeOM.L_ModalDialogOpeng="ऑपरेशन विफल रहा क्योंकि इस ऐड-इन में पहले से सक्रिय मोडल संवाद है.";Strings.OfficeOM.L_SettingsCannotSave="सेटिंग्स सहेजी नहीं जा सकी.";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript API अनुरोध विफल हुआ क्योंकि कार्यपुस्तिका छुपी हुई थी. कृपया कार्यपुस्तिका को सामने लाएँ और पुनः प्रयास करें.";Strings.OfficeOM.L_CannotRegisterEvent="इवेंट हैंडलर पंजीकृत नहीं किया जा सकता.";Strings.OfficeOM.L_SSOServerError="प्रमाणीकरण प्रदाता में त्रुटि आई.";Strings.OfficeOM.L_InvalidColumnsForBinding="निर्दिष्ट स्तंभ अमान्य हैं.";Strings.OfficeOM.L_InvalidGetRows="निर्दिष्ट पंक्तियाँ अमान्य हैं.";Strings.OfficeOM.L_CallbackNotAFunction="कॉलबैक प्रकार फ़ंक्शन होना चाहिए, इसका प्रकार {0} था.";Strings.OfficeOM.L_PropertyDoesNotExist="ऑब्जेक्ट पर गुण '{0}' मौजूद नहीं है.";Strings.OfficeOM.L_ReadSettingsError="पठन सेटिंग्स त्रुटि";Strings.OfficeOM.L_InvalidGrantMessage="इस ऐड-इन के लिए अनुमति अनुपलब्ध.";Strings.OfficeOM.L_SettingsStaleError="पुरानी सेटिंग्स त्रुटि";Strings.OfficeOM.L_PropertyNotLoaded="गुण '{0}' उपलब्ध नहीं है. गुण के मान को पढ़ने से पहले, संबद्ध अनुरोध प्रसंग पर ऑब्जेक्ट वाली लोड विधि और \"context.sync()\" कॉल करें.";Strings.OfficeOM.L_DialogNavigateError="संवाद नेविगेशन त्रुटि";Strings.OfficeOM.L_NamedItemNotFound="नामांकित आइटम मौजूद नहीं है.";Strings.OfficeOM.L_DialogOK="ठीक";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel कक्ष संपादन मोड में है. कृपया ENTER या TAB दबाकर या अन्य कक्ष चुनकर संपादन मोड से बाहर निकलें. और फिर पुनः प्रयास करें.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="केवल-पढ़ने के लिए गुण '{0}' सेट करने का प्रयास कर रहा है.";Strings.OfficeOM.L_NavOutOfBound="कार्रवाई विफल रही क्योंकि अनुक्रमणिका श्रेणी से बाहर है.";Strings.OfficeOM.L_InvalidParameters="फ़ंक्शन {0} में अमान्य पैरामीटर्स हैं.";Strings.OfficeOM.L_TooManyOptionalObjects="पैरामीटर सूची में एकाधिक वैकल्पिक ऑब्जेक्ट्स";Strings.OfficeOM.L_SliceSizeNotSupported="निर्दिष्ट स्लाइस आकार समर्थित नहीं है.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="निर्दिष्ट कोएर्शन प्रकार इस बाइंडिंग प्रकार के साथ संगत नहीं है.";Strings.OfficeOM.L_MemoryLimit="मेमोरी सीमा पार हो गई";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="अनुप्रयोग {0} मौजूद नहीं है. Microsoft.Office.WebExtension.initialize(कारण) कॉल नहीं किया गया है.";Strings.OfficeOM.L_ConfirmCancelMessage="क्षमा करें, हम जारी नहीं रख सकते हैं.";Strings.OfficeOM.L_RequestTokenUnavailable="इस API को कॉल आवृत्ति को धीमा करने के लिए थ्रॉटल कर दिया गया है.";Strings.OfficeOM.L_SetDataParametersConflict="निर्दिष्ट पैरामीटर में विरोध हैं.";Strings.OfficeOM.L_NotSupportedEventType="निर्दिष्ट ईवेंट प्रकार {0} समर्थित नहीं है.";Strings.OfficeOM.L_ActivityLimitReached="गतिविधि सीमा पूरी हो चुकी है.";Strings.OfficeOM.L_IndexOutOfRange="अनुक्रमणिका श्रेणी से बाहर है.";Strings.OfficeOM.L_NotSupported="फ़ंक्शन {0} समर्थित नहीं है.";Strings.OfficeOM.L_ConfirmDialog="डोमेन {0} Microsoft Office के रूप में कार्य कर रहा है और Office ऐड-इन्स चला सकता है, जो आपके व्यक्तिगत डेटा तक पहुँच सकते हैं. यदि आप Office के रूप में चलाने और अपने डेटा तक पहुँचने के लिए डोमेन पर भरोसा करते हैं, तो जारी रखने के लिए ठीक पर क्लिक करें.";Strings.OfficeOM.L_OutOfRange="श्रेणी से बाहर";Strings.OfficeOM.L_MultipleNamedItemFound="एक ही नाम वाले एकाधिक ऑब्जेक्ट्स पाए गए.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="ब्राउज़र प्रतिबंधों ने हमें संवाद बॉक्स बनाने से रोक दिया. संवाद बॉक्स का डोमेन और ऐड-इन होस्ट का डोमेन एक ही सुरक्षा ज़ोन में नहीं है.";Strings.OfficeOM.L_NotSupportedBindingType="निर्दिष्ट बाइंडिंग प्रकार {0} समर्थित नहीं है.";Strings.OfficeOM.L_InvalidValue="अमान्य मान";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath चयन को 1024 आइटम्स तक सीमित करता है.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="नोट: स्वरूपण API कॉल द्वारा सेट किए गए स्वरूपण सेट्स 100 से कम होने चाहिए.";Strings.OfficeOM.L_GetDataIsTooLarge="अनुरोधित डेटा सेट बहुत बड़ा है.";Strings.OfficeOM.L_CustomXmlError="XML त्रुटि कस्टम करें.";Strings.OfficeOM.L_BadSelectorString="चयनकर्ता में दी गई स्ट्रिंग अनुचित तरीके से स्वरूपित या असमर्थित है.";Strings.OfficeOM.L_InitializeNotReady="Office.js अभी तक पूरी तरह लोड नहीं किया गया है. कृपया बाद में पुनः प्रयास करें या Office.initialize फ़ंक्शन पर अपना प्रारंभीकरण कोड जोड़ना सुनिश्चित करें.";Strings.OfficeOM.L_NoCapability="आपके पास इस क्रिया को करने के लिए पर्याप्त अनुमतियाँ नहीं हैं.";Strings.OfficeOM.L_InvalidCellsValue="एक या अधिक कक्ष पैरामीटर में ऐसे मान हैं जिनकी अनुमति नहीं है. मानों की दोबारा जाँच करें और पुनः प्रयास करें.";Strings.OfficeOM.L_EventHandlerRemovalFailed="ईवेंट हैंडलर निकालने में विफल.";Strings.OfficeOM.L_ConfirmRefreshMessage="जारी रखने के लिए, ऐड-इन को निकालें और इसे फिर से जोड़ें या पृष्ठ को ताज़ा करें.";Strings.OfficeOM.L_DocumentIsInactive="कार्रवाई विफल रही क्योंकि इस एड-इन वाला दस्तावेज़ निष्क्रिय है.";Strings.OfficeOM.L_CustomXmlNodeNotFound="निर्दिष्ट नोड नहीं मिला था.";Strings.OfficeOM.L_InvalidGetStartRowColumn="निर्दिष्ट प्रारंभ पंक्ति या प्रारंभ स्तंभ मान अमान्य हैं.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="एक मिनट ...";Strings.OfficeOM.L_DisplayDialogError="संवाद त्रुटि प्रदर्शित करें";Strings.OfficeOM.L_InternalError="आंतरिक त्रुटि";Strings.OfficeOM.L_ImplicitNotLoaded="टोकन प्राप्त करने से पहले मॉड्यूल लोड नहीं किया गया है";Strings.OfficeOM.L_MissingRequiredArguments="कुछ आवश्यक तर्क अनुपलब्ध है";Strings.OfficeOM.L_InvalidGetRowColumnCounts="निर्दिष्ट पंक्ति संख्या या स्तंभ संख्या मान अमान्य हैं.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="साइन इन प्रक्रिया के दौरान कनेक्शन खो गया था और उपयोगकर्ता साइन इन नहीं हो सकता. ऐसा संभवतः उपयोगकर्ता की ब्राउज़र कॉन्फ़िगरेशन सेटिंग, जैसे सुरक्षा ज़ोन के कारण हुआ था.";Strings.OfficeOM.L_SettingsAreStale="सेटिंग्स हाल की न होने के कारण उन्हें सहेजा नहीं जा सका.";Strings.OfficeOM.L_UserClickIgnore="उपयोगकर्ता ने संवाद बॉक्स पर ध्यान न देना चुना है.";Strings.OfficeOM.L_InvalidTableOptionValue="एक या अधिक tableOptions पैरामीटर में ऐसे मान हैं जिनकी अनुमति नहीं है. मानों की दोबारा जाँच करें और पुनः प्रयास करें.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="दिए गए नामित आइटम के साथ निर्दिष्ट बाइंडिंग प्रकार संगत नहीं है.";Strings.OfficeOM.L_PermissionDenied="अनुमति अस्वीकृत";Strings.OfficeOM.L_FormattingReminder="स्वरूपण अनुस्मारक";Strings.OfficeOM.L_InvalidSetRows="निर्दिष्ट पंक्तियाँ अमान्य हैं.";Strings.OfficeOM.L_InvalidGetColumns="निर्दिष्ट स्तंभ अमान्य हैं.";Strings.OfficeOM.L_DialogInvalidScheme="URL योजना समर्थित नहीं है. इसके बजाय HTTPS का उपयोग करें.";Strings.OfficeOM.L_BindingCreationError="बाइंडिंग निर्माण त्रुटि";Strings.OfficeOM.L_DataStale="पुराना डेटा";Strings.OfficeOM.L_GetDataParametersConflict="निर्दिष्ट पैरामीटर में विरोध हैं.";Strings.OfficeOM.L_InvalidFormat="अमान्य स्वरूप त्रुटि";Strings.OfficeOM.L_InvalidGrant="पूर्व प्रमाणन गुम है.";Strings.OfficeOM.L_ShuttingDown="सर्वर पर डेटा हाल ही के न होने के कारण कार्रवाई विफल हुई.";Strings.OfficeOM.L_UnsupportedDataObject="दिया गया डेटा ऑब्जेक्ट प्रकार समर्थित नहीं है.";Strings.OfficeOM.L_DataNotMatchSelection="दिया गया डेटा आब्जेक्ट वर्तमान चयन की आकृति या आयाम के साथ संगत नहीं हैं.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="फ़ंक्शन की परिभाषा का प्रतिनिधित्व करने वाले इस नाम का गुण Excel.Script.CustomFunctions पर मौजूद होना चाहिए.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="फ़ंक्शन नाम में कोई ग़ैर-रिक्त नेमस्पेस और एक गैर-रिक्त लघु नाम होना चाहिए.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='अनुरोध पेलोड आकार सीमा से अधिक हो गया है. कृपया दस्तावेज़ीकरण देखें: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidNode="अमान्य नोड";Strings.OfficeOM.L_MissingParameter="गुम पैरामीटर";Strings.OfficeOM.L_UserAbortedMessage="उपयोगकर्ता ने ऐड-इन अनुमतियों को सहमति नहीं दी थी.";Strings.OfficeOM.L_InvalidSetColumns="निर्दिष्ट स्तंभ अमान्य हैं.";Strings.OfficeOM.L_NoHttpsWAC="यह Office सत्र किसी सुरक्षित कनेक्शन का उपयोग नहीं कर रहा है. हम अनुशंसा करते हैं कि आप अतिरिक्त सावधानी बरतें.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API इस प्लेटफ़ॉर्म में समर्थित नहीं है.";Strings.OfficeOM.L_OperationCancelledErrorMessage="कार्रवाई को उपयोगकर्ता द्वारा रद्द किया गया था.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="आप {0} से संभावित रूप से संवेदनशील जानकारी भेजने और प्राप्त करने वाले हैं. यदि आप संवेदनशील जानकारी प्राप्त करने वाली निम्न वेबसाइट पर विश्वास करते हैं, तो केवल ठीक क्लिक करें: {1}.";Strings.OfficeOM.L_TooManyOptionalFunction="पैरामीटर सूची में एकाधिक वैकल्पिक फ़ंक्शंस";Strings.OfficeOM.L_NotTrustedWAC="आपको सुरक्षित रखने मे�� सहायता के लिए इस ऐड-इन को अक्षम किया गया है. ऐड-इन का उपयोग जारी रखने के लिए, यह सत्यापित करें कि यह आइटम किसी विश्वसनीय डोमेन में होस्ट किया गया है या इसे Office डेस्कटॉप ऐप में खोलें.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="ऐड-इन पहले से ही किसी पहुँच टोकन अनुरोध कर रहा है.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} एक नई विंडो प्रदर्शित करना चाहता है.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="अमान्य इनपुट तर्क.";Strings.OfficeOM.L_InvalidArgumentGeneric="फ़ंक्शन में पारित तर्क इस स्थिति के लिए काम नहीं कर रहे हैं, अनुपलब्ध हैं या सही स्वरूप में नहीं हैं.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Excel.Script.CustomFunctions पर मौजूद इस नाम का गुण यह दर्शाता है कि फ़ंक्शन की परिभाषा में फ़ंक्शन पर लागू होने वाला 'call' गुण सम्मिलित होना चाहिए.";Strings.OfficeOM.L_SSOServerErrorMessage="सर्वर पर कोई अनपेक्षित त्रुटि उत्पन्न हुई.";Strings.OfficeOM.L_ValueNotLoaded='परिणाम ऑब्जेक्ट के मान को अभी तक लोड नहीं किया गया है. गुण मान को पढ़ने से पहले, संबंधित अनुरोध प्रसंग पर "context.sync()" को कॉल करें.';Strings.OfficeOM.L_TooManyArguments="बहुत अधिक तर्क";Strings.OfficeOM.L_InvalidReadForBlankRow="निर्दिष्ट पंक्ति खाली है.";Strings.OfficeOM.L_ElementMissing="कुछ पैरामीटर मान गुम होने के कारण हम तालिका कक्ष को स्वरूपित नहीं कर सके. पैरामीटर को दोबारा जाँचें और पुनः प्रयास करें.";Strings.OfficeOM.L_DialogAddressNotTrusted="URL के डोमेन को सूची में AppDomains घटक में शामिल नहीं किया गया है और स्रोत स्थान का सबडोमेन नहीं है.";Strings.OfficeOM.L_InvalidBindingOperation="अमान्य बाइंडिंग कार्रवाई";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="कार्रवाई विफ़ल रही क्योंकि यह ऐड-इन पहले से ही किसी पहुँच टोकन अनुरोध कर रहा है.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="वर्तमान होस्ट अनुप्रयोग में प्रगणना असमर्थित है.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="अन्य फ़ाइल को पुनर्प्राप्त करने से पहले वर्तमान फ़ाइल पर closeAsync को कॉल करें.";Strings.OfficeOM.L_SSOClientError="Office की ओर से प्रमाणन अनुरोध में त्रुटि उत्पन्न हुई.";Strings.OfficeOM.L_InvalidSetStartRowColumn="निर्दिष्ट प्रारंभ पंक्ति या प्रारंभ स्तंभ मान अमान्य हैं.";Strings.OfficeOM.L_BrowserAPINotSupported="यह ब्राउज़र अनुरोधित API का समर्थन नहीं करता है.";Strings.OfficeOM.L_DataWriteReminder="डेटा लेखन अनुस्मारक";Strings.OfficeOM.L_FunctionCallFailed="फ़ंक्शन {0} कॉल विफल, त्रुटि कोड: {1}.";Strings.OfficeOM.L_ColIndexOutOfRange="स्तंभ अनुक्रमणिका मान स्वीकार्य श्रेणी से बाहर है. किसी ऐसे मान का उपयोग करें (0 या उच्च) जो कि स्तंभों की संख्या से कम हो.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="चयनित सामग्री तालिका स्वरूप में होना चाहिए. तालिका के रूप में डेटा को स्वरूपित करें और पुन: प्रयास करें.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="जब कोई मोडल संवाद खुला हो, तो Office के लिए लेखन कार्रवाई समर्थित नहीं है.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="उपयोगकर्ता का पहचान प्रकार समर्थित नहीं है."
|