xlwings-server 1.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- xlwings_server/.env.template +145 -0
- xlwings_server/__init__.py +12 -0
- xlwings_server/_version.py +34 -0
- xlwings_server/auth/__init__.py +0 -0
- xlwings_server/auth/custom/__init__.py +26 -0
- xlwings_server/auth/entraid/__init__.py +131 -0
- xlwings_server/auth/entraid/jwks.py +10 -0
- xlwings_server/azure_functions_templates/.funcignore +28 -0
- xlwings_server/azure_functions_templates/function_app.py +28 -0
- xlwings_server/azure_functions_templates/host.json +22 -0
- xlwings_server/azure_functions_templates/local.settings.json +8 -0
- xlwings_server/build_utils/__init__.py +9 -0
- xlwings_server/build_utils/static_file_hasher.py +212 -0
- xlwings_server/cli.py +1592 -0
- xlwings_server/config.py +228 -0
- xlwings_server/custom_functions/__init__.py +8 -0
- xlwings_server/custom_functions/examples.py +177 -0
- xlwings_server/custom_scripts/__init__.py +8 -0
- xlwings_server/custom_scripts/examples.py +94 -0
- xlwings_server/databases.py +19 -0
- xlwings_server/dependencies.py +126 -0
- xlwings_server/docker_templates/.dockerignore +15 -0
- xlwings_server/docker_templates/Dockerfile +60 -0
- xlwings_server/docker_templates/docker-compose.yaml +32 -0
- xlwings_server/hotreload.py +59 -0
- xlwings_server/main.py +242 -0
- xlwings_server/models/__init__.py +14 -0
- xlwings_server/models/user.py +53 -0
- xlwings_server/object_handles.py +142 -0
- xlwings_server/routers/__init__.py +0 -0
- xlwings_server/routers/manifest.py +82 -0
- xlwings_server/routers/root.py +16 -0
- xlwings_server/routers/socketio.py +69 -0
- xlwings_server/routers/taskpane.py +12 -0
- xlwings_server/routers/xlwings.py +197 -0
- xlwings_server/security_headers.json +53 -0
- xlwings_server/serializers/__init__.py +25 -0
- xlwings_server/serializers/default_serializer.py +19 -0
- xlwings_server/serializers/dictionary_serializer.py +25 -0
- xlwings_server/serializers/framework.py +50 -0
- xlwings_server/serializers/numpy_serializer.py +26 -0
- xlwings_server/serializers/pandas_serializer.py +95 -0
- xlwings_server/static/css/core.css +28 -0
- xlwings_server/static/css/style.css +0 -0
- xlwings_server/static/images/favicon.png +0 -0
- xlwings_server/static/images/xlwings-16.png +0 -0
- xlwings_server/static/images/xlwings-32.png +0 -0
- xlwings_server/static/images/xlwings-64.png +0 -0
- xlwings_server/static/images/xlwings-80.png +0 -0
- xlwings_server/static/js/auth.js +13 -0
- xlwings_server/static/js/config.js +4 -0
- xlwings_server/static/js/core/alpinejs-csp-boilerplate.js +11 -0
- xlwings_server/static/js/core/bootstrap-customizations.js +7 -0
- xlwings_server/static/js/core/custom-functions-code.js +296 -0
- xlwings_server/static/js/core/examples.js +62 -0
- xlwings_server/static/js/core/hotreload.js +3 -0
- xlwings_server/static/js/core/htmx-handlers.js +86 -0
- xlwings_server/static/js/core/officejs-history-fix-part1.js +3 -0
- xlwings_server/static/js/core/officejs-history-fix-part2.js +2 -0
- xlwings_server/static/js/core/reload-custom-functions.js +79 -0
- xlwings_server/static/js/core/socketio-handlers.js +34 -0
- xlwings_server/static/js/core/xlwings-alert.js +22 -0
- xlwings_server/static/js/core/xlwingsjs/alert.js +85 -0
- xlwings_server/static/js/core/xlwingsjs/auth.js +63 -0
- xlwings_server/static/js/core/xlwingsjs/sheet-buttons.js +133 -0
- xlwings_server/static/js/core/xlwingsjs/utils.js +119 -0
- xlwings_server/static/js/core/xlwingsjs/wasm.js +131 -0
- xlwings_server/static/js/core/xlwingsjs/xlwings.js +1060 -0
- xlwings_server/static/js/main.js +0 -0
- xlwings_server/static/js/ribbon.js +17 -0
- xlwings_server/static/vendor/@alpinejs/LICENSE +21 -0
- xlwings_server/static/vendor/@alpinejs/csp/dist/cdn.min.js +7 -0
- xlwings_server/static/vendor/@microsoft/office-js/LICENSE.md +76 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/af-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/agaveerrorux.js +18 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon32x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon96x96.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/businessbarclose_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/dropdownarrow_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/ellipsis_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/miniinfoblue_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_default_icon.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_status_icons.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/office.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/refresh_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/index.html +16 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/style/agaveerrorux.css +482 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/am-et/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ae/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-bh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-dz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-eg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-iq/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-jo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-kw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-lb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ly/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ma/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-om/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-qa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sa/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-tn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ye/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.8.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.9.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/az-latn-az/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/be-by/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bg-bg/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bs-latn-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ca-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cs-cz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cy-gb/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/da-dk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-at/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-de/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-li/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/el-gr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-029/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-au/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-bz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ca/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-gb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-in/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-jm/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-my/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-nz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ph/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-tt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-zw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ar/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-bo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cl/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-co/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-do/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ec/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-gt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-hn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-mx/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ni/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pe/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-py/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-sv/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-uy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ve/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es6-promise.js +5 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/et-ee/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/eu-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.00.js +19 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-winrt-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelios-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fa-ir/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fi-fi/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fil-ph/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ca/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-fr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-mc/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ga-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gl-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gu-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/he-il/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hi-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-hr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/html2canvas.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hu-hu/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hy-am/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/id-id/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/is-is/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-it/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ja-jp/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ka-ge/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kk-kz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/km-kh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ko-kr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lb-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lo-la/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lt-lt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lv-lv/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mk-mk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ml-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mn-mn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mr-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-bn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-my/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mt-mt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nb-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ne-np/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-nl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nn-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/o15apptofilemappingtable.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office-vsdoc.js +28596 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office.js +84 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pl-pl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-br/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-pt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ro-ro/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ru-ru/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/si-lk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sk-sk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sl-si/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sq-al/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-fi/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-se/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sw-ke/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ta-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/te-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs_agave.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/th-th/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/tr-tr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/uk-ua/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ur-pk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/vi-vn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.browserauth.js +77 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.implicit.js +35 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-cn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-hk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-mo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-tw/office_strings.js +1 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js +3 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap/LICENSE +21 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js +7 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css +12 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css.map +1 -0
- xlwings_server/static/vendor/htmx-ext-head-support/head-support.js +144 -0
- xlwings_server/static/vendor/htmx-ext-loading-states/loading-states.js +184 -0
- xlwings_server/static/vendor/htmx.org/LICENSE +13 -0
- xlwings_server/static/vendor/htmx.org/dist/htmx.min.js +1 -0
- xlwings_server/static/vendor/socket.io/LICENSE +22 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js +7 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js.map +1 -0
- xlwings_server/templates/_book.html +8 -0
- xlwings_server/templates/alert_base.html +16 -0
- xlwings_server/templates/base.html +117 -0
- xlwings_server/templates/examples/alpine/README.md +26 -0
- xlwings_server/templates/examples/alpine/taskpane.html +47 -0
- xlwings_server/templates/examples/auth/README.md +38 -0
- xlwings_server/templates/examples/auth/protected.html +8 -0
- xlwings_server/templates/examples/auth/public.html +11 -0
- xlwings_server/templates/examples/excel_object_model/README.md +49 -0
- xlwings_server/templates/examples/excel_object_model/add_name_form.html +27 -0
- xlwings_server/templates/examples/hello_world/README.md +9 -0
- xlwings_server/templates/examples/hello_world/taskpane_hello.html +24 -0
- xlwings_server/templates/examples/htmx_form/README.md +44 -0
- xlwings_server/templates/examples/htmx_form/_greeting.html +6 -0
- xlwings_server/templates/examples/htmx_form/taskpane_htmx_form.html +21 -0
- xlwings_server/templates/examples/live_form_validation/README.md +60 -0
- xlwings_server/templates/examples/live_form_validation/add_name_form.html +33 -0
- xlwings_server/templates/examples/multi_app/README.md +34 -0
- xlwings_server/templates/examples/multi_app/taskpane1.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane2.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane_loader.html +5 -0
- xlwings_server/templates/examples/navigation/README.md +28 -0
- xlwings_server/templates/examples/navigation/_navigation.html +16 -0
- xlwings_server/templates/examples/navigation/taskpane_one.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_three.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_two.html +8 -0
- xlwings_server/templates/examples/pictures/README.md +42 -0
- xlwings_server/templates/examples/pictures/_picture.html +4 -0
- xlwings_server/templates/examples/pictures/taskpane_pictures.html +26 -0
- xlwings_server/templates/manifest.xml +155 -0
- xlwings_server/templates/taskpane.html +1 -0
- xlwings_server/templates/xlwings_alert.html +27 -0
- xlwings_server/templates.py +61 -0
- xlwings_server/utils.py +32 -0
- xlwings_server/wasm/__init__.py +0 -0
- xlwings_server/wasm/config.py +24 -0
- xlwings_server/wasm/main.py +236 -0
- xlwings_server/wasm/requirements.txt +5 -0
- xlwings_server-1.1.0.dist-info/METADATA +61 -0
- xlwings_server-1.1.0.dist-info/RECORD +313 -0
- xlwings_server-1.1.0.dist-info/WHEEL +4 -0
- xlwings_server-1.1.0.dist-info/entry_points.txt +2 -0
- xlwings_server-1.1.0.dist-info/licenses/LICENSE.md +223 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_SSOUnsupportedPlatform="API non supportata in questa piattaforma.";Strings.OfficeOM.L_ConfirmCancelMessage="Non è possibile continuare.";Strings.OfficeOM.L_RedundantCallbackSpecification="Non è possibile specificare callback nell'elenco di argomenti e nell'oggetto facoltativo.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Il nome della funzione può contenere solo lettere, cifre, caratteri di sottolineatura e punti.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="Il limite per la selezione di XPath è di 1024 elementi.";Strings.OfficeOM.L_InvalidRequestContext="Non è possibile usare l'oggetto in contesti di richiesta diversi.";Strings.OfficeOM.L_InvalidApiCallInContext="Chiamata API non valida nel contesto corrente.";Strings.OfficeOM.L_FormattingReminder="Promemoria di formattazione";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Il componente aggiuntivo sta già richiedendo un token di accesso.";Strings.OfficeOM.L_DataNotMatchBindingType="L'oggetto dati specificato non è compatibile con il tipo di associazione.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Non è possibile usare i parametri delle coordinate con il tipo di coercizione Tabella quando la tabella contiene celle unite.";Strings.OfficeOM.L_OperationNotSupported="L'operazione non è supportata.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Le restrizioni del browser hanno impedito la creazione della finestra di dialogo. Il dominio della finestra di dialogo e quello dell'host dei componenti aggiuntivi non si trovano nella stessa area di sicurezza.";Strings.OfficeOM.L_InvalidResourceUrl="URL di risorse dell'applicazione non valido specificato.";Strings.OfficeOM.L_SSOClientErrorMessage="Si è verificato un errore imprevisto nel client.";Strings.OfficeOM.L_SettingsCannotSave="Non è possibile salvare le impostazioni.";Strings.OfficeOM.L_BadSelectorString="La stringa passata nel selettore non è correttamente formattata o non è supportata.";Strings.OfficeOM.L_InvalidBinding="Associazione non valida";Strings.OfficeOM.L_EventHandlerRemovalFailed="Non è possibile rimuovere il gestore eventi.";Strings.OfficeOM.L_InvalidReadForBlankRow="La riga specificata è vuota.";Strings.OfficeOM.L_InvalidArgumentGeneric="L'argomento o gli argomenti passati alla funzione non funzionano in questa situazione, sono mancanti o non sono nel formato corretto.";Strings.OfficeOM.L_ValueNotLoaded='Il valore dell\'oggetto risultato non è stato ancora caricato. Prima di leggere il valore della proprietà, chiamare "context.sync()" nel contesto della richiesta associato.';Strings.OfficeOM.L_InvalidGrantMessage="Concessione mancante per questo componente aggiuntivo.";Strings.OfficeOM.L_DataNotMatchSelection="L'oggetto dati specificato non è compatibile con la forma o le dimensioni della selezione corrente.";Strings.OfficeOM.L_DialogParentIsMinimized="L'operazione non è riuscita perché la finestra padre è ridotta a icona.";Strings.OfficeOM.L_MultipleNamedItemFound="Sono stati trovati più oggetti con lo stesso nome.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Raggiunto il limite per la selezione";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_NotSupported="La funzione {0} non è supportata.";Strings.OfficeOM.L_OverwriteWorksheetData="L'operazione set non è riuscita perché l'oggetto dati fornito sovrascriverà o sposterà i dati.";Strings.OfficeOM.L_CannotRegisterEvent="Non è possibile registrare il gestore eventi.";Strings.OfficeOM.L_NewWindowCrossZone="Le impostazioni di sicurezza del browser impediscono la creazione di una finestra di dialogo. Provare a usare un browser differente oppure {0} in modo che '{1}' e il dominio visualizzato nella barra degli indirizzi si trovino nella stessa area di sicurezza.";Strings.OfficeOM.L_APINotSupported="API non supportata";Strings.OfficeOM.L_UserClickIgnore="L'utente ha scelto di ignorare la finestra di dialogo.";Strings.OfficeOM.L_SettingsStaleError="Errore di impostazioni non aggiornate";Strings.OfficeOM.L_SettingsAreStale="Non è possibile salvare le impostazioni perché non sono correnti.";Strings.OfficeOM.L_RowIndexOutOfRange="Il valore dell'indice di riga non è compreso nell'intervallo consentito. Usare un valore (0 o superiore) minore del numero di righe.";Strings.OfficeOM.L_BindingNotExist="L'associazione specificata non esiste.";Strings.OfficeOM.L_CannotNavigateTo="L'oggetto si trova in una posizione in cui non è supportato lo spostamento.";Strings.OfficeOM.L_DisplayDialogError="Visualizza errore finestra di dialogo";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Il nome della funzione deve contenere uno spazio dei nomi non vuoto e un nome breve non vuoto.";Strings.OfficeOM.L_SettingNameNotExist="Il nome dell'impostazione specificato non esiste.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Un problema di rete ha impedito il recupero del file.";Strings.OfficeOM.L_InvalidBindingOperation="Operazione di associazione non valida";Strings.OfficeOM.L_InvalidDataFormat="Il formato dell'oggetto dati specificato non è valido.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configurare il browser";Strings.OfficeOM.L_InvalidAPICall="Chiamata API non valida";Strings.OfficeOM.L_NotSupportedBindingType="Il tipo di associazione specificato {0} non è supportato.";Strings.OfficeOM.L_InvalidFormatValue="Uno o più parametri di formato contengono valori non consentiti. Verificare i valori e riprovare.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Attendi...";Strings.OfficeOM.L_OperationCancelledError="Operazione annullata";Strings.OfficeOM.L_SelectionNotSupportCoercionType="La selezione corrente non è compatibile con il tipo di coercizione specificato.";Strings.OfficeOM.L_SelectionCannotBound="Non è possibile eseguire l'associazione alla selezione corrente.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="La sessione di Office è scaduta o non è valida. Per continuare, aggiornare la pagina.";Strings.OfficeOM.L_ModalDialogOpeng="L'operazione non è riuscita perché questo componente aggiuntivo dispone già di una finestra di dialogo modale attiva.";Strings.OfficeOM.L_SaveSettingsError="Errore di salvataggio delle impostazioni";Strings.OfficeOM.L_TooManyOptionalObjects="più oggetti facoltativi nell'elenco di parametri";Strings.OfficeOM.L_GetDataParametersConflict="I parametri specificati sono in conflitto.";Strings.OfficeOM.L_NetworkProblem="Problema di rete";Strings.OfficeOM.L_EventRegistrationError="Errore di registrazione evento";Strings.OfficeOM.L_FunctionCallFailed="Chiamata di funzione {0} non riuscita, codice di errore: {1}.";Strings.OfficeOM.L_NoHttpsWAC="Questa sessione di Office non usa una connessione sicura. È consigliabile adottare ulteriori precauzioni.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="L'operazione non è riuscita perché questo componente aggiuntivo sta già richiedendo un token di accesso.";Strings.OfficeOM.L_InitializeNotReady="Office.js non è stato caricato completamente. Riprovare più tardi oppure aggiungere il codice di inizializzazione nella funzione Office.initialize.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Dati non agiornati";Strings.OfficeOM.L_PropertyDoesNotExist="La proprietà '{0}' non esiste nell'oggetto.";Strings.OfficeOM.L_SSOServerErrorMessage="Si è verificato un errore imprevisto nel server.";Strings.OfficeOM.L_ConfirmDialog="Il dominio {0} funge da Microsoft Office e può eseguire Office componenti aggiuntivi, che possono accedere ai tuoi dati personali. Se si considera attendibile l'esecuzione del dominio come Office e si accede ai dati, fare clic su OK per continuare.";Strings.OfficeOM.L_SSOConnectionLostError="La connessione si è interrotta durante il processo di accesso.";Strings.OfficeOM.L_SSOServerError="Errore nel provider di autenticazione.";Strings.OfficeOM.L_SetDataParametersConflict="I parametri specificati sono in conflitto.";Strings.OfficeOM.L_InvalidCoercion="Tipo di coercizione non valido";Strings.OfficeOM.L_InvalidSSOAddinMessage="L'API di identità non è supportata per questo componente aggiuntivo.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Argomenti di input non validi.";Strings.OfficeOM.L_DocumentReadOnly="L'operazione richiesta non è consentita dalla modalità corrente del documento.";Strings.OfficeOM.L_UnsupportedEnumeration="Enumerazione non supportata";Strings.OfficeOM.L_ContinueButton="Continua";Strings.OfficeOM.L_InvalidGetStartRowColumn="I valori di startRow o startColumn specificati non sono validi.";Strings.OfficeOM.L_DialogAlreadyOpened="L'operazione non è riuscita perché il componente aggiuntivo ha già una finestra di dialogo attiva.";Strings.OfficeOM.L_InvalidBindingError="Errore di associazione non valida";Strings.OfficeOM.L_InvalidResourceUrlMessage="URL di risorse non valido specificato nel manifesto.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Il tipo di identità dell'utente non è supportato.";Strings.OfficeOM.L_ConfirmRefreshMessage="Per continuare, rimuovere il componente aggiuntivo e aggiungerlo di nuovo oppure aggiornare la pagina.";Strings.OfficeOM.L_RequestTimeout="L'esecuzione della chiamata ha richiesto troppo tempo.";Strings.OfficeOM.L_DialogRequireHTTPS="Il protocollo HTTP non è supportato. Usare invece HTTPS.";Strings.OfficeOM.L_WorkbookHiddenMessage="La richiesta di API JavaScript non riuscita perché la cartella di lavoro è stata nascosta. Per scoprire la cartella e riprovare.";Strings.OfficeOM.L_InvalidArgument="L'argomento '{0}' non funziona in questa situazione, è mancante o non è nel formato corretto.";Strings.OfficeOM.L_DataWriteReminder="Promemoria di scrittura dati";Strings.OfficeOM.L_MissingRequiredArguments="alcuni argomenti necessari sono assenti";Strings.OfficeOM.L_TooManyOptionalFunction="più funzioni facoltative nell'elenco di parametri";Strings.OfficeOM.L_InValidOptionalArgument="argomento facoltativo non valido";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='La dimensione del payload della richiesta ha superato il limite. Consultare la documentazione: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_GetSelectionNotSupported="La selezione corrente non è supportata.";Strings.OfficeOM.L_ColIndexOutOfRange="Il valore dell'indice di colonna non è compreso nell'intervallo consentito. Usare un valore (0 o superiore) minore del numero di colonne.";Strings.OfficeOM.L_UnsupportedDataObject="Il tipo di oggetto dati fornito non è supportato.";Strings.OfficeOM.L_OutOfRange="Non compreso nell'intervallo";Strings.OfficeOM.L_NotImplemented="La funzione {0} non è implementata.";Strings.OfficeOM.L_TooManyArguments="troppi argomenti";Strings.OfficeOM.L_DataWriteError="Errore di scrittura dei dati";Strings.OfficeOM.L_InvalidGetRowColumnCounts="I valori di rowCount o columnCount specificati non sono validi.";Strings.OfficeOM.L_CoercionTypeNotSupported="Il tipo di coercizione specificato non è supportato.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="La connessione si è interrotta durante il processo di accesso e l'utente potrebbe non essere connesso. Il problema potrebbe essere dovuto alle impostazioni di configurazione del browser dell'utente, ad esempio le aree di sicurezza.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Sessione scaduta o non valida";Strings.OfficeOM.L_FormatValueOutOfRange="Il valore non è compreso nell'intervallo consentito.";Strings.OfficeOM.L_NotTrustedWAC="Questo componente aggiuntivo è stato disabilitato per motivi di sicurezza. Per continuarlo, verificare che questo elemento sia ospitato in un dominio attendibile oppure aprirlo nell'app desktop di Office.";Strings.OfficeOM.L_NotSupportedEventType="Il tipo di evento specificato {0} non è supportato.";Strings.OfficeOM.L_ReadSettingsError="Errore di lettura delle impostazioni";Strings.OfficeOM.L_InvalidValue="Valore non valido";Strings.OfficeOM.L_ActivityLimitReached="È stato raggiunto il limite di attività.";Strings.OfficeOM.L_InvalidNode="Nodo non valido";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Non è possibile usare i parametri delle coordinate con il tipo di coercizione Tabella quando la tabella contiene celle unite.";Strings.OfficeOM.L_DialogInvalidScheme="Lo schema dell'URL non è supportato. Usare invece HTTPS.";Strings.OfficeOM.L_HostError="Errore host";Strings.OfficeOM.L_ShuttingDown="L'operazione non è riuscita perché i dati non sono correnti sul server.";Strings.OfficeOM.L_UnsupportedUserIdentity="Il tipo di identità utente non è supportato.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="L'applicazione {0} non esiste. Microsoft.Office.WebExtension.initialize(reason) non chiamato.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Funzione per ottenere il contesto di autenticazione mancante";Strings.OfficeOM.L_NavOutOfBound="L'operazione non è riuscita perché l'indice non è compreso nell'intervallo.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} vuole visualizzare una nuova finestra.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Il tipo di coercizione specificato non è compatibile con questo tipo di associazione.";Strings.OfficeOM.L_Timeout="Si è verificato un timeout dell'operazione.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Questo componente aggiuntivo non supporta il consenso dell'utente.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Non è possibile aggiungere il gestore eventi.";Strings.OfficeOM.L_NamedItemNotFound="L'elemento denominato non esiste.";Strings.OfficeOM.L_InvalidSetColumns="Le colonne specificate non sono valide.";Strings.OfficeOM.L_DataNotMatchCoercionType="Il tipo di oggetto dati specificato non è compatibile con la selezione corrente.";Strings.OfficeOM.L_UnknownBindingType="Il tipo di associazione non è supportato.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="L'enumerazione non è supportata nell'applicazione host corrente.";Strings.OfficeOM.L_InvalidCellsValue="Uno o più parametri delle celle contengono valori non consentiti. Verificare i valori e riprovare.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Consenti";Strings.OfficeOM.L_DataNotMatchBindingSize="L'oggetto dati specificato non corrisponde alle dimensioni della selezione corrente.";Strings.OfficeOM.L_InternalErrorDescription="Si è verificato un errore interno.";Strings.OfficeOM.L_IndexOutOfRange="Indice non compreso nell'intervallo.";Strings.OfficeOM.L_InternalError="Errore interno";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='La dimensione del payload della risposta ha superato il limite. Consultare la documentazione: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidSelectionForBindingType="Non è possibile creare un'associazione con la selezione corrente e il tipo di associazione specificato.";Strings.OfficeOM.L_ElementMissing="Non è possibile formattare la cella di tabella perché alcuni valori di parametri risultano mancanti. Verificare i parametri e riprovare.";Strings.OfficeOM.L_BindingCreationError="Errore di creazione associazione";Strings.OfficeOM.L_SliceSizeNotSupported="Le dimensioni specificate per la sezione non sono supportate.";Strings.OfficeOM.L_CustomXmlError="Errore XML personalizzato.";Strings.OfficeOM.L_SSOClientError="Errore nella richiesta di autenticazione di Office.";Strings.OfficeOM.L_RequestTokenUnavailable="Questa API è stata limitata per rallentare la frequenza delle chiamate.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Effettuare una selezione.";Strings.OfficeOM.L_PropertyNotLoaded="La proprietà '{0}' non è disponibile. Prima di leggere il valore della proprietà, chiamare il metodo Load sull'oggetto contenitore e chiamare \"context.sync()\" sul contesto di richiesta associato.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="La proprietà con questo nome in Excel.Script.CustomFunctions che rappresenta la definizione della funzione deve contenere una proprietà 'call' che implementa la funzione.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="L'operazione non è supportata in questo tipo di associazione.";Strings.OfficeOM.L_AppNameNotExist="Il nome del componente aggiuntivo per {0} non esiste.";Strings.OfficeOM.L_DataReadError="Errore di lettura dei dati";Strings.OfficeOM.L_CustomXmlNodeNotFound="Il nodo specificato non è stato trovato.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Si stanno per inviare e ricevere informazioni potenzialmente riservate da {0}. Fare clic su OK solo se si considera attendibile il sito Web seguente che riceve le informazioni riservate: {1}.";Strings.OfficeOM.L_CannotWriteToSelection="Non è possibile scrivere sulla selezione corrente.";Strings.OfficeOM.L_InvalidFormat="Errore di formato non valido";Strings.OfficeOM.L_DataStale="Dati non correnti";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Il contenuto selezionato deve essere in formato tabella. Formattare i dati come tabella e riprovare.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Non è possibile applicare le modifiche alla proprietà '{0}' tramite un metodo \"object.set\".";Strings.OfficeOM.L_PermissionDenied="Autorizzazione negata";Strings.OfficeOM.L_TooManyIncompleteRequests="Attendere il completamento della chiamata precedente.";Strings.OfficeOM.L_InvalidColumnsForBinding="Le colonne specificate non sono valide.";Strings.OfficeOM.L_DocumentIsInactive="L'operazione non è riuscita perché il documento contenente questo componente aggiuntivo è inattivo.";Strings.OfficeOM.L_ConnectionFailureWithStatus="La richiesta non è riuscita con codice di stato {0}.";Strings.OfficeOM.L_GetDataIsTooLarge="Il set di dati richiesto è troppo grande.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Nota: è consigliabile che il numero di celle di una tabella sia inferiore a 20.000.";Strings.OfficeOM.L_ConnectionFailureWithDetails="La richiesta non è riuscita con codice di stato {0}, codice errore {1} e il messaggio di errore seguente: {2}";Strings.OfficeOM.L_RunMustReturnPromise='La funzione batch passata al metodo ".run" non ha restituito una promessa. La funzione deve restituire una promessa in modo che gli oggetti tracciati automaticamente possano essere rilasciati al completamento dell\'operazione batch. In genere, si restituisce una promessa restituendo la risposta di "context.sync()".';Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="L'operazione non è riuscita perché questo componente aggiuntivo non supporta il consenso dell'utente in questa categoria";Strings.OfficeOM.L_CallbackNotAFunction="Il callback deve essere di tipo funzione. Rilevato tipo {0}.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Nota: è consigliabile che i set di formattazione impostati da una chiamata all'API Formatting siano inferiori a 100.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel è in modalità di modifica cella. Uscire dalla modalità di modifica premendo INVIO o TAB oppure selezionando un'altra cella, quindi riprovare.";Strings.OfficeOM.L_ConfirmDialogConsent="Se si fa clic su OK, si consentirà a {0} di accedere ai contenuti e alle informazioni personali. ";Strings.OfficeOM.L_APICallFailed="Chiamata API non riuscita";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignora";Strings.OfficeOM.L_SetDataIsTooLarge="L'oggetto dati specificato è troppo grande.";Strings.OfficeOM.L_CancelButton="Annulla";Strings.OfficeOM.L_EventHandlerNotExist="Il gestore eventi specificato non è stato trovato per questa associazione.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="I dati non sono aggiornati. Recuperare di nuovo l'oggetto.";Strings.OfficeOM.L_InvalidGetRows="Le righe specificate non sono valide.";Strings.OfficeOM.L_NoCapability="Non si dispone di autorizzazioni sufficienti per l'azione.";Strings.OfficeOM.L_MemoryLimit="Limite di memoria superato";Strings.OfficeOM.L_InvalidSetStartRowColumn="I valori di startRow o startColumn specificati non sono validi.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Chiamare closeAsync nel file corrente prima di recuperarne un altro.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Il tipo di associazione specificato non è compatibile con l'elemento denominato fornito.";Strings.OfficeOM.L_InvalidSetRows="Le righe specificate non sono valide.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Una proprietà con questo nome che rappresenta la definizione della funzione deve esistere in Excel.Script.CustomFunctions.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Tipo di OsfControl non supportato.";Strings.OfficeOM.L_UserNotSignedIn="Nessun utente ha effettuato l'accesso a Office.";Strings.OfficeOM.L_MissingParameter="Parametro mancante";Strings.OfficeOM.L_DialogAddressNotTrusted="Il dominio dell'URL non è incluso nell'elemento AppDomains nel manifesto e non è un sottodominio del percorso di origine.";Strings.OfficeOM.L_ApiNotFoundDetails="Il metodo o la proprietà {0} fa parte del set di requisiti {1}, che non è disponibile in questa versione di {2}.";Strings.OfficeOM.L_ImplicitNotLoaded="Il modulo non viene caricato prima di acquisire un token";Strings.OfficeOM.L_UserAbortedMessage="L'utente non ha concesso le autorizzazioni al componente aggiuntivo.";Strings.OfficeOM.L_UserAborted="L'utente ha annullato la richiesta di consenso.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="L'operazione di scrittura non è supportata per Office quando è aperta una finestra di dialogo modale.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_InvalidObjectPath="Il percorso dell'oggetto '{0}' non funziona per l'operazione che si sta provando a eseguire. Se l'oggetto viene usato per più chiamate \"context.sync\" e all'esterno dell'esecuzione sequenziale di un batch \".run\", usare i metodi \"context.trackedObjects.add()\" e \"context.trackedObjects.remove()\" per gestire la durata dell'oggetto.";Strings.OfficeOM.L_SpecifiedIdNotExist="L'ID specificato non esiste.";Strings.OfficeOM.L_InvalidGrant="Pre-autorizzazione mancante.";Strings.OfficeOM.L_OperationCancelledErrorMessage="L'operazione è stata annullata dall'utente.";Strings.OfficeOM.L_DialogNavigateError="Errore di spostamento finestra di dialogo";Strings.OfficeOM.L_InvalidGetColumns="Le colonne specificate non sono valide.";Strings.OfficeOM.L_InvalidTableOptionValue="Uno o più parametri tableOptions contengono valori non consentiti. Verificare i valori e riprovare.";Strings.OfficeOM.L_BrowserAPINotSupported="Il browser non supporta l'API richiesta.";Strings.OfficeOM.L_FileTypeNotSupported="Il tipo di file specificato non è supportato.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Tentativo di impostare la proprietà di sola lettura '{0}'.";Strings.OfficeOM.L_BindingToMultipleSelection="Le selezioni non contigue non sono supportate.";Strings.OfficeOM.L_InvalidParameters="La funzione {0} dispone di parametri non validi.";Strings.OfficeOM.L_InvalidDataObject="Oggetto dati non valido"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_MultipleNamedItemFound="同じ名前の複数のオブジェクトが見つかりました。";Strings.OfficeOM.L_OverwriteWorksheetData="指定したデータ オブジェクトがデータを上書きまたは移動するため、設定操作は失敗しました。";Strings.OfficeOM.L_InvalidGrant="事前認証がありません。";Strings.OfficeOM.L_CannotWriteToSelection="現在の選択内容に書き込むことができません。";Strings.OfficeOM.L_DialogAlreadyOpened="このアドインには既にアクティブなダイアログ ボックスがあるため、操作は失敗しました。";Strings.OfficeOM.L_CustomXmlError="カスタム XML エラーが発生しました。";Strings.OfficeOM.L_InvalidObjectPath='この操作ではオブジェクト パス \'{0}\' は機能しません。オブジェクトを複数の "context.sync" 呼び出し間で使用している場合、また ".run" バッチの逐次実行以外で使用している場合は、オブジェクトの有効期間の管理には "context.trackedObjects.add()" と "context.trackedObjects.remove()"メソッドを使用してください。';Strings.OfficeOM.L_CustomXmlOutOfDateName="データは最新ではありません";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="このバインド タイプではサポートされてない操作です。";Strings.OfficeOM.L_NetworkProblem="ネットワークの問題";Strings.OfficeOM.L_MissingParameter="パラメーターがありません";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="モーダル ダイアログが開いている場合、Office での書き込み操作はサポートされていません。";Strings.OfficeOM.L_RedundantCallbackSpecification="コールバックを引数リストと省略可能オブジェクトの両方で指定することはできません。";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="アプリケーション {0} が存在しません。Microsoft.Office.WebExtension.initialize(app, reason) が呼び出されていません。";Strings.OfficeOM.L_InvalidGetRowColumnCounts="指定した rowCount または columnCount の値は無効です。";Strings.OfficeOM.L_SSOClientErrorMessage="クライアント内で予期しないエラーが発生しました。";Strings.OfficeOM.L_TooManyArguments="引数が多すぎます";Strings.OfficeOM.L_CustomXmlExceedQuotaName="選択範囲の上限に達しました";Strings.OfficeOM.L_UnsupportedEnumeration="サポートされていない列挙";Strings.OfficeOM.L_DataNotMatchSelection="指定したデータ オブジェクトは、現在の選択内容の形状または寸法と互換性がありません。";Strings.OfficeOM.L_OutOfRange="範囲外";Strings.OfficeOM.L_InitializeNotReady="Office.js は完全に読み込まれていません。後でやり直すか、Office.initialize 機能への初期化コードの追加を確認してください。";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='応答ペイロードのサイズが制限を超えました。 ドキュメント "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins" を参照してください。';Strings.OfficeOM.L_NamedItemNotFound="名前付きアイテムが存在しません。";Strings.OfficeOM.L_DisplayDialogError="ダイアログ エラーを表示";Strings.OfficeOM.L_UnknownBindingType="このバインド タイプはサポートされていません。";Strings.OfficeOM.L_InvalidGetColumns="指定された列が無効です。";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="サインイン処理中に接続が失われ、ユーザーはサインインしていない可能性があります。これは、ユーザーのブラウザー構成の設定が原因の可能性があります。";Strings.OfficeOM.L_UnsupportedEnumerationMessage="現在のホスト アプリケーションでは、列挙はサポートされていません。";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="許可";Strings.OfficeOM.L_CustomXmlNodeNotFound="指定したノードが見つかりませんでした。";Strings.OfficeOM.L_ReadSettingsError="設定の読み取りエラーが発生しました";Strings.OfficeOM.L_DocumentReadOnly="要求した操作は、現在のドキュメント モードでは許可されていません。";Strings.OfficeOM.L_ConfirmDialogConsent="[OK] をクリックすると、コンテンツと個人情報への {0} アクセスが許可されます。 ";Strings.OfficeOM.L_UnsupportedDataObject="指定したデータ オブジェクト型はサポートされていません。";Strings.OfficeOM.L_SetDataParametersConflict="指定されたパラメーターが競合しています。";Strings.OfficeOM.L_AppNameNotExist="{0} のアドイン名が存在しません。";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_NewWindowCrossZone="ブラウザーのセキュリティ設定により、ダイアログ ボックスを作成することができませんでした。別のブラウザーを試すか、{0} してアドレス バーに表示される '{1}' とドメインが同じセキュリティ ゾーンに存在するようにしてください。";Strings.OfficeOM.L_ConnectionFailureWithStatus="要求はステータス コード {0} で失敗しました。";Strings.OfficeOM.L_UserNotSignedIn="Office にサインイン済みのユーザーはいません。";Strings.OfficeOM.L_InvalidSSOAddinMessage="ID API はこのアドインでサポートされていません。";Strings.OfficeOM.L_RequestTokenUnavailable="この API は、呼び出し頻度が低下するように調整されました。";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="無視";Strings.OfficeOM.L_BadSelectorString="セレクターに渡された文字列は、正しく書式設定されていないか、サポートされていません。";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="ブラウザーの制限により、ダイアログ ボックスを作成できませんでした。ダイアログ ボックスのドメインとアドイン ホストのドメインが同じセキュリティ ゾーン内にありません。";Strings.OfficeOM.L_SSOServerError="認証プロバイダーでエラーが発生しました。";Strings.OfficeOM.L_IndexOutOfRange="インデックスが範囲外です。";Strings.OfficeOM.L_InvalidGrantMessage="このアドインのアクセス許可が不足しています。";Strings.OfficeOM.L_InvalidBindingOperation="無効なバインドの操作";Strings.OfficeOM.L_ConfirmRefreshMessage="続行するには、アドインを削除してからもう一度追加するか、ページを更新してください。";Strings.OfficeOM.L_CannotNavigateTo="オブジェクトは、ナビゲーションがサポートされていない場所にあります。";Strings.OfficeOM.L_APICallFailed="API の呼び出しに失敗しました";Strings.OfficeOM.L_InvalidApiCallInContext="現在のコンテキストに無効な API 呼び出しがあります。";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="データが最新ではありません。もう一度オブジェクトを取得してください。";Strings.OfficeOM.L_InvalidBinding="無効なバインド";Strings.OfficeOM.L_DialogParentIsMinimized="親ウィンドウが最小化されているため、操作に失敗しました。";Strings.OfficeOM.L_SettingsStaleError="古い設定のためエラーが発生しました";Strings.OfficeOM.L_SSOClientError="Office からの認証要求でエラーが発生しました。";Strings.OfficeOM.L_ContinueButton="続ける";Strings.OfficeOM.L_PropertyNotLoaded="プロパティ '{0}' は使用できません。プロパティの値を読み取る前に、格納しているオブジェクトの load メソッドを呼び出し、関連付けられている要求のコンテキストで \"context.sync()\" を呼び出してください。";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="読み取り専用プロパティ '{0}' を設定しようとしています。";Strings.OfficeOM.L_DataWriteError="データの書き込みエラーが発生しました";Strings.OfficeOM.L_TooManyOptionalFunction="複数のオプションの機能がパラメーター リスト内にあります";Strings.OfficeOM.L_PermissionDenied="権限が拒否されました";Strings.OfficeOM.L_CloseFileBeforeRetrieve="現在のファイルで closeAsync を呼び出してから別のファイルを取得します。";Strings.OfficeOM.L_InvalidSetColumns="指定された列が無効です。";Strings.OfficeOM.L_MemoryLimit="メモリの制限を超えました";Strings.OfficeOM.L_UserAborted="ユーザーは承認要求を取り消しました。";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="プロパティ '{0}' の変更を、\"object.set\" メソッドを使用して適用することはできません。";Strings.OfficeOM.L_SaveSettingsError="設定の保存エラーが発生しました";Strings.OfficeOM.L_NotSupported="関数 {0} はサポートされていません。";Strings.OfficeOM.L_EventHandlerAdditionFailed="イベント ハンドラーを追加できませんでした。";Strings.OfficeOM.L_DataNotMatchBindingType="指定したデータ オブジェクトは、バインド タイプと互換性がありません。";Strings.OfficeOM.L_InvalidNamedItemForBindingType="指定したバインド タイプは、指定した名前付きアイテムと互換性がありません。";Strings.OfficeOM.L_NoHttpsWAC="この Office セッションはセキュリティで保護された接続を使用していません。追加の予防措置をとることをお勧めします。";Strings.OfficeOM.L_WorkbookHiddenMessage="ブックが非表示のため、JavaScript API 要求が失敗しました。ブックを再表示して、もう一度お試しください。";Strings.OfficeOM.L_NotSupportedBindingType="指定したバインド タイプ {0} はサポートされていません。";Strings.OfficeOM.L_GetDataParametersConflict="指定されたパラメーターが競合しています。";Strings.OfficeOM.L_OperationCancelledError="操作は取り消されました";Strings.OfficeOM.L_ShuttingDown="サーバー上のデータが最新ではないため、操作は失敗しました。";Strings.OfficeOM.L_DataReadError="データの読み取りエラーが発生しました";Strings.OfficeOM.L_ValueNotLoaded='結果のオブジェクトの値はまだ読み込まれていません。Value プロパティを読み取る前に、関連付けられている要求のコンテキストで "context.sync()" を呼び出します。';Strings.OfficeOM.L_InvalidGetStartRowColumn="指定した startRow または startColumn の値は無効です。";Strings.OfficeOM.L_SpecifiedIdNotExist="指定された ID が存在しません。";Strings.OfficeOM.L_BindingToMultipleSelection="不連続の選択はサポートされていません。";Strings.OfficeOM.L_InvalidSelectionForBindingType="現在の選択内容と指定したバインド タイプでは、バインドは作成できません。";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="ユーザーの ID の種類はサポートされていません。";Strings.OfficeOM.L_ConfirmDialog="ドメイン {0}はMicrosoft Officeとして機能しており、Officeアドインを実行でき、個人データにアクセスする可能性があります。ドメインを信頼してOfficeとして実行し、データにアクセスする場合は、[OK] をクリックして続行してください。";Strings.OfficeOM.L_InvalidReadForBlankRow="指定された行は空白です。";Strings.OfficeOM.L_InvalidAPICall="API 呼び出しが無効です";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="アドインは既にアクセス トークンを要求しています。";Strings.OfficeOM.L_DataStale="最新でないデータ";Strings.OfficeOM.L_InvalidResourceUrl="無効なアプリケーション リソースの URL が入力されました。";Strings.OfficeOM.L_InvalidArgument="引数 '{0}' は、この状況では機能しないか、欠落している、または適切な形式ではありません。";Strings.OfficeOM.L_InvalidColumnsForBinding="指定された列が無効です。";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="指定した強制型変換タイプは、このバインド タイプと互換性がありません。";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="このアドインは既にアクセス トークンを要求しているため、操作に失敗しました。";Strings.OfficeOM.L_CancelButton="キャンセル";Strings.OfficeOM.L_OperationCancelledErrorMessage="操作はユーザーによって取り消されました。";Strings.OfficeOM.L_DialogInvalidScheme="この URL スキームはサポートされていません。代わりに HTTPS を使用します。";Strings.OfficeOM.L_InternalErrorDescription="内部エラーが発生しました。";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_SettingNameNotExist="指定した設定名が存在しません。";Strings.OfficeOM.L_GetSelectionNotSupported="現在の選択内容はサポートされていません。";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="このアドインはこのカテゴリのユーザーの同意をサポートしていないため、操作が失敗しました";Strings.OfficeOM.L_InvalidDataFormat="指定したデータ オブジェクトの形式は無効です。";Strings.OfficeOM.L_InvalidSetStartRowColumn="指定した startRow または startColumn の値は無効です。";Strings.OfficeOM.L_SSOUnsupportedPlatform="このプラットフォームでは API はサポートされていません。";Strings.OfficeOM.L_NotImplemented="関数 {0} は実装されていません。";Strings.OfficeOM.L_DataNotMatchCoercionType="指定したデータ オブジェクトは、現在の選択内容と互換性がありません。";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="選択範囲を指定してください。";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="結合されたセルがテーブルに含まれている場合、強制型変換タイプのテーブルで座標パラメーターを使用することはできません。";Strings.OfficeOM.L_Timeout="処理がタイムアウトしました。";Strings.OfficeOM.L_UnsupportedUserIdentity="ユーザー ID の種類はサポートされていません。";Strings.OfficeOM.L_FileTypeNotSupported="指定されたファイルの種類はサポートされていません。";Strings.OfficeOM.L_DataWriteReminder="データ書き込みのアラーム";Strings.OfficeOM.L_SettingsAreStale="設定が最新ではないため、保存できませんでした。";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="ブラウザーを構成する";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="関数名には、文字、数字、アンダースコア、ピリオドのみを含めることができます。";Strings.OfficeOM.L_EventHandlerRemovalFailed="イベント ハンドラーを削除できませんでした。";Strings.OfficeOM.L_InvalidCellsValue="1 つ以上の cells パラメーターに、許可されていない値が設定されています。値を再確認し、もう一度お試しください。";Strings.OfficeOM.L_InvalidBindingError="無効なバインド エラー";Strings.OfficeOM.L_SSOServerErrorMessage="サーバーで予期しないエラーが発生しました。";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} のため新しいウィンドウを表示しようとしています。";Strings.OfficeOM.L_InvalidParameters="関数 {0} に無効なパラメーターが含まれています。";Strings.OfficeOM.L_InvalidApiArgumentsMessage="入力引数が無効です。";Strings.OfficeOM.L_UserAbortedMessage="ユーザーがアドインのアクセス許可に同意しませんでした。";Strings.OfficeOM.L_NotSupportedEventType="指定したイベント タイプ {0} はサポートされていません。";Strings.OfficeOM.L_InvalidResourceUrlMessage="マニフェストで指定されたリソースの URL が無効です。";Strings.OfficeOM.L_RequestTimeout="呼び出しに時間がかかりすぎたため、実行できませんでした。";Strings.OfficeOM.L_OperationNotSupported="操作はサポートされていません。";Strings.OfficeOM.L_InvalidFormat="無効な形式のためにエラーが発生しました";Strings.OfficeOM.L_ConfirmCancelMessage="申し訳ございません。続行できません。";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath では 1,024 項目までしか選択できません。";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="結合されたセルがテーブルに含まれている場合、強制型変換タイプのテーブルで座標パラメーターを使用することはできません。";Strings.OfficeOM.L_PropertyDoesNotExist="プロパティ '{0}' はこのオブジェクトに存在しません。";Strings.OfficeOM.L_SelectionNotSupportCoercionType="現在の選択内容は、指定した強制型変換タイプと互換性がありません。";Strings.OfficeOM.L_ModalDialogOpeng="このアドインにはアクティブなモーダル ダイアログが既に存在するため、操作に失敗しました。";Strings.OfficeOM.L_DialogNavigateError="ダイアログ ナビゲーション エラー";Strings.OfficeOM.L_RowIndexOutOfRange="行インデックス値は許容範囲外です。行数より小さい値 (0 以上) を使ってください。";Strings.OfficeOM.L_BindingNotExist="指定したバインドが存在しません。";Strings.OfficeOM.L_InvalidCoercion="強制変換タイプが無効です";Strings.OfficeOM.L_DocumentIsInactive="このアドインを含むドキュメントが非アクティブであるため、操作に失敗しました。";Strings.OfficeOM.L_InvalidArgumentGeneric="関数に渡された引数が、この状況では機能しないか、不足しているか、形式の誤りがあります。";Strings.OfficeOM.L_InvalidFormatValue="1 つ以上の format パラメーターに、許可されていない値が設定されています。値を再確認し、もう一度お試しください。";Strings.OfficeOM.L_ConfirmDialogConsentTitle="少々お待ちください...";Strings.OfficeOM.L_GetDataIsTooLarge="要求したデータ セットはサイズが大きすぎます。";Strings.OfficeOM.L_NavOutOfBound="インデックスが範囲外のため、操作が失敗しました。";Strings.OfficeOM.L_SelectionCannotBound="現在の選択内容にバインドできません。";Strings.OfficeOM.L_TooManyIncompleteRequests="前の呼び出しが完了するまで待機します。";Strings.OfficeOM.L_ElementMissing="表のセルを書式設定できませんでした。一部のパラメーター値が設定されていません。パラメーターを再確認し、もう一度お試しください。";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Office セッションの有効期限が切れているか、無効です。続行するには、ページを更新してください。";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="{0}から機密情報の送受信を行います。機密情報を受信している次の Web サイトを信頼する場合にのみ、[OK] をクリックしてください: {1}。";Strings.OfficeOM.L_ActivityLimitReached="アクティビティの制限に達しました。";Strings.OfficeOM.L_HostError="ホスト エラーが発生しました";Strings.OfficeOM.L_EventHandlerNotExist="指定したイベント ハンドラーは、このバインドでは見つかりません。";Strings.OfficeOM.L_InvalidNode="無効なノード";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="選択した内容は表形式でなければなりません。データを表形式に書式設定してから、やり直してください。";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl の型はサポートされていません。";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='要求ペイロードのサイズが制限を超えました。 ドキュメント "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins" を参照してください。';Strings.OfficeOM.L_ImplicitNotLoaded="トークンの取得前にモジュールが読み込まれていません";Strings.OfficeOM.L_InValidOptionalArgument="オプションの引数が無効です";Strings.OfficeOM.L_InvalidRequestContext="異なる要求のコンテキスト間でオブジェクトを使用することはできません。";Strings.OfficeOM.L_SetDataIsTooLarge="指定されたデータ オブジェクトが大きすぎます。";Strings.OfficeOM.L_RunMustReturnPromise='".run" メソッドに渡されたバッチ関数から Promise が返されませんでした。関数が Promise を返す必要があるのは、自動的にトラッキングされるオブジェクトをバッチ操作の完了時に解放できるようにするためです。一般的に、Promise を返すには "context.sync()" からの応答を返します。';Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="このアドインは、ユーザーの同意をサポートしていません。";Strings.OfficeOM.L_InternalError="内部エラーが発生しました";Strings.OfficeOM.L_SettingsCannotSave="設定を保存できませんでした。";Strings.OfficeOM.L_MissingRequiredArguments="いくつかの必須の引数が指定されていません";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="関数名には、空でない名前空間と空でない短い形式の名前を含める必要があります。";Strings.OfficeOM.L_DialogAddressNotTrusted="URL のドメインがマニフェストの AppDomains 要素に含まれておらず、ソースの場所のサブドメインではありません。";Strings.OfficeOM.L_InvalidOrTimedOutSession="セッションが無効であるか、タイムアウトになりました";Strings.OfficeOM.L_UserClickIgnore="ダイアログ ボックスを無視するようにユーザーが選択しました。";Strings.OfficeOM.L_InvalidValue="無効な値";Strings.OfficeOM.L_InvalidGetRows="指定された行が無効です。";Strings.OfficeOM.L_NoCapability="この操作を実行するための十分な権限がありません。";Strings.OfficeOM.L_InvalidSetRows="指定された行が無効です。";Strings.OfficeOM.L_FormattingReminder="書式設定の確認";Strings.OfficeOM.L_InvalidTableOptionValue="1 つ以上の tableOptions パラメーターに、許可されていない値が設定されています。値を再確認し、もう一度お試しください。";Strings.OfficeOM.L_BindingCreationError="バインドの作成エラーが発生しました";Strings.OfficeOM.L_ApiNotFoundDetails="メソッドまたはプロパティ {0} は {1} の必須セットの一部であり、バージョン {2} では使用できません。";Strings.OfficeOM.L_SliceSizeNotSupported="指定したスライスのサイズはサポートされていません。";Strings.OfficeOM.L_SSOConnectionLostError="サインイン処理中に接続が失われました。";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="注意: Formatting API の呼び出しによって設定される書式設定のセットは 100 未満にすることをお勧めします。";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel はセル編集モードです。Enter キーまたは Tab を押すか、別のセルを選択して編集モードを終了し、もう一度お試しください。";Strings.OfficeOM.L_CellDataAmountBeyondLimits="注意: 表のセルの数は 20,000 セル未満にすることをお勧めします。";Strings.OfficeOM.L_APINotSupported="API はサポートされていません";Strings.OfficeOM.L_TooManyOptionalObjects="複数のオプションのオブジェクトがパラメーター リスト内にあります";Strings.OfficeOM.L_BrowserAPINotSupported="このブラウザーでは、要求された API はサポートされません。";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP プロトコルはサポートされていません。代わりに HTTPS を使用します。";Strings.OfficeOM.L_NotTrustedWAC="このアドインは、安全の維持のために無効にされています。アドインを引き続き使用するには、このアイテムが信頼できるドメインでホストされていることを確認するか、Office デスクトップ アプリで開いてください。";Strings.OfficeOM.L_NetworkProblemRetrieveFile="ネットワークに問題が発生し、ファイルを取得できません。";Strings.OfficeOM.L_CoercionTypeNotSupported="指定した強制型変換タイプはサポートされていません。";Strings.OfficeOM.L_EventRegistrationError="イベントの登録エラーが発生しました";Strings.OfficeOM.L_InvalidDataObject="データ オブジェクトが無効です";Strings.OfficeOM.L_FunctionCallFailed="関数 {0} の呼び出しに失敗しました。エラー コード: {1}。";Strings.OfficeOM.L_ColIndexOutOfRange="列インデックス値は許容範囲外です。列数より小さい値 (0 以上) を使ってください。";Strings.OfficeOM.L_FormatValueOutOfRange="値が許容範囲外です。";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="認証コンテキストを取得する関数が指定されていません";Strings.OfficeOM.L_CallbackNotAFunction="コールバックの型は関数である必要がありますが、{0} でした。";Strings.OfficeOM.L_DataNotMatchBindingSize="指定したデータ オブジェクトは、現在の選択内容のサイズに一致しません。";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="この名前を持ち、関数の定義を表すプロパティは、Excel.Script.CustomFunctions 上に存在する必要があります。";Strings.OfficeOM.L_ConnectionFailureWithDetails="要求はステータス コード {0}、エラー コード {1}、エラー メッセージ {2} で失敗しました";Strings.OfficeOM.L_CustomFunctionImplementationMissing="関数の定義を表す Excel.Script.CustomFunctions のこの名前を持つプロパティは、関数を実装する 'call' プロパティを含める必要があります。";Strings.OfficeOM.L_CannotRegisterEvent="イベント ハンドラーは登録できません。"
|
|
@@ -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_InvalidResourceUrlMessage="Манифесте көрсетілген ресурстың URL мекенжайы жарамсыз.";Strings.OfficeOM.L_ContinueButton="Жалғастыру";Strings.OfficeOM.L_InvalidArgument='"{0}" аргументі осы жағдайда жұмыс істемейді, ол жоқ немесе дұрыс форматта берілмеген.';Strings.OfficeOM.L_SSOServerErrorMessage="Серверде күтілмеген қате пайда болды.";Strings.OfficeOM.L_SpecifiedIdNotExist="Көрсетілген идентификатор жоқ.";Strings.OfficeOM.L_InvalidColumnsForBinding="Көрсетілген бағандар жарамсыз.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl типіне қолдау көрсетілмеді.";Strings.OfficeOM.L_BindingToMultipleSelection="Ағымдағы таңдауды байланыстыру мүмкін емес. Бірнеше, байланыспаған таңдауға қолдау көрсетілмейді.";Strings.OfficeOM.L_InvalidArgumentGeneric="Функцияға өтетін аргументтер бұл жағдайда жұмыс істемейді, олар жоқ немесе дұрыс пішімде емес.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Оқиғалар өңдеуішін қосу сәтсіз аяқталды.";Strings.OfficeOM.L_GetSelectionNotSupported="Ағымдағы таңдауға қолдау көрсетілмейді.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Бұл қондырма пайдаланушы келісіміне қолдау көрсетпейді.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Басқа қоңырау таңдамас бұрын ағымдағы файлдағы барлық closeAsync үшін қоңырау соғыңыз.";Strings.OfficeOM.L_DataReadError="Деректерді оқудағы қате";Strings.OfficeOM.L_EventHandlerRemovalFailed="Оқиғалар өңдеуішін жою сәтсіз аяқталды.";Strings.OfficeOM.L_CannotNavigateTo="Нысан шарлау қолдау көрсетілмейтін жерде орналасқан.";Strings.OfficeOM.L_MultipleNamedItemFound="Атаулары бірдей бірнеше нысан табылды.";Strings.OfficeOM.L_RowIndexOutOfRange="Жолдың индекс мәні рұқсат етілген ауқымнан артық. Жолдардың санынан аз мәнді (0 немесе одан артық) пайдаланыңыз.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Жарамсыз немесе күту уақыты өтіп кеткен сеанс";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Модальды диалогтық терезе ашық тұрған кезде, Office бағдарламалары үшін жазу операциясы істемейді.";Strings.OfficeOM.L_RequestTokenUnavailable="Қоңырау жиілігін баяулату үшін API интерфейсіне кедергі жасалды.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Функция анықтамасын білдіретін осындай атауы бар сипат Excel.Script.CustomFunctions класында болуы қажет.";Strings.OfficeOM.L_InvalidResourceUrl="Бағдарлама ресурсының көрсетілген URL мекенжайы жарамсыз.";Strings.OfficeOM.L_InvalidGetColumns="Көрсетілген бағандар жарамсыз.";Strings.OfficeOM.L_InvalidSetRows="Көрсетілген жолдар жарамсыз.";Strings.OfficeOM.L_RedundantCallbackSpecification="Жауап аргумент тізімінде де, қосымша нысанда да көрсетіле алмады.";Strings.OfficeOM.L_CallbackNotAFunction="Жауап түрі функция түріндей болуы қажет, түрі {0}.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Санамалауды ағымдағы серверлік бағдарламада қолдамайды.";Strings.OfficeOM.L_InvalidDataFormat="Берілген деректер нысанының пішімі жарамды емес.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Көрсетілген байланыстыру түрі берілген атаулы элементпен үйлесімді емес.";Strings.OfficeOM.L_Timeout="Операцияның күту уақыты өтті.";Strings.OfficeOM.L_PropertyNotLoaded='"{0}" сипаты қолжетімсіз. Сипат мәнін оқымас бұрын, қамтылған нысан бойынша жүктеу әдісін шақырып, байланысқан сұрау контекстінде "context.sync()" функциясын шақырыңыз.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel бағдарламасы ұяшықты өңдеу режимінде. Өңдеу режимінен ENTER немесе TAB пернесін басу арқылы немесе басқа ұяшықты таңдау арқылы шығып, содан кейін әрекетті қайталап көріңіз.";Strings.OfficeOM.L_NamedItemNotFound="Аталған элемент жоқ.";Strings.OfficeOM.L_DialogParentIsMinimized="Операцияны орындау мүмкін болмады, себебі басты терезе тасаланған.";Strings.OfficeOM.L_NoCapability="Осы әрекетті орнату үшін сізде қажетті рұқсаттар жоқ.";Strings.OfficeOM.L_NetworkProblem="Желі ақауы";Strings.OfficeOM.L_DataNotMatchSelection="Берілген деректер нысаны ағымда,ы таңдаудың кескінімен немесе өлшемдерімен үйлесімді емес.";Strings.OfficeOM.L_HostError="Хост қатесі";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Деректер ескірген. Нысанды қайтадан шығарып алыңыз.";Strings.OfficeOM.L_SaveSettingsError="Параметрлерді сақтау қатесі";Strings.OfficeOM.L_ConnectionFailureWithStatus="{0} күй кодына ие сұрауды орындау сәтсіз аяқталды.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Аутентификация контекстін алу функциясы жоқ";Strings.OfficeOM.L_InvalidObjectPath='Сіз орындағалы жатқан әрекет үшін "{0}" нысан жолы жұмыс істемейді. Егер нысанды бірнеше "context.sync" қоңырауы бойынша және ".run" жиынтығының реттік орындалу режимінен тыс пайдаланып жатсаңыз, нысанның жарамдылық мерзімін басқару үшін, "context.trackedObjects.add()" және "context.trackedObjects.remove()" әдістерін пайдаланыңыз.';Strings.OfficeOM.L_SSOUnsupportedPlatform="Бұл платформада API интерфейсіне қолдау көрсетілмейді.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP протоколына қолдау көрсетілмейді. Оның орнына HTTPS протоколын пайдаланыңыз";Strings.OfficeOM.L_ModalDialogOpeng="Операция сәтсіз аяқталды, себебі бұл қондырмада белсенді модальды диалогтық терезе бұрыннан бар.";Strings.OfficeOM.L_CannotWriteToSelection="Ағымдағы таңдауға жазбайды.";Strings.OfficeOM.L_DataNotMatchBindingSize="Берілген деректер нысаны ағымдағы біріктірудің кестесі немесе матрица көлемімен сәйкес келмейді.";Strings.OfficeOM.L_ConfirmDialog="{0} домені Microsoft Office ретінде қызмет етеді және жеке деректеріңізге қатынаса алатын Office қондырмаларын іске қоса алады. Доменнің Office ретінде жұмыс істеуіне және деректерге қатынасуына сенсеңіз, жалғастыру үшін OK түймешігін басыңыз.";Strings.OfficeOM.L_InvalidCellsValue="Бір немесе бірнеше ұяшық параметрлерінде рұқсат етілмеген мәндер бар. Мәндерді екі рет басып, әрекетті қайталаңыз.";Strings.OfficeOM.L_ReadSettingsError="Оқу параметрлері қатесі";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod='"{0}" сипатына арналған өзгерістер "object.set" әдісі арқылы қолданылмайды.';Strings.OfficeOM.L_InvalidValue="Жарамсыз мән";Strings.OfficeOM.L_ImplicitNotLoaded="Таңбалауыш алынбайынша модуль жүктелмейді";Strings.OfficeOM.L_NonUniformPartialGetNotSupported='Кестеде біріктірілген ұяшықтар бар кезде, координата параметрлерін "Кесте" келтіру түрімен қолдану мүмкін емес.';Strings.OfficeOM.L_SSOServerError="Аутентификация провайдерінде қате пайда болды.";Strings.OfficeOM.L_ConfirmDialogConsent="OK түймешігін басу арқылы {0} доменіне мазмұнға және жеке ақпаратқа қатынасуға рұқсат бересіз. ";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='Жауаптың пайдалы деректер өлшемі шегінен асып кетті. Келесі құжаттаманы қараңыз: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_DialogInvalidScheme="URL схемасына қолдау көрсетілмейді. Оның орнына HTTPS протоколын пайдаланыңыз.";Strings.OfficeOM.L_InvalidReadForBlankRow="Көрсетілген қатар бос.";Strings.OfficeOM.L_UnsupportedDataObject="Берілген деректер нысанына қолдау көрсетілмейді.";Strings.OfficeOM.L_IndexOutOfRange="Индекс ауқымнан тыс.";Strings.OfficeOM.L_SSOConnectionLostError="Кіру процесі кезінде желі қосылымы үзіліп кетті.";Strings.OfficeOM.L_UnknownBindingType="Байланыстыру түріне ағымдағы бағдарламада қолдау көрсетілмеді.";Strings.OfficeOM.L_GetDataIsTooLarge="Сұралған деректер жиыны тым үлкен.";Strings.OfficeOM.L_ElementMissing="Кесте ұяшығын пішімдеу мүмкін емес, себебі кейбір параметр мәндері жоқ. Параметрлерді екі рет басып, әрекетті қайталаңыз.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Бөлектеу шегіне жетті";Strings.OfficeOM.L_ValueNotLoaded='Нәтиже нысанының мәні әлі жүктелмеді. Мән сипатын оқымас бұрын, тиісті сұрау контекстінде "context.sync()" мәнін шақырыңыз.';Strings.OfficeOM.L_SelectionCannotBound="Ағымдағы таңдаумен байланыстыру мүмкін емес.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Сіз {0} деген пайдаланушыдан келген құпия болуы мүмкін ақпаратты қабылдағалы немесе оған жібергелі жатырсыз. Келесі веб-сайттан құпия ақпарат қабылдауға сенім артсаңыз ғана ОК түймешігін басыңыз: {1}.";Strings.OfficeOM.L_MemoryLimit="Жады шегінен асты";Strings.OfficeOM.L_DisplayDialogError="Диалог қатесін көрсету";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Қондырма кіру токенін сұрауда.";Strings.OfficeOM.L_DataNotMatchCoercionType="Бекітілген деректер нысанының түрі берілген келтіру түрімен үйлесімді емес.";Strings.OfficeOM.L_InvalidSSOAddinMessage="Бұл қондырма үшін идентификациялық API интерфейсіне қолдау көрсетілмейді.";Strings.OfficeOM.L_UserClickIgnore="Пайдаланушы диалогтық терезені елемеуді таңдады.";Strings.OfficeOM.L_UserAborted="Пайдаланушы авторизация сұрауын үзді.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Байланыстыру ағымдағы таңдаумен және белгіленген байланыстыру түрімен жасала алмайды.";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript API сұрауы орындалмады, себебі жұмыс кітабы жасырылған. Жұмыс кітабын көрсетіп ашып, әрекетті қайталаңыз.";Strings.OfficeOM.L_SettingsAreStale="Ағымдағы параметрлер болмағандықтан, оларды сақтау мүмкін емес.";Strings.OfficeOM.L_InvalidRequestContext="Нысанды әртүрлі сұрау контексттері бойынша пайдалану мүмкін емес.";Strings.OfficeOM.L_InvalidDataObject="Жарамсыз деректер нысаны";Strings.OfficeOM.L_GetDataParametersConflict="Көрсетілген параметрлердің қайшылықтары.";Strings.OfficeOM.L_InvalidNode="Жарамсыз түйін";Strings.OfficeOM.L_InvalidTableOptionValue="Бір немесе бірнеше кесте опциялары параметрлерінде рұқсат етілмеген мәндер бар. Мәндерді екі рет басып, әрекетті қайталаңыз.";Strings.OfficeOM.L_NavOutOfBound="Операция орындалмады, себебі индекс ауқымнан тыс.";Strings.OfficeOM.L_InvalidGrant="Алдын ала авторизация жоқ.";Strings.OfficeOM.L_CustomXmlError="Қолданбалы XML қатесі.";Strings.OfficeOM.L_DialogAddressNotTrusted="URL мекенжайының домені манифесттегі AppDomains элементінде қамтылмаған және бастапқы орынның ішкі домені емес.";Strings.OfficeOM.L_PermissionDenied="Кіруге рұқсат жоқ";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Ескерту: Пішімдеуге арналған API шақыруы арқылы орнатылған пішімдер жиыны 100-ден аз болған жөн.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Функция атауында бос емес атау кеңістігі мен бос емес қысқа атау болуы тиіс.";Strings.OfficeOM.L_ApiNotFoundDetails="{0} әдісі немесе сипаты сіздегі {2} нұсқасында қолжетімді емес {1} талаптар жинағының бөлігі болып табылады.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Таңдалған мазмұн кесте пішімінде болуы керек. Деректерді кесте ретінде пішіндеп, әрекетті қайталаңыз.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Таңдау жасаңыз.";Strings.OfficeOM.L_MissingParameter="Параметр жоқ";Strings.OfficeOM.L_NotTrustedWAC="Бұл қондырма сіздің қауіпсіз сақтауға көмектесу үшін өшірілді. Қондырманы әрі қарай пайдалану үшін, осы элементтің сенімді доменге орналастырылғанын растап, оны Office жұмыс үстеліндегі бағдарламада ашыңыз.";Strings.OfficeOM.L_PropertyDoesNotExist='"{0}" сипаты нысанда жоқ.';Strings.OfficeOM.L_ConfirmDialogConsentTitle="Бір мезет";Strings.OfficeOM.L_SetDataParametersConflict="Көрсетілген параметрлердің қайшылықтары.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} қондырмасы жаңа терезе ашқысы келеді.";Strings.OfficeOM.L_RunMustReturnPromise='".run" әдісіне өткен жиынтық функциясы болжалды нәтиже қайтармады. Бұл функция жиынтық операциясын аяқтау кезінде кез келген автоматты түрде қадағаланатын нысандар шығарылуы үшін болжалды нәтиже қайтаруы тиіс. Әдетте, "context.sync()" параметрінен жауап қайтару арқылы болжалды нәтижені қайтара аласыз.';Strings.OfficeOM.L_SettingNameNotExist="Берілген параметр атауы жоқ.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Берілген келтіру түрі берілген байланыстыру түрімен үйлесімді емес.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Office сеансының мерзімі өткен немесе жарамсыз. Жалғастыру үшін, бетті жаңартыңыз.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="{0} бағдарламасы жоқ. Microsoft.Office.WebExtension.initialize(reason) шақырылмады.";Strings.OfficeOM.L_InvalidGetStartRowColumn="Көрсетілген startRow немесе startColumn мәндері жарамсыз.";Strings.OfficeOM.L_SliceSizeNotSupported="Көрсетілген бөлшек өлшеміне қолдау жоқ.";Strings.OfficeOM.L_CannotRegisterEvent="Оқиға өңдегішті тіркеу мүмкін емес.";Strings.OfficeOM.L_InvalidFormat="Жарамсыз пішім қатесі";Strings.OfficeOM.L_NewWindowCrossZone='Браузердегі қауіпсіздік параметрлеріне байланысты диалогтық терезені жасау мүмкін емес. Басқа браузерді пайдаланып көріңіз немесе "{1}" домені мен мекенжай жолағында көрсетілетін домен бір қауіпсіздік аймағында болатындай етіп {0}.';Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Операцияны орындау мүмкін болмады, себебі қондырма кіру токенін сұрап жатыр.";Strings.OfficeOM.L_FormatValueOutOfRange="Мән рұқсат етілген ауқымнан асады.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath таңдауды 1024 элементке дейін шектейді.";Strings.OfficeOM.L_InValidOptionalArgument="жарамсыз қосымша аргумент";Strings.OfficeOM.L_DocumentReadOnly="Құжат қорғалған күйде. Сұрау жасалған әрекетке рұқсат етілмеді.";Strings.OfficeOM.L_SettingsCannotSave="Параметрлер сақтала алмайды.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Желі ақауы файлдың шығуын алдын алды.";Strings.OfficeOM.L_BrowserAPINotSupported="Бұл браузер сұралған API интерфейсін қолдамайды.";Strings.OfficeOM.L_ShuttingDown="Деректер ағымда серверде болмағандықтан, операция сәтсіз болды.";Strings.OfficeOM.L_InvalidParameters="{0} функциясының параметрлері жарамсыз.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Ескерту: Кестедегі ұяшықтардың саны 20 000-нан аз болғаны жөн.";Strings.OfficeOM.L_SetDataIsTooLarge="Көрсетілген деректер нысаны тым үлкен.";Strings.OfficeOM.L_CoercionTypeNotSupported="Көрсетілген келтіру түріне осы бағдарлама арқылы қолдау көрсетпейді.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Елемеу";Strings.OfficeOM.L_BindingCreationError="Байланыстыруды жасау қатесі";Strings.OfficeOM.L_SSOClientErrorMessage="Клиентте күтілмеген қате пайда болды.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty='Тек оқуға арналған "{0}" сипатын орнату әрекеті орындалуда.';Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Кіру процесі кезінде желі қосылымы үзіліп кетті, сондықтан пайдаланушы кіре алмауы мүмкін. Бұл пайдаланушының браузеріндегі қауіпсіздік аймақтары сияқты конфигурация параметрлеріне байланысты орын алуы мүмкін.";Strings.OfficeOM.L_DocumentIsInactive="Операцияны орындау мүмкін болмады, себебі осы қондырманы қамтитын құжат белсенді емес.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Пайдаланушының сәйкестік куәлігі түріне қолдау көрсетілмейді.";Strings.OfficeOM.L_BadSelectorString="Таңдаушыға берілген жол дұрыс емес пішімделген немесе оған қолдау көрсетілмейді.";Strings.OfficeOM.L_DataWriteError="Деректерді жазудағы қате";Strings.OfficeOM.L_InvalidAPICall="Жарамсыз API қоңырауы";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Берілген жол саны/баған саны мәндері жарамсыз.";Strings.OfficeOM.L_UserNotSignedIn="Office жүйесіне ешбір пайдаланушы кірмеген.";Strings.OfficeOM.L_ActivityLimitReached="Әрекеттер шегіне жетті.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Ағымдағы емес деректер";Strings.OfficeOM.L_DataWriteReminder="Деректерді жазу еске салғышы";Strings.OfficeOM.L_UnsupportedUserIdentity="Пайдаланушының сәйкестік куәлігі түріне қолдау көрсетілмейді.";Strings.OfficeOM.L_TooManyIncompleteRequests="Алдыңғы қоңырау аяқталғанша күтіңіз.";Strings.OfficeOM.L_OutOfRange="Ауқымнан тыс";Strings.OfficeOM.L_OperationCancelledErrorMessage="Пайдаланушы операциядан бас тартты.";Strings.OfficeOM.L_CustomFunctionImplementationMissing='Функция анықтамасын білдіретін Excel.Script.CustomFunctions класындағы осындай атауы бар сипатта функцияны жүзеге асыратын "call" сипаты болуы қажет.';Strings.OfficeOM.L_InvalidBindingError="Жарамсыз байланыстыру қатесі";Strings.OfficeOM.L_NoHttpsWAC="Бұл Office сеансы қауіпсіз қосылымды пайдаланып жатқан жоқ. Қосымша сақтық шараларын қабылдауды ұсынамыз.";Strings.OfficeOM.L_NotImplemented="{0} функциясы орындалған жоқ.";Strings.OfficeOM.L_ConfirmCancelMessage="Өкінішке орай, жалғастыру мүмкін емес.";Strings.OfficeOM.L_EventRegistrationError="Оқиғаны тіркеудегі қате";Strings.OfficeOM.L_InternalError="Ішкі қате";Strings.OfficeOM.L_UserAbortedMessage="Пайдаланушы қондырма рұқсаттарына келіспеді.";Strings.OfficeOM.L_ConnectionFailureWithDetails="{0} күй кодына ие сұрауды орындау сәтсіз аяқталды. Қате коды: {1}. Қате туралы хабар: {2}";Strings.OfficeOM.L_OperationNotSupported="Осы әрекет қолданылмайды.";Strings.OfficeOM.L_SettingsStaleError="Ескірген параметрлер қатесі";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Енгізілген аргументтер жарамсыз.";Strings.OfficeOM.L_DataNotMatchBindingType="Берілген деректер нысаны байланыстыру түрімен үйлесімді емес.";Strings.OfficeOM.L_InvalidGrantMessage="Осы қондырма үшін рұқсат жоқ.";Strings.OfficeOM.L_FormattingReminder="Пішімдеу еске салғышы";Strings.OfficeOM.L_AppNameNotExist="{0} үшін қондырма атауы жоқ.";Strings.OfficeOM.L_InvalidGetRows="Көрсетілген жолдар жарамсыз.";Strings.OfficeOM.L_FileTypeNotSupported="Көрсетілген файл түрі қолданылмайды.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Ағымдағы таңдау осы бағдарлама арқылы берілген келтіру түрімен қолдау көрсетпейді.";Strings.OfficeOM.L_MissingRequiredArguments="кейбір қажетті аргументтер жоқ";Strings.OfficeOM.L_UnsupportedEnumeration="Қолданылмайтын тізу әрекеті";Strings.OfficeOM.L_BindingNotExist="Берілген байланыстыру жоқ.";Strings.OfficeOM.L_EventHandlerNotExist="Бұл байланыстыру үшін көрсетілген оқиғаларды өңдегіш табылмады.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Операцияны орындау сәтсіз аяқталды, себебі бұл қондырма осы санаттағы пайдаланушы келісіміне қолдау көрсетпейді";Strings.OfficeOM.L_DialogAlreadyOpened="Операция сәтсіз аяқталды, себебі бұл қондырмада белсенді диалог бұрыннан бар.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Браузер шектеулеріне байланысты диалогтық терезе жасау мүмкін емес. Диалогтық терезе домені мен қондырма торабының домені бір қауіпсіздік аймағында емес.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported='Кестеде біріктірілген ұяшықтар бар кезде, координата параметрлерін "Кесте" келтіру түрімен қолдану мүмкін емес.';Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Рұқсат ету";Strings.OfficeOM.L_APINotSupported="API интерфейсіне қолдау жоқ";Strings.OfficeOM.L_InvalidCoercion="Жарамсыз келтіру түрі";Strings.OfficeOM.L_APICallFailed="API қоңырауы сәтсіз болды";Strings.OfficeOM.L_InvalidBindingOperation="Жарамсыз байланыстыру амалы";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='Сұраудың пайдалы деректер өлшемі шегінен асып кетті. Келесі құжаттаманы қараңыз: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_CancelButton="Бас тарту";Strings.OfficeOM.L_RequestTimeout="Қоңырау көп уақытты алды.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Функция атауында тек әріптер, сандар, астыңғы сызықтар және нүктелер болуы тиіс.";Strings.OfficeOM.L_ConfirmRefreshMessage="Жалғастыру үшін, қондырманы жойып, қайта қосыңыз немесе бетті жаңартыңыз.";Strings.OfficeOM.L_DataStale="Ағымдағы емес деректер";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="браузерді реттеңіз";Strings.OfficeOM.L_CustomXmlNodeNotFound="Көрсетілген түйін табылмады.";Strings.OfficeOM.L_TooManyArguments="тым көп аргумент";Strings.OfficeOM.L_OverwriteWorksheetData="Берілген деректер нысаны құжаттағы деректерді қайта жазады.";Strings.OfficeOM.L_InvalidFormatValue="Бір немесе бірнеше пішім параметрлерінде рұқсат етілмеген мәндер бар. Мәндерді екі рет басып, әрекетті қайталаңыз.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Әрекет осы байланыстыру түрінде қолданылмайды.";Strings.OfficeOM.L_TooManyOptionalFunction="параметр тізіміндегі көбейткіш қосымша функциялар";Strings.OfficeOM.L_SSOClientError="Office жиынтығындағы аутентификация сұрауында қате пайда болды.";Strings.OfficeOM.L_NotSupportedEventType="Көрсетілген оқиға түріне {0} қолдау көрсетілмеді.";Strings.OfficeOM.L_NotSupportedBindingType="Көрсетілген {0} байланыстыру түріне қолдау көрсетілмейді.";Strings.OfficeOM.L_DialogNavigateError="Диалог навигациясы қатесі";Strings.OfficeOM.L_TooManyOptionalObjects="параметр тізіміндегі көбейткіш қосымша нысандар";Strings.OfficeOM.L_ColIndexOutOfRange="Бағанның индекс мәні рұқсат етілген ауқымнан артық. Бағандардың санынан аз мәнді (0 немесе одан артық) пайдаланыңыз.";Strings.OfficeOM.L_InvalidApiCallInContext="Ағымдағы контекстідегі жарамсыз API шақыруы.";Strings.OfficeOM.L_InvalidSetStartRowColumn="Көрсетілген startRow немесе startColumn мәндері жарамсыз.";Strings.OfficeOM.L_InternalErrorDescription="Ішкі қате пайда болды.";Strings.OfficeOM.L_InvalidBinding="Жарамсыз байланыстыру";Strings.OfficeOM.L_OperationCancelledError="Операциядан бас тартылды";Strings.OfficeOM.L_NotSupported="{0} функциясы қолданылмайды.";Strings.OfficeOM.L_InitializeNotReady="Office.js толығымен жүктелмеді. Әрекетті кейін қайталаңыз немесе инициализация кодын Office.initialize функциясына қосуды тексеріңіз.";Strings.OfficeOM.L_InvalidSetColumns="Көрсетілген бағандар жарамсыз.";Strings.OfficeOM.L_FunctionCallFailed="{0} функциясының шақыруы сәтсіз аяқталды, қате коды: {1}."
|
|
@@ -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_DialogOK="ಸರಿ";Strings.OfficeOM.L_DisplayDialogError="ಪ್ರದರ್ಶನ ಸಂವಾದ ದೋಷ";Strings.OfficeOM.L_UserClickIgnore="ಸಂವಾದ ಪೆಟ್ಟಿಗೆಯನ್ನು ನಿರ್ಲಕ್ಷಿಸಲು ಬಳಕೆದಾರರು ಆರಿಸಿಕೊಂಡಿದ್ದಾರೆ.";Strings.OfficeOM.L_MissingRequiredArguments="ಕೆಲವು ಅಗತ್ಯವಿರುವ ವಾದಗಳನ್ನು ಕಾಣೆಯಾಗಿವೆ";Strings.OfficeOM.L_SSOClientError="Office ದೃಢೀಕರಣ ವಿನಂತಿಯಲ್ಲಿ ದೋಷ ಸಂಭವಿಸಿದೆ.";Strings.OfficeOM.L_UserAborted="ಸಮ್ಮತಿ ವಿನಂತಿಯನ್ನು ಬಳಕೆದಾರರು ಸ್ಥಗಿತಗೊಳಿಸಿದ್ದಾರೆ.";Strings.OfficeOM.L_FileTypeNotSupported="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಫೈಲ್ ಪ್ರಕಾರ ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_SettingsStaleError="ಹಳೆಯ ಸೆ್ಟಿಂಗ್ಗಳ ದೋಷ";Strings.OfficeOM.L_SliceSizeNotSupported="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಸ್ಲೈಸ್ ಗಾತ್ರವು ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="ಆಯ್ಕೆ ಮಿತಿ ತಲುಪಿದೆ";Strings.OfficeOM.L_DocumentReadOnly="ಸದ್ಯದ ದಾಖಲೆಯ ಮೋಡ್ನಲ್ಲಿ ವಿನಂತಿಸಿದ ಕಾರ್ಯನಿರ್ವಹಣೆಯನ್ನು ಅನುಮತಿಸಲಾಗಿಲ್ಲ.";Strings.OfficeOM.L_InvalidDataObject="ಅಮಾನ್ಯ ಡೇಟಾ ಆಬ್ಜೆಕ್ಟ್";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="ಆಯ್ದ ಒಳಾಂಶವು ಕೋಷ್ಠಕದ ಸ್ವರೂಪದಲ್ಲಿ ಇರಬೇಕು. ಡೇಟಾವನ್ನು ಕೋಷ್ಠಕದಂತೆ ಸ್ವರೂಪಿಸಿ ಹಾಗೂ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ.";Strings.OfficeOM.L_ConfirmDialogConsent="ಸರಿ ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ, ನಿಮ್ಮ ವಿಷಯ ಮತ್ತು ವೈಯಕ್ತಿಕ ಮಾಹಿತಿಗೆ ಪ್ರವೇಶಿಸಲು {0} ಗೆ ನೀವು ಅನುಮತಿಸುತ್ತೀರಿ.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="ಆಡ್-ಇನ್ ಈಗಾಗಲೇ ಪ್ರವೇಶ ಟೋಕನ್ಗೆ ವಿನಂತಿಸುತ್ತಿದೆ.";Strings.OfficeOM.L_SpecifiedIdNotExist="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ID ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.";Strings.OfficeOM.L_HostError="ಹೋಸ್ಟ್ ದೋಷ";Strings.OfficeOM.L_InvalidBindingOperation="ಅಮಾನ್ಯ ಬೈಂಡಿಂಗ್ ಕಾರ್ಯಾಚರಣೆ";Strings.OfficeOM.L_OperationCancelledErrorMessage="ಕಾರ್ಯಾಚರಣೆಯನ್ನು ಬಳಕೆದಾರರು ರದ್ದುಗೊಳಿಸಿದ್ದಾರೆ.";Strings.OfficeOM.L_PropertyNotLoaded='{0}\' ಗುಣಲಕ್ಷಣವು ಲಭ್ಯವಿಲ್ಲ. ಗುಣಲಕ್ಷಣದ ಮೌಲ್ಯವನ್ನು ಓದುವ ಮೊದಲು, ಒಳಗೊಂಡಿರುವ ಆಬ್ಜೆಕ್ಟ್ನಲ್ಲಿ ಲೋಡ್ ವಿಧಾನವನ್ನು ಕರೆಯಿರಿ ಮತ್ತು ಸಂಬಂಧಿತ ವಿನಂತಿ ಪ್ರಸಂಗದಲ್ಲಿ "context.sync()" ಗೆ ಕರೆಯಿರಿ.';Strings.OfficeOM.L_RedundantCallbackSpecification="ವಿವಾದ ಪಟ್ಟಿಯಲ್ಲಿ ಹಾಗೂ ಐಚ್ಛಿಕ ವಸ್ತು ಎರಡರಲ್ಲಿಯೂ ಕಾಲ್ಬ್ಯಾಕ್ ಅನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸುವುದು ಸಾಧ್ಯವಿಲ್ಲ.";Strings.OfficeOM.L_BadSelectorString="ಸೆಲೆಕ್ಟರ್ಗೆ ಕಳುಹಿಸಿದ ಸ್ಟ್ರಿಂಗ್ ಸೂಕ್ತ ಫಾರ್ಮ್ಯಾಟ್ ಅಥವಾ ಬೆಂಬಲ ಹೊಂದಿರುವುದಿಲ್ಲ.";Strings.OfficeOM.L_SSOServerError="ದೃಢೀಕರಣ ನೀಡುಗದಲ್ಲಿ ದೋಷ ಸಂಭವಿಸಿದೆ.";Strings.OfficeOM.L_DataWriteReminder="ಡೇಟಾ ಬರೆಯುವಿಕೆ ರಿಮೈಂಡರ್";Strings.OfficeOM.L_OperationCancelledError="ಕಾರ್ಯಾಚರಣೆ ರದ್ದುಗೊಂಡಿದೆ";Strings.OfficeOM.L_InvalidBinding="ಅಮಾನ್ಯ ಬೈಂಡಿಂಗ್";Strings.OfficeOM.L_ValueNotLoaded='ಫಲಿತಾಂಶ ಆಬ್ಜೆಕ್ಟ್ನ ಮೌಲ್ಯವನ್ನು ಇನ್ನೂ ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ. ಮೌಲ್ಯ ಗುಣಲಕ್ಷಣವನ್ನು ಓದುವ ಮೊದಲು, ಸಂಯೋಜಿತ ವಿನಂತಿ ಸಂದರ್ಭದಲ್ಲಿ "context.sync()" ಗೆ ಕರೆ ಮಾಡಿ.';Strings.OfficeOM.L_ConnectionFailureWithDetails="{0} ಸ್ಥಿತಿ ಕೋಡ್, {1} ದೋಷ ಕೋಡ್ ಮತ್ತು ಮುಂದಿನ ದೋಷ ಸಂದೇಶದ ಜೊತೆಗೆ ವಿನಂತಿಯು ವಿಫಲವಾಗಿದೆ: {2}";Strings.OfficeOM.L_NoHttpsWAC="ಈ Office ಸೆಷನ್ ಒಂದು ಸುರಕ್ಷಿತ ಸಂಪರ್ಕವನ್ನು ಬಳಸಿಕೊಳ್ಳುತ್ತಿಲ್ಲ. ನೀವು ಹೆಚ್ಚುವರಿ ಮುನ್ನೆಚ್ಚರಿಕೆಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳುವಂತೆ ನಾವು ಶಿಫಾರಸು ಮಾಡುತ್ತೇವೆ.";Strings.OfficeOM.L_GetDataParametersConflict="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಮಾನದಂಡಗಳು ಸಂಘರ್ಷಿಸುತ್ತವೆ.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="ಬಳಕೆದಾರ ಸಮ್ಮತಿಯನ್ನು ಈ ಆಡ್-ಇನ್ ಬೆಂಬಲಿಸುವುದಿಲ್ಲ.";Strings.OfficeOM.L_DataNotMatchBindingSize="ಪೂರೈಸಿದ ಡೇಟಾ ಆಬ್ಜೆಕ್ಟ್ ಸದ್ಯದ ಆಯ್ಕೆಯ ಗಾತ್ರಕ್ಕೆ ಸರಿಹೊಂದುವುದಿಲ್ಲ.";Strings.OfficeOM.L_UnsupportedEnumeration="ಬೆಂಬಲವಿಲ್ಲದ ತಪಶೀಲುಪಟ್ಟಿ";Strings.OfficeOM.L_MultipleNamedItemFound="ಒಂದೇ ಹೆಸರಿನ ಬಹು ವಸ್ತುಗಳನ್ನು ಪತ್ತೆ ಮಾಡಲಾಗಿದೆ.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="\"object.set\" ವಿಧಾನದ ಮೂಲಕ '{0}' ಗುಣಕ್ಕೆ ಬದಲಾವಣೆಗಳನ್ನು ಅನ್ವಯಿಸಲಾಗುವುದಿಲ್ಲ.";Strings.OfficeOM.L_EventHandlerRemovalFailed="ಇವೆಂಟ್ ಹ್ಯಾಂಡ್ಲರ್ ತೆಗೆಯಲು ವಿಫಲ.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="ಪ್ರವೇಶ ಟೋಕನ್ಗೆ ಈ ಆಡ್-ಇನ್ ಈಗಾಗಲೇ ವಿನಂತಿಸುತ್ತಿರುವ ಕಾರಣದಿಂದ ಕಾರ್ಯಾಚರಣೆ ವಿಫಲವಾಗಿದೆ.";Strings.OfficeOM.L_IndexOutOfRange="ಇಂಡೆಕ್ಸ್ ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿದೆ.";Strings.OfficeOM.L_GetSelectionNotSupported="ಪ್ರಚಲಿತ ಆಯ್ಕೆಯು ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="'{0}' ಓದು-ಮಾತ್ರ ಗುಣವನ್ನು ಹೊಂದಿಸಲು ಪ್ರಯತ್ನಿಸಲಾಗುತ್ತಿದೆ.";Strings.OfficeOM.L_DialogInvalidScheme="URL ಸ್ಕೀಮ್ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ. ಬದಲಿಗೆ HTTPS ಬಳಸಿ.";Strings.OfficeOM.L_MissingParameter="ಪ್ಯಾರಾಮೀಟರ್ ಕಾಣೆಯಾಗಿವೆ";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="ವಿಲೀನಗೊಳಿಸಿದ ಸೆಲ್ಗಳನ್ನು ಒಳಗೊಂಡಿರುವಾಗ ಒತ್ತಾಯ ಪ್ರಕಾರದ ಕೋಷ್ಠಕದೊಂದಿಗೆ ಕೋಷ್ಠಕವು ನಿರ್ದೇಶಾಂಕ ಮಾನದಂಡಗಳನ್ನು ಬಳಸಲಾಗದು.";Strings.OfficeOM.L_ConfirmDialog="{0} ಡೊಮೇನ್ Microsoft Office ನಂತೆ ಕಾರ್ಯನಿರ್ವಹಿಸುತ್ತಿದೆ ಮತ್ತು ನಿಮ್ಮ ವೈಯಕ್ತಿಕ ಡೇಟಾವನ್ನು ಪ್ರವೇಶಿಸಬಹುದಾದ Office ಆ್ಯಡ್-ಇನ್ಗಳನ್ನು ಚಲಾಯಿಸಬಹುದು. Office ನಂತೆ ಚಲಾಯಿಸಲು ಮತ್ತು ನಿಮ್ಮ ಡೇಟಾವನ್ನು ಪ್ರವೇಶಿಸಲು ನಿಮಗೆ ಈ ಡೊಮೇನ್ ಮೇಲೆ ವಿಶ್ವಾಸವಿದ್ದರೆ, ಮುಂದುವರಿಯಲು ಸರಿ ಕ್ಲಿಕ್ ಮಾಡಿ.";Strings.OfficeOM.L_GetDataIsTooLarge="ವಿನಂತಿಸಿದ ಡೇಟಾ ಸೆಟ್ ಅತ್ಯಂತ ದೊಡ್ಡದಾಗಿದೆ.";Strings.OfficeOM.L_OperationNotSupported="ಕಾರ್ಯನಿರ್ವಹಣೆಯು ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_ConfirmCancelMessage="ಕ್ಷಮಿಸಿ, ನಮಗೆ ಮುಂದುವರಿಯಲಾಗುವುದಿಲ್ಲ.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="ಟಿಪ್ಪಣಿ: ಫಾರ್ಮ್ಯಾಟಿಂಗ್ API ಕರೆಯಿಂದ ನಿಗದಿಪಡಿಸಿರುವ ಸ್ವರೂಪಗೊಳಿಸುವಿಕೆ ಸಮೂಹಗಳನ್ನು 100 ಕ್ಕಿಂತ ಕಡಿಮೆ ಇರಬೇಕೆಂದು ಸೂಚಿಸಲಾಗಿದೆ.";Strings.OfficeOM.L_InvalidCellsValue="ಒಂದು ಅಥವಾ ಹೆಚ್ಚು ಸೆಲ್ಗಳ ಪರಿಮಾಣಗಳು ಅನುಮತಿಸಲಾಗಿಲ್ಲದೇ ಇರುವ ಮೌಲ್ಯಗಳನ್ನು ಹೊಂದಿವೆ. ಮೌಲ್ಯಗಳನ್ನು ಎರಡು ಸಲ ಪರೀಕ್ಷಿಸಿ ಹಾಗೂ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ.";Strings.OfficeOM.L_CannotNavigateTo="ಆಬ್ಜೆಕ್ಟ್ ನ್ಯಾವಿಗೇಶನ್ಗೆ ಬೆಂಬಲಿಸದೇ ಇರುವ ಸ್ಥಳದಲ್ಲಿ ಇರಿಸಲಾಗಿದೆ.";Strings.OfficeOM.L_CannotRegisterEvent="ಈವೆಂಟ್ ಹ್ಯಾಂಡ್ಲರ್ ಅನ್ನು ನೋಂದಾಯಿಸಲಾಗುವುದಿಲ್ಲ.";Strings.OfficeOM.L_InvalidNode="ಅಮಾನ್ಯ ನೋಡ್";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel, ಸೆಲ್-ಸಂಪಾದನೆ ಮೋಡ್ನಲ್ಲಿದೆ. ENTER ಅಥವಾ TAB ಒತ್ತುವ ಮೂಲಕ ಅಥವಾ ಮತ್ತೊಂದು ಸೆಲ್ ಆಯ್ಕೆಮಾಡುವ ಮೂಲಕ ದಯವಿಟ್ಟು ಸಂಪಾದನೆ ಮೋಡ್ನಿಂದ ನಿರ್ಗಮಿಸಿ, ತದನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.";Strings.OfficeOM.L_SSOServerErrorMessage="ಸರ್ವರ್ನಲ್ಲಿ ಒಂದು ಅನಿರೀಕ್ಷಿತ ದೋಷ ಸಂಭವಿಸಿದೆ.";Strings.OfficeOM.L_InvalidArgumentGeneric="ಕಾರ್ಯಕ್ಕೆ ವರ್ಗಾಯಿಸಿದ ವಾದ(ಗಳು) ಈ ಸನ್ನಿವೇಶಕ್ಕೆ ಕಾರ್ಯನಿರ್ವಹಿಸುವುದಿಲ್ಲ, ಕಾಣೆಯಾಗಿವೆ ಅಥವಾ ಸೂಕ್ತ ಸ್ವರೂಪದಲ್ಲಿ ಇಲ್ಲ.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="ಈ ವರ್ಗದಲ್ಲಿ ಬಳಕೆದಾರ ಸಮ್ಮತಿಗೆ ಈ ಆಡ್-ಇನ್ ಬೆಂಬಲಿಸದ ಕಾರಣದಿಂದ ಕಾರ್ಯಾಚರಣೆಯು ವಿಫಲವಾಗಿದೆ";Strings.OfficeOM.L_DialogParentIsMinimized="ಪೋಷಕ ವಿಂಡೋ ಅನ್ನು ಕನಿಷ್ಠಗೊಳಿಸಿರುವುದರಿಂದ ಕಾರ್ಯಾಚರಣೆ ವಿಫಲವಾಗಿದೆ.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="ಅನುಮತಿಸು";Strings.OfficeOM.L_DataNotMatchBindingType="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಡೇಟಾ ಅಂಶವು ಬೈಂಡಿಂಗ್ ಪ್ರಕಾರದೊಂದಿಗೆ ಹೊಂದುವುದಿಲ್ಲ.";Strings.OfficeOM.L_BindingNotExist="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಬೈಂಡಿಂಗ್ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.";Strings.OfficeOM.L_InvalidOrTimedOutSession="ಅಮಾನ್ಯ ಅಥವಾ ಸಮಯ ಮೀರಿದ ಸೆಷನ್";Strings.OfficeOM.L_ApiNotFoundDetails="{0} ವಿಧಾನ ಅಥವಾ ಗುಣಲಕ್ಷಣವು {1} ಅಗತ್ಯತೆ ಸೆಟ್ನ ಭಾಗವಾಗಿದೆ, ಇದು {2} ನ ನಿಮ್ಮ ಆವೃತ್ತಿಯಲ್ಲಿ ಲಭ್ಯವಿಲ್ಲ.";Strings.OfficeOM.L_Timeout="ಕಾರ್ಯಾಚರಣೆಯು ಅವಧಿ ಮೀರಿದೆ.";Strings.OfficeOM.L_SettingsCannotSave="ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಉಳಿಸುವುದು ಸಾಧ್ಯವಿಲ್ಲ.";Strings.OfficeOM.L_APINotSupported="API ಬೆಂಬಲಿಸುತ್ತಿಲ್ಲ";Strings.OfficeOM.L_InvalidGetStartRowColumn="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಆರಂಭ ಅಡ್ಡಸಾಲು ಅಥವಾ ಆರಂಭ ಲಂಬಸಾಲು ಎಣಿಕೆಯ ಮೌಲ್ಯಗಳು ಅಮಾನ್ಯವಾಗಿವೆ.";Strings.OfficeOM.L_NotSupportedEventType="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಇವೆಂಟ್ ಪ್ರಕಾರ {0} ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='ವಿನಂತಿ ಪೇಲೋಡ್ ಗಾತ್ರ ಮಿತಿಯನ್ನು ಮೀರಿದೆ. ದಯವಿಟ್ಟು ಡಾಕ್ಯುಮೆಂಟೇಶನ್ಗೆ ಉಲ್ಲೇಖಿಸಿ: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_EventRegistrationError="ಈವೆಂಟ್ ನೋಂದಣಿ ದೋಷ";Strings.OfficeOM.L_APICallFailed="API ಕರೆ ವಿಫಲವಾಗಿದೆ";Strings.OfficeOM.L_InvalidGetRows="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಅಡ್ಡಸಾಲುಗಳು ಅಮಾನ್ಯವಾಗಿವೆ.";Strings.OfficeOM.L_InvalidParameters="ಕಾರ್ಯ {0} ವು ಅಮಾನ್ಯವಾದ ಪರಿಮಾಣಗಳನ್ನು ಹೊಂದಿದೆ.";Strings.OfficeOM.L_TooManyOptionalFunction="ಪರಿಮಾಣಗಳ ಪಟ್ಟಿಯಲ್ಲಿ ಬಹು ಐಚ್ಛಿಕ ಕಾರ್ಯಗಳು ಇವೆ";Strings.OfficeOM.L_InvalidGetColumns="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಕಾಲಂಗಳು ಅಮಾನ್ಯವಾಗಿವೆ.";Strings.OfficeOM.L_InvalidSetStartRowColumn="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಆರಂಭ ಅಡ್ಡಸಾಲು ಅಥವಾ ಆರಂಭ ಲಂಬಸಾಲು ಎಣಿಕೆಯ ಮೌಲ್ಯಗಳು ಅಮಾನ್ಯವಾಗಿವೆ.";Strings.OfficeOM.L_FunctionCallFailed="ಕಾರ್ಯ {0} ಕರೆ ವಿಫಲವಾಗಿದೆ, ದೋಷ ಕೋಡ್: {1}.";Strings.OfficeOM.L_InvalidDataFormat="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಡೇಟಾ ವಸ್ತುವಿನ ಫಾರ್ಮ್ಯಾಟ್ ಅಮಾನ್ಯವಾಗಿದೆ.";Strings.OfficeOM.L_InvalidObjectPath='ನೀವು ಮಾಡಲು ಪ್ರಯತ್ನಿಸುತ್ತಿರುವುದಕ್ಕೆ \'{0}\' ಆಬ್ಜೆಕ್ಟ್ ಹಾದಿಯು ಕಾರ್ಯನಿರ್ವಹಿಸುತ್ತಿಲ್ಲ. ಬಹು "context.sync" ಕರೆಗಳಾದ್ಯಂತ ಮತ್ತು ".run" ಬ್ಯಾಚ್ನ ಸರಣಿಯ ಕಾರ್ಯಗತಗೊಳಿಸುವಿಕೆಯ ಹೊರಗೆ ಆಬ್ಜೆಕ್ಟ್ ಅನ್ನು ನೀವು ಬಳಸುತ್ತಿದ್ದರೆ, ಆಬ್ಜೆಕ್ಟ್ನ ಜೀವಿತ ಸಮಯವನ್ನು ನಿರ್ವಹಿಸಲು "context.trackedObjects.add()" ಮತ್ತು "context.trackedObjects.remove()" ವಿಧಾನಗಳನ್ನು ���ಯವಿಟ್ಟು ಬಳಸಿ.';Strings.OfficeOM.L_NewWindowCrossZone="ನಿಮ್ಮ ಬ್ರೌಸರ್ನಲ್ಲಿರುವ ಭದ್ರತೆ ಸೆಟ್ಟಿಂಗ್ಗಳು ಸಂವಾದ ಪೆಟ್ಟಿಗೆಯನ್ನು ರಚಿಸದಂತೆ ನಮ್ಮನ್ನು ತಡೆಗಟ್ಟುತ್ತವೆ. '{1}' ಮತ್ತು ನಿಮ್ಮ ವಿಳಾಸ ಪಟ್ಟಿಯಲ್ಲಿ ತೋರಿಸಿರುವ ಡೊಮೇನ್ ಒಂದೇ ಭದ್ರತೆ ವಲಯದಲ್ಲಿರುವಂತೆ ಬೇರೆ ಬ್ರೌಸರ್ ಅಥವಾ {0} ಪ್ರಯತ್ನಿಸಿ.";Strings.OfficeOM.L_TooManyArguments="ಅತ್ಯಧಿಕ ವಿವಾದಗಳು";Strings.OfficeOM.L_DataStale="ಪ್ರಸ್ತುತ ಡೇಟಾ ಅಲ್ಲ";Strings.OfficeOM.L_RowIndexOutOfRange="ಅಡ್ಡಸಾಲುಗಳ ಸೂಚ್ಯಂಕ ಮೌಲ್ಯವು ಅನುಮತಿಸಿದ ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿರುತ್ತದೆ. ಅಡ್ಡಸಾಲುಗಳ ಸಂಖ್ಯೆಗಿಂತ ಕಡಿಮೆಯಿರುವ ಮೌಲ್ಯವೊಂದನ್ನು (0 ಅಥವಾ ಹೆಚ್ಚು) ಬಳಸಿ.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="ಸದ್ಯದ ಆಯ್ಕೆಯು ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಒತ್ತಾಯದ ಪ್ರಕಾರಕ್ಕೆ ಹೊಂದಾಣಿಕೆಯಾಗುವುದಿಲ್ಲ.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="ದೃಢೀಕರಣ ಸಂದರ್ಭವನ್ನು ಪಡೆಯುವುದಕ್ಕಾಗಿ ಕಾರ್ಯವು ಕಾಣೆಯಾಗಿದೆ";Strings.OfficeOM.L_CancelButton="ರದ್ದು";Strings.OfficeOM.L_InitializeNotReady="Office.js ಇನ್ನೂ ಪೂರ್ತಿಯಾಗಿ ಲೋಡ್ ಆಗಿರುವುದಿಲ್ಲ. ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ ಅಥವಾ ನಿಮ್ಮ ಆರಂಭಿಸುವಿಕೆಯ ಕೋಡ್ ಅನ್ನು Office. ಕಾರ್ಯ ಆರಂಭಿಸು ಇಲ್ಲಿ ಸೇರಿಸುವುದನ್ನು ಖಾತ್ರಿಪಡಿಸಿಕೊಳ್ಳಿ.";Strings.OfficeOM.L_UserNotSignedIn="ಯಾವುದೇ ಬಳಕೆದಾರ Office ಗೆ ಸೈನ್ ಇನ್ ಆಗಿಲ್ಲ.";Strings.OfficeOM.L_EventHandlerAdditionFailed="ಇವೆಂಟ್ ಹ್ಯಾಂಡ್ಲರ್ ಸೇರಿಸಲು ವಿಫಲ.";Strings.OfficeOM.L_UserAbortedMessage="ಬಳಕೆದಾರರು ಆಡ್-ಇನ್ ಅನುಮತಿಗಳಿಗೆ ಸಮ್ಮತಿಸಿಲ್ಲ.";Strings.OfficeOM.L_UnknownBindingType="ಬೈಂಡಿಂಗ್ ಪ್ರಕಾರವು ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="ನಿಮ್ಮ ಬ್ರೌಸರ್ ಕಾನ್ಫಿಗರ್ ಮಾಡಿ";Strings.OfficeOM.L_AppNameNotExist="{0} ಗಾಗಿ ಆಡ್-ಇನ್ ಹೆಸರು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="ಕಾರ್ಯದ ಹೆಸರು ಕೇವಲ ಅಕ್ಷರಗಳು, ಅಂಕಿಗಳು, ಅಡಿಗೆರೆಗಳು ಮತ್ತು ಅಲ್ಪವಿರಾಮಗಳನ್ನು ಮಾತ್ರ ಒಳಗೊಂಡಿರಬಹುದು.";Strings.OfficeOM.L_CustomXmlNodeNotFound="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಮೋಡ್ ಪತ್ತೆಯಾಗಿಲ್ಲ.";Strings.OfficeOM.L_InvalidResourceUrlMessage="ಮ್ಯಾನಿಫೆಸ್ಟ್ನಲ್ಲಿ ಅಮಾನ್ಯ ಸಂಪನ್ಮೂಲ Url ನಿರ್ದಿಷ್ಟಪಡಿಸಲಾಗಿದೆ.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="ಬಳಕೆದಾರರ ಗುರುತು ಪ್ರಕಾರ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ.";Strings.OfficeOM.L_InValidOptionalArgument="ಅಮಾನ್ಯ ಐಚ್ಛಿಕ ವಾದ";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="ನಾವು ಸಂವಾದ ಪೆಟ್ಟಿಗೆಯನ್ನು ರಚಿಸದಂತೆ ಬ್ರೌಸರ್ ನಿಯಂತ್ರಣಗಳು ನಮ್ಮನ್ನು ನಿಯಂತ್ರಿಸಿವೆ. ಸಂವಾದ ಪೆಟ್ಟಿಗೆಯ ಡೊಮೇನ್ ಮತ್ತು ಆಡ್-ಇನ್ ಹೋಸ್ಟ್ನ ಡೊಮೇನ್ ಒಂದೇ ಭದ್ರತೆ ವಲಯದಲ್ಲಿ ಇಲ್ಲ.";Strings.OfficeOM.L_InvalidGrantMessage="ಈ ಆಡ್-ಇನ್ಗೆ ಗ್ರಾಂಟ್ ಕಾಣೆಯಾಗಿದೆ.";Strings.OfficeOM.L_SettingsAreStale="ಸೆಟ್ಟಿಂಗ್ಗಳು ಪ್ರಚಲಿತವಾಗಿಲ್ಲದೇ ಇರುವುದರಿಂದ ಅವನ್ನು ಉಳಿಸುವುದು ಸಾದ್ಯವಿಲ್ಲ.";Strings.OfficeOM.L_SSOClientErrorMessage="ಕ್ಲೈಂಟ್ನಲ್ಲಿ ಅನಿರೀಕ್ಷಿತ ದೋಷ ಸಂಭವಿಸಿದೆ.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="ಈ ಡೇಟಾದ ದಿನಾಂಕ ಮೀರಿದೆ. ಮತ್ತೊಮ್ಮೆ ಆಬ್ಜೆಕ್ಟ್ ಅನ್ನು ಮರುಪಡೆಯಿರಿ.";Strings.OfficeOM.L_ElementMissing="ಕೆಲವು ಮಾನದಂಡಗಳ ಮೌಲ್ಯಗಳು ತಪ್ಪಿರುವುದರಿಂದ ನಮ್ಮಿಂದ ಕೋಷ್ಠಕದ ಸೆಲ್ ಅನ್ನು ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಲಾಗದು. ಮಾನದಂಡಗಳನ್ನು ಎರಡು ಸಲ ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ.";Strings.OfficeOM.L_BindingCreationError="ಬೈಂಡಿಂಗ್ ರಚನೆ ದೋಷ";Strings.OfficeOM.L_TooManyIncompleteRequests="ಹಿಂದಿನ ಕರೆಯು ಮುಕ್ತಾಯವಾಗುವವರೆಗೆ ಕಾಯಿರಿ.";Strings.OfficeOM.L_UnsupportedDataObject="ಪೂರೈಸಿದ ಡೇಟಾ ಆಬ್ಜೆಕ್ಟ್ ವಿಧವು ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_SSOConnectionLostError="ಸೈನ್ ಇನ್ ಪ್ರಕ್ರಿಯೆ ಸಮಯದಲ್ಲಿ ಸಂಪರ್ಕ ತಪ್ಪಿ ಹೋಗಿದೆ.";Strings.OfficeOM.L_DataNotMatchCoercionType="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಡೇಟಾ ಆಬ್ಜೆಕ್ಟ್ ವಿಧವು ಸದ್ಯದ ಆಯ್ಕೆಯೊಂದಿಗೆ ಸರಿಹೊಂದುವುದಿಲ್ಲ.";Strings.OfficeOM.L_InvalidBindingError="ಅಮಾನ್ಯ ಬೈಂಡಿಂಗ್ ದೋಷ";Strings.OfficeOM.L_NavOutOfBound="ಸೂಚಿಯು ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿರುವುದರಿಂದ ಕಾರ್ಯನಿರ್ವಹಣೆಯು ವಿಫಲವಾಗಿದೆ.";Strings.OfficeOM.L_InvalidTableOptionValue="ಒಂದು ಅಥವಾ ಹೆಚ್ಚು ಕೋಷ್ಠಕ ಆಯ್ಕೆಗಳ ಮಾನದಂಡಗಳು ಅನುಮತಿಸಲಾಗಿಲ್ಲದೇ ಇರುವ ಮೌಲ್ಯಗಳನ್ನು ಹೊಂದಿವೆ. ಮೌಲ್ಯಗಳನ್ನು ಎರಡು ಸಲ ಪರಿಶೀಲಸಿ ಹಾಗೂ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ.";Strings.OfficeOM.L_DataWriteError="ಡೇಟಾ ಬರೆಯುವಿಕೆ ದೋಷ";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="ದಯವಿಟ್ಟು ಆಯ್ಕೆ ಮಾಡಿ.";Strings.OfficeOM.L_InvalidSetRows="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಅಡ್ಡಸಾಲುಗಳು ಅಮಾನ್ಯವಾಗಿವೆ.";Strings.OfficeOM.L_OKButton="ಸರಿ";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="ವಿಲೀನಗೊಳಿಸಿದ ಸೆಲ್ಗಳನ್ನು ಒಳಗೊಂಡಿರುವಾಗ ಒತ್ತಾಯ ಪ್ರಕಾರದ ಕೋಷ್ಠಕದೊಂದಿಗೆ ಕೋಷ್ಠಕವು ನಿರ್ದೇಶಾಂಕ ಮಾನದಂಡಗಳನ್ನು ಬಳಸಲಾಗದು.";Strings.OfficeOM.L_InvalidSSOAddinMessage="ಈ ಆಡ್-ಇನ್ಗೆ ಗುರುತು API ಬೆಂಬಲಿತವಾಗಿಲ್ಲ.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='ಪ್ರತಿಕ್ರಿಯೆ ಪೇಲೋಡ್ ಗಾತ್ರ ಮಿತಿಯನ್ನು ಮೀರಿದೆ. ದಯವಿಟ್ಟು ಡಾಕ್ಯುಮೆಂಟೇಶನ್ಗೆ ಉಲ್ಲೇಖಿಸಿ: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidArgument="{0}' ವಾದವು ಈ ಸನ್ನಿವೇಶಕ್ಕೆ ಕಾರ್ಯನಿರ್ವಹಿಸುವುದಿಲ್ಲ, ಕಾಣೆಯಾಗಿದೆ ಅಥವಾ ಸೂಕ್ತ ಸ್ವರೂಪದಲ್ಲಿಲ್ಲ.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="ನಿರ್ಲಕ್ಷಿಸು";Strings.OfficeOM.L_CustomXmlOutOfDateName="ಪ್ರಸ್ತುತ ಡೇಟಾ ಅಲ್ಲ";Strings.OfficeOM.L_CloseFileBeforeRetrieve="ಬೇರೊಂದನ್ನು ಹಿಂಪಡೆಯುವ ಮೊದಲು ಸದ್ಯದ ಫೈಲ್ ಮೇಲೆ closeAsync ಗೆ ಕರೆ ಮಾಡಿ.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl ಪ್ರಕಾರವು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ.";Strings.OfficeOM.L_SettingNameNotExist="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಸೆಟ್ಟಿಂಗ್ ಹೆಸರು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.";Strings.OfficeOM.L_DataReadError="ಡೇಟಾ ಓದುವಿಕೆ ದೋಷ";Strings.OfficeOM.L_TooManyOptionalObjects="ಪರಿಮಾಣಗಳ ಪಟ್ಟಿಯಲ್ಲಿ ಬಹು ಐಚ್ಛಿಕ ವಸ್ತುಗಳು ಇವೆ";Strings.OfficeOM.L_CannotWriteToSelection="ಸದ್ಯದ ಆಯ್ಕೆಗೆ ಬರೆಯುವುದು ಸಾಧ್ಯವಿಲ್ಲ.";Strings.OfficeOM.L_OutOfRange="ವ್ಯಾಪ್ತಿಯಿಂದ ಹೊರಗೆ";Strings.OfficeOM.L_InvalidApiArgumentsMessage="ಅಮಾನ್ಯ ಇನ್ಪುಟ್ ವಾದಗಳು.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="ಸೈನ್ ಇನ್ ಪ್ರಕ್ರಿಯೆ ಸಮಯದಲ್ಲಿ ಸಂಪರ್ಕ ತಪ್ಪಿ ಹೋಗಿದೆ ಮತ್ತು ಬಳಕೆದಾರರು ಸೈನ್ ಇನ್ ಮಾಡಿರದೇ ಇರಬಹುದು. ಇದು ಭದ್ರತೆ ವಲಯಗಳಂತಹ ಬಳಕೆದಾರರ ಬ್ರೌಸರ್ ಸಂರಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳ ಕಾರಣದಿಂದ ಸಂಭಾವ್ಯವಾಗಿ ಆಗಿರಬಹುದು.";Strings.OfficeOM.L_ShuttingDown="ಕಾರ್ಯಾಚರಣೆ ವಿಫಲವಾಗಿದೆ ಏಕೆಂದರೆ ಡೇಟಾವು ಸರ್ವರ್ನಲ್ಲಿ ಪ್ರಚಲಿತವಾಗಿರುವುದಿಲ್ಲ.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="ಕಾರ್ಯದ ಹೆಸರು ಖಾಲಿಯಿಲ್ಲದ ಹೆಸರಿನ ಸ್ಥಳವನ್ನು ಮತ್ತು ಖಾಲಿಯಿಲ್ಲದ ಸಂಕ್ಷಿಪ್ತ ಹೆಸರನ್ನು ಒಳಗೊಂಡಿರಬೇಕು.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="ಕಾರ್ಯದ ವಿವರಣೆಯನ್ನು ಪ್ರತಿನಿಧಿಸುವ ಈ ಹೆಸರಿನ ಗುಣಲಕ್ಷಣವು Excel.Script.CustomFunctions ನಲ್ಲಿ ಅಸ್ತಿತ್ವದಲ್ಲಿರಬೇಕು.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="ಟಿಪ್ಪಣಿ: ಕೋಷ್ಠಕದಲ್ಲಿರುವ ಸೆಲ್ಗಳ ಸಂಖ್ಯೆಯು 20,000 ಸೆಲ್ಗಳಿಗಿಂತ ಕಡಿಮೆ ಇರುತ್ತದೆ ಎಂದು ಸೂಚಿಸಲಾಗಿದೆ.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP ಪ್ರೋಟೋಕಾಲ್ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ. ಬದಲಿಗೆ HTTPS ಬಳಸಿ";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="ಮೋಡಲ್ ಸಂವಾದ ತೆರೆದಿರುವಾಗ Office ಗಾಗಿ ಬರೆಯುವ ಕಾರ್ಯಾಚರಣೆಯನ್ನು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ.";Strings.OfficeOM.L_EventHandlerNotExist="ಈ ಬೈಂಡಿಂಗ್ಗೆ ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಈವೆಂಟ್ ಹ್ಯಾಂಡ್ಲರ್ ಪತ್ತೆಯಾಗಿಲ್ಲ.";Strings.OfficeOM.L_RunMustReturnPromise='.run ವಿಧಾನಕ್ಕೆ ಪಾಸ್ ಆಗಿರುವ ಬ್ಯಾಚ್ ಕಾರ್ಯವು ಭರವಸೆಯನ್ನು ಹಿಂತಿರುಗಿಸಲಿಲ್ಲ. ಈ ಕಾರ್ಯವು ಭರವಸೆಯನ್ನು ಹಿಂತಿರುಗಿಸಬೇಕು, ಹಾಗಿದ್ದಲ್ಲಿ ಮಾತ್ರವೇ ಬ್ಯಾಚ್ ಕಾರ್ಯಾಚರಣೆ ಪೂರ್ಣಗೊಂಡ ಬಳಿಕ ಯಾವುದೇ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಟ್ರ್ಯಾಕ್ ಮಾಡಲಾಗಿರುವ ವಸ್ತುಗಳನ್ನು ಬಿಡುಗಡೆ ಮಾಡಲಾಗುತ್ತದೆ. ವಿಶಿಷ್ಟವಾಗಿ, ನೀವು "context.sync()" ನಿಂದ ಸ್ವೀಕರಿಸಿರುವ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಹಿಂತಿರುಗಿಸುವ ಮೂಲಕ ಭರವಸೆಯನ್ನು ಹಿಂತಿರುಗಿಸುವಿರಿ.';Strings.OfficeOM.L_ConnectionFailureWithStatus="{0} ಸ್ಥಿತಿ ಕೋಡ್ ಜೊತೆಗೆ ವಿನಂತಿಯು ವಿಫಲವಾಗಿದೆ.";Strings.OfficeOM.L_SetDataIsTooLarge="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಡೇಟಾ ಅಂಶವು ಅತ್ಯಂತ ದೊಡ್ಡದಾಗಿದೆ.";Strings.OfficeOM.L_DocumentIsInactive="ಈ ಆಡ್-ಇನ್ ಹೊಂದಿರುವ ದಾಖಲೆಯು ನಿಷ್ಕ್ರಿಯವಾಗಿರುವುದರಿಂದ ಕಾರ್ಯಾಚರಣೆ ವಿಫಲವಾಗಿದೆ.";Strings.OfficeOM.L_NotImplemented="ಕಾರ್ಯ {0} ವನ್ನು ಜಾರಿಗೊಳಿಸಲಾಗಿಲ್ಲ.";Strings.OfficeOM.L_InternalErrorDescription="ಆಂತರಿಕ ದೋಷ ಸಂಭವಿಸಿದೆ.";Strings.OfficeOM.L_InvalidColumnsForBinding="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಕಾಲಂಗಳು ಅಮಾನ್ಯವಾಗಿವೆ.";Strings.OfficeOM.L_InvalidFormatValue="ಒಂದು ಅಥವಾ ಹೆಚ್ಚು ಸ್ವರೂಪಿಸುವಿಕೆ ಮಾನದಂಡಗಳನ್ನು ಅನುಮತಿಸಲಾಗಿಲ್ಲದೇ ಇರುವ ಮೌಲ್ಯಗಳನ್ನು ಹೊಂದಿವೆ. ಮೌಲ್ಯಗಳನ್ನು ಎರಡು ಸಲ ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ.";Strings.OfficeOM.L_ModalDialogOpeng="ಈ ಆಡ್-ಇನ್ ಈಗಾಗಲೇ ಸಕ್ರಿಯ ಮೋಡಲ್ ಸಂವಾದವನ್ನು ಹೊಂದಿರುವುದರಿಂದ ಕಾರ್ಯಾಚರಣೆ ವಿಫಲವಾಗಿದೆ.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="ಆಯ್ಕೆಯನ್ನು 1024 ಐಟಂಗಳಿಗೆ XPath ಮಿತಿಗೊಳಿಸುತ್ತದೆ.";Strings.OfficeOM.L_UnsupportedUserIdentity="ಬಳಕೆದಾರ ಗುರುತು ಪ್ರಕಾರ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ.";Strings.OfficeOM.L_InvalidGrant="ಪೂರ್ವದೃಢೀಕರಣ ಕಾಣೆಯಾಗಿದೆ.";Strings.OfficeOM.L_InvalidApiCallInContext="ಅಮಾನ್ಯ API ಕಾಲ್ ಪ್ರಸ್ತುತ ಸಂದರ್ಭದಲ್ಲಿದೆ.";Strings.OfficeOM.L_InvalidFormat="ಅಮಾನ್ಯ ಸ್ವರೂಪ ದೋಷ";Strings.OfficeOM.L_DialogAddressNotTrusted="URL ಡೊಮೇನ್ ಅನ್ನು ಮ್ಯಾನಿಫೆಸ್ಟ್ನಲ್ಲಿನ AppDomains ಮೂಲಾಂಶದಲ್ಲಿ ಸೇರಿಸಿಕೊಳ್ಳಲಾಗಿಲ್ಲ ಮತ್ತು ಅದು ಮೂಲ ಸ್ಥಳದ ಉಪಡೊಮೇನ್ ಆಗಿಲ್ಲ.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="ಕಾರ್ಯದ ವಿವರಣೆಯನ್ನು ಪ್ರತಿನಿಧಿಸುವ Excel.Script.CustomFunctions ನಲ್ಲಿರುವ ಈ ಹೆಸರಿನ ಗುಣಲಕ್ಷಣವು ಕಾರ್ಯವನ್ನು ಜಾರಿಗೊಳಿಸುವ 'ಕರೆ' ಗುಣಲಕ್ಷಣವನ್ನು ಒಳಗೊಂಡಿರಬೇಕು.";Strings.OfficeOM.L_InvalidAPICall="ಅಮಾನ್ಯ API ಕರೆ";Strings.OfficeOM.L_InvalidRequestContext="ವಿಭಿನ್ನ ವಿನಂತಿ ಪ್ರಸಂಗಗಳಾದ್ಯಂತ ಆಬ್ಜೆಕ್ಟ್ ಬಳಸಲಾಗುವುದಿಲ್ಲ.";Strings.OfficeOM.L_ReadSettingsError="ಸೆಟ್ಟಿಂಗ್ಗಳ ಓದುವಿಕೆ ದೋಷ";Strings.OfficeOM.L_InvalidCoercion="ಅಮಾನ್ಯ ಒತ್ತಾಯ ಪ್ರಕಾರ";Strings.OfficeOM.L_BindingToMultipleSelection="ಹೊಂದಿಕೊಂಡಿಲ್ಲದಿರುವ ಆಯ್ಕೆಗಳು ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_CustomXmlError="ಕಸ್ಟಮ್ XML ದೋಷ.";Strings.OfficeOM.L_InvalidSetColumns="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಕಾಲಂಗಳು ಅಮಾನ್ಯವಾಗಿವೆ.";Strings.OfficeOM.L_SSOUnsupportedPlatform="ಈ ಪ್ಲಾಟ್ಫಾರ್ಮ್ನಲ್ಲಿ API ಬೆಂಬಲಿತವಾಗಿಲ್ಲ.";Strings.OfficeOM.L_NotSupportedBindingType="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಬೈಂಡಿಂಗ್ ಪ್ರಕಾರ {0} ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_DialogAlreadyOpened="ಸಕ್ರಿಯ ಸಂವಾದವನ್ನು ಈ ಆಡ್-ಇನ್ ಈಗಾಗಲೇ ಹೊಂದಿರುವುದರಿಂದ ಕಾರ್ಯಾಚರಣೆ ವಿಫಲವಾಗಿದೆ.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಬೈಂಡಿಂಗ್ ಪ್ರಕಾರವು ಪೂರೈಸಿರುವ ಹೆಸರಿಸಿದ ಐಟಂ ಜೊತೆ ಹೊಂದುವುದಿಲ್ಲ.";Strings.OfficeOM.L_NotTrustedWAC="ನಿಮ್ಮನ್ನು ಸುರಕ್ಷಿತವಾಗಿಡಲು ನೆರವಾಗಲು ಈ ಆಡ್-ಇನ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. ಆಡ್-ಇನ್ ಬಳಸುವುದನ್ನು ಮುಂದುವರಿಸಲು, ವಿಶ್ವಾಸಾರ್ಹ ಡೊಮೇನ್ ಒಂದರಲ್ಲಿ ಈ ಐಟಂ ಅನ್ನು ಹೋಸ್ಟ್ ಮಾಡಲಾಗಿದ ಎಂಬುದನ್ನು ಉರ್ಜಿತಗೊಳಿಸಿ ಅಥವಾ ಅದನ್ನು Office ಡೆಸ್ಕ್ಟಾಪ್ ಅಪ್ಲಿಕೇಶನ್ನಲ್ಲಿ ತೆರೆಯಿರಿ.";Strings.OfficeOM.L_FormatValueOutOfRange="ಮೌಲ್ಯವು ಅನುಮತಿಸಿದ ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿದೆ.";Strings.OfficeOM.L_SelectionCannotBound="ಸದ್ಯದ ಆಯ್ಕೆಗೆ ಬೈಂಡ್ ಮಾಡುವುದು ಸಾಧ್ಯವಿಲ್ಲ.";Strings.OfficeOM.L_FormattingReminder="ಫಾರ್ಮ್ಯಾಟಿಂಗ್ ರಿಮೈಂಡರ್";Strings.OfficeOM.L_ConfirmDialogConsentTitle="ಒಂದು ಕ್ಷಣ ...";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} ಹೊಸ ವಿಂಡೋ ತೋರಿಸಲು ಬಯಸುತ್ತಾರೆ.";Strings.OfficeOM.L_PermissionDenied="ಅನುಮತಿ ನಿರಾಕರಿಸಲಾಗಿದೆ";Strings.OfficeOM.L_NetworkProblemRetrieveFile="ನೆಟ್ವರ್ಕ್ ಸಮಸ್ಯೆಯು ಫೈಲ್ ಹಿಂಪಡೆಯುವಿಕೆಯನ್ನು ತಡೆದಿದೆ.";Strings.OfficeOM.L_SaveSettingsError="ಸೆಟಟ್ಟಿಂಗ್ಗಳ ಉಳಿಸುವಿಕೆ ದೋಷ";Strings.OfficeOM.L_BrowserAPINotSupported="ಈ ಬ್ರೌಸರ್ ವಿನಂತಿಸಿದ API ಅನ್ನು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ.";Strings.OfficeOM.L_DataNotMatchSelection="ಪೂರೈಸಿದ ಡೇಟಾ ಆಬ್ಜೆಕ್ಟ್ ಸದ್ಯದ ಆಯ್ಕೆಯ ಆಕಾರ ಅಥವಾ ಆಯಾಮಗಳಿಗೆ ಸರಿಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ.";Strings.OfficeOM.L_InternalError="ಆಂತರಿಕ ದೋಷ";Strings.OfficeOM.L_InvalidGetRowColumnCounts="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಅಡ್ಡಸಾಲು ಎಣಿಕೆ ಅಥವಾ ಲಂಬಸಾಲು ಎಣಿಕೆ ಮೌಲ್ಯಗಳು ಅಮಾನ್ಯವಾಗಿವೆ.";Strings.OfficeOM.L_MemoryLimit="ಮೆಮೊರಿ ಮಿತಿ ಮೀರಿದೆ";Strings.OfficeOM.L_ConfirmRefreshMessage="ಮುಂದುವರಿಯಲು, ಆಡ್-ಇನ್ ಅನ್ನು ತೆಗೆದುಹಾಕಿ ಹಾಗೂ ಮತ್ತೆ ಸೇರಿಸಿ, ಅಥವಾ ಪುಟವನ್ನು ತಾಜಾಮಾಡಿ.";Strings.OfficeOM.L_InvalidValue="ಅಮಾನ್ಯ ಮೌಲ್ಯ";Strings.OfficeOM.L_NamedItemNotFound="ಹೆಸರಿಸಿರುವ ಐಟಂ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="ನೀವು ಸಂಭಾವ್ಯ ಸೂಕ್ಷ್ಮ ಮಾಹಿತಿಯನ್ನು {0} ರಿಂದ ಕಳುಹಿಸಲು ಮತ್ತು ಸ್ವೀಕರಿಸಲು ಹೊರಟಿದ್ದೀರಿ. ಸೂಕ್ಷ್ಮ ಮಾಹಿತಿಯನ್ನು ಸ್ವೀಕರಿಸುವ ಈ ಕೆಳಗಿನ ವೆಬ್ ಸೈಟ್ ಮೇಲೆ ನಿಮಗೆ ನಂಬಿಕೆಯಿದ್ದರೆ ಮಾತ್ರ ಸರಿ ಯನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ: {1}.";Strings.OfficeOM.L_WorkbookHiddenMessage="ಕಾರ್ಯಪುಸ್ತಕವನ್ನು ಮರೆಮಾಡಲಾಗಿರುವುದರಿಂದ JavaScript API ವಿನಂತಿ ವಿಫಲವಾಗಿದೆ. ದಯವಿಟ್ಟು ಕಾರ್ಯ ಪುಸ್ತಕ ಅನ್ಹೈಡ್ ಮಾಡಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.";Strings.OfficeOM.L_OverwriteWorksheetData="ನಿಗದಿಪಡಿಸಿ ಕಾರ್ಯನಿರ್ವಹಣೆಯು ವಿಫಲವಾಗಿದೆ ಏಕೆಂದರೆ ಪೂರೈಸಿದ ಡೇಟಾ ಅಂಶವು ಓವರ್ರೈಟ್ ಆಗುವುದು ಅಥವಾ ಡೇಟಾ ಬದಲಿಸುವುದು.";Strings.OfficeOM.L_ImplicitNotLoaded="ಟೋಕನ್ ಅನ್ನು ಪಡೆಯುವುದಕ್ಕೂ ಮೊದಲು ಮಾಡ್ಯೂಲ್ ಲೋಡ್ ಆಗಿಲ್ಲ";Strings.OfficeOM.L_CoercionTypeNotSupported="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಒತ್ತಾಯದ ಪ್ರಕಾರ ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_NetworkProblem="ನೆಟ್ವರ್ಕ್ ದೋಷ";Strings.OfficeOM.L_ActivityLimitReached="ಚಟುವಟಿಕೆ ಮಿತಿಯನ್ನು ತಲುಪಿದೆ.";Strings.OfficeOM.L_CallbackNotAFunction="ಕಾಲ್ಬ್ಯಾಕ್ ಪ್ರಕಾರದ ಕಾರ್ಯವಾಗಿರಬೇಕು, {0} ನ ಪ್ರಕಾರವಾಗಿದೆ.";Strings.OfficeOM.L_PropertyDoesNotExist="ಆಬ್ಜೆಕ್ಟ್ನಲ್ಲಿ '{0}' ಗುಣ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="ನಿಮ್ಮ Office ಸೆಷನ್ ಅವಧಿ ಮೀರಿದೆ ಅಥವಾ ಅಮಾನ್ಯವಾಗಿದೆ. ಮುಂದುವರಿಯಲು, ಪುಟವನ್ನು ತಾಜಾಮಾಡಿ.";Strings.OfficeOM.L_SetDataParametersConflict="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಮಾನದಂಡಗಳು ಸಂಘರ್ಷಿಸುತ್ತವೆ.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಒತ್ತಾಯದ ಪ್ರಕಾರವು ಈ ಬೈಂಡಿಂಗ್ ಪ್ರಕಾರದೊಂದಿಗೆ ಹೊಂದುವುದಿಲ್ಲ.";Strings.OfficeOM.L_RequestTimeout="ಕರೆಯನ್ನು ನಿರ್ವಹಿಸಲು ಬಹಳ ಸಮಯ ತೆಗೆದುಕೊಂಡಿತು.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="ತಪಶೀಲು ಪಟ್ಟಿಯು ಪ್ರಸ್ತುತ ಹೋಸ್ಟ್ ಅಪ್ಲಿಕೇಶನ್ನಲ್ಲಿ ಬೆಂಬಲಿಸುವುದಿಲ್ಲ.";Strings.OfficeOM.L_ColIndexOutOfRange="ಕಾಲಂ ಸೂಚ್ಯಂಕ ಮೌಲ್ಯವು ಅನುಮತಿಸಿದ ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿರುತ್ತದೆ. ಕಾಲಂಗಳ ಸಂಖ್ಯೆಗಿಂತ ಕಡಿಮೆಯಿರುವ ಮೌಲ್ಯವೊಂದನ್ನು (0 ಅಥವಾ ಹೆಚ್ಚು) ಬಳಸಿ.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="{0} ಅಪ್ಲಿಕೇಶನ್ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ. Microsoft.Office.WebExtension.ಆರಂಭಿಸಲು(ಕಾರಣ) ಕರೆ ನೀಡಿಲ್ಲ.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="ಈ ಬೈಂಡಿಂಗ್ ಪ್ರಕಾರದಲ್ಲಿ ಕಾರ್ಯಾಚರಣೆಯು ಬೆಂಬಲ ಹೊಂದಿರುವುದಿಲ್ಲ.";Strings.OfficeOM.L_InvalidReadForBlankRow="ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಅಡ್ಡಸಾಲು ಖಾಲಿ ಇರುತ್ತದೆ.";Strings.OfficeOM.L_DialogNavigateError="ಸಂವಾದ ನ್ಯಾವಿಗೇಶನ್ ದೋಷ";Strings.OfficeOM.L_InvalidSelectionForBindingType="ಪ್ರಸ್ತುತ ವಿಭಾಗ ಮತ್ತು ಸೂಚಿತ ಬೈಂಡಿಂಗ್ ಪ್ರಕಾರದೊಂದಿಗೆ ಬೈಂಡಿಂಗ್ ರಚಿಸಲಾಗುವುದಿಲ್ಲ.";Strings.OfficeOM.L_NotSupported="ಕಾರ್ಯ {0} ವು ಬೆಂಬಲ ಹೊಂದಿಲ್ಲ.";Strings.OfficeOM.L_NoCapability="ನೀವು ಈ ಕ್ರಿಯೆಗೆ ಸಾಕಷ್ಟು ಅನುಮತಿಗಳನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ.";Strings.OfficeOM.L_RequestTokenUnavailable="ಈ API ಅನ್ನು ಕರೆ ಫ್ರಿಕ್ವನ್ಸಿ ನಿಧಾನಗೊಳಿಸಲು ಥ್ರೋಟಲ್ ಮಾಡಲಾಗಿದೆ.";Strings.OfficeOM.L_ContinueButton="ಮುಂದುವರಿಯಿರಿ";Strings.OfficeOM.L_InvalidResourceUrl="ಅಮಾನ್ಯ ಅಪ್ಲಿಕೇಶನ್ ಸಂಪನ್ಮೂಲ Url ಒದಗಿಸಲಾಗಿದೆ."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_BadSelectorString="선택기로 전달된 문자열이 지원되지 않거나 형식이 잘못되었습니다.";Strings.OfficeOM.L_InvalidResourceUrl="잘못된 응용 프로그램 리소스 URL이 제공되었습니다.";Strings.OfficeOM.L_InvalidObjectPath='개체 경로 \'{0}\'이(가) 수행하려는 작업에 대해 작동하지 않습니다. 개체를 여러 "context.sync" 호출에서 ".run" 일괄 처리의 순차적 실행을 벗어나 사용하는 경우 "context.trackedObjects.add()" 및 "context.trackedObjects.remove()" 메서드를 사용하여 개체의 수명 주기를 관리하세요.';Strings.OfficeOM.L_GetDataIsTooLarge="요청한 데이터 집합이 너무 큽니다.";Strings.OfficeOM.L_SettingNameNotExist="지정한 설정 이름이 없습니다.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="브라우저 구성";Strings.OfficeOM.L_ApiNotFoundDetails="메서드 또는 속성 {0}은(는) {1} 요구 사항 집합의 일부지만 현재 사용 중인 버전의 {2}에서는 사용할 수 없습니다.";Strings.OfficeOM.L_CannotWriteToSelection="현재 선택 항목에 쓸 수 없습니다.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="로그인 프로세스 동안 연결이 끊어졌고 사용자가 로그인되지 않았을 수 있습니다. 보안 영역과 같은 사용자 브라우저의 구성 설정 때문일 수 있습니다.";Strings.OfficeOM.L_GetDataParametersConflict="지정된 매개 변수가 충돌합니다.";Strings.OfficeOM.L_NavOutOfBound="인덱스가 범위를 벗어났기 때문에 작업에 실패했습니다.";Strings.OfficeOM.L_ElementMissing="일부 매개 변수 값이 누락되었기 때문에 표 셀의 서식을 지정할 수 없습니다. 매개 변수를 다시 확인한 후 시도하세요.";Strings.OfficeOM.L_DialogInvalidScheme="URL 스키마가 지원되지 않습니다. 대신 HTTPS를 사용하세요.";Strings.OfficeOM.L_InvalidBindingOperation="잘못된 바인딩 작업";Strings.OfficeOM.L_ConfirmCancelMessage="죄송합니다. 계속할 수 없습니다.";Strings.OfficeOM.L_UserClickIgnore="사용자가 대화 상자를 무시하도록 선택했습니다.";Strings.OfficeOM.L_GetSelectionNotSupported="현재 선택 항목은 지원되지 않습니다.";Strings.OfficeOM.L_NetworkProblem="네트워크 문제";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="응용 프로그램 {0}이(가) 없습니다. Microsoft.Office.WebExtension.initialize(이유)가 호출되지 않았습니다.";Strings.OfficeOM.L_DisplayDialogError="대화 상자 표시 오류";Strings.OfficeOM.L_MissingRequiredArguments="일부 필수 인수가 없습니다.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="항목을 선택하세요.";Strings.OfficeOM.L_AppNameNotExist="{0}에 대한 추가 기능 이름이 없습니다.";Strings.OfficeOM.L_InvalidCellsValue="하나 이상의 셀 매개 변수가 허용되지 않는 값을 갖습니다. 값을 다시 확인한 후 시도하세요.";Strings.OfficeOM.L_MissingParameter="누락된 매개 변수";Strings.OfficeOM.L_ConfirmDialogConsent="확인을 클릭하면 콘텐츠 및 개인 정보에 대한 {0} 액세스를 허용합니다. ";Strings.OfficeOM.L_UnknownBindingType="지원되지 않는 바인딩 유형입니다.";Strings.OfficeOM.L_RequestTokenUnavailable="이 API가 제한되어 호출 빈도가 느려졌습니다.";Strings.OfficeOM.L_InvalidSelectionForBindingType="현재 선택 항목과 지정한 바인딩 유형으로는 바인딩을 만들 수 없습니다.";Strings.OfficeOM.L_SliceSizeNotSupported="지정된 슬라이스 크기는 지원되지 않습니다.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="데이터가 최신 상태가 아닙니다. 개체를 다시 검색하세요.";Strings.OfficeOM.L_InvalidAPICall="잘못된 API 호출";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="속성 '{0}'의 변경 내용을 \"object.set\" 메서드를 통해 적용할 수 없습니다.";Strings.OfficeOM.L_InvalidGetStartRowColumn="지정한 startRow 또는 startColumn 값이 잘못되었습니다.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="모달 대화 상자가 열려 있는 경우에는 Office에서 쓰기 작업이 지원되지 않습니다.";Strings.OfficeOM.L_Timeout="작업이 시간 초과되었습니다.";Strings.OfficeOM.L_DocumentIsInactive="이 추가 기능이 포함된 문서가 비활성 상태이므로 작업이 실패했습니다.";Strings.OfficeOM.L_SetDataParametersConflict="지정된 매개 변수가 충돌합니다.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="선택한 콘텐츠가 표 형식이어야 합니다. 데이터를 표로 서식 지정한 후 다시 시도하세요.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl 형식은 지원되지 않습니다.";Strings.OfficeOM.L_CallbackNotAFunction="콜백이 함수 유형이어야 하는데 {0} 유형입니다.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Excel.Script.CustomFunctions에서 함수의 정의를 나타내는 이 이름을 가진 속성에는 함수를 구현하는 '호출' 속성이 포함되어야 합니다.";Strings.OfficeOM.L_InvalidBindingError="잘못된 바인딩 오류";Strings.OfficeOM.L_SettingsStaleError="설정 기한 경과 오류";Strings.OfficeOM.L_NetworkProblemRetrieveFile="네트워크 문제로 인해 파일을 검색하지 못했습니다.";Strings.OfficeOM.L_InvalidArgument="'{0}' 인수는 이 상황에서 작동하지 않거나 없거나 올바른 형식이 아닙니다.";Strings.OfficeOM.L_IndexOutOfRange="인덱스가 범위를 벗어났습니다.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="추가 기능에서 이미 액세스 토큰을 요청하고 있습니다.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0}에서 새 창을 표시하려고 합니다.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="지정한 바인딩 유형이 제공된 명명된 항목과 호환되지 않습니다.";Strings.OfficeOM.L_FileTypeNotSupported="지정한 파일 형식이 지원되지 않습니다.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="참고: 서식 API 호출에서 설정된 서식 집합은 100 미만인 것이 좋습니다.";Strings.OfficeOM.L_InvalidGetColumns="지정된 열이 올바르지 않습니다.";Strings.OfficeOM.L_OperationCancelledErrorMessage="사용자가 작업을 취소했습니다.";Strings.OfficeOM.L_FormatValueOutOfRange="값이 허용되는 범위를 벗어났습니다.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="허용";Strings.OfficeOM.L_DataNotMatchSelection="제공된 데이터 개체와 현재 선택 항목의 모양 또는 크기가 호환되지 않습니다.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="이 바인딩 유형에서는 작업이 지원되지 않습니다.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="이 추가 기능에서 이 범주의 사용자 동의를 지원하지 않으므로 작업이 실패했습니다.";Strings.OfficeOM.L_InvalidSetStartRowColumn="지정한 startRow 또는 startColumn 값이 잘못되었습니다.";Strings.OfficeOM.L_OverwriteWorksheetData="해당 작업을 수행하면 제공된 데이터 개체가 데이터를 덮어쓰거나 바꾸게 되므로 설정된 작업에 실패했습니다.";Strings.OfficeOM.L_PropertyDoesNotExist="속성 '{0}'이(가) 개체에 존재하지 않습니다.";Strings.OfficeOM.L_SettingsCannotSave="설정을 저장할 수 없습니다.";Strings.OfficeOM.L_FunctionCallFailed="함수 {0} 호출이 실패했습니다. 오류 코드: {1}.";Strings.OfficeOM.L_NoCapability="이 작업에 대해 충분한 권한이 없습니다.";Strings.OfficeOM.L_CustomXmlError="사용자 지정 XML 오류입니다.";Strings.OfficeOM.L_InvalidOrTimedOutSession="유효하지 않거나 시간 초과된 세션";Strings.OfficeOM.L_ShuttingDown="서버의 데이터가 최신 상태가 아니므로 작업에 실패했습니다.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="지정한 rowCount 또는 columnCount 값이 잘못되었습니다.";Strings.OfficeOM.L_PropertyNotLoaded="'{0}' 속성을 사용할 수 없습니다. 속성 값을 읽기 전에 포함하는 개체의 load 메서드를 호출하고 연관된 요청 컨텍스트에서 \"context.sync()\"를 호출하세요.";Strings.OfficeOM.L_WorkbookHiddenMessage="통합 문서가 숨김으로 설정되어 있어서 JavaScript API 요청에 실패했습니다. 통합 문서를 숨김 해제하고 다시 시도하세요.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="함수 이름에는 문자, 숫자, 밑줄 및 마침표만 포함될 수 있습니다.";Strings.OfficeOM.L_UnsupportedEnumeration="지원되지 않는 열거형";Strings.OfficeOM.L_InvalidApiCallInContext="현재 컨텍스트에 잘못된 API 호출이 있습니다.";Strings.OfficeOM.L_SSOClientErrorMessage="클라이언트에서 예기치 않은 오류가 발생했습니다.";Strings.OfficeOM.L_OperationNotSupported="지원하지 않는 작업입니다.";Strings.OfficeOM.L_DocumentReadOnly="현재 문서 모드에서 요청한 작업이 허용되지 않습니다.";Strings.OfficeOM.L_ConnectionFailureWithStatus="요청이 실패했으며 상태 코드는 {0}입니다.";Strings.OfficeOM.L_OKButton="확인";Strings.OfficeOM.L_InvalidDataFormat="지정한 데이터 개체의 형식이 잘못되었습니다.";Strings.OfficeOM.L_MultipleNamedItemFound="같은 이름을 가진 개체가 여러 개 발견되었습니다.";Strings.OfficeOM.L_NotSupported="함수 {0}은(는) 지원되지 않습니다.";Strings.OfficeOM.L_CustomXmlOutOfDateName="데이터가 최신 상태가 아님";Strings.OfficeOM.L_BindingNotExist="지정한 바인딩이 없습니다.";Strings.OfficeOM.L_InvalidArgumentGeneric="함수에 전달된 인수가 이 상황에서 작동하지 않거나 누락되었거나 올바른 형식이 아닙니다.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="현재 선택 항목이 지정한 강제 변환 유형과 호환되지 않습니다.";Strings.OfficeOM.L_DialogNavigateError="탐색 오류 대화 상자";Strings.OfficeOM.L_NamedItemNotFound="명명된 항목이 없습니다.";Strings.OfficeOM.L_InvalidRequestContext="다른 요청 컨텍스트에서 개체를 사용할 수 없습니다.";Strings.OfficeOM.L_ConfirmDialog="도메인 {0} Microsoft Office 동작하며 개인 데이터에 액세스할 수 있는 Office 추가 기능을 실행할 수 있습니다. 도메인이 Office 실행되고 데이터에 액세스하는 것을 신뢰하는 경우 [확인]을 클릭하여 계속하십시오.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="지정한 강제 변환 유형은 이 바인딩 유형과 호환되지 않습니다.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP 프로토콜이 지원되지 않습니다. 대신 HTTPS를 사용하세요.";Strings.OfficeOM.L_CoercionTypeNotSupported="지정한 강제 변환 유형은 지원되지 않습니다.";Strings.OfficeOM.L_CannotNavigateTo="개체가 탐색을 지원하지 않는 위치에 있습니다.";Strings.OfficeOM.L_InvalidResourceUrlMessage="매니페스트에 잘못된 리소스 URL이 지정되었습니다.";Strings.OfficeOM.L_PermissionDenied="사용 권한 거부됨";Strings.OfficeOM.L_SSOUnsupportedPlatform="이 플랫폼에서 API가 지원되지 않습니다.";Strings.OfficeOM.L_UserAborted="사용자가 동의 요청을 취소했습니다.";Strings.OfficeOM.L_UnsupportedUserIdentity="사용자 ID 유형이 지원되지 않습니다.";Strings.OfficeOM.L_InvalidGetRows="지정된 행이 올바르지 않습니다.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="테이블에 병합된 셀이 포함되어 있으면 좌표 매개 변수를 강제 변환 유형 테이블과 함께 사용할 수 없습니다.";Strings.OfficeOM.L_InvalidFormat="잘못된 형식 오류";Strings.OfficeOM.L_BindingToMultipleSelection="연속되지 않은 항목을 선택할 수 없습니다.";Strings.OfficeOM.L_DataNotMatchBindingType="지정한 데이터 개체는 바인딩 유형과 호환되지 않습니다.";Strings.OfficeOM.L_EventRegistrationError="이벤트 등록 오류";Strings.OfficeOM.L_DataStale="최신 상태가 아닌 데이터";Strings.OfficeOM.L_ColIndexOutOfRange="열 인덱스 값이 허용되는 범위를 벗어납니다. 열 수보다 작은 값(0 이상)을 사용하세요.";Strings.OfficeOM.L_ModalDialogOpeng="이 추가 기능에 이미 활성 모달 대화 상자가 있으므로 작업이 실패했습니다.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="테이블에 병합된 셀이 포함되어 있으면 좌표 매개 변수를 강제 변환 유형 테이블과 함께 사용할 수 없습니다.";Strings.OfficeOM.L_SSOClientError="Office의 인증 요청에서 오류가 발생했습니다.";Strings.OfficeOM.L_NotTrustedWAC="안전하게 보호하기 위해 이 추가 기능을 사용할 수 없도록 설정했습니다. 추가 기능을 계속 사용하려면 이 항목이 신뢰할 수 있는 도메인에서 호스트되었는지 확인하거나 Office 데스크톱 앱에서 여세요.";Strings.OfficeOM.L_OutOfRange="범위를 벗어남";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="함수 이름에는 비어 있지 않은 네임스페이스와 비어 있지 않은 짧은 이름이 포함되어야 합니다.";Strings.OfficeOM.L_DialogAddressNotTrusted="URL의 도메인은 매니페스트의 AppDomains 요소에 포함되지 않으며 원본 위치의 하위 도메인이 아닙니다.";Strings.OfficeOM.L_RedundantCallbackSpecification="인수 목록과 선택적 개체 모두에 콜백을 지정할 수는 없습니다.";Strings.OfficeOM.L_RowIndexOutOfRange="행 인덱스 값이 허용되는 범위를 벗어납니다. 행 수보다 작은 값(0 이상)을 사용하세요.";Strings.OfficeOM.L_InvalidColumnsForBinding="지정된 열이 올바르지 않습니다.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="이 추가 기능은 사용자 동의를 지원하지 않습니다.";Strings.OfficeOM.L_DataNotMatchBindingSize="제공된 데이터 개체가 현재 선택 항목의 크기에 맞지 않습니다.";Strings.OfficeOM.L_SetDataIsTooLarge="지정한 데이터 개체가 너무 큽니다.";Strings.OfficeOM.L_ContinueButton="계속";Strings.OfficeOM.L_InvalidReadForBlankRow="지정된 행이 비어 있습니다.";Strings.OfficeOM.L_BrowserAPINotSupported="이 브라우저는 요청된 API를 지원하지 않습니다.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="브라우저 제한으로 인해 대화 상자를 만들지 못했습니다. 대화 상자의 도메인과 추가 기능 호스트의 도메인이 동일한 보안 영역에 있지 않습니다.";Strings.OfficeOM.L_InValidOptionalArgument="잘못된 선택적 인수입니다.";Strings.OfficeOM.L_DataReadError="데이터 읽기 오류";Strings.OfficeOM.L_TooManyArguments="인수가 너무 많습니다.";Strings.OfficeOM.L_CancelButton="취소";Strings.OfficeOM.L_ImplicitNotLoaded="토큰을 취득하기 전에 모듈이 로드되지 않음";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel 셀 편집 모드입니다. <Enter> 또는 <Tab> 키를 누르거나 다른 셀을 선택하여 편집 모드를 종료한 다음 다시 시도하세요.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="인증 컨텍스트를 가져오는 함수 누락";Strings.OfficeOM.L_SelectionCannotBound="현재 선택 항목에 바인딩할 수 없습니다.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="입력 인수가 잘못되었습니다.";Strings.OfficeOM.L_InvalidCoercion="잘못된 강제 전환 유형";Strings.OfficeOM.L_TooManyIncompleteRequests="이전 호출이 완료될 때까지 기다립니다.";Strings.OfficeOM.L_DialogOK="확인";Strings.OfficeOM.L_UserNotSignedIn="Office에 로그인한 사용자가 없습니다.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="사용자의 ID 유형이 지원되지 않습니다.";Strings.OfficeOM.L_OperationCancelledError="작업이 취소되었습니다.";Strings.OfficeOM.L_UserAbortedMessage="사용자가 추가 기능 권한을 동의하지 않았습니다.";Strings.OfficeOM.L_InternalErrorDescription="내부 오류가 발생했습니다.";Strings.OfficeOM.L_InvalidBinding="잘못된 바인딩";Strings.OfficeOM.L_MemoryLimit="메모리 한도 초과";Strings.OfficeOM.L_NotSupportedBindingType="지정한 바인딩 유형 {0}이(가) 지원되지 않습니다.";Strings.OfficeOM.L_InvalidSetRows="지정된 행이 올바르지 않습니다.";Strings.OfficeOM.L_EventHandlerAdditionFailed="이벤트 처리기를 추가하지 못했습니다.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="참고: 테이블의 셀 수는 20,000셀 미만인 것이 좋습니다.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="이 추가 기능에서 이미 액세스 토큰을 요청하고 있기 때문에 작업이 실패했습니다.";Strings.OfficeOM.L_DialogAlreadyOpened="이 추가 기능에 활성 대화 상자가 이미 있기 때문에 작업을 수행하지 못했습니다.";Strings.OfficeOM.L_EventHandlerNotExist="이 바인딩에서 지정된 이벤트 처리기가 발견되지 않았습니다.";Strings.OfficeOM.L_ActivityLimitReached="작업 제한에 도달했습니다.";Strings.OfficeOM.L_EventHandlerRemovalFailed="이벤트 처리기를 제거하지 못했습니다.";Strings.OfficeOM.L_NotSupportedEventType="지정한 이벤트 종류 {0}이(가) 지원되지 않습니다.";Strings.OfficeOM.L_ConfirmRefreshMessage="계속하려면 추가 기능을 제거하고 다시 추가하거나 페이지를 새로 고치세요.";Strings.OfficeOM.L_APICallFailed="API 호출 실패";Strings.OfficeOM.L_SSOServerError="인증 공급자에서 오류가 발생했습니다.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage="요청 페이로드 크기가 제한을 초과했습니다. 설명서(https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins)를 참조하세요.";Strings.OfficeOM.L_CustomXmlNodeNotFound="지정한 노드를 찾을 수 없습니다.";Strings.OfficeOM.L_SaveSettingsError="설정 저장 오류";Strings.OfficeOM.L_UnsupportedDataObject="제공된 데이터 개체 유형은 지원되지 않습니다.";Strings.OfficeOM.L_InvalidValue="잘못된 값";Strings.OfficeOM.L_DataWriteReminder="데이터 쓰기 알림";Strings.OfficeOM.L_InitializeNotReady="Office.js가 완전히 로드되지 않았습니다. 나중에 다시 시도하거나 Office.initialize 함수에 초기화 코드를 추가하세요.";Strings.OfficeOM.L_TooManyOptionalObjects="매개 변수 목록에 선택적 개체가 여러 개 있습니다.";Strings.OfficeOM.L_DataWriteError="데이터 쓰기 오류";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="읽기 전용 속성 '{0}'을(를) 설정하려고 시도하는 중입니다.";Strings.OfficeOM.L_NotImplemented="함수 {0}이(가) 구현되지 않았습니다.";Strings.OfficeOM.L_InvalidSetColumns="지정된 열이 올바르지 않습니다.";Strings.OfficeOM.L_ReadSettingsError="읽기 설정 오류";Strings.OfficeOM.L_SettingsAreStale="설정이 최신 상태가 아니므로 저장할 수 없습니다.";Strings.OfficeOM.L_RunMustReturnPromise='".run" 메서드에 전달된 일괄 처리 함수가 프라미스를 반환하지 않았습니다. 함수에서 프라미스를 반환해야만 일괄 처리 작업 완료 시 자동으로 추적되는 개체가 해제될 수 있습니다. 일반적으로 "context.sync()"의 응답을 반환하여 프라미스를 반환합니다.';Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath는 선택 영역을 1,024개 항목으로 제한합니다.";Strings.OfficeOM.L_InvalidSSOAddinMessage="이 추가 기능에 대해 ID API가 지원되지 않습니다.";Strings.OfficeOM.L_SpecifiedIdNotExist="지정된 ID가 없습니다.";Strings.OfficeOM.L_InvalidGrant="사전 인증이 없습니다.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="다른 항목을 검색하려면 먼저 현재 파일에서 closeAsync를 호출합니다.";Strings.OfficeOM.L_InvalidNode="잘못된 노드";Strings.OfficeOM.L_SSOConnectionLostError="로그인 프로세스 동안 연결이 끊어졌습니다.";Strings.OfficeOM.L_InvalidFormatValue="하나 이상의 서식 매개 변수가 허용되지 않는 값을 갖습니다. 값을 다시 확인한 후 시도하세요.";Strings.OfficeOM.L_InvalidTableOptionValue="하나 이상의 tableOptions 매개 변수가 허용되지 않는 값을 갖습니다. 값을 다시 확인한 후 시도하세요.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="함수의 정의를 나타내는 이 이름의 속성이 Excel.Script.CustomFunctions에 있어야 합니다.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Office 세션이 만료되었거나 유효하지 않습니다. 계속하려면 페이지를 새로 고치세요.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage="응답 페이로드 크기가 제한을 초과했습니다. 설명서(https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins)를 참조하세요.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="무시";Strings.OfficeOM.L_InvalidGrantMessage="이 추가 기능에 대한 권한이 누락되었습니다.";Strings.OfficeOM.L_FormattingReminder="서식 알림";Strings.OfficeOM.L_CannotRegisterEvent="이벤트 처리기를 등록할 수 없습니다.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="선택 영역 제한 도달";Strings.OfficeOM.L_SSOServerErrorMessage="서버에서 예기치 않은 오류가 발생했습니다.";Strings.OfficeOM.L_ValueNotLoaded='결과 개체의 값이 아직 로드되지 않았습니다. 값 속성을 읽기 전에 연관된 요청 컨텍스트에서 "context.sync()"를 호출하세요.';Strings.OfficeOM.L_InvalidParameters="함수 {0}에 잘못된 매개 변수가 있습니다.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="잠시 기다려 주세요 ...";Strings.OfficeOM.L_DataNotMatchCoercionType="지정한 데이터 개체의 유형은 현재 선택 항목과 호환되지 않습니다.";Strings.OfficeOM.L_DialogParentIsMinimized="부모 창이 최소화되어 작업이 실패했습니다.";Strings.OfficeOM.L_TooManyOptionalFunction="매개 변수 목록에 선택적 함수가 여러 개 있습니다.";Strings.OfficeOM.L_BindingCreationError="바인딩 만들기 오류";Strings.OfficeOM.L_RequestTimeout="호출을 실행하는 데 너무 많은 시간이 소요되었습니다.";Strings.OfficeOM.L_InvalidDataObject="잘못된 데이터 개체";Strings.OfficeOM.L_APINotSupported="API 지원되지 않음";Strings.OfficeOM.L_UnsupportedEnumerationMessage="열거형은 현재 호스트 응용 프로그램에서 지원되지 않습니다.";Strings.OfficeOM.L_NewWindowCrossZone="브라우저의 보안 설정으로 인해 대화 상자를 만들 수 없습니다. 다른 브라우저를 시도하거나, 주소 표시줄에 표시된 도메인과 '{1}'이(가) 동일한 보안 영역에 있도록 {0}을(를) 수행하세요.";Strings.OfficeOM.L_ConnectionFailureWithDetails="요청이 실패했으며 상태 코드는 {0}, 오류 코드는 {1}, 오류 메시지는 {2}입니다.";Strings.OfficeOM.L_NoHttpsWAC="이 Office 세션에서 보안 연결을 사용 하 고 있지 않습니다. 추가 예방 조치를 취하는 것이 좋습니다.";Strings.OfficeOM.L_HostError="호스트 오류";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="{0} 중요한 정보를 보내고 받습니다. 중요한 정보를 받는 다음 웹 사이트를 신뢰하는 경우에만 [확인]을 클릭하십시오. {1}.";Strings.OfficeOM.L_InternalError="내부 오류"
|