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_InvalidBindingOperation="Operació de vinculació no vàlida";Strings.OfficeOM.L_SetDataParametersConflict="Els paràmetres especificats estan en conflicte.";Strings.OfficeOM.L_OperationCancelledErrorMessage="L'usuari ha cancel·lat l'operació.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} vol mostrar una finestra nova.";Strings.OfficeOM.L_InvalidValue="Valor no vàlid";Strings.OfficeOM.L_UnsupportedUserIdentity="El tipus d'identitat d'usuari no s'admet.";Strings.OfficeOM.L_InternalErrorDescription="S'ha produït un error intern.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Permet";Strings.OfficeOM.L_IndexOutOfRange="Índex fora de l'Interval.";Strings.OfficeOM.L_BadSelectorString="La cadena passada al selector no està ben formatada o no s'admet.";Strings.OfficeOM.L_APINotSupported="API no admesa";Strings.OfficeOM.L_ElementMissing="No hem pogut formatar la cel·la de la taula perquè falten alguns valors dels paràmetres. Comproveu-los i torneu-ho a provar.";Strings.OfficeOM.L_SSOClientError="S'ha produït un error a la sol·licitud d'autenticació de l'Office.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Les dades no són actuals";Strings.OfficeOM.L_DataNotMatchBindingType="L'objecte de dades especificat no és compatible amb el tipus de vinculació.";Strings.OfficeOM.L_TooManyIncompleteRequests="Espereu fins que es completi la trucada anterior.";Strings.OfficeOM.L_SettingsStaleError="Error de configuració obsoleta";Strings.OfficeOM.L_InvalidApiCallInContext="Crida d'API no vàlida en el context actual.";Strings.OfficeOM.L_DataNotMatchSelection="L'objecte de dades subministrat no és compatible amb la forma o les dimensions de la selecció actual.";Strings.OfficeOM.L_NavOutOfBound="L'operació ha fallat perquè l'índex està fora de l'interval.";Strings.OfficeOM.L_InvalidObjectPath='La ruta de l\'objecte "{0}" no s\'admet per a l\'acció que esteu provat de realitzar. Si esteu utilitzant l\'objecte en diverses crides de "context.sync" i fora de l\'execució seqüencial d\'un lot de ".run", utilitzeu els mètodes "context.trackedObjects.add()" i "context.trackedObjects.remove()" per administrar el cicle de vida de l\'objecte.';Strings.OfficeOM.L_CannotWriteToSelection="No es pot escriure a la selecció actual.";Strings.OfficeOM.L_SSOConnectionLostError="S'ha perdut una connexió durant el procés d'inici de la sessió.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Els paràmetres de coordenades no es poden fer servir amb el tipus de coerció Taula quan aquesta conté cel·les combinades.";Strings.OfficeOM.L_SpecifiedIdNotExist="L'identificador especificat no existeix.";Strings.OfficeOM.L_NotSupportedBindingType="El tipus de vinculació {0} especificat no s'admet.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="El contingut seleccionat ha d'estar en format de taula. Canvieu el format de les dades a taula i torneu-ho a provar.";Strings.OfficeOM.L_RequestTimeout="S'ha trigat massa temps a executar la trucada.";Strings.OfficeOM.L_InternalError="Error intern";Strings.OfficeOM.L_InvalidFormatValue="Hi ha un o més paràmetres de format que tenen valors no permesos. Comproveu-los i torneu-ho a provar.";Strings.OfficeOM.L_UnsupportedDataObject="El tipus d'objecte de dades subministrat no s'admet.";Strings.OfficeOM.L_InvalidSetColumns="Les columnes especificades no són vàlides.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configureu el vostre navegador";Strings.OfficeOM.L_CustomXmlNodeNotFound="No s'ha trobat el node especificat.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Un moment...";Strings.OfficeOM.L_NamedItemNotFound="L'element amb nom no existeix.";Strings.OfficeOM.L_UserAbortedMessage="L'usuari no ha acceptat els permisos del complement.";Strings.OfficeOM.L_SSOServerError="S'ha produït un error al proveïdor d'autenticació.";Strings.OfficeOM.L_CustomXmlError="Error d'XML personalitzat.";Strings.OfficeOM.L_RedundantCallbackSpecification="La trucada no es pot especificar alhora a la llista d'arguments i a l'objecte opcional.";Strings.OfficeOM.L_GetDataParametersConflict="Els paràmetres especificats estan en conflicte.";Strings.OfficeOM.L_HostError="Error d'amfitrió";Strings.OfficeOM.L_SliceSizeNotSupported="No s'admet la mida del sector especificat.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Els arguments d'entrada no són vàlids.";Strings.OfficeOM.L_ValueNotLoaded="El valor de l'objecte resultant encara no s'ha calculat. Abans de llegir la propietat del valor, feu una crida a \"context.sync()\" al context de sol·licitud associat.";Strings.OfficeOM.L_ShuttingDown="L'operació ha fallat perquè actualment les dades no estan al servidor.";Strings.OfficeOM.L_InitializeNotReady="Office.js encara no s'ha carregat completament. Torneu-ho a provar més tard o assegureu-vos d'afegir el vostre codi d'inicialització a la funció Office.initialize.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Cal que una propietat amb aquest nom que representi la definició de la funció existeixi a Excel.Script.CustomFunctions.";Strings.OfficeOM.L_RequestTokenUnavailable="S'ha limitat aquesta API per alentir la freqüència de les trucades.";Strings.OfficeOM.L_APICallFailed="Ha fallat la trucada de l'API";Strings.OfficeOM.L_PermissionDenied="Permís denegat";Strings.OfficeOM.L_ReadSettingsError="Error de configuració de lectura";Strings.OfficeOM.L_InvalidReadForBlankRow="La fila especificada és buida.";Strings.OfficeOM.L_NoCapability="No teniu els permisos suficients per a aquesta acció.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="El tipus de vinculació especificat no és compatible amb l'element amb nom subministrat.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Les dades no estan actualitzades. Torneu a recuperar l'objecte.";Strings.OfficeOM.L_SetDataIsTooLarge="L'objecte de dades especificat és massa gran.";Strings.OfficeOM.L_CannotNavigateTo="L'objecte es troba situat a un lloc on no s'admet la navegació.";Strings.OfficeOM.L_CancelButton="Cancel·la";Strings.OfficeOM.L_DialogAlreadyOpened="Ha fallat l'operació perquè aquest complement ja té un diàleg actiu.";Strings.OfficeOM.L_InvalidGrant="Falta una autorització prèvia.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="L'XPath limita la selecció a 1024 elements.";Strings.OfficeOM.L_NotTrustedWAC="Aquest complement s'ha inhabilitat perquè us ajudi a protegir-vos. Per continuar utilitzant el complement, valideu si aquest element està allotjat en un domini de confiança o obriu-lo a l'aplicació d'escriptori de l'Office.";Strings.OfficeOM.L_DisplayDialogError="Error de visualització del diàleg";Strings.OfficeOM.L_ApiNotFoundDetails="El mètode o propietat {0} forma part del conjunt de requisits {1}, que no està disponible a la vostra versió de l'aplicació {2}.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Amb la selecció actual i el tipus de vinculació especificat no es pot crear una vinculació.";Strings.OfficeOM.L_CustomFunctionImplementationMissing='Cal que la propietat d\'Excel.Script.CustomFunctions amb aquest nom que representi la definició de la funció contingui una propietat "crida" que implementi la funció.';Strings.OfficeOM.L_SSOClientErrorMessage="S'ha produït un error inesperat al client.";Strings.OfficeOM.L_TooManyArguments="massa arguments";Strings.OfficeOM.L_InvalidArgument="L'argument \"{0}\" no s'admet en aquesta situació, falta o bé té un format incorrecte.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="L'operació ha fallat perquè aquest complement ja està demanant un testimoni d'accés.";Strings.OfficeOM.L_UserNotSignedIn="No hi ha cap usuari amb la sessió iniciada a l'Office.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='La mida de la càrrega de la resposta ha superat el límit. Consulteu la documentació: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_SettingsCannotSave="No s'ha pogut desar la configuració.";Strings.OfficeOM.L_ColIndexOutOfRange="El valor de l'índex de columnes està fora de l'interval permès. Feu servir un valor (0 o superior) inferior al nombre de columnes.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Aquest tipus de vinculació no admet aquesta operació.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="L'aplicació {0} no existeix. Microsoft.Office.WebExtension.initialize(reason) no s'ha cridat.";Strings.OfficeOM.L_RowIndexOutOfRange="El valor de l'índex de files està fora de l'interval permès. Feu servir un valor (0 o superior) que sigui inferior al nombre de files.";Strings.OfficeOM.L_InvalidDataObject="Objecte de dades no vàlid";Strings.OfficeOM.L_DialogAddressNotTrusted="El domini de l'URL no està inclòs en l'element disponibles en el manifest i no és el subdomini d'ubicació d'origen.";Strings.OfficeOM.L_UserClickIgnore="L'usuari ha decidit ignorar el quadre de diàleg.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Els paràmetres de coordenades no es poden fer servir amb el tipus de coerció Taula quan aquesta conté cel·les combinades.";Strings.OfficeOM.L_ActivityLimitReached="S'ha assolit el límit d'activitat.";Strings.OfficeOM.L_ContinueButton="Continua";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='La mida de la càrrega de la sol·licitud ha superat el límit. Consulteu la documentació: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Feu una selecció.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="No s'admet l'operació d'escriptura per a l'Office quan hi ha un quadre de diàleg modal obert.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignora";Strings.OfficeOM.L_DataReadError="Error de lectura de dades";Strings.OfficeOM.L_CannotRegisterEvent="El controlador d'incidències no es pot registrar.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod='Els canvis en la propietat "{0}" no es poden aplicar mitjançant un mètode "object.set".';Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Esteu a punt d'enviar i rebre informació potencialment confidencial de {0}. Feu clic a d'acord només si confieu en el lloc web següent que rep la informació confidencial: {1}.";Strings.OfficeOM.L_MemoryLimit="S'ha superat el límit de memòria";Strings.OfficeOM.L_InvalidGetRows="Les files especificades no són vàlides.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="El nom de la funció només pot contenir lletres, dígits, guions baixos i punts.";Strings.OfficeOM.L_DialogOK="D'acord";Strings.OfficeOM.L_WorkbookHiddenMessage="La sol·licitud de l'API de JavaScript ha fallat perquè el llibre de treball estava amagat. Mostreu-lo i torneu-ho a provar.";Strings.OfficeOM.L_NewWindowCrossZone='La configuració de seguretat del vostre navegador no ens permet crear un quadre de diàleg. Proveu-ho amb un altre navegador o bé {0}, de manera que "{1}" i el domini que es mostra a la vostra barra d\'adreces siguin a la mateixa zona de seguretat.';Strings.OfficeOM.L_InvalidGetStartRowColumn="Els valors startRow o startColumn especificats no són vàlids.";Strings.OfficeOM.L_AppNameNotExist="El nom del complement relatiu a {0} no existeix.";Strings.OfficeOM.L_OsfControlTypeNotSupported="No s'admet el tipus OsfControl.";Strings.OfficeOM.L_ImplicitNotLoaded="El mòdul no es carrega abans d'adquirir un testimoni";Strings.OfficeOM.L_GetDataIsTooLarge="El conjunt de dades sol·licitat és massa gran.";Strings.OfficeOM.L_EventHandlerRemovalFailed="No s'ha pogut eliminar el controlador d'incidències.";Strings.OfficeOM.L_DialogRequireHTTPS="El protocol HTTP no és compatible. Utilitzeu el protocol HTTPS.";Strings.OfficeOM.L_ConnectionFailureWithDetails="Hi ha hagut un error en processar la sol·licitud. Codi d'estat: {0}; codi d'error: {1}; missatge d'error: {2}.";Strings.OfficeOM.L_InvalidRequestContext="No es pot utilitzar l'objecte en contextos de sol·licitud diferents.";Strings.OfficeOM.L_InvalidGrantMessage="Falta una concessió per a aquest complement.";Strings.OfficeOM.L_NoHttpsWAC="Aquesta sessió de l'Office no està fent servir una connexió segura. Us recomanem que preneu precaucions addicionals.";Strings.OfficeOM.L_DocumentReadOnly="L'operació sol·licitada no és permesa en el mode de document actual.";Strings.OfficeOM.L_ConnectionFailureWithStatus="La sol·licitud no s'ha pogut completar. Codi d'estat: {0}.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="S'ha perdut una connexió durant el procés d'inici de la sessió i és possible que l'usuari no la pugui iniciar. Això probablement ha estat a causa dels valors de configuració del navegador de l'usuari, com ara les zones de seguretat.";Strings.OfficeOM.L_ModalDialogOpeng="L'operació ha fallat perquè aquest complement ja té un diàleg modal actiu.";Strings.OfficeOM.L_ConfirmDialog="El domini {0} actua com a Microsoft Office i pot executar complements Office, que poden accedir a les vostres dades personals. Si confieu en el domini que s'executarà com a Office accedir a les vostres dades, feu clic a D'acord per continuar.";Strings.OfficeOM.L_ConfirmCancelMessage="Ho sentim, no podem continuar.";Strings.OfficeOM.L_InvalidArgumentGeneric="Els arguments que s'han passat a la funció no funcionen per a aquesta situació, no hi són o no tenen el format correcte.";Strings.OfficeOM.L_CoercionTypeNotSupported="El tipus de coerció especificat no s'admet.";Strings.OfficeOM.L_DataWriteReminder="Recordatori d'escriptura de dades";Strings.OfficeOM.L_RunMustReturnPromise='La funció per lots passada al mètode ".run" no ha retornat cap promesa. Normalment, la funció ha de retornar una promesa, de manera que qualsevol objecte rastrejat automàticament es pot alliberar quan es completa el lot. Es pot retornar una promesa retornant la resposta de "context.sync()".';Strings.OfficeOM.L_InvalidBinding="Vinculació no vàlida";Strings.OfficeOM.L_SettingNameNotExist="El nom del paràmetre especificat no existeix.";Strings.OfficeOM.L_OverwriteWorksheetData="L'operació designada ha fallat perquè l'objecte de dades subministrat sobreescriurà o canviarà dades.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Un problema de xarxa ha impedit la recuperació del fitxer.";Strings.OfficeOM.L_UnsupportedEnumeration="Enumeració no admesa";Strings.OfficeOM.L_TooManyOptionalFunction="múltiples funcions opcionals a la llista de paràmetres";Strings.OfficeOM.L_InvalidSetRows="Les files especificades no són vàlides.";Strings.OfficeOM.L_SSOServerErrorMessage="S'ha produït un error inesperat al servidor.";Strings.OfficeOM.L_UnknownBindingType="Aquest tipus de vinculació no s'admet.";Strings.OfficeOM.L_EventHandlerAdditionFailed="No s'ha pogut afegir el controlador d'incidències.";Strings.OfficeOM.L_OperationCancelledError="Operació cancel·lada";Strings.OfficeOM.L_InvalidResourceUrl="Heu proporcionat una adreça URL de recurs d'aplicació que no és vàlida.";Strings.OfficeOM.L_InvalidAPICall="Crida d'API no vàlida";Strings.OfficeOM.L_NotSupported="No s'admet la funció {0}.";Strings.OfficeOM.L_BrowserAPINotSupported="Aquest navegador no admet l'API sol·licitada.";Strings.OfficeOM.L_OKButton="D'acord";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="El nom de la funció ha de contenir un espai de nom i un nom curt no buits.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="La selecció actual no és compatible amb el tipus de coerció especificat.";Strings.OfficeOM.L_UserAborted="L'usuari ha cancel·lat la sol·licitud de consentiment.";Strings.OfficeOM.L_SSOUnsupportedPlatform="L'API no s'admet en aquesta plataforma.";Strings.OfficeOM.L_NotImplemented="La funció {0} no està implementada.";Strings.OfficeOM.L_OperationNotSupported="Aquesta operació no és permesa.";Strings.OfficeOM.L_SelectionCannotBound="No es pot enllaçar amb la selecció actual.";Strings.OfficeOM.L_InvalidTableOptionValue="Hi ha un o més paràmetres de la taula Opcions que tenen valors no permesos. Comproveu-los i torneu-ho a provar.";Strings.OfficeOM.L_OutOfRange="Fora de l'interval";Strings.OfficeOM.L_InvalidSSOAddinMessage="L'API d'identitat no és compatible amb aquest complement.";Strings.OfficeOM.L_TooManyOptionalObjects="múltiples objectes opcionals a la llista de paràmetres";Strings.OfficeOM.L_CallbackNotAFunction="La resposta ha de ser de la funció tipus i era del tipus {0}.";Strings.OfficeOM.L_FormattingReminder="Recordatori de format";Strings.OfficeOM.L_InvalidSetStartRowColumn="Els valors startRow o startColumn especificats no són vàlids.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Truca closeAsync en el fitxer actual abans de recuperar un altre.";Strings.OfficeOM.L_BindingNotExist="La vinculació especificada no existeix.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Les restriccions del navegador han evitat que es creï el quadre de diàleg. El domini del quadre de diàleg i el de l'amfitrió del complement no són a la mateixa zona de seguretat.";Strings.OfficeOM.L_InvalidDataFormat="El format de l'objecte de dades especificat no és vàlid.";Strings.OfficeOM.L_PropertyDoesNotExist='La propietat "{0}" no existeix a l\'objecte.';Strings.OfficeOM.L_BindingCreationError="Error de creació de vinculació";Strings.OfficeOM.L_DataNotMatchCoercionType="El tipus de l'objecte de dades especificat no és compatible amb la selecció actual.";Strings.OfficeOM.L_ConfirmRefreshMessage="Per continuar, suprimiu el complement i torneu-lo a afegir o actualitzeu la pàgina.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Nota: se suggereix que el nombre de cel·les d'una taula sigui inferior a 20.000.";Strings.OfficeOM.L_GetSelectionNotSupported="La selecció actual no s'admet.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="L'aplicació amfitriona actual no admet l'enumeració.";Strings.OfficeOM.L_DialogNavigateError="Error de navegació per diàleg";Strings.OfficeOM.L_InvalidColumnsForBinding="Les columnes especificades no són vàlides.";Strings.OfficeOM.L_InvalidBindingError="Error de vinculació no vàlida";Strings.OfficeOM.L_EventRegistrationError="Error de registre d'incidència";Strings.OfficeOM.L_InvalidFormat="Error de format no vàlid";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Els valors rowCount o columnCount especificats no són vàlids.";Strings.OfficeOM.L_Timeout="S'ha esgotat el temps d'espera de l'operació.";Strings.OfficeOM.L_DataStale="Les dades no són actuals";Strings.OfficeOM.L_InvalidOperationInCellEditMode="L'Excel té activat el mode d'edició de cel·les. Sortiu del mode d'edició prement la tecla Retorn o el Tabulador, o bé seleccionant una altra cel·la i, a continuació, torneu-ho a provar.";Strings.OfficeOM.L_MissingParameter="Falta un paràmetre";Strings.OfficeOM.L_FormatValueOutOfRange="El valor està fora de l'interval permès.";Strings.OfficeOM.L_EventHandlerNotExist="No s'ha trobat el controlador d'incidències per a aquesta vinculació.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="El complement ja està demanant un testimoni d'accés.";Strings.OfficeOM.L_InValidOptionalArgument="argument opcional no vàlid";Strings.OfficeOM.L_InvalidOrTimedOutSession="La sessió no és vàlida o s'ha esgotat el temps d'espera";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Aquest complement no admet el consentiment de l'usuari.";Strings.OfficeOM.L_SaveSettingsError="Error de configuració de desar";Strings.OfficeOM.L_FileTypeNotSupported="El tipus de fitxer especificat no s'admet.";Strings.OfficeOM.L_ConfirmDialogConsent="En fer clic a D'acord, permeteu {0} accés al vostre contingut i a la vostra informació personal. ";Strings.OfficeOM.L_InvalidGetColumns="Les columnes especificades no són vàlides.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="La vostra sessió de l'Office ha caducat o bé no és vàlida. Actualitzeu la pàgina per continuar.";Strings.OfficeOM.L_DocumentIsInactive="L'operació ha fallat perquè el document que conté aquest complement està inactiu.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="El tipus d'identitat de l'usuari no s'admet.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="No hi és la funció per aconseguir el context d'autenticació";Strings.OfficeOM.L_FunctionCallFailed="Error de crida de la funció {0}, codi d'error: {1}.";Strings.OfficeOM.L_BindingToMultipleSelection="No s'admeten les seleccions no contigües.";Strings.OfficeOM.L_InvalidCellsValue="Hi ha un o més paràmetres de cel·les amb valors no permesos. Comproveu-los i torneu-ho a provar.";Strings.OfficeOM.L_MissingRequiredArguments="falten alguns arguments obligatoris";Strings.OfficeOM.L_SettingsAreStale="No s'ha pogut desar la configuració perquè no és actual.";Strings.OfficeOM.L_NetworkProblem="Problema de xarxa";Strings.OfficeOM.L_DialogInvalidScheme="L'esquema de l'adreça URL no és compatible. Utilitzeu el protocol HTTPS.";Strings.OfficeOM.L_InvalidParameters="La funció {0} té paràmetres no vàlids.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="S'ha assolit el límit de selecció.";Strings.OfficeOM.L_DataNotMatchBindingSize="L'objecte de dades subministrat no coincideix amb la mida de la selecció actual.";Strings.OfficeOM.L_DataWriteError="Error d'escriptura de dades";Strings.OfficeOM.L_PropertyNotLoaded='La propietat "{0}" no està disponible. Abans de llegir el valor de la propietat, crideu el mètode de càrrega de l\'objecte contenidor i crideu "context.sync()" al context de sol·licitud associat.';Strings.OfficeOM.L_InvalidNode="Node no vàlid";Strings.OfficeOM.L_MultipleNamedItemFound="S'han trobat múltiples objectes amb el mateix nom.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="L'operació ha fallat perquè aquest complement no admet el consentiment de l'usuari en aquesta categoria.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Nota: se suggereix que hi hagi menys de 100 conjunts de formats definits per una crida a una API de format.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="El tipus de coerció especificat no és compatible amb aquest tipus de vinculació.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Al manifest heu especificat una adreça URL de recurs que no és vàlida.";Strings.OfficeOM.L_NotSupportedEventType="El tipus d'incidència {0} especificat no s'admet.";Strings.OfficeOM.L_DialogParentIsMinimized="L'operació ha fallat perquè la finestra principal està minimitzada.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="S'està provant d'establir la propietat de només lectura \"{0}\".";Strings.OfficeOM.L_InvalidCoercion="Tipus de coerció no vàlid"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InvalidDataObject="Neplatný datový objekt";Strings.OfficeOM.L_SpecifiedIdNotExist="Zadané ID neexistuje.";Strings.OfficeOM.L_NewWindowCrossZone="Nastavení zabezpečení ve vašem prohlížeči nám brání ve vytvoření dialogového okna. Zkuste jiný prohlížeč nebo si {0}, aby {1} a doména zobrazená ve vašem panelu Adresa byly ve stejné zóně zabezpečení.";Strings.OfficeOM.L_NotSupported="Funkce {0} není podporovaná.";Strings.OfficeOM.L_ShuttingDown="Operace se nepovedla, protože data na serveru nejsou aktuální.";Strings.OfficeOM.L_FunctionCallFailed="Volání funkce {0} se nepovedlo, kód chyby: {1}.";Strings.OfficeOM.L_Timeout="Časový limit operace vypršel.";Strings.OfficeOM.L_FileTypeNotSupported="Zadaný typ souboru není podporovaný.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignorovat";Strings.OfficeOM.L_DataNotMatchBindingType="Zadaný datový objekt není kompatibilní s typem vazby.";Strings.OfficeOM.L_UserAborted="Uživatel přerušil žádost o souhlas.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Vlastnost s tímto názvem v Excel.Script.CustomFunctions, která představuje definici funkce, musí obsahovat vlastnost call implementující funkci.";Strings.OfficeOM.L_OverwriteWorksheetData="Operace nastavení se nepovedla, protože zadaný datový objekt přepíše nebo posune data.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Poznámka: Přes volání formátovacího API by se nemělo nastavovat víc než 100 formátování.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Vaše relace Office je neplatná nebo vypršel její časový limit. Pokud chcete pokračovat, aktualizujte stránku.";Strings.OfficeOM.L_SSOServerError="Ve zprostředkovateli ověřování došlo k chybě.";Strings.OfficeOM.L_InvalidBindingOperation="Neplatná operace vazby";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Problémy se sítí zabránily načtení souboru.";Strings.OfficeOM.L_InvalidApiCallInContext="Neplatné volání rozhraní API v aktuálním kontextu";Strings.OfficeOM.L_InvalidSetRows="Zadané řádky jsou neplatné.";Strings.OfficeOM.L_InvalidGetColumns="Zadané sloupce jsou neplatné.";Strings.OfficeOM.L_SelectionCannotBound="Nejde vytvořit vazbu na aktuální výběr.";Strings.OfficeOM.L_CallbackNotAFunction="Zpětné volání musí být typu funkce. Bylo typu {0}.";Strings.OfficeOM.L_InitializeNotReady="Soubor Office.js ještě není úplně načtený. Zkuste to znovu později nebo přidejte inicializační kód do funkce Office.initialize.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Nejde vytvořit vazbu s aktuálním výběrem a zadaným typem vazby.";Strings.OfficeOM.L_CannotRegisterEvent="Nedá se zaregistrovat obslužná rutina události.";Strings.OfficeOM.L_NotSupportedEventType="Zadaný typ události {0} není podporovaný.";Strings.OfficeOM.L_DocumentReadOnly="Požadovaná operace není v aktuálním režimu dokumentu povolená.";Strings.OfficeOM.L_APINotSupported="API není podporované";Strings.OfficeOM.L_InValidOptionalArgument="neplatný volitelný argument";Strings.OfficeOM.L_InvalidSetStartRowColumn="Zadané hodnoty startRow nebo startColumn jsou neplatné.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Neaktuální data";Strings.OfficeOM.L_DialogInvalidScheme="Schéma adresy URL není podporované. Použijte prosím HTTPS.";Strings.OfficeOM.L_InvalidBinding="Neplatná vazba";Strings.OfficeOM.L_CancelButton="Zrušit";Strings.OfficeOM.L_ConfirmRefreshMessage="Pokud chcete pokračovat, odeberte doplněk a znovu ho přidejte nebo aktualizujte stránku.";Strings.OfficeOM.L_ConfirmDialog="Doména {0} funguje jako Microsoft Office a může spouštět doplňky pro Office, které mají přístup k vašim osobním údajům. Pokud důvěřujete doméně, aby fungovala jako Office a měla přístup k vašim datům, pokračujte kliknutím na OK.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Relace je neplatná nebo vypršel její časový limit";Strings.OfficeOM.L_NotImplemented="Funkce {0} není implementovaná.";Strings.OfficeOM.L_BadSelectorString="Řetězec předaný selektoru je nesprávně naformátovaný nebo není podporovaný.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath omezuje výběr na 1024 položek.";Strings.OfficeOM.L_InvalidAPICall="Neplatné volání rozhraní API";Strings.OfficeOM.L_CannotWriteToSelection="Do aktuálního výběru se nedá zapisovat.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Chystáte se odeslat a přijmout potenciálně citlivé informace z {0}. Klikněte na tlačítko OK pouze v případě, že důvěřujete následujícímu webu, který přijímá citlivé informace: {1}.";Strings.OfficeOM.L_DisplayDialogError="Chyba zobrazení dialogového okna";Strings.OfficeOM.L_RedundantCallbackSpecification="Zpětné volání nemůže být zadané v seznamu argumentů i ve volitelném objektu.";Strings.OfficeOM.L_InvalidArgument="Argument {0} nefunguje pro tuto situaci, chybí nebo není ve správném formátu.";Strings.OfficeOM.L_InvalidReadForBlankRow="Zadaný řádek je prázdný.";Strings.OfficeOM.L_ImplicitNotLoaded="Modul není načten před získáním tokenu ";Strings.OfficeOM.L_ModalDialogOpeng="Operace se nepovedla, protože tento doplněk už má aktivní modální dialogové okno.";Strings.OfficeOM.L_AppNameNotExist="Název doplňku pro: {0} neexistuje.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Během procesu přihlášení se přerušilo připojení a uživatel možná není přihlášený. Způsobila to asi konfigurační nastavení v prohlížeči uživatele, například zóny zabezpečení.";Strings.OfficeOM.L_RequestTimeout="Zpracování volání trvalo moc dlouho.";Strings.OfficeOM.L_SSOServerErrorMessage="Na serveru došlo k neočekávané chybě.";Strings.OfficeOM.L_SettingsAreStale="Nastavení se nepodařilo uložit, protože nejsou aktuální.";Strings.OfficeOM.L_DialogRequireHTTPS="Protokol HTTP se nepodporuje. Použijte prosím HTTPS.";Strings.OfficeOM.L_NoCapability="K provedení této akce nemáte dostatečná oprávnění.";Strings.OfficeOM.L_NavOutOfBound="Operace se nepovedla, protože index je mimo rozsah.";Strings.OfficeOM.L_InvalidArgumentGeneric="Argument nebo argumenty předané funkci nejsou použitelné v této situaci, nejsou úplné nebo nemají správný formát.";Strings.OfficeOM.L_InvalidParameters="Funkce {0} má neplatné parametry.";Strings.OfficeOM.L_BindingCreationError="Chyba vytváření vazby";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="prohlížeč nakonfigurujte";Strings.OfficeOM.L_ConfirmDialogConsent="Kliknutím na OK povolíte {0} přístup k vašemu obsahu a osobním údajům. ";Strings.OfficeOM.L_InvalidSetColumns="Zadané sloupce jsou neplatné.";Strings.OfficeOM.L_UnsupportedUserIdentity="Typ identity uživatele se nepodporuje.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Data jsou zastaralá. Načtěte objekt znovu.";Strings.OfficeOM.L_TooManyOptionalObjects="více volitelných objektů v seznamu parametrů";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Doplněk už žádá o přístupový token";Strings.OfficeOM.L_ContinueButton="Pokračovat";Strings.OfficeOM.L_MultipleNamedItemFound="Našlo se více objektů se stejným názvem.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Povolit";Strings.OfficeOM.L_InvalidBindingError="Chyba neplatné vazby";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Chybí funkce pro získání obsahu ověření";Strings.OfficeOM.L_UnknownBindingType="Tento typ vazby není podporovaný.";Strings.OfficeOM.L_TooManyIncompleteRequests="Počkejte, než se dokončí předchozí volání.";Strings.OfficeOM.L_SetDataParametersConflict="Zadané parametry způsobují konflikt.";Strings.OfficeOM.L_WorkbookHiddenMessage="Požadavek jazyka JavaScript API se nezdařil, protože sešit je skrytý. Zviditelněte jej a zkuste to znovu.";Strings.OfficeOM.L_RowIndexOutOfRange="Hodnota indexu řádku je mimo povolený rozsah. Použijte hodnotu (0 nebo vyšší), která je menší než počet řádků.";Strings.OfficeOM.L_OperationCancelledErrorMessage="Operace byla zrušena uživatelem.";Strings.OfficeOM.L_CannotNavigateTo="Objekt je v umístění, kde se nepodporuje navigace.";Strings.OfficeOM.L_InvalidRequestContext="Objekt nejde použít v různých kontextech požadavků.";Strings.OfficeOM.L_InvalidTableOptionValue="Minimálně jeden parametr tableOptions má hodnoty, které nejsou povolené. Překontrolujte hodnoty a zkuste to znovu.";Strings.OfficeOM.L_DataNotMatchCoercionType="Typ zadaného datového objektu není kompatibilní s aktuálním výběrem.";Strings.OfficeOM.L_DialogParentIsMinimized="Operace se nezdařila, protože nadřazené okno je minimalizované.";Strings.OfficeOM.L_IndexOutOfRange="Index je mimo rozsah.";Strings.OfficeOM.L_OperationCancelledError="Operace zrušena";Strings.OfficeOM.L_MissingRequiredArguments="chybí některé požadované argumenty";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Parametry souřadnic nejde použít s převodem typu Tabulka, pokud tabulka obsahuje sloučené buňky.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operace není u tohoto typu vazby podporovaná.";Strings.OfficeOM.L_APICallFailed="Volání API selhalo";Strings.OfficeOM.L_DataStale="Neaktuální data";Strings.OfficeOM.L_InvalidValue="Neplatná hodnota";Strings.OfficeOM.L_BindingToMultipleSelection="Nesouvislé výběry nejsou podporované.";Strings.OfficeOM.L_BindingNotExist="Zadaná vazba neexistuje.";Strings.OfficeOM.L_SSOClientError="V požadavku na ověření z Office se vyskytla chyba.";Strings.OfficeOM.L_NetworkProblem="Problém se sítí";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Zadaný typ vazby není kompatibilní se zadanou pojmenovanou položkou.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Moment prosím...";Strings.OfficeOM.L_DialogAlreadyOpened="Operace se nepovedla, protože tento doplněk už má aktivní okno.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Dosáhli jste maximální velikosti výběru";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Operace Zapisovat není pro Office podporovaná, když je otevřený modální dialogové okno.";Strings.OfficeOM.L_InvalidColumnsForBinding="Zadané sloupce jsou neplatné.";Strings.OfficeOM.L_OperationNotSupported="Operace není podporovaná.";Strings.OfficeOM.L_DialogAddressNotTrusted="Doména adresy URL není obsažena v elementu AppDomains v manifestu a není subdoménou zdrojového umístění.";Strings.OfficeOM.L_TooManyOptionalFunction="více volitelných funkcí v seznamu parametrů";Strings.OfficeOM.L_DataWriteReminder="Připomenutí zápisu dat";Strings.OfficeOM.L_GetDataIsTooLarge="Požadovaná sada dat je moc velká.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Operace selhala, protože tento doplněk v této kategorii nepodporuje vyjádření souhlasu uživatele.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Zadaný typ převodu není kompatibilní s tímto typem vazby.";Strings.OfficeOM.L_UnsupportedDataObject="Zadaný typ datového objektu není podporovaný.";Strings.OfficeOM.L_ElementMissing="Nemohli jsme naformátovat buňku tabulky, protože chybí některé hodnoty parametrů. Ještě jednou zkontrolujte parametry a zkuste to znovu.";Strings.OfficeOM.L_InvalidResourceUrlMessage="V manifestu je zadaná neplatná adresa URL prostředku.";Strings.OfficeOM.L_UserNotSignedIn="Žádný uživatel není přihlášený v Office.";Strings.OfficeOM.L_UserClickIgnore="Uživatel se rozhodl ignorovat dialogové okno.";Strings.OfficeOM.L_SettingNameNotExist="Zadaný název nastavení neexistuje.";Strings.OfficeOM.L_InternalErrorDescription="Došlo k vnitřní chybě.";Strings.OfficeOM.L_GetDataParametersConflict="Zadané parametry způsobují konflikt.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Výčet není v aktuální hostitelské aplikaci podporovaný.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Neplatné vstupní argumenty";Strings.OfficeOM.L_EventHandlerNotExist="Zadaná obslužná rutina událostí se pro tuto vazbu nenašla.";Strings.OfficeOM.L_TooManyArguments="příliš mnoho argumentů";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Vybraný obsah musí být ve formátu tabulky. Zformátujte data jako tabulku a zkuste to znovu.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} chce zobrazit nové okno.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_PermissionDenied="Oprávnění odepřena";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Probíhá pokus nastavit vlastnost jen pro čtení {0}.";Strings.OfficeOM.L_ReadSettingsError="Chyba čtení nastavení";Strings.OfficeOM.L_MemoryLimit="Překročený limit paměti";Strings.OfficeOM.L_ActivityLimitReached="Byl dosažený limit aktivity.";Strings.OfficeOM.L_NamedItemNotFound="Pojmenovaná položka neexistuje.";Strings.OfficeOM.L_RequestTokenUnavailable="Toto rozhraní API se omezilo, aby se zpomalila četnost volání.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Parametry souřadnic nejde použít s převodem typu Tabulka, pokud tabulka obsahuje sloučené buňky.";Strings.OfficeOM.L_ApiNotFoundDetails="Metoda nebo vlastnost {0} je součástí sady požadavků {1}, která ve vaší verzi aplikace {2} není dostupná.";Strings.OfficeOM.L_SettingsStaleError="Chyba zastaralých nastavení";Strings.OfficeOM.L_UnsupportedEnumeration="Nepodporovaný výčet";Strings.OfficeOM.L_SSOConnectionLostError="Během procesu přihlášení se přerušilo připojení.";Strings.OfficeOM.L_CoercionTypeNotSupported="Zadaný typ převodu není podporovaný.";Strings.OfficeOM.L_InvalidFormat="Chyba neplatného formátu";Strings.OfficeOM.L_OutOfRange="Mimo rozsah";Strings.OfficeOM.L_InvalidCoercion="Neplatný typ převodu";Strings.OfficeOM.L_PropertyNotLoaded="Vlastnost {0} není k dispozici. Před přečtením hodnoty vlastnosti volejte metodu pro načtení nadřazeného objektu a potom volejte context.sync() pro přidružený kontext požadavku.";Strings.OfficeOM.L_GetSelectionNotSupported="Aktuální výběr není podporovaný.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Aktuální výběr není kompatibilní se zadaným typem převodu.";Strings.OfficeOM.L_InvalidDataFormat="Formát zadaného datového objektu je neplatný.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Nepovedlo se přidat obslužnou rutinu události.";Strings.OfficeOM.L_ColIndexOutOfRange="Hodnota indexu sloupce je mimo povolený rozsah. Použijte hodnotu (0 nebo vyšší), která je menší než počet sloupců.";Strings.OfficeOM.L_NoHttpsWAC="Tato relace Office nepoužívá zabezpečené připojení. Doporučujeme zařídit dodatečná opatření.";Strings.OfficeOM.L_CustomXmlError="Chyba vlastního kódu XML";Strings.OfficeOM.L_DataNotMatchBindingSize="Zadaný datový objekt se neshoduje s velikostí aktuálního výběru.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Před načtením dalšího souboru volejte closeAsync pro aktuální soubor.";Strings.OfficeOM.L_DataNotMatchSelection="Zadaný datový objekt není kompatibilní s tvarem nebo rozměry aktuálního výběru.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage="Velikost datové části žádosti překročila limit. Přečtěte si dokumentaci: https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel je v režimu úprav buňky. Ukončete prosím režim úprav stisknutím klávesy ENTER nebo TAB nebo výběrem jiné buňky a pak to zkuste znovu.";Strings.OfficeOM.L_InvalidCellsValue="Minimálně jeden parametr buňky má hodnoty, které nejsou povolené. Překontrolujte hodnoty a zkuste to znovu.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Název funkce může obsahovat pouze písmena, číslice, podtržítka a tečky.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Operace se nepovedla, protože tento doplněk už žádá o přístupový token.";Strings.OfficeOM.L_NotSupportedBindingType="Zadaný typ vazby {0} není podporovaný.";Strings.OfficeOM.L_SaveSettingsError="Chyba ukládání nastavení";Strings.OfficeOM.L_InvalidObjectPath="Cesta k objektu {0} není pro požadovanou akci funkční. Pokud používáte objekt ve více voláních context.sync a mimo sekvenční provádění dávky .run, použijte prosím metody context.trackedObjects.add() a context.trackedObjects.remove() pro správu životnosti objektu.";Strings.OfficeOM.L_ConnectionFailureWithStatus="Žádost selhala se stavovým kódem {0}.";Strings.OfficeOM.L_SettingsCannotSave="Nastavení nejde uložit.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Název funkce musí obsahovat neprázdný obor názvů a neprázdný krátký název.";Strings.OfficeOM.L_HostError="Chyba hostitele";Strings.OfficeOM.L_ValueNotLoaded="Ještě se nenačetla hodnota výsledného objektu. Před přečtením hodnoty vlastnosti volejte metodu context.sync() pro kontext přidružené žádosti.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Zadané hodnoty rowCount nebo columnCount jsou neplatné.";Strings.OfficeOM.L_UserAbortedMessage="Uživatel nevyslovil souhlas s oprávněními pro doplněk.";Strings.OfficeOM.L_SliceSizeNotSupported="Zadaná velikost řezu není podporovaná.";Strings.OfficeOM.L_InvalidGrantMessage="Chybí oprávnění pro tento doplněk.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Tento doplněk nepodporuje vyjádření souhlasu uživatele.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Aplikace {0} neexistuje. Nevolá se rutina Microsoft.Office.WebExtension.initialize(reason).";Strings.OfficeOM.L_InvalidSSOAddinMessage="Rozhraní API identit se pro tento doplněk nepodporuje.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Typ OsfControl není podporovaný.";Strings.OfficeOM.L_SSOClientErrorMessage="V klientovi došlo k neočekávané chybě.";Strings.OfficeOM.L_FormattingReminder="Připomenutí formátování";Strings.OfficeOM.L_ConfirmCancelMessage="Omlouváme se, nemůžeme pokračovat.";Strings.OfficeOM.L_DialogNavigateError="Chyba navigace v dialogovém okně";Strings.OfficeOM.L_RunMustReturnPromise="Dávková funkce předaná metodě .run nevrátila příslib. Funkce musí vracet příslib, aby se po dokončení dávkové operace mohly uvolnit automaticky sledované objekty. Obvykle se příslib vrací vrácením odpovědi z context.sync().";Strings.OfficeOM.L_NotTrustedWAC="Tento doplněk není kvůli zabezpečení povolený. Pokud chcete doplněk dále používat, potvrďte, že je tato položka hostovaná na věrohodné doméně nebo ji otevřete v desktopové aplikaci Office.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Pro změny vlastnosti {0} nejde použít metodu object.set.";Strings.OfficeOM.L_InternalError="Vnitřní chyba";Strings.OfficeOM.L_InvalidGetStartRowColumn="Zadané hodnoty startRow nebo startColumn jsou neplatné.";Strings.OfficeOM.L_DataReadError="Chyba čtení dat";Strings.OfficeOM.L_EventRegistrationError="Chyba registrace události";Strings.OfficeOM.L_CustomXmlNodeNotFound="Zadaný uzel nejde najít.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Typ identity uživatele se nepodporuje.";Strings.OfficeOM.L_BrowserAPINotSupported="Tento prohlížeč nepodporuje požadované rozhraní API.";Strings.OfficeOM.L_MissingParameter="Chybějící parametr";Strings.OfficeOM.L_FormatValueOutOfRange="Hodnota je mimo povolený rozsah.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Nemohli jsme dialogové okno vytvořit kvůli omezení prohlížeče. Doména dialogového okna a doména hostitele doplňku nejsou ve stejné zóně zabezpečení.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API není v této platformě podporováno.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Poznámka: Tabulka by neměla obsahovat víc než 20 000 buněk.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage="Velikost datové části odpovědi překročila limit. Přečtěte si dokumentaci: https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins.";Strings.OfficeOM.L_SetDataIsTooLarge="Zadaný datový objekt je moc velký.";Strings.OfficeOM.L_InvalidResourceUrl="Je zadaná neplatná adresa URL prostředku aplikace.";Strings.OfficeOM.L_DataWriteError="Chyba zápisu dat";Strings.OfficeOM.L_InvalidGetRows="Zadané řádky jsou neplatné.";Strings.OfficeOM.L_PropertyDoesNotExist="Vlastnost {0} u objektu neexistuje.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Nepovedlo se odebrat obslužnou rutinu události.";Strings.OfficeOM.L_InvalidNode="Neplatný uzel";Strings.OfficeOM.L_InvalidFormatValue="Minimálně jeden parametr formátu má hodnoty, které nejsou povolené. Překontrolujte hodnoty a zkuste to znovu.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Vyberte něco, prosím.";Strings.OfficeOM.L_DocumentIsInactive="Operace se nezdařila, protože dokument obsahující tento doplněk je neaktivní.";Strings.OfficeOM.L_InvalidGrant="Chybí předběžná autorizace.";Strings.OfficeOM.L_ConnectionFailureWithDetails="Žádost selhala se stavovým kódem {0}, kódem chyby {1} a následující chybovou zprávou: {2}";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="V Excel.Script.CustomFunctions musí být vlastnost s tímto názvem, která představuje definici funkce."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_SSOConnectionLostError="Collwyd cysylltiad wrth fewngofnodi.";Strings.OfficeOM.L_TooManyOptionalObjects="sawl gwrthrych dewisol yn y rhestr paramedrau";Strings.OfficeOM.L_DataStale="Dydy'r Data ddim yn Gyfredol";Strings.OfficeOM.L_NamedItemNotFound="Dydy'r eitem sydd wedi cael ei henwi ddim yn bodoli.";Strings.OfficeOM.L_DataReadError="Gwall Darllen Data";Strings.OfficeOM.L_OperationNotSupported="Does dim modd delio â'r weithred hon.";Strings.OfficeOM.L_SettingsAreStale="Doedd dim modd cadw'r gosodiadau oherwydd dydyn nhw ddim yn gyfredol.";Strings.OfficeOM.L_InvalidSetRows="Mae'r rhesi dan sylw'n annilys.";Strings.OfficeOM.L_IndexOutOfRange="Mynegai allan o'r ystod.";Strings.OfficeOM.L_RunMustReturnPromise="Doedd y swyddogaeth swp a drosglwyddwyd i'r dull \".run\" ddim wedi cyflwo addewid. Rhaid i'r swyddogaeth gyflwyno addewid, fel bod unrhyw wrthrychau sy'n cael eu olrhain yn awtomatig yn gallu cael eu rhyddhau ar ôl gorffen y swp. Fel arfer, rydych chi'n cyflwyno addewid drwy gyflwyno'r ymateb o \"context.sync()\".";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Does dim modd gwneud newidiadau i’r briodwedd '{0}' drwy ddefnyddio’r dull \"object.set\".";Strings.OfficeOM.L_FileTypeNotSupported="Does dim modd delio â'r math o ffeil a bennwyd.";Strings.OfficeOM.L_TooManyIncompleteRequests="Arhoswch nes i'r alwad flaenorol orffen.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Does dim modd delio â'r math OsfControl.";Strings.OfficeOM.L_MultipleNamedItemFound="Heb ganfod sawl gwrthrych gyda'r un enw.";Strings.OfficeOM.L_CannotNavigateTo="Mae'r gwrthrych mewn lleoliad lle does dim modd delio â llywio.";Strings.OfficeOM.L_InvalidColumnsForBinding="Mae'r colofnau dan sylw'n annilys.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Un eiliad...";Strings.OfficeOM.L_CustomXmlError="Gwall XML Personol.";Strings.OfficeOM.L_UnknownBindingType="Does dim modd delio â'r math o rwymo.";Strings.OfficeOM.L_GetSelectionNotSupported="Does dim modd delio â'r dewis dan sylw.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Rydych ar fin anfon a derbyn gwybodaeth a allai fod yn sensitif o {0}. Dim ond os ydych yn ymddiried yn y wefan hon sy'n derbyn y wybodaeth sensitif y dylech glicio Iawn: {1}.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Gwnewch ddewis.";Strings.OfficeOM.L_ApiNotFoundDetails="Mae’r dull neu’r briodwedd {0} yn rhan o’r set o ofyniadau {1}, sydd ddim ar gael yn eich fersiwn chi o {2}.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Dydy Office ddim yn gallu delio â'r weithred ysgrifennu pan fydd blwch deialog moddol ar agor.";Strings.OfficeOM.L_ModalDialogOpeng="Methodd y weithred am fod gan yr ategyn hwn ddeialog moddol gweithredol eisoes.";Strings.OfficeOM.L_SettingsCannotSave="Doedd dim modd cadw'r gosodiadau.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Wedi methu ychwanegu'r dynodydd digwyddiad.";Strings.OfficeOM.L_RequestTimeout="Roedd yr alwad wedi cymryd gormod o amser i'w gweithredu.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Wrthi’n ceisio gosod y briodwedd darllen-yn-unig '{0}'.";Strings.OfficeOM.L_EventRegistrationError="Gwall Cofrestru Digwyddiad";Strings.OfficeOM.L_BindingCreationError="Gwall Creu Rhwymiad";Strings.OfficeOM.L_InvalidGetColumns="Mae'r colofnau dan sylw'n annilys.";Strings.OfficeOM.L_WorkbookHiddenMessage="Methodd y cais API JavaScript oherwydd roedd y llyfr gwaith yn gudd. Rhaid i chi datguddio'r llyfr gwaith a rhoi cynnig arall arni.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Mae'r gwerthoedd rowCount neu columnCount a bennwyd yn annilys.";Strings.OfficeOM.L_InvalidBindingError="Gwall Rhwymo Annilys";Strings.OfficeOM.L_InvalidCoercion="Math o Orfodaeth Annilys";Strings.OfficeOM.L_SSOClientError="Gwall yn y cais dilysu gan Office.";Strings.OfficeOM.L_InvalidGrant="Awdurod ymlaen llaw ar goll.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Does dim modd delio â'r weithred ar y math hwn o rwymo.";Strings.OfficeOM.L_BadSelectorString="Mae'r llinyn sydd wedi'i basio i'r dewisydd wedi'i fformatio'n anghywir neu does dim modd delio ag ef.";Strings.OfficeOM.L_UnsupportedEnumeration="Rhifo Does Dim Modd Delio ag Ef";Strings.OfficeOM.L_SettingsStaleError="Gwall Hen Osodiadau";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Rhaid i enw'r swyddogaeth gynnwys bwlch enw heb fod yn wag ac enw byr heb fod yn wag.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='Mae llwyth gwaith y cais yn rhy fawr. Tarwch olwg ar y dogfennau: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_BindingNotExist="Dydy'r rhwymo a bennwyd ddim yn bodoli.";Strings.OfficeOM.L_InternalErrorDescription="Gwall mewnol.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Mae cyfyngiadau porwr wedi ein rhwystro ni rhag creu’r blwch deialog. Dydy parth y blwch deialog a pharth y lletywr ddim yn yr un parth diogelwch.";Strings.OfficeOM.L_SettingNameNotExist="Dydy'r enw gosodiad a bennwyd ddim yn bodoli.";Strings.OfficeOM.L_HostError="Gwall Lletywr";Strings.OfficeOM.L_InvalidSetColumns="Mae'r colofnau dan sylw'n annilys.";Strings.OfficeOM.L_InvalidCellsValue="Mae un neu ragor o'r paramedrau celloedd yn cynnwys gwerthoedd sydd ddim yn cael eu caniatáu. Gwiriwch y celloedd a rhoi cynnig arall arni.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Does dim modd defnyddio paramedrau cyfesur gyda Thabl math gorfodaeth pan fydd y tabl yn cynnwys celloedd sydd wedi'u huno.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Wedi methu tynnu'r dynodydd digwyddiad.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Caewch closeAsync ar y Ffeil gyfredol cyn adfer un arall.";Strings.OfficeOM.L_ShowWindowDialogNotification="Mae {0} eisiau dangos ffenestr newydd.";Strings.OfficeOM.L_TooManyArguments="gormod o argiau";Strings.OfficeOM.L_InitializeNotReady="Dydy Office.js ddim wedi cael ei lwytho'n llawn eto. Rhowch gynnig arall arni rywbryd eto neu gwnewch yn siŵr eich bod yn ychwanegu eich cod ymgychwyn ar y swyddogaeth Office.initialize.";Strings.OfficeOM.L_InvalidTableOptionValue="Mae un neu ragor o'r paramedrau tableOptions yn cynnwys gwerthoedd sydd ddim yn cael eu caniatáu. Gwiriwch y celloedd a rhoi cynnig arall arni.";Strings.OfficeOM.L_DocumentReadOnly="Does dim modd gwneud y weithred mae cais amdani ar y modd dogfen cyfredol.";Strings.OfficeOM.L_NotSupportedBindingType="Does dim modd delio â'r math o rwymo a bennwyd {0}.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Mae eich sesiwn Office wedi dod i ben neu mae'n annilys. I fwrw ymlaen, dylech adnewyddu'r dudalen.";Strings.OfficeOM.L_NavOutOfBound="Roedd y weithred wedi methu oherwydd bod y mynegai y tu allan i'r ystod.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Does dim modd delio â math o fanylion adnabod y defnyddiwr hwn.";Strings.OfficeOM.L_NetworkProblem="Problem Rhwydwaith";Strings.OfficeOM.L_ConfirmRefreshMessage="I fwrw ymlaen, tynnwch yr ychwanegyn a'i ychwanegu eto, neu adnewyddwch y dudalen.";Strings.OfficeOM.L_ConfirmDialogConsent="Drwy glicio Iawn, byddwch yn caniatáu mynediad i {0} at eich cynnwys a gwybodaeth bersonol. ";Strings.OfficeOM.L_InvalidResourceUrlMessage="Pennwyd URL adnodd annilys yn y maniffest.";Strings.OfficeOM.L_GetDataParametersConflict="Mae'r paramedrau a bennwyd yn gwrthdaro.";Strings.OfficeOM.L_ImplicitNotLoaded="Heb lwytho'r modiwl cyn caffael tocyn";Strings.OfficeOM.L_DialogAddressNotTrusted="Dydy parth yr URL ddim wedi'i gynnwys yn yr elfen AppDomains yn y maniffest, ac nid yw'n is-barth lleoliad y ffynhonnell.";Strings.OfficeOM.L_NotSupported="Does dim modd delio â'r swyddogaeth {0}.";Strings.OfficeOM.L_InvalidArgumentGeneric="Dydy’r arg(iau) sydd wedi cael eu gosod yn y ffwythiant hwn ddim yn gweithio ar gyfer y sefyllfa hon, maen nhw ar goll, neu dydyn nhw ddim yn y fformat cywir.";Strings.OfficeOM.L_AppNameNotExist="Does dim Enw Ategyn ar gyfer {0}.";Strings.OfficeOM.L_NoCapability="Does gennych chi ddim digon o hawliau i wneud hyn.";Strings.OfficeOM.L_InvalidGetRows="Mae'r rhesi dan sylw'n annilys.";Strings.OfficeOM.L_FormatValueOutOfRange="Mae gwerth y tu allan i'r ystod a ganiateir.";Strings.OfficeOM.L_ConnectionFailureWithDetails="Methodd y cais gyda’r cod statws {0}, y cod gwall {1} a’r neges gwall ganlynol: {2}";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="Mae XPath yn cyfyngu eich dewis i 1024 eitem.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Mae'r weithred wedi methu oherwydd dydy'r ategyn hwn ddim yn gallu delio â chydsyniad defnyddiwr yn y categori hwn";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Mae’r ategyn eisoes yn gwneud cais am docyn mynediad.";Strings.OfficeOM.L_InvalidObjectPath='Dydy llwybr y gwrthrych \'{0}\' ddim yn gweithio ar gyfer yr hyn rydych chi\'n ceisio ei wneud. Os ydych chi\'n defnyddio\'r gwrthrych ar draws sawl galwad "context.sync" a\'r tu allan i weithrediad dilynol swp ".run", dylech ddefnyddio\'r dulliau "context.trackedObjects.add()" a "context.trackedObjects.remove()" i reoli oes y gwrthrych.';Strings.OfficeOM.L_RequestTokenUnavailable="Mae'r API hwn wedi cael ei dagu i arafu amlder galwadau.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Dydy'r rhaglen {0} ddim yn bodoli. Heb alw Microsoft.Office.WebExtension.initialize(reason).";Strings.OfficeOM.L_InvalidResourceUrl="Wedi darparu URL adnodd rhaglen annilys.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Doed dim modd delio â'r rhifo yn y rhaglen lletya bresennol.";Strings.OfficeOM.L_DisplayDialogError="Gwall Dangos Blwch Deialog";Strings.OfficeOM.L_DialogNavigateError="Gwall Blwch Deialog Llywio";Strings.OfficeOM.L_InvalidRequestContext="Does dim modd defnyddio'r gwrthrych ar draws cyd-destunau cais gwahanol.";Strings.OfficeOM.L_APICallFailed="Galwad API wedi methu";Strings.OfficeOM.L_CancelButton="Canslo";Strings.OfficeOM.L_NoHttpsWAC="Dydy'r sesiwn Swyddfa hon ddim yn defnyddio cysylltiad diogel. Rydym yn argymell eich bod yn cymryd rhagofalon ychwanegol.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Argiau mewnbwn annilys.";Strings.OfficeOM.L_CallbackNotAFunction="Rhaid i alw yn ôl fod yn fath swyddogaeth, roedd yn fath {0}.";Strings.OfficeOM.L_DialogParentIsMinimized="Methodd y weithred am fod y rhiant ffenestr wedi'i lleihau.";Strings.OfficeOM.L_OperationCancelledErrorMessage="Cafodd y dasg ei chanslo gan y defnyddiwr.";Strings.OfficeOM.L_InvalidAPICall="Galwad API Annilys";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Mae’r gweithrediad wedi methu oherwydd bod yr ategyn hwn eisoes yn gwneud cais am docyn mynediad.";Strings.OfficeOM.L_MissingRequiredArguments="mae rhai argiau angenrheidiol ar goll";Strings.OfficeOM.L_InvalidDataObject="Gwrthrych Data Annilys";Strings.OfficeOM.L_UnsupportedUserIdentity="Does dim modd delio â'r math hwn o fanylion adnabod.";Strings.OfficeOM.L_DialogRequireHTTPS="Does dim modd i ni ddelio â'r protocol HTTP. Defnyddiwch HTTPS yn lle";Strings.OfficeOM.L_ShuttingDown="Roedd y weithred wedi methu oherwydd dydy'r data ddim yn gyfredol ar y gweinydd.";Strings.OfficeOM.L_InvalidSetStartRowColumn="Mae'r gwerthoedd startRow neu startColumn a bennwyd yn annilys.";Strings.OfficeOM.L_InvalidArgument="Dydy'r arg '{0}' ddim yn gweithio ar gyfer y sefyllfa hon, mae ar goll, neu nid yw yn y fformat cywir.";Strings.OfficeOM.L_SaveSettingsError="Gwall Gosodiadau Cadw";Strings.OfficeOM.L_ReadSettingsError="Gwall Gosodiadau Darllen";Strings.OfficeOM.L_RowIndexOutOfRange="Mae'r gwerth mynegai rhes y tu allan i'r ystod sy'n cael ei chaniatáu. Defnyddiwch werth (0 neu fwy) sy'n llai na nifer y rhesi.";Strings.OfficeOM.L_CannotWriteToSelection="Does dim modd ysgrifennu i'r dewis dan sylw.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Nodyn: Awgrymir bod y setiau fformatio sy'n cael eu gosod gan API Fformatio o dan 100.";Strings.OfficeOM.L_TooManyOptionalFunction="sawl swyddogaeth ddewisol yn y rhestr paramedrau";Strings.OfficeOM.L_InvalidBinding="Rhwymo Annilys";Strings.OfficeOM.L_PropertyNotLoaded="Dydy'r briodwedd '{0}' ddim ar gael. Cyn darllen gwerth y briodwedd, dylech alw'r dull llwytho ar y gwrthrych sy'n ei gynnwys a galw \"context.sync()\" ar y cyd-destun cais cysylltiedig.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Rhaid i'r cynnwys dan sylw fod mewn fformat tabl. Fformatiwch y data fel tabl a rhoi cynnig arall arni.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Dydy'r Data ddim yn Gyfredol";Strings.OfficeOM.L_SelectionCannotBound="Does dim modd rhwymo i'r dewis dan sylw.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Mae problem rhwydwaith yn golygu does dim modd adfer y ffeil.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Dydy'r math o rwymo a bennwyd ddim yn cyd-fynd â'r eitem a enwyd a roddwyd.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="ffurfweddu eich porwr";Strings.OfficeOM.L_EventHandlerNotExist="Heb ddod o hyd i'r dynodydd digwyddiad a bennwyd ar gyfer y rhwymo hwn.";Strings.OfficeOM.L_APINotSupported="Does dim modd delio ag API";Strings.OfficeOM.L_InternalError="Gwall Mewnol";Strings.OfficeOM.L_DialogInvalidScheme="Does dim modd i ni ddelio â'r cynllun URL. Defnyddiwch HTTPS yn lle.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Anwybyddu";Strings.OfficeOM.L_InvalidFormat="Gwall Fformat Annilys";Strings.OfficeOM.L_InvalidGetStartRowColumn="Mae'r gwerthoedd startRow neu startColumn a bennwyd yn annilys.";Strings.OfficeOM.L_ConnectionFailureWithStatus="Methodd y cais gyda’r cod statws {0}.";Strings.OfficeOM.L_ColIndexOutOfRange="Mae gwerth mynegau'r golofn y tu allan i'r ystod sy'n cael ei chaniatáu. Defnyddiwch werth (0 neu fwy) sy'n llai na nifer y colofnau.";Strings.OfficeOM.L_SSOServerErrorMessage="Gwall annisgwyl ar y gweinydd.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Wedi Cyrraedd Terfyn y Dewis";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Mae Excel yn y modd golygu celloedd. Dylech chi adael y modd golygu drwy bwyso ENTER neu TAB neu drwy ddewis cell wahanol, a rhoi cynnig arall arni.";Strings.OfficeOM.L_PermissionDenied="Dim Caniatâd";Strings.OfficeOM.L_SpecifiedIdNotExist="Dydy'r ID a bennwyd ddim yn bodoli.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Nodyn: Awgrymir bod nifer y celloedd mewn tabl o dan 20,000 cell.";Strings.OfficeOM.L_MemoryLimit="Wedi Mynd Dros y Terfyn Cof";Strings.OfficeOM.L_UserClickIgnore="Mae'r defnyddiwr wedi dewis anwybyddu'r blwch deialog.";Strings.OfficeOM.L_InvalidGrantMessage="Grant ar goll ar gyfer yr ychwanegyn hwn.";Strings.OfficeOM.L_MissingParameter="Paramedr Coll";Strings.OfficeOM.L_InvalidNode="Cwgn Annilys";Strings.OfficeOM.L_InvalidOrTimedOutSession="Sesiwn Annilys neu'r Amser wedi Dod i Ben";Strings.OfficeOM.L_DataNotMatchBindingSize="Mae'r gwrthrych data a roddwyd yn wahanol i faint y dewis dan sylw.";Strings.OfficeOM.L_ConfirmCancelMessage="Yn anffodus allwn ni ddim cadw yma";Strings.OfficeOM.L_PropertyDoesNotExist="Dydy’r briodwedd '{0}' ddim yn bodoli ar y gwrthrych.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Gall enw'r swyddogaeth gynnwys llythrennau, digidau, tanlinellau, ac atalnodau llawn yn unig.";Strings.OfficeOM.L_UnsupportedDataObject="Does dim modd delio â'r math o wrthrych data a roddwyd.";Strings.OfficeOM.L_ValueNotLoaded='Dydy gwerth y gwrthrych canlyniad ddim wedi\'i lwytho eto. Cyn darllen priodwedd y gwerth, galwch "context.sync()" ar y cyd-destun cais cysylltiedig.';Strings.OfficeOM.L_InValidOptionalArgument="arg dewisol annilys";Strings.OfficeOM.L_InvalidFormatValue="Mae un neu ragor o'r paramedrau fformat yn cynnwys gwerthoedd sydd ddim yn cael eu caniatáu. Gwiriwch y celloedd a rhoi cynnig arall arni.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Dydy'r math o orfodaeth a bennwyd ddim yn cyd-fynd â'r math hwn o rwymo.";Strings.OfficeOM.L_OverwriteWorksheetData="Roedd y weithred set wedi methu oherwydd bydd y gwrthrych data a roddwyd yn disodli neu'n symud data.";Strings.OfficeOM.L_SetDataIsTooLarge="Mae'r gwrthrych data a bennwyd yn rhy fawr.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Rhaid i briodwedd sydd â'r enw hwn ac sy’n cynrychioli diffiniad y ffwythiant fodoli ar Excel.Script.CustomFunctions.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='Mae llwyth gwaith yr ymateb yn rhy fawr. Tarwch olwg ar y dogfennau: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_SSOUnsupportedPlatform="Does dim modd delio â'r API ar y llwyfan hwn.";Strings.OfficeOM.L_DataWriteError="Gwall Ysgrifennu Data";Strings.OfficeOM.L_ElementMissing="Doedd dim modd i ni fformatio cell y tabl oherwydd bod rhai gwerthoedd paramedr ar goll. Gwiriwch y paramedrau a rhoi cynnig arall arni.";Strings.OfficeOM.L_InvalidReadForBlankRow="Mae'r rhes a bennwyd yn wag.";Strings.OfficeOM.L_CoercionTypeNotSupported="Does dim modd delio â'r math o orfodaeth a bennwyd.";Strings.OfficeOM.L_Timeout="Mae amser y weithred wedi dod i ben. ";Strings.OfficeOM.L_UserAborted="Mae'r defnyddiwr wedi rhoi'r gorau i'r cais am ganiatâd.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Caniatáu";Strings.OfficeOM.L_UserNotSignedIn="Does dim defnyddiwr wedi mewngofnodi i Office.";Strings.OfficeOM.L_ConfirmDialog="Mae’r parth {0} yn gweithredu fel Microsoft Office, a gall redeg ategion Office, a allai gyrchu eich data personol. Os ydych yn ymddiried yn y parth i redeg fel Office a chyrchu’ch data, cliciwch Iawn i barhau.";Strings.OfficeOM.L_ActivityLimitReached="Wedi cyrraedd y terfyn gweithgarwch.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Mae'r data'n hen. Dylech adfer y gwrthrych eto.";Strings.OfficeOM.L_UserAbortedMessage="Dydy'r defnyddiwr ddim wedi caniatáu hawliau'r ychwanegyn.";Strings.OfficeOM.L_CustomXmlNodeNotFound="Heb ganfod y cwgn a bennwyd.";Strings.OfficeOM.L_RedundantCallbackSpecification="Does dim modd pennu galw'n ôl mewn rhestr arg a gwrthrych dewisol.";Strings.OfficeOM.L_GetDataIsTooLarge="Mae'r set data roedd cais amdani'n rhy fawr.";Strings.OfficeOM.L_DataWriteReminder="Notyn Atgoffa Ysgrifennu Data";Strings.OfficeOM.L_InvalidDataFormat="Mae fformat y gwrthrych data dan sylw yn annilys.";Strings.OfficeOM.L_DataNotMatchSelection="Dydy'r gwrthrych data a roddwyd ddim yn cyd-fynd â maint neu ddimensiynau'r dewis dan sylw.";Strings.OfficeOM.L_SliceSizeNotSupported="Does dim modd delio â'r maint sleis a bennwyd.";Strings.OfficeOM.L_InvalidSSOAddinMessage="Dydy'r ychwanegyn hwn ddim yn gallu delio â'r API manylion adnabod.";Strings.OfficeOM.L_FunctionCallFailed="Galwad swyddogaeth {0} wedi methu, cod y gwall: {1}.";Strings.OfficeOM.L_NotSupportedEventType="Does dim modd delio â'r math o ddigwyddiad a bennwyd {0}.";Strings.OfficeOM.L_DialogAlreadyOpened="Wedi methu gwneud hyn oherwydd bod gan yr ategyn hwn flwch deialog gweithredol yn barod.";Strings.OfficeOM.L_SSOClientErrorMessage="Cafwyd gwall annisgwyl yn y cleient.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Mae'r ffwythiant i gael cyd-destun dilysu ar goll";Strings.OfficeOM.L_SSOServerError="Gwall yn y darparwr dilysu.";Strings.OfficeOM.L_InvalidApiCallInContext="Galwad API annilys yn y cyd-destun cyfredol.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Does dim modd defnyddio paramedrau cyfesur gyda Thabl math gorfodaeth pan fydd y tabl yn cynnwys celloedd sydd wedi'u huno.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Dydy'r ategyn hwn ddim yn gallu delio â chydsyniad defnyddiwr.";Strings.OfficeOM.L_InvalidParameters="Mae gan y swyddogaeth {0} baramedrau annilys.";Strings.OfficeOM.L_FormattingReminder="Notyn Atgoffa Fformatio";Strings.OfficeOM.L_CannotRegisterEvent="Does dim modd cofrestru’r dynodydd digwyddiad.";Strings.OfficeOM.L_NewWindowCrossZone="Mae gosodiadau diogelwch eich porwr yn ein hatal rhag creu blwch deialog. Rhowch gynnig ar borwr gwahanol, neu {0} fel bod '{1}' a’r parth a ddangosir yn eich bar cyfeiriad yn yr un parth diogelwch.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Does dim modd creu rhwymiad gyda'r dewis dan sylw a'r math o rwymo a nodwyd.";Strings.OfficeOM.L_InvalidBindingOperation="Gweithrediad Rhwymo Annilys";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Collwyd cysylltiad wrth fewngofnodi, ac mae’n bosib nad ydy’r defnyddiwr wedi cael ei fewngofnodi. Mae’n debyg bod hyn wedi digwydd oherwydd gosodiadau ffurfweddu’r porwr, er enghraifft y parthau diogelwch.";Strings.OfficeOM.L_OutOfRange="Allan o'r Ystod";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Dydy'r dewis dan sylw ddim yn cyd-fynd â'r math o orfodaeth a bennwyd.";Strings.OfficeOM.L_ContinueButton="Parhau";Strings.OfficeOM.L_NotTrustedWAC="Mae'r ychwanegyn hwn wedi'i analluogi i'ch cadw'n ddiogel. I barhau i ddefnyddio'r ychwanegyn, dilyswch y caiff yr eitem hon ei chynnal mewn parth y gellir ymddiried ynddo neu ei agor yn yr ap bwrdd gwaith Office.";Strings.OfficeOM.L_DataNotMatchBindingType="Dydy'r gwrthrych data a bennwyd ddim yn cyd-fynd â'r math o rwymo.";Strings.OfficeOM.L_DocumentIsInactive="Methodd y dasg am nad yw'r ddogfen sy'n cynnwys yr ategyn hwn yn weithredol.";Strings.OfficeOM.L_BrowserAPINotSupported="Dydy'r porwr hwn ddim yn gallu delio â'r API dan sylw.";Strings.OfficeOM.L_BindingToMultipleSelection="Does dim modd delio ag adrannau sydd ddim yn agos at ei gilydd.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Rhaid i’r briodwedd gyda'r enw hwn ar Excel.Script.CustomFunctions sy’n cynrychioli diffiniad y ffwythiant gynnwys priodwedd ‘galw’ sy’n gweithredu’r ffwythiant.";Strings.OfficeOM.L_OperationCancelledError="Wedi Canslo'r Dasg";Strings.OfficeOM.L_SetDataParametersConflict="Mae'r paramedrau a bennwyd yn gwrthdaro.";Strings.OfficeOM.L_OKButton="Iawn";Strings.OfficeOM.L_DataNotMatchCoercionType="Dydy'r math o wrthrych data a bennwyd ddim yn cyd-fynd â'r dewis dan sylw.";Strings.OfficeOM.L_InvalidValue="Gwerth Annilys";Strings.OfficeOM.L_NotImplemented="Dydy'r swyddogaeth {0} ddim wedi cael ei gweithredu."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_DialogAlreadyOpened="Handlingen mislykkedes, fordi dette tilføjelsesprogram allerede har en aktiv dialogboks.";Strings.OfficeOM.L_UnsupportedDataObject="Det angivne dataobjekt understøttes ikke.";Strings.OfficeOM.L_TooManyArguments="for mange argumenter";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="konfigurer din browser";Strings.OfficeOM.L_NotSupportedEventType="Den angivne hændelsestype {0} understøttes ikke.";Strings.OfficeOM.L_InvalidSetColumns="De angivne kolonner er ugyldige.";Strings.OfficeOM.L_Timeout="Handlingen fik timeout og er blevet afbrudt.";Strings.OfficeOM.L_OutOfRange="Uden for intervallet";Strings.OfficeOM.L_ElementMissing="Vi kunne ikke formatere tabelcellen, fordi der mangler nogle parameterværdier. Dobbelttjek parametrene, og prøv igen.";Strings.OfficeOM.L_InvalidApiCallInContext="Ugyldigt API-kald i den aktuelle kontekst.";Strings.OfficeOM.L_PropertyNotLoaded="Egenskaben '{0}' er ikke tilgængelig. Før du læser egenskabens værdi, skal du kalde indlæsningsmetoden på det indeholdende objekt og kalde \"context.sync()\" på den tilknyttede anmodningskontekst.";Strings.OfficeOM.L_UnknownBindingType="Bindingstypen understøttes ikke.";Strings.OfficeOM.L_InvalidParameters="Funktion {0} har ugyldige parametre.";Strings.OfficeOM.L_InvalidResourceUrl="Der er angivet en ugyldig URL-adresse for programressourcen.";Strings.OfficeOM.L_DocumentIsInactive="Handlingen mislykkedes, fordi det dokument, der indeholder dette tilføjelsesprogram, er inaktivt.";Strings.OfficeOM.L_RequestTokenUnavailable="Denne API er blevet begrænset for at nedsætte opkaldshyppigheden.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Tillad";Strings.OfficeOM.L_RedundantCallbackSpecification="Der kan ikke specificeres tilbagekald både i argumentlisten og i valgfrit objekt.";Strings.OfficeOM.L_InvalidBinding="Ugyldig binding";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='Størrelsen af anmodningsdata har overskredet grænsen. Se dokumentationen: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Markeret indhold skal være i tabelformat. Formatér dataene som en tabel, og prøv igen.";Strings.OfficeOM.L_InvalidColumnsForBinding="De angivne kolonner er ugyldige.";Strings.OfficeOM.L_GetDataParametersConflict="De angivne parametre er i konflikt.";Strings.OfficeOM.L_ImplicitNotLoaded="Modulet er ikke indlæst før et token er erhvervet";Strings.OfficeOM.L_DialogParentIsMinimized="Handlingen mislykkedes, fordi det overordnede vindue er minimeret.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browserens begrænsninger forhindrede os i at oprette dialogboksen. Domænet for dialogboksen og domænet for tilføjelsesprogrammets vært er ikke i samme sikkerhedszone.";Strings.OfficeOM.L_DataNotMatchCoercionType="Typen for det angivne dataobjekt er ikke kompatibel med den aktuelle markering.";Strings.OfficeOM.L_FunctionCallFailed="Kald til funktionen {0} mislykkedes, fejlkode: {1}.";Strings.OfficeOM.L_UserAbortedMessage="Brugeren har ikke givet samtykke til tilføjelsesprogramtilladelserne.";Strings.OfficeOM.L_ActivityLimitReached="Aktivitetsgrænsen er nået.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Den angivne type tvangsforanstaltning er ikke kompatibel med denne bindingstype.";Strings.OfficeOM.L_ConfirmDialogConsent="Ved at klikke på OK giver du {0} adgang til dit indhold og dine personlige oplysninger. ";Strings.OfficeOM.L_OperationNotSupported="Handlingen understøttes ikke.";Strings.OfficeOM.L_InvalidSetRows="De angivne rækker er ugyldige.";Strings.OfficeOM.L_AppNameNotExist="Navnet på tilføjelsesprogrammet til {0} findes ikke.";Strings.OfficeOM.L_InvalidArgumentGeneric="Det eller de argumenter, der er overført til funktionen, fungerer ikke i denne situation, mangler eller har ikke det rigtige format.";Strings.OfficeOM.L_ModalDialogOpeng="Handlingen mislykkedes, fordi dette tilføjelsesprogram allerede har en aktiv modal dialogboks.";Strings.OfficeOM.L_UnsupportedUserIdentity="Brugeridentitetstypen understøttes ikke.";Strings.OfficeOM.L_ConnectionFailureWithStatus="Anmodningen mislykkedes. Statuskode: {0}.";Strings.OfficeOM.L_TooManyOptionalObjects="flere valgfrie objekter på parameterliste";Strings.OfficeOM.L_NewWindowCrossZone='Sikkerhedsindstillingerne i din browser forhindrer os i at oprette en dialogboks. Prøv en anden browser eller {0}, så "{1}" og det domæne, der vises i adresselinjen, er i samme sikkerhedszone.';Strings.OfficeOM.L_InvalidTableOptionValue="En eller flere af parametrene for TabelIndstillinger har værdier, som ikke er tilladt. Dobbelttjek værdierne, og prøv igen.";Strings.OfficeOM.L_CallbackNotAFunction="Tilbagekald skal være af typen funktion, men var af typen {0}.";Strings.OfficeOM.L_OverwriteWorksheetData="Indstillingshandlingen mislykkedes, fordi det medfølgende dataobjekt vil overskrive eller skifte data.";Strings.OfficeOM.L_NotImplemented="Funktion {0} er ikke implementeret.";Strings.OfficeOM.L_DataNotMatchBindingType="Det angivne dataobjekt er ikke kompatibelt med bindingstypen.";Strings.OfficeOM.L_ColIndexOutOfRange="Kolonneindeksværdien ligger uden for det tilladte interval. Brug en værdi (0 eller højere), som er lavere end antallet af kolonner.";Strings.OfficeOM.L_DialogAddressNotTrusted="Domænet for URL-adressen er ikke inkluderet i elementet AppDomains i manifestet, og det er ikke underdomænet for kildeplaceringen.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Handlingen understøttes ikke på denne bindingstype.";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript API-anmodning mislykkedes, da projektmappen blev skjult. Vis projektmappen, og prøv igen.";Strings.OfficeOM.L_MissingRequiredArguments="en række obligatoriske argumenter mangler";Strings.OfficeOM.L_CustomXmlNodeNotFound="Den angivne node blev ikke fundet.";Strings.OfficeOM.L_FileTypeNotSupported="Den angivne filtype understøttes ikke.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel er i celleredigeringstilstand. Afslut redigeringstilstand ved at trykke på ENTER eller TAB eller ved at vælge en anden celle, og derefter prøve igen.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Funktionens navn skal indeholde et navneområde, der ikke er tomt, og et kort navn, der ikke er tomt.";Strings.OfficeOM.L_SliceSizeNotSupported="Den angivne udsnitsstørrelse understøttes ikke.";Strings.OfficeOM.L_SettingsAreStale="Indstillingerne kunne ikke gemmes, fordi de ikke er aktuelle.";Strings.OfficeOM.L_ShuttingDown="Handlingen mislykkedes, fordi dataene ikke findes på serveren.";Strings.OfficeOM.L_MissingParameter="Parameter mangler";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='Størrelsen af svardata har overskredet grænsen. Se dokumentationen: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidGetColumns="De angivne kolonner er ugyldige.";Strings.OfficeOM.L_CustomFunctionImplementationMissing='Egenskaben med dette navn på Excel.Script.CustomFunctions, der repræsenterer funktionens definition, skal indeholde en "kald"-egenskab, der implementerer funktionen.';Strings.OfficeOM.L_InvalidBindingOperation="Ugyldig bindingshandling";Strings.OfficeOM.L_BindingCreationError="Fejl ved oprettelse af binding";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Handlingen mislykkedes, fordi dette tilføjelsesprogram ikke understøtter brugersamtykke i denne kategori";Strings.OfficeOM.L_SettingNameNotExist="Den angivne indstilling findes ikke.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Optællingen understøttes ikke i det aktuelle værtsprogram.";Strings.OfficeOM.L_NotSupported="Funktionen {0} understøttes ikke.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Dataene er ikke aktuelle";Strings.OfficeOM.L_BrowserAPINotSupported="Denne browser understøtter ikke den anmodede API.";Strings.OfficeOM.L_InvalidRequestContext="Objektet kan ikke bruges på tværs af forskellige anmodningskontekster.";Strings.OfficeOM.L_CustomXmlError="Brugerdefineret XML-fejl.";Strings.OfficeOM.L_InvalidReadForBlankRow="Den angivne række er tom.";Strings.OfficeOM.L_NetworkProblem="Netværksproblem";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Koordinatparametre kan ikke bruges med tvangsforanstaltningen af typen Tabel, hvis tabellen indeholder flettede celler.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} vil vise et nyt vindue.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="De angivne værdier for wowCount eller columnCount er ugyldige.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Funktionen for at hente godkendelseinformation mangler";Strings.OfficeOM.L_SettingsCannotSave="Indstillingerne kunne ikke gemmes.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP-protokollen understøttes ikke. Brug HTTPS i stedet";Strings.OfficeOM.L_CancelButton="Annuller";Strings.OfficeOM.L_EventHandlerAdditionFailed="Hændelseshandleren blev ikke tilføjet.";Strings.OfficeOM.L_SpecifiedIdNotExist="Det angivne id findes ikke.";Strings.OfficeOM.L_InvalidCoercion="Ugyldig type tvangsforanstaltning";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Den aktuelle markering er ikke kompatibel med den angivne type tvangsforanstaltning.";Strings.OfficeOM.L_TooManyIncompleteRequests="Vent, indtil det forrige opkald er fuldført.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Der er angivet en ugyldig URL-adresse for ressourcen i manifestet.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Grænsen for valg er nået";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Handlingen mislykkedes, fordi dette tilføjelsesprogram allerede anmoder om en adgangstoken.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Kald closeAsync i den aktuelle fil, før du henter en anden.";Strings.OfficeOM.L_SSOClientErrorMessage="Der opstod en uventet fejl i klienten.";Strings.OfficeOM.L_UserNotSignedIn="Ingen bruger er logget på Office.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignorer";Strings.OfficeOM.L_InvalidArgument="Argumentet '{0}' virker ikke i denne situation, det mangler, eller det har ikke det rigtige format.";Strings.OfficeOM.L_DocumentReadOnly="Den ønskede handling er ikke tilladt i den aktuelle dokumenttilstand.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Session er ugyldig eller har fået timeout";Strings.OfficeOM.L_InvalidGetStartRowColumn="De angivne værdier for startRow eller startColumn er ugyldige.";Strings.OfficeOM.L_SaveSettingsError="Fejl ved lagring af indstillinger";Strings.OfficeOM.L_EventRegistrationError="Fejl ved registrering af hændelse";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Foretag en markering.";Strings.OfficeOM.L_NotTrustedWAC="Dette tilføjelsesprogram er blevet deaktiveret for at hjælpe dig med at holde dig sikker. Hvis du vil fortsætte med at bruge tilføjelsesprogrammet, skal du kontrollere, at dette element er placeret i et domæne, der er tillid til, eller åbne det i Office-app-appen.";Strings.OfficeOM.L_FormattingReminder="Påmindelse om formatering";Strings.OfficeOM.L_DataNotMatchBindingSize="Det angivne dataobjekt svarer ikke til størrelsen på den aktuelle markering.";Strings.OfficeOM.L_NamedItemNotFound="Det navngivne element findes ikke.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Din Office-session er udløbet eller ugyldig. Opdater siden for at fortsætte.";Strings.OfficeOM.L_InvalidSetStartRowColumn="De angivne værdier for startRow eller startColumn er ugyldige.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Programmet {0} findes ikke. Microsoft.Office.WebExtension.initialize(reason) er ikke kaldt.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Skrivehandling understøttes ikke af Office, når en modal dialogboks er åben.";Strings.OfficeOM.L_InternalErrorDescription="Der opstod en intern fejl.";Strings.OfficeOM.L_BindingNotExist="Den angivne binding findes ikke.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Bemærk! Det foreslås, at antallet af formateringssæt, der er angivet af et Formatting API-kald, er under 100.";Strings.OfficeOM.L_InvalidCellsValue="En eller flere af parametrene i cellerne har værdier, som ikke er tilladt. Dobbelttjek værdierne, og prøv igen.";Strings.OfficeOM.L_SSOServerErrorMessage="Der opstod en uventet fejl på serveren.";Strings.OfficeOM.L_GetSelectionNotSupported="Den aktuelle markering understøttes ikke.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Tilføjelsesprogrammet anmoder allerede om en adgangstoken.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Et netværksproblem har forhindret hentning af filen.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath begrænser valget til 1.024 elementer.";Strings.OfficeOM.L_EventHandlerNotExist="Den angivne hændelseshandler blev ikke fundet for denne binding.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API understøttes ikke på denne platform.";Strings.OfficeOM.L_DataWriteReminder="Påmindelse om dataskrivning";Strings.OfficeOM.L_SelectionCannotBound="Den aktuelle markering kan ikke bindes.";Strings.OfficeOM.L_RequestTimeout="Opkaldet tog for lang tid at udføre.";Strings.OfficeOM.L_BadSelectorString="Den streng, der er overført til vælgeren, er formateret forkert eller understøttes ikke.";Strings.OfficeOM.L_APICallFailed="API-kald mislykkedes";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod='Ændringer i egenskaben "{0}" kan ikke anvendes gennem en "object.set"-metode.';Strings.OfficeOM.L_SSOConnectionLostError="En forbindelse blev afbrudt under logonprocessen.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Dataene er forældede. Hent objektet igen.";Strings.OfficeOM.L_InvalidFormatValue="En eller flere af formatparametrene har værdier, som ikke er tilladt. Dobbelttjek værdierne, og prøv igen.";Strings.OfficeOM.L_RowIndexOutOfRange="Rækkeindeksværdien ligger uden for det tilladte interval. Brug en værdi (0 eller højere), som er lavere end antallet af rækker.";Strings.OfficeOM.L_SetDataIsTooLarge="Det angivne dataobjekt er for stort.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Koordinatparametre kan ikke bruges med tvangsforanstaltningen af typen Tabel, hvis tabellen indeholder flettede celler.";Strings.OfficeOM.L_ReadSettingsError="Fejl ved læsning af indstillinger";Strings.OfficeOM.L_DisplayDialogError="Få vist fejl i dialogboksen";Strings.OfficeOM.L_InvalidDataFormat="Formatet for det angivne dataobjekt er ugyldigt.";Strings.OfficeOM.L_InValidOptionalArgument="ugyldigt valgfrit argument";Strings.OfficeOM.L_HostError="Værtsfejl";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Bemærk! Det foreslås, at antallet af celler i en tabel er under 20.000 celler.";Strings.OfficeOM.L_ApiNotFoundDetails="Metoden eller egenskaben {0} er del af det {1}-sæt af krav, som ikke er tilgængeligt i din version af {2}.";Strings.OfficeOM.L_CannotRegisterEvent="Hændelseshandleren kan ikke registreres.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Du er ved at sende og modtage potentielt følsomme oplysninger fra {0}. Klik kun på OK, hvis du har tillid til, at følgende websted modtager følsomme oplysninger: {1}.";Strings.OfficeOM.L_ContinueButton="Fortsæt";Strings.OfficeOM.L_InitializeNotReady="Office.js er endnu ikke fuldt indlæst. Prøv igen senere, eller sørg for at tilføje din initialiseringskode i funktionen Office.initialize.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Ugyldige inputargumenter.";Strings.OfficeOM.L_InvalidValue="Ugyldig værdi";Strings.OfficeOM.L_ConfirmDialog="Domænet {0} fungerer som Microsoft Office og kan køre Office tilføjelsesprogrammer, som kan få adgang til dine personlige oplysninger. Hvis du har tillid til, at domænet kører som Office og f��r adgang til dine data, skal du klikke på OK for at fortsætte.";Strings.OfficeOM.L_SettingsStaleError="Fejl pga. forældede indstillinger";Strings.OfficeOM.L_OsfControlTypeNotSupported="Typen OsfControl understøttes ikke.";Strings.OfficeOM.L_InvalidObjectPath='Stien til objektet \'{0}\' fungerer ikke for det, du forsøger at gøre. Hvis du bruger objektet på tværs af flere "context.sync"-kald og uden for den sekventielle udførelsen af et ".run" batch, skal du bruge metoderne "context.trackedObjects.add()" og "context.trackedObjects.remove()" til at administrere objektets levetid.';Strings.OfficeOM.L_MemoryLimit="Hukommelsesgrænsen er overskredet";Strings.OfficeOM.L_UnsupportedEnumeration="Ikke-understøttet optælling";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Dette tilføjelsesprogram understøtter ikke brugersamtykke.";Strings.OfficeOM.L_InvalidBindingError="Ugyldig bindingsfejl";Strings.OfficeOM.L_IndexOutOfRange="Indeks er uden for område.";Strings.OfficeOM.L_InvalidGetRows="De angivne rækker er ugyldige.";Strings.OfficeOM.L_ValueNotLoaded='Værdien af resultatobjektet er endnu ikke indlæst. Før du læser værdiegenskaben, skal du kalde "context.sync()" i den tilknyttede anmodningskontekst.';Strings.OfficeOM.L_RunMustReturnPromise='Den batchfunktion, der blev videresendt til ".run"-metoden, returnerede ikke et tilsagn. Funktionen skal returnere et tilsagn, så de automatisk registrerede objekter kan frigives, når batchhandlingen er fuldført. Normalt kan du returnere et tilsagn ved at returnere svaret fra "context.sync()".';Strings.OfficeOM.L_OperationCancelledError="Handlingen blev annulleret";Strings.OfficeOM.L_MultipleNamedItemFound="Der er fundet flere objekter med samme navn.";Strings.OfficeOM.L_CoercionTypeNotSupported="Den angivne type tvangsforanstaltning understøttes ikke.";Strings.OfficeOM.L_SetDataParametersConflict="De angivne parametre er i konflikt.";Strings.OfficeOM.L_UserClickIgnore="Brugeren valgte at ignorere dialogboksen.";Strings.OfficeOM.L_InvalidNode="Ugyldig node";Strings.OfficeOM.L_InvalidSSOAddinMessage="Id-API understøttes ikke for dette tilføjelsesprogram.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_ConfirmRefreshMessage="Hvis du vil fortsætte, skal du fjerne tilføjelsesprogrammet og tilføje det igen eller opdatere siden.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Hændelseshandleren blev ikke fjernet.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Vent et øjeblik...";Strings.OfficeOM.L_DataReadError="Fejl i læsning af data";Strings.OfficeOM.L_TooManyOptionalFunction="flere valgfrie funktioner på parameterliste";Strings.OfficeOM.L_FormatValueOutOfRange="Værdien er uden for det tilladte interval.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Identitetstypen for brugeren understøttes ikke.";Strings.OfficeOM.L_PermissionDenied="Tilladelse nægtet";Strings.OfficeOM.L_InternalError="Intern fejl";Strings.OfficeOM.L_BindingToMultipleSelection="Ikke-sammenhængende markeringer understøttes ikke.";Strings.OfficeOM.L_PropertyDoesNotExist='Egenskaben "{0}" findes ikke på objektet.';Strings.OfficeOM.L_InvalidGrantMessage="Manglende tilskud til dette tilføjelsesprogram.";Strings.OfficeOM.L_SSOServerError="Der opstod en fejl i godkendelsesprovideren.";Strings.OfficeOM.L_InvalidFormat="Ugyldigt format-fejl";Strings.OfficeOM.L_DataWriteError="Fejl i skrivning af data";Strings.OfficeOM.L_InvalidGrant="Forhåndsgodkendelse mangler.";Strings.OfficeOM.L_ConfirmCancelMessage="Beklager, vi kan ikke fortsætte.";Strings.OfficeOM.L_InvalidDataObject="Ugyldigt dataobjekt";Strings.OfficeOM.L_GetDataIsTooLarge="Det anmodede datasæt er for stort.";Strings.OfficeOM.L_DataStale="Data er ikke aktuelle";Strings.OfficeOM.L_InvalidAPICall="Ugyldigt API-kald";Strings.OfficeOM.L_OperationCancelledErrorMessage="Handlingen blev annulleret af brugeren.";Strings.OfficeOM.L_DataNotMatchSelection="Det angivne dataobjekt er ikke kompatibelt med figuren eller målene i den aktuelle markering.";Strings.OfficeOM.L_NoCapability="Du har ikke tilstrækkelige rettigheder til at udføre denne handling.";Strings.OfficeOM.L_CannotWriteToSelection="Der kan ikke skrives til det aktuelle valg.";Strings.OfficeOM.L_NoHttpsWAC="Denne Office-session bruger ikke en sikker forbindelse. Vi anbefaler, at du tager ekstra forholdsregler.";Strings.OfficeOM.L_NavOutOfBound="Handlingen mislykkedes, fordi indekset er uden for området.";Strings.OfficeOM.L_CannotNavigateTo="Objektet er placeret et sted, hvor navigation ikke understøttes.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty='Forsøger at indstille den skrivebeskyttede egenskab "{0}".';Strings.OfficeOM.L_DialogNavigateError="Fejl i dialogboksen Navigation";Strings.OfficeOM.L_InvalidSelectionForBindingType="Der kan ikke oprettes en binding med den aktuelle markering og den angivne bindingstype.";Strings.OfficeOM.L_SSOClientError="Der opstod en fejl i anmodningen om godkendelse fra Office.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Funktionens navn må kun indeholde bogstaver, tal, understregningstegn og punktummer.";Strings.OfficeOM.L_APINotSupported="API understøttes ikke";Strings.OfficeOM.L_UserAborted="Brugeren afbrød samtykkeanmodningen.";Strings.OfficeOM.L_ConnectionFailureWithDetails="Anmodningen mislykkedes med statuskoden {0}, fejlkoden {1} og følgende fejlmeddelelse: {2}";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="En egenskab med dette navn, der repræsenterer funktionens definition, skal findes på Excel.Script.CustomFunctions.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Den angivne bindingstype er ikke kompatibel med det navngivne element. ";Strings.OfficeOM.L_NotSupportedBindingType="Den angivne bindingstype {0} understøttes ikke.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="En forbindelse blev afbrudt under logonprocessen, og brugeren er muligvis ikke logget på. Det var sandsynligvis på grund af brugerens browserindstillinger, såsom sikkerhedszoner.";Strings.OfficeOM.L_DialogInvalidScheme="URL-skema understøttes ikke. Brug HTTPS i stedet."
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Der angegebenen Koersionstyp ist mit diesem Bindungstyp nicht kompatibel.";Strings.OfficeOM.L_InvalidCellsValue='Mindestens einer der "cells"-Parameter besitzt einen Wert, der nicht zulässig ist. Überprüfen Sie die Werte genau, und versuchen Sie es erneut.';Strings.OfficeOM.L_NotImplemented="Funktion {0} ist nicht implementiert.";Strings.OfficeOM.L_SetDataIsTooLarge="Das angegebene Datenobjekt ist zu groß.";Strings.OfficeOM.L_MissingRequiredArguments="fehlen einige erforderliche Argumente";Strings.OfficeOM.L_SSOServerErrorMessage="Unerwarteter Fehler auf dem Server.";Strings.OfficeOM.L_SSOClientErrorMessage="Unerwarteter Fehler im Client.";Strings.OfficeOM.L_InvalidSetColumns="Die angegebenen Spalten sind ungültig.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="konfigurieren Sie Ihren Browser";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel befindet sich im Zellbearbeitungsmodus. Beenden Sie den Bearbeitungsmodus, indem Sie die EINGABE- oder TAB-TASTE drücken, oder indem eine andere Zelle auswählen, und versuchen Sie es dann noch mal.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Ungültige Eingabeargumente.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_UnknownBindingType="Der Bindungstyp wird nicht unterstützt.";Strings.OfficeOM.L_PermissionDenied="Zugriff verweigert.";Strings.OfficeOM.L_InvalidBinding="Ungültige Bindung.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Die angegebenen rowCount- oder columnCount-Werte sind ungültig.";Strings.OfficeOM.L_InvalidDataObject="Ungültiges Datenobjekt.";Strings.OfficeOM.L_CustomXmlError="Benutzerdefiniertes XML-Fehler.";Strings.OfficeOM.L_RequestTokenUnavailable="Diese API wurde eingeschränkt, um die Anrufhäufigkeit herabzusetzen.";Strings.OfficeOM.L_APINotSupported="Nicht unterstützte API.";Strings.OfficeOM.L_TooManyIncompleteRequests="Warten Sie, bis der vorherige Aufruf abgeschlossen ist.";Strings.OfficeOM.L_NetworkProblem="Netzwerkproblem";Strings.OfficeOM.L_BindingNotExist="Die angegebene Bindung ist nicht vorhanden.";Strings.OfficeOM.L_PropertyDoesNotExist='Die Eigenschaft "{0}" ist für das Objekt nicht vorhanden.';Strings.OfficeOM.L_GetDataIsTooLarge="Der angeforderte Datensatz ist zu groß.";Strings.OfficeOM.L_EventHandlerNotExist="Der angegebene Ereignishandler für diese Bindung wurde nicht gefunden.";Strings.OfficeOM.L_SliceSizeNotSupported="Die angegebene Datenschnittgröße wird nicht unterstützt.";Strings.OfficeOM.L_DisplayDialogError="Dialoganzeigefehler";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Die aktuelle Auswahl ist mit dem angegebenen Koersionstyp nicht kompatibel.";Strings.OfficeOM.L_CoercionTypeNotSupported="Der angegebene Koersionstyp wird nicht unterstützt.";Strings.OfficeOM.L_GetDataParametersConflict="Die angegebenen Parameter stehen in Konflikt.";Strings.OfficeOM.L_CannotWriteToSelection="In die aktuelle Auswahl kann nicht geschrieben werden.";Strings.OfficeOM.L_DialogAlreadyOpened="Der Vorgang ist fehlgeschlagen, weil für dieses Add-In bereits ein Dialogfeld aktiv ist.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Hinweis: Die Anzahl der Zellen in einer Tabelle sollte unter 20.000 Zellen liegen.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Eine Eigenschaft mit diesem Namen, die die Definition der Funktion darstellt, muss in Excel.Script.CustomFunctions vorhanden sein.";Strings.OfficeOM.L_InvalidValue="Ungültiger Wert";Strings.OfficeOM.L_InvalidGrantMessage="Gewährung für dieses Add-In fehlt.";Strings.OfficeOM.L_NotSupportedEventType='Der angegebenen Ereignistyp "{0}" wird nicht unterstützt.';Strings.OfficeOM.L_InvalidParameters="Funktion {0} hat ungültige Parameter.";Strings.OfficeOM.L_FormattingReminder="Formatierungserinnerung";Strings.OfficeOM.L_InvalidSetRows="Die angegebenen Zeilen sind ungültig.";Strings.OfficeOM.L_Timeout="Timeout des Vorgangs.";Strings.OfficeOM.L_EventRegistrationError="Ereignis-Registrierungsfehler";Strings.OfficeOM.L_InvalidGetRows="Die angegebenen Zeilen sind ungültig.";Strings.OfficeOM.L_DataNotMatchBindingType="Das angegebene Datenobjekt ist mit dem Bindungstyp nicht kompatibel.";Strings.OfficeOM.L_SSOConnectionLostError="Während der Anmeldung wurde die Verbindung unterbrochen.";Strings.OfficeOM.L_BadSelectorString="Die an den Selektor übergebene Zeichenfolge ist nicht ordnungsgemäß formatiert oder wird nicht unterstützt.";Strings.OfficeOM.L_NotTrustedWAC="Dieses Add-In wurde deaktiviert, um Sie zu schützen. Um das Add-In weiterhin verwenden zu können, überprüfen Sie, ob dieses Element in einer vertrauenswürdigen Domäne gehostet wird, oder öffnen Sie es in der Office-Desktop-App.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Die Aufzählung wird in der aktuellen Hostanwendung nicht unterstützt.";Strings.OfficeOM.L_InValidOptionalArgument="ungültiges optionales Argument";Strings.OfficeOM.L_NavOutOfBound="Vorgangsfehler, weil der Index außerhalb des Bereichs liegt.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Ein Netzwerkproblem hat den Abruf der Datei verhindert.";Strings.OfficeOM.L_SelectionCannotBound="Eine Bindung an die aktuelle Auswahl ist nicht möglich.";Strings.OfficeOM.L_ConfirmDialogConsent="Wenn Sie auf „OK“ klicken, gewähren Sie {0} den Zugriff auf Ihre Inhalte und personenbezogenen Informationen. ";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Bitte treffen Sie eine Auswahl.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Der Funktionsname darf nur Buchstaben, Zahlen, Unterstriche und Punkte enthalten.";Strings.OfficeOM.L_ConnectionFailureWithStatus="Fehler der Anforderung mit Statuscode {0}.";Strings.OfficeOM.L_DocumentIsInactive="Fehler beim Vorgang, da das Dokument, das dieses Add-In enthält, inaktiv ist.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Hinweis: Die von einem Formatierungs-API-Aufruf festgelegten Formatierungssätze sollten unter 100 liegen.";Strings.OfficeOM.L_ValueNotLoaded='Der Wert des Ergebnisobjekts wurde noch nicht geladen. Rufen Sie vor dem Lesen der "value"-Eigenschaft "context.sync()" für den zugeordneten Anforderungskontext auf.';Strings.OfficeOM.L_InternalErrorDescription="Ein interner Fehler ist aufgetreten.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Schreibvorgang wird für Office nicht unterstützt, wenn ein modales Dialogfeld geöffnet ist.";Strings.OfficeOM.L_SetDataParametersConflict="Die angegebenen Parameter stehen in Konflikt.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Der Identitätstyp des Benutzers wird nicht unterstützt.";Strings.OfficeOM.L_NotSupportedBindingType='Der angegebene Bindungstyp "{0}" wird nicht unterstützt.';Strings.OfficeOM.L_ConfirmCancelMessage="Leider können wir nicht fortfahren.";Strings.OfficeOM.L_InvalidColumnsForBinding="Die angegebenen Spalten sind ungültig.";Strings.OfficeOM.L_UnsupportedDataObject="Der bereitgestellte Datenobjekttyp wird nicht unterstützt.";Strings.OfficeOM.L_InvalidBindingOperation="Ungültiger Bindungsvorgang.";Strings.OfficeOM.L_DialogAddressNotTrusted="Die Domäne der URL ist nicht im AppDomains-Element im Manifest enthalten und ist keine Unterdomäne des Quellspeicherorts.";Strings.OfficeOM.L_OperationCancelledError="Vorgang abgebrochen.";Strings.OfficeOM.L_CannotRegisterEvent="Der Ereignishandler kann nicht registriert werden.";Strings.OfficeOM.L_InternalError="Interner Fehler";Strings.OfficeOM.L_SettingsAreStale="Einstellungen konnten nicht gespeichert werden, da sie nicht aktuell sind.";Strings.OfficeOM.L_CustomFunctionImplementationMissing='Die Eigenschaft mit diesem Namen in Excel.Script.CustomFunctions, die die Definition der Funktion darstellt, muss eine "call"-Eigenschaft enthalten, die die Funktion implementiert.';Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Die Funktion zum Abrufen des Authentifizierungskontexts fehlt.";Strings.OfficeOM.L_SSOClientError="Fehler in der Authentifizierungsanforderung von Office.";Strings.OfficeOM.L_ContinueButton="Fortfahren";Strings.OfficeOM.L_UserAborted="Der Benutzer hat die Zustimmungsanfrage abgebrochen.";Strings.OfficeOM.L_TooManyArguments="zu viele Argumente";Strings.OfficeOM.L_MemoryLimit="Arbeitsspeichergrenze überschritten";Strings.OfficeOM.L_RunMustReturnPromise='Die an die ".run"-Methode übergebene Batchfunktion hat kein Promise-Objekt zurückgegeben. Die Funktion muss ein Promise-Objekt zurückgeben, damit alle automatisch nachverfolgten Objekte nach Abschluss der Batchverarbeitung freigegeben werden können. Normalerweise wird ein Promise-Objekt zurückgegeben, indem die Antwort von "context.sync()" zurückgegeben wird.';Strings.OfficeOM.L_OperationCancelledErrorMessage="Der Vorgang wurde vom Benutzer abgebrochen.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Einen Moment ...";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Fehler beim Vorgang, da dieses Add-In bereits ein Zugriffstoken anfordert.";Strings.OfficeOM.L_InvalidSSOAddinMessage="Die Identitäts-API wird für dieses Add-In nicht unterstützt.";Strings.OfficeOM.L_InvalidFormatValue='Mindestens einer der "format"-Parameter besitzt einen Wert, der nicht zulässig ist. Überprüfen Sie die Werte genau, und versuchen Sie es erneut.';Strings.OfficeOM.L_SettingNameNotExist="Der angegebene Einstellungsname ist nicht vorhanden.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Der OsfControl-Typ wird nicht unterstützt.";Strings.OfficeOM.L_InvalidArgument='Das Argument "{0}" funktioniert in dieser Situation nicht, fehlt oder hat nicht das richtige Format.';Strings.OfficeOM.L_OutOfRange="Außerhalb des zulässigen Bereichs";Strings.OfficeOM.L_DataNotMatchBindingSize="Das bereitgestellte Datenobjekt entspricht nicht der Größe der aktuellen Auswahl.";Strings.OfficeOM.L_NoHttpsWAC="Diese Office-Sitzung verwendet keine sichere Verbindung. Wir empfehlen, dass Sie zusätzliche Vorsichtsmaßnahmen ergreifen.";Strings.OfficeOM.L_CancelButton="Abbrechen";Strings.OfficeOM.L_FunctionCallFailed='Fehler beim Aufrufen der Funktion "{0}". Fehlercode: {1}.';Strings.OfficeOM.L_WorkbookHiddenMessage="Fehler bei der JavaScript-API-Anforderung, weil die Arbeitsmappe ausgeblendet war. Blenden Sie die Arbeitsmappe ein, und versuchen Sie es noch mal.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Die Daten sind veraltet. Rufen Sie das Objekt noch mal ab.";Strings.OfficeOM.L_InitializeNotReady="Office.js wurde noch nicht vollständig geladen. Versuchen Sie es bitte später erneut, oder stellen Sie sicher, dass Ihr Initialisierungscode der Office.initialize-Funktion hinzugefügt wird.";Strings.OfficeOM.L_ApiNotFoundDetails='Die Methode oder Eigenschaft "{0}" ist Teil des "{1}"-Anforderungssatzes, der in Ihrer Version von {2} nicht verfügbar ist.';Strings.OfficeOM.L_DataStale="Nicht aktuelle Daten";Strings.OfficeOM.L_UnsupportedUserIdentity="Der Benutzeridentitätstyp wird nicht unterstützt.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Eine Bindung kann nicht mit der aktuellen Auswahl und dem angegebenen Bindungstyp erstellt werden.";Strings.OfficeOM.L_DialogRequireHTTPS="Das HTTP-Protokoll wird nicht unterstützt. Verwenden Sie stattdessen HTTPS.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Zulassen";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Dieses Add-In unterstützt keine Benutzerzustimmung.";Strings.OfficeOM.L_InvalidTableOptionValue='Mindestens einer der "tableOptions"-Parameter besitzt einen Wert, der nicht zulässig ist. Überprüfen Sie die Werte genau, und versuchen Sie es erneut.';Strings.OfficeOM.L_NamedItemNotFound="Das benannte Element ist nicht vorhanden.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Ungültige Sitzung oder Timeout.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browsereinschränkungen haben das Erstellen des Dialogfelds verhindert. Die Domäne des Dialogfelds und die Domäne des Add-In-Hosts befinden sich nicht in der gleichen Sicherheitszone.";Strings.OfficeOM.L_ShuttingDown="Vorgangsfehler, weil die Daten auf dem Server nicht aktuell sind.";Strings.OfficeOM.L_DataReadError="Fehler beim Lesen von Daten.";Strings.OfficeOM.L_DataNotMatchSelection="Das bereitgestellte Datenobjekt ist mit der Form oder den Abmessungen der aktuellen Auswahl nicht kompatibel.";Strings.OfficeOM.L_DataNotMatchCoercionType="Der Typ des angegebenen Datenobjekts ist mit der aktuellen Auswahl nicht kompatibel.";Strings.OfficeOM.L_FileTypeNotSupported="Der angegebene Dateityp wird nicht unterstützt.";Strings.OfficeOM.L_IndexOutOfRange="Index außerhalb des Gültigkeitsbereichs.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_InvalidGetColumns="Die angegebenen Spalten sind ungültig.";Strings.OfficeOM.L_DataWriteReminder="Erinnerung zum Schreiben von Daten";Strings.OfficeOM.L_InvalidReadForBlankRow="Die angegebene Zeile ist leer.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Die ausgewählten Inhalte müssen im Tabellenformat vorliegen. Formatieren Sie die Daten als Tabelle, und versuchen Sie es dann erneut.";Strings.OfficeOM.L_InvalidGrant="Vorautorisierung fehlt.";Strings.OfficeOM.L_CannotNavigateTo="Das Objekt befindet sich an einem Ort, wo keine Navigation unterstützt wird.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='Die Antwortnutzlastgröße hat das Limit überschritten. Bitte beachten Sie die Dokumentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidArgumentGeneric="Die an die Funktion übergebenen Argumente funktionieren in dieser Situation nicht, fehlen oder haben nicht das richtige Format.";Strings.OfficeOM.L_DocumentReadOnly="Der angeforderte Vorgang ist im aktuellen Dokumentmodus nicht zulässig.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported='Koordinatenparameter können nicht mit dem Koersionstyp "Tabelle" verwendet werden, wenn die Tabelle verbundene Zellen enthält.';Strings.OfficeOM.L_OperationNotSupported="Dieser Vorgang wird nicht unterstützt.";Strings.OfficeOM.L_HostError="Hostfehler";Strings.OfficeOM.L_InvalidCoercion="Ungültiger Koersionstyp.";Strings.OfficeOM.L_ModalDialogOpeng="Fehler beim Vorgang, da dieses Add-In bereits über ein aktives modales Dialogfeld verfügt.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Vorgangsfehler, weil dieses Add-In keine Benutzerzustimmung in dieser Kategorie unterstützt.";Strings.OfficeOM.L_SSOServerError="Fehler im Authentifizierungsanbieter.";Strings.OfficeOM.L_CallbackNotAFunction='Der Rückruf muss vom Typ "Funktion" sein, war aber vom Typ "{0}".';Strings.OfficeOM.L_RowIndexOutOfRange="Der Wert für den Zeilenindex liegt außerhalb des zulässigen Bereichs. Verwenden Sie einen Wert (0 oder höher), der kleiner als die Anzahl der Zeilen ist.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty='Versuch, die schreibgeschützte Eigenschaft "{0}" festzulegen.';Strings.OfficeOM.L_UserClickIgnore="Der Benutzer hat sich entschlossen, das Dialogfeld zu ignorieren.";Strings.OfficeOM.L_TooManyOptionalFunction="mehrere optionale Funktionen in der Parameterliste";Strings.OfficeOM.L_MultipleNamedItemFound="Es wurden mehrere Objekte mit dem gleichen Namen gefunden.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} möchte ein neues Fenster anzeigen.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Fehler beim Entfernen des Ereignishandlers.";Strings.OfficeOM.L_SpecifiedIdNotExist="Die angegebene ID ist nicht vorhanden.";Strings.OfficeOM.L_DialogNavigateError="Dialognavigationsfehler";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod='Änderungen an der Eigenschaft "{0}" können nicht mit einer "object.set"-Methode angewendet werden.';Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignorieren";Strings.OfficeOM.L_NotSupported='Die Funktion "{0}" wird nicht unterstützt.';Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Während der Anmeldung wurde die Verbindung unterbrochen, und der Benutzer ist möglicherweise nicht angemeldet. Der Grund hierfür lag wahrscheinlich in den Browserkonfigurationseinstellungen des Benutzers, z. B. den Sicherheitszonen.";Strings.OfficeOM.L_BindingCreationError="Fehler beim Erstellen der Bindung.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Der Funktionsname kann muss einen nicht leeren Namespace und einen nicht leeren Kurznamen enthalten.";Strings.OfficeOM.L_ElementMissing="Die Tabellenzelle konnte nicht formatiert werden, weil einige Parameterwerte fehlen. Überprüfen Sie die Werte genau, und versuchen Sie es erneut.";Strings.OfficeOM.L_InvalidAPICall="Ungültiger API-Aufruf.";Strings.OfficeOM.L_BrowserAPINotSupported="Dieser Browser unterstützt die angeforderte API nicht.";Strings.OfficeOM.L_ConfirmRefreshMessage="Entfernen Sie das Add-In und fügen Sie es dann erneut hinzu oder aktualisieren Sie die Seite, um den Vorgang fortzusetzen.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='Die Größe der Anforderungsnutzlast hat das Limit überschritten. Bitte beachten Sie die Dokumentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidSetStartRowColumn="Die angegebenen startRow- oder startColumn-Werte sind ungültig.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Ungültige Ressourcen-URL im Manifest angegeben.";Strings.OfficeOM.L_InvalidObjectPath='Der Objektpfad "{0}" funktioniert nicht für den von Ihnen versuchten Vorgang. Wenn Sie das Objekt über mehrere Aufrufe von "context.sync" und außerhalb der sequenziellen Ausführung eines ".run"-Batchs verwenden, verwenden Sie die Methoden "context.trackedObjects.add()" und "context.trackedObjects.remove()", um die Lebensdauer des Objekts zu verwalten.';Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath beschränkt die Auswahl auf 1024 Elemente.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Ihre Office-Sitzung ist abgelaufen oder ungültig. Aktualisieren Sie die Seite, um fortzufahren.";Strings.OfficeOM.L_ActivityLimitReached="Der Aktivitätsgrenzwert wurde erreicht.";Strings.OfficeOM.L_UnsupportedEnumeration="Nicht unterstützte Aufzählung";Strings.OfficeOM.L_SettingsCannotSave="Die Einstellungen konnten nicht gespeichert werden.";Strings.OfficeOM.L_InvalidNode="Ungültiger Knoten.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Das Add-In fordert bereits ein Zugriffstoken an.";Strings.OfficeOM.L_InvalidDataFormat="Das Format des angegebenen Datenobjekts ist ungültig.";Strings.OfficeOM.L_CustomXmlNodeNotFound="Der angegebene Knoten wurde nicht gefunden.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Die Anwendung {0} ist nicht vorhanden. Microsoft.Office.WebExtension.initialize(Ursache) wird nicht aufgerufen.";Strings.OfficeOM.L_RedundantCallbackSpecification="Ein Rückruf kann nicht sowohl in der Argumenteliste als auch in einem optionalen Objekt angegeben werden.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported='Koordinatenparameter können nicht mit dem Koersionstyp "Tabelle" verwendet werden, wenn die Tabelle verbundene Zellen enthält.';Strings.OfficeOM.L_APICallFailed="Fehler beim API-Aufruf.";Strings.OfficeOM.L_RequestTimeout="Die Ausführung des Aufrufs hat zu lang gedauert.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Fehler beim Hinzufügen des Ereignishandlers.";Strings.OfficeOM.L_SettingsStaleError="Fehler: Veraltete Einstellungen.";Strings.OfficeOM.L_SaveSettingsError="Fehler beim Speichern von Einstellungen.";Strings.OfficeOM.L_ColIndexOutOfRange="Der Wert für den Spaltenindex liegt außerhalb des zulässigen Bereichs. Verwenden Sie einen Wert (0 oder höher), der kleiner als die Anzahl der Spalten ist.";Strings.OfficeOM.L_InvalidRequestContext="Das Objekt kann nicht in verschiedenen Anforderungskontexten verwendet werden.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Daten sind nicht aktuell.";Strings.OfficeOM.L_PropertyNotLoaded='Die Eigenschaft "{0}" ist nicht verfügbar. Rufen Sie vor dem Lesen des Werts der Eigenschaft die load-Methode für das enthaltende Objekt auf, und rufen Sie "context.sync()" für den zugeordneten Anforderungskontext auf.';Strings.OfficeOM.L_OverwriteWorksheetData="Fehler im festgelegten Vorgang, weil das bereitgestellte Datenobjekt Daten überschreiben oder verschieben würde.";Strings.OfficeOM.L_FormatValueOutOfRange="Der Wert liegt außerhalb des zulässigen Bereichs.";Strings.OfficeOM.L_UserNotSignedIn="Kein Benutzer ist bei Office angemeldet.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Auswahlgrenzwert erreicht.";Strings.OfficeOM.L_InvalidFormat="Fehler: Ungültiges Format.";Strings.OfficeOM.L_AppNameNotExist="Add-In-Name für {0} ist nicht vorhanden.";Strings.OfficeOM.L_ConnectionFailureWithDetails="Fehler der Anforderung mit Statuscode {0}, Fehlercode {1} und der folgenden Fehlermeldung: {2}";Strings.OfficeOM.L_InvalidApiCallInContext="Ungültiger API-Aufruf im aktuellen Kontext.";Strings.OfficeOM.L_ImplicitNotLoaded="Das Modul wird erst geladen, nachdem ein Token abgerufen wurde.";Strings.OfficeOM.L_ReadSettingsError="Fehler beim Lesen von Einstellungen.";Strings.OfficeOM.L_TooManyOptionalObjects="mehrere optionale Objekte in der Parameterliste";Strings.OfficeOM.L_BindingToMultipleSelection="Eine nicht zusammenhängende Auswahl wird nicht unterstützt.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent='Sie sind im Begriff, potenziell vertrauliche Informationen von {0} zu senden und zu empfangen. Klicken Sie nur auf "OK", wenn Sie der folgenden Website vertrauen, die vertrauliche Informationen empfängt: {1}.';Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Der Vorgang wird für diesen Bindungstyp nicht unterstützt.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Der angegebene Bindungstyp ist mit dem angegebenen benannten Element nicht kompatibel.";Strings.OfficeOM.L_DataWriteError="Fehler beim Schreiben von Daten.";Strings.OfficeOM.L_NoCapability="Sie verfügen nicht über ausreichende Berechtigungen für diese Aktion.";Strings.OfficeOM.L_InvalidBindingError="Fehler: Ungültige Bindung.";Strings.OfficeOM.L_GetSelectionNotSupported="Die aktuelle Auswahl wird nicht unterstützt.";Strings.OfficeOM.L_CloseFileBeforeRetrieve='Rufen Sie "closeAsync" für die aktuelle Datei auf, bevor Sie eine weitere Datei abrufen.';Strings.OfficeOM.L_DialogParentIsMinimized="Fehler beim Vorgang, da das übergeordnete Fenster minimiert ist.";Strings.OfficeOM.L_MissingParameter="Fehlender Parameter";Strings.OfficeOM.L_DialogInvalidScheme="Das URL-Schema wird nicht unterstützt. Verwenden Sie stattdessen HTTPS.";Strings.OfficeOM.L_UserAbortedMessage="Der Benutzer hat den Add-In-Berechtigungen nicht zugestimmt.";Strings.OfficeOM.L_InvalidGetStartRowColumn="Die angegebenen startRow- oder startColumn-Werte sind ungültig.";Strings.OfficeOM.L_NewWindowCrossZone='Die Sicherheitseinstellungen Ihres Browsers verhindern, dass wir ein Dialogfeld öffnen. Verwenden Sie einen anderen Browser oder {0}, sodass sich "{1}" und die in Ihrer Adressleiste angezeigte Domäne in der selben Sicherheitszone befinden.';Strings.OfficeOM.L_SSOUnsupportedPlatform="Die API wird in dieser Plattform nicht unterstützt.";Strings.OfficeOM.L_ConfirmDialog="Die Domäne {0} fungiert als Microsoft Office und kann Office-Add-Ins ausführen, die möglicherweise auf Ihre persönlichen Daten zugreifen. Wenn Sie darauf vertrauen, dass die Domäne als Office ausgeführt wird und auf Ihre Daten zugreift, klicken Sie auf OK, um fortzufahren.";Strings.OfficeOM.L_InvalidResourceUrl="Ungültige Anwendungsressourcen-URL angegeben."
|
|
@@ -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."
|