xlwings-server 1.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- xlwings_server/.env.template +145 -0
- xlwings_server/__init__.py +12 -0
- xlwings_server/_version.py +34 -0
- xlwings_server/auth/__init__.py +0 -0
- xlwings_server/auth/custom/__init__.py +26 -0
- xlwings_server/auth/entraid/__init__.py +131 -0
- xlwings_server/auth/entraid/jwks.py +10 -0
- xlwings_server/azure_functions_templates/.funcignore +28 -0
- xlwings_server/azure_functions_templates/function_app.py +28 -0
- xlwings_server/azure_functions_templates/host.json +22 -0
- xlwings_server/azure_functions_templates/local.settings.json +8 -0
- xlwings_server/build_utils/__init__.py +9 -0
- xlwings_server/build_utils/static_file_hasher.py +212 -0
- xlwings_server/cli.py +1592 -0
- xlwings_server/config.py +228 -0
- xlwings_server/custom_functions/__init__.py +8 -0
- xlwings_server/custom_functions/examples.py +177 -0
- xlwings_server/custom_scripts/__init__.py +8 -0
- xlwings_server/custom_scripts/examples.py +94 -0
- xlwings_server/databases.py +19 -0
- xlwings_server/dependencies.py +126 -0
- xlwings_server/docker_templates/.dockerignore +15 -0
- xlwings_server/docker_templates/Dockerfile +60 -0
- xlwings_server/docker_templates/docker-compose.yaml +32 -0
- xlwings_server/hotreload.py +59 -0
- xlwings_server/main.py +242 -0
- xlwings_server/models/__init__.py +14 -0
- xlwings_server/models/user.py +53 -0
- xlwings_server/object_handles.py +142 -0
- xlwings_server/routers/__init__.py +0 -0
- xlwings_server/routers/manifest.py +82 -0
- xlwings_server/routers/root.py +16 -0
- xlwings_server/routers/socketio.py +69 -0
- xlwings_server/routers/taskpane.py +12 -0
- xlwings_server/routers/xlwings.py +197 -0
- xlwings_server/security_headers.json +53 -0
- xlwings_server/serializers/__init__.py +25 -0
- xlwings_server/serializers/default_serializer.py +19 -0
- xlwings_server/serializers/dictionary_serializer.py +25 -0
- xlwings_server/serializers/framework.py +50 -0
- xlwings_server/serializers/numpy_serializer.py +26 -0
- xlwings_server/serializers/pandas_serializer.py +95 -0
- xlwings_server/static/css/core.css +28 -0
- xlwings_server/static/css/style.css +0 -0
- xlwings_server/static/images/favicon.png +0 -0
- xlwings_server/static/images/xlwings-16.png +0 -0
- xlwings_server/static/images/xlwings-32.png +0 -0
- xlwings_server/static/images/xlwings-64.png +0 -0
- xlwings_server/static/images/xlwings-80.png +0 -0
- xlwings_server/static/js/auth.js +13 -0
- xlwings_server/static/js/config.js +4 -0
- xlwings_server/static/js/core/alpinejs-csp-boilerplate.js +11 -0
- xlwings_server/static/js/core/bootstrap-customizations.js +7 -0
- xlwings_server/static/js/core/custom-functions-code.js +296 -0
- xlwings_server/static/js/core/examples.js +62 -0
- xlwings_server/static/js/core/hotreload.js +3 -0
- xlwings_server/static/js/core/htmx-handlers.js +86 -0
- xlwings_server/static/js/core/officejs-history-fix-part1.js +3 -0
- xlwings_server/static/js/core/officejs-history-fix-part2.js +2 -0
- xlwings_server/static/js/core/reload-custom-functions.js +79 -0
- xlwings_server/static/js/core/socketio-handlers.js +34 -0
- xlwings_server/static/js/core/xlwings-alert.js +22 -0
- xlwings_server/static/js/core/xlwingsjs/alert.js +85 -0
- xlwings_server/static/js/core/xlwingsjs/auth.js +63 -0
- xlwings_server/static/js/core/xlwingsjs/sheet-buttons.js +133 -0
- xlwings_server/static/js/core/xlwingsjs/utils.js +119 -0
- xlwings_server/static/js/core/xlwingsjs/wasm.js +131 -0
- xlwings_server/static/js/core/xlwingsjs/xlwings.js +1060 -0
- xlwings_server/static/js/main.js +0 -0
- xlwings_server/static/js/ribbon.js +17 -0
- xlwings_server/static/vendor/@alpinejs/LICENSE +21 -0
- xlwings_server/static/vendor/@alpinejs/csp/dist/cdn.min.js +7 -0
- xlwings_server/static/vendor/@microsoft/office-js/LICENSE.md +76 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/af-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/agaveerrorux.js +18 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon32x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon96x96.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/businessbarclose_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/dropdownarrow_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/ellipsis_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/miniinfoblue_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_default_icon.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_status_icons.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/office.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/refresh_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/index.html +16 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/style/agaveerrorux.css +482 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/am-et/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ae/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-bh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-dz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-eg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-iq/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-jo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-kw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-lb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ly/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ma/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-om/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-qa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sa/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-tn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ye/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.8.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.9.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/az-latn-az/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/be-by/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bg-bg/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bs-latn-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ca-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cs-cz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cy-gb/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/da-dk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-at/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-de/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-li/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/el-gr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-029/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-au/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-bz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ca/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-gb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-in/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-jm/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-my/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-nz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ph/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-tt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-zw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ar/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-bo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cl/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-co/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-do/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ec/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-gt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-hn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-mx/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ni/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pe/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-py/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-sv/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-uy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ve/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es6-promise.js +5 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/et-ee/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/eu-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.00.js +19 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-winrt-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelios-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fa-ir/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fi-fi/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fil-ph/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ca/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-fr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-mc/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ga-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gl-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gu-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/he-il/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hi-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-hr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/html2canvas.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hu-hu/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hy-am/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/id-id/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/is-is/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-it/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ja-jp/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ka-ge/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kk-kz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/km-kh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ko-kr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lb-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lo-la/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lt-lt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lv-lv/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mk-mk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ml-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mn-mn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mr-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-bn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-my/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mt-mt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nb-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ne-np/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-nl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nn-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/o15apptofilemappingtable.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office-vsdoc.js +28596 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office.js +84 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pl-pl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-br/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-pt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ro-ro/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ru-ru/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/si-lk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sk-sk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sl-si/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sq-al/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-fi/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-se/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sw-ke/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ta-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/te-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs_agave.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/th-th/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/tr-tr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/uk-ua/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ur-pk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/vi-vn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.browserauth.js +77 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.implicit.js +35 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-cn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-hk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-mo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-tw/office_strings.js +1 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js +3 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap/LICENSE +21 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js +7 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css +12 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css.map +1 -0
- xlwings_server/static/vendor/htmx-ext-head-support/head-support.js +144 -0
- xlwings_server/static/vendor/htmx-ext-loading-states/loading-states.js +184 -0
- xlwings_server/static/vendor/htmx.org/LICENSE +13 -0
- xlwings_server/static/vendor/htmx.org/dist/htmx.min.js +1 -0
- xlwings_server/static/vendor/socket.io/LICENSE +22 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js +7 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js.map +1 -0
- xlwings_server/templates/_book.html +8 -0
- xlwings_server/templates/alert_base.html +16 -0
- xlwings_server/templates/base.html +117 -0
- xlwings_server/templates/examples/alpine/README.md +26 -0
- xlwings_server/templates/examples/alpine/taskpane.html +47 -0
- xlwings_server/templates/examples/auth/README.md +38 -0
- xlwings_server/templates/examples/auth/protected.html +8 -0
- xlwings_server/templates/examples/auth/public.html +11 -0
- xlwings_server/templates/examples/excel_object_model/README.md +49 -0
- xlwings_server/templates/examples/excel_object_model/add_name_form.html +27 -0
- xlwings_server/templates/examples/hello_world/README.md +9 -0
- xlwings_server/templates/examples/hello_world/taskpane_hello.html +24 -0
- xlwings_server/templates/examples/htmx_form/README.md +44 -0
- xlwings_server/templates/examples/htmx_form/_greeting.html +6 -0
- xlwings_server/templates/examples/htmx_form/taskpane_htmx_form.html +21 -0
- xlwings_server/templates/examples/live_form_validation/README.md +60 -0
- xlwings_server/templates/examples/live_form_validation/add_name_form.html +33 -0
- xlwings_server/templates/examples/multi_app/README.md +34 -0
- xlwings_server/templates/examples/multi_app/taskpane1.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane2.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane_loader.html +5 -0
- xlwings_server/templates/examples/navigation/README.md +28 -0
- xlwings_server/templates/examples/navigation/_navigation.html +16 -0
- xlwings_server/templates/examples/navigation/taskpane_one.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_three.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_two.html +8 -0
- xlwings_server/templates/examples/pictures/README.md +42 -0
- xlwings_server/templates/examples/pictures/_picture.html +4 -0
- xlwings_server/templates/examples/pictures/taskpane_pictures.html +26 -0
- xlwings_server/templates/manifest.xml +155 -0
- xlwings_server/templates/taskpane.html +1 -0
- xlwings_server/templates/xlwings_alert.html +27 -0
- xlwings_server/templates.py +61 -0
- xlwings_server/utils.py +32 -0
- xlwings_server/wasm/__init__.py +0 -0
- xlwings_server/wasm/config.py +24 -0
- xlwings_server/wasm/main.py +236 -0
- xlwings_server/wasm/requirements.txt +5 -0
- xlwings_server-1.1.0.dist-info/METADATA +61 -0
- xlwings_server-1.1.0.dist-info/RECORD +313 -0
- xlwings_server-1.1.0.dist-info/WHEEL +4 -0
- xlwings_server-1.1.0.dist-info/entry_points.txt +2 -0
- xlwings_server-1.1.0.dist-info/licenses/LICENSE.md +223 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_ContinueButton="सुरू ठेवा";Strings.OfficeOM.L_ConfirmDialogConsentTitle="एक क्षण ...";Strings.OfficeOM.L_NetworkProblemRetrieveFile="नेटवर्क समस्येमुळे फाइलची पुनर्प्राप्ती प्रतिबंधित झाली आहे.";Strings.OfficeOM.L_ConnectionFailureWithStatus="{0} च्या स्थिती कोडसह विनंती अयशस्वी झाली.";Strings.OfficeOM.L_DisplayDialogError="संवाद त्रुटी प्रदर्शित करा";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="आपले Office सत्र कालबाह्य झाले आहे किंवा अवैध आहे. पुढे सुरू ठेवण्यासाठी, पृष्ठ रिफ्रेश करा.";Strings.OfficeOM.L_InvalidNode="अवैध नोड";Strings.OfficeOM.L_UserAbortedMessage="प्रयोक्ता अॅड-इन परवानगींना संमती देत नाही.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="साइन इन प्रक्रियेदरम्यान कनेक्शन गमावले आणि प्रयोक्त्यास साइन केले जाऊ शकले नाही. हे कदाचित प्रयोक्त्याच्या ब्राउझर कॉन्फिगरेशन सेटिंग्जमुळे झाले, जसे की सुरक्षा विभाग.";Strings.OfficeOM.L_OutOfRange="परिक्षेत्राबाहेर";Strings.OfficeOM.L_OperationCancelledErrorMessage="ऑपरेशन प्रयोक्त्याद्वारे रद्द करण्यात आले होते.";Strings.OfficeOM.L_InvalidDataObject="अवैध डेटा ऑब्जेक्ट";Strings.OfficeOM.L_CellDataAmountBeyondLimits="नोट: सारणीमधील कक्षांची संख्या 20,000 पेक्षा कमी ठेवण्याचे सूचित केले आहे.";Strings.OfficeOM.L_BindingToMultipleSelection="सलग नसलेल्या निवडी समर्थित नाहीत.";Strings.OfficeOM.L_BindingNotExist="विनिर्दिष्ट बाइंडिंग अस्तित्वात नाही.";Strings.OfficeOM.L_SSOConnectionLostError="साइन इन प्रक्रियेदरम्यान कनेक्शन गमावले.";Strings.OfficeOM.L_FormatValueOutOfRange="मूल्य परवानगी असलेल्या परिक्षेत्राबाहेरील आहे.";Strings.OfficeOM.L_InvalidGrant="पूर्वप्रमाणीकरण गहाळ आहे.";Strings.OfficeOM.L_SSOServerErrorMessage="सर्व्हरवर एक अनपेक्षित त्रुटी आली आहे.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="अॅड-इन आधीच ऍक्सेस टोकनची विनंती केली आहे.";Strings.OfficeOM.L_SettingsAreStale="सेटिंग्ज सुरक्षित करता आल्या नाहीत कारण त्या सद्य नाहीत.";Strings.OfficeOM.L_PropertyDoesNotExist="ऑब्जेक्टवर '{0}' गुणधर्म अस्तित्वात नाही.";Strings.OfficeOM.L_ApiNotFoundDetails="पद्धत किंवा गुणधर्म {0} हा {1} आवश्यकता संचाचा एक भाग आहे, जो आपल्या {2} आवृत्तीमध्ये उपलब्ध नाही.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="केवळ-वाचनीय गुणधर्म '{0}' सेट करण्याचा प्रयत्न करत आहोत.";Strings.OfficeOM.L_UserAborted="प्रयोक्त्याने संमती विनंती निरस्त केली.";Strings.OfficeOM.L_TooManyArguments="बर्याच आरग्यूमेंट्स";Strings.OfficeOM.L_UnsupportedDataObject="प्रदान केलेला डेटा ऑब्जेक्ट प्रकार समर्थित नाही.";Strings.OfficeOM.L_ShuttingDown="ऑपरेशन अयशस्वी झाले कारण सर्व्हररील डेटा वर्तमान नाही.";Strings.OfficeOM.L_RowIndexOutOfRange="परवानगी असलेल्या परिक्षेत्राबाहेर आहे. पंक्तिंच्या संख्येपेक्षा कमी असलेले मूल्य (0 किंवा जास्त) वापरा.";Strings.OfficeOM.L_FileTypeNotSupported="विनिर्दिष्ट फाइल प्रकार समर्थित नाही.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="हे ऍड-इन या श्रेणीमधील प्रयोक्ता संमतीचे समर्थन करत नसल्याने ऑपरेशन अयशस्वी झाले";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath 1024 आयटम्सला निवड मर्यादित करते.";Strings.OfficeOM.L_NewWindowCrossZone="संवाद बॉक्स तयार करण्यापासून आपल्या ब्राउझरमधील सुरक्षा सेटींग्ज आम्हांला प्रतिबंधित करत आहेत. भिन्न ब्राउझर वापरून पहा, किंवा {0} ज्यामुळे '{1}' आणि आपल्या पत्ते पट्टीत दर्शविलेला डोमेन समान सुरक्षा झोनमध्ये येतील.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="परवानगी द्या";Strings.OfficeOM.L_UserNotSignedIn="Office मध्ये कोणत्याही प्रयोक्त्याने साइन इन केलेले नाही.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="विनिर्दिष्ट rowCount किंवा columnCount मूल्ये अवैध आहेत.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel हा कक्ष-संपादन मोड आहे. कृपया ENTER दाबून किंवा टॅब करून किंवा दुसरे कक्ष निवडून संपादन मोडमधून बाहेर पडा आणि नंतर पुन्हा प्रयत्न करा.";Strings.OfficeOM.L_InvalidSetRows="विनिर्दिष्ट पंक्ति अवैध आहेत.";Strings.OfficeOM.L_OperationCancelledError="ऑपरेशन रद्द झाले";Strings.OfficeOM.L_ConfirmDialog="{0} डोमेन हा Microsoft Office प्रमाणे कार्य करत आहे आणि आपला वैयक्तिक डेटा ऍक्सेस करू शकणारी Office ऍड-इन्स रन करू शकतो. Office म्हणून रन करण्यासाठी आणि आपला डेटा ऍक्सेस करण्यासाठी आपण डोमेनवर विश्वास ठेवत असल्यास, पुढे सुरू ठेवण्यासाठी ठीक आहे वर क्लिक करा.";Strings.OfficeOM.L_DataStale="डेटा वर्तमान नाही";Strings.OfficeOM.L_RedundantCallbackSpecification="आरग्यूमेंट यादी आणि पर्यायी ऑब्जेक्ट दोन्हींमध्ये कॉलबॅक विनिर्दिष्ट करणे शक्य नाही.";Strings.OfficeOM.L_DialogAlreadyOpened="ऑपरेशन अपयशी झाले कारण या ॲड-इनकडे आधीच सक्रिय संवाद आहे.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="{0} अनुप्रयोग अस्तित्वात नाही. Microsoft.Office.WebExtension.initialize(कारण) वापरले नाही.";Strings.OfficeOM.L_ImplicitNotLoaded="टोकन मिळवण्यापूर्वी मॉड्यूल लोड केलेले नाही";Strings.OfficeOM.L_BindingCreationError="बाइंडिंग निर्माण त्रुटी";Strings.OfficeOM.L_ReadSettingsError="सेटिंग्ज त्रुटी वाचा";Strings.OfficeOM.L_SaveSettingsError="सेटिंग्ज त्रुटी सुरक्षित करा";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="नोट: स्वरूपण API कॉलद्वारे सेट केलेले स्वरूपण संच 100 पेक्षा कमी ठेवण्याचे सूचित केले आहे.";Strings.OfficeOM.L_InvalidCoercion="अवैध कॉएर्जन प्रकार";Strings.OfficeOM.L_PermissionDenied="परवानगी नाकारली";Strings.OfficeOM.L_NoHttpsWAC="हे Office सत्र सुरक्षित कनेक्शन वापरत नाही आहे. आपण अतिरिक्त खबरदाऱ्या घेण्याची आम्ही शिफारस करतो.";Strings.OfficeOM.L_NetworkProblem="नेटवर्क समस्या";Strings.OfficeOM.L_UnsupportedEnumeration="असमर्थित गणन";Strings.OfficeOM.L_InvalidParameters="फंक्शन {0} मध्ये अवैध मापदंड आहेत.";Strings.OfficeOM.L_CustomXmlOutOfDateName="डेटा सद्य नाही";Strings.OfficeOM.L_SettingNameNotExist="विनिर्दिष्ट सेटिंग नाव अस्तित्वात नाही.";Strings.OfficeOM.L_NavOutOfBound="ऑपरेशन अयशस्वी झाले कारण अनुक्रमणिका परिक्षेत्राबाहेर आहे.";Strings.OfficeOM.L_DataNotMatchSelection="प्रदान केलेला डेटा ऑब्जेक्ट सद्य निवडीच्या आकार आणि परिमाणाशी सुसंगत नाहीत.";Strings.OfficeOM.L_Timeout="ऑपरेशनची वेळ संपली.";Strings.OfficeOM.L_BadSelectorString="निवडक मधून गेलेली स्ट्रिंग अयोग्यरित्या स्वरूपित केली आहे किंवा असमर्थित आहे.";Strings.OfficeOM.L_TooManyOptionalObjects="मापदंड यादीमध्ये एकाधिक पर्यायी ऑब्जेक्ट";Strings.OfficeOM.L_PropertyNotLoaded="गुणधर्म '{0}' उपलब्ध नाही. गुणधर्माचे मूल्य वाचण्यापूर्वी, समाविष्ट विषयवस्तूवरील लोड पद्धतीस कॉल करा आणि संबंधित विनंती आशयावर \"context.sync()\" कॉल करा.";Strings.OfficeOM.L_InValidOptionalArgument="अवैध पर्यायी आरग्यूमेंट";Strings.OfficeOM.L_InitializeNotReady="Office.js अद्याप लोड करण्यात आलेले नाही. कृपया नंतर पुन्हा प्रयत्न करा किंवा Office.initialize फंक्शनवर प्रारंभ कोड जोडल्याची खात्री करा.";Strings.OfficeOM.L_InvalidBindingError="अवैध बाइंडिंग त्रुटी";Strings.OfficeOM.L_InvalidResourceUrlMessage="मेनिफेस्टमध्ये अवैध संसाधन Url निर्दिष्ट केले.";Strings.OfficeOM.L_CustomXmlError="सानुकूल XML त्रुटी.";Strings.OfficeOM.L_SpecifiedIdNotExist="विनिर्दिष्ट ID अस्तित्वात नाही.";Strings.OfficeOM.L_FunctionCallFailed="फंक्शन {0} कॉल अयशस्वी, त्रुटी कोड: {1}.";Strings.OfficeOM.L_SettingsStaleError="सेटिंग्जमधील जुनी त्रुटी";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="फंक्शन नावामध्ये रिक्त नसलेले नामस्थान असणे आणि रिक्त नसलेले लहान नाव असणे आवश्यक आहे.";Strings.OfficeOM.L_NoCapability="आपल्याजवळ या क्रियेसाठी पुरेशा परवानग्या नाहीत.";Strings.OfficeOM.L_GetSelectionNotSupported="सद्य निवड समर्थित नाही.";Strings.OfficeOM.L_InvalidAPICall="अवैध API कॉल";Strings.OfficeOM.L_DataReadError="डेटा रीड त्रुटी";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="निवडलेली सामुग्री सारणी स्वरूपामध्ये असणे आवश्यक आहे. सारणी म्हणून डेट स्वरूपित करा आणि पुन्हा प्रयत्न करा.";Strings.OfficeOM.L_MemoryLimit="मेमरी मर्यादा ओलांडली";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="मोडल संवाद उघडा असतांना Office साठी लेखन ऑपरेशन समर्थित नाही.";Strings.OfficeOM.L_FormattingReminder="स्मरणपत्र स्वरूपित करा";Strings.OfficeOM.L_ElementMissing="आम्ही सारणी स्वरूपित करू शकलो नाही कारण काही मापदंड मूल्ये गहाळ आहेत. मापदंड पुन्हा तपासा आणि पुन्हा प्रयत्न करा.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="अवैध इनपुट वितर्क.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="सद्य होस्ट अनुप्रयोगामध्ये गणना समर्थित नाही.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="जेव्हा सारणीमध्ये विलीन केलेले कक्ष असतील तेव्हा कोअर्जन प्रकारासह कोऑर्डीनेट मापदंड वापरले जाऊ शकत नाहीत.";Strings.OfficeOM.L_ActivityLimitReached="क्रियाकलाप मर्यादा गाठलेली आहे.";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript API विनंती अयशस्वी झाली कारण कार्यपुस्तिका लपवलेली आहे. कृपया कार्यपुस्तिका लपवणे रद्द करा आणि पुन्हा प्रयत्न करा.";Strings.OfficeOM.L_InvalidSelectionForBindingType="सद्य निवड आणि विनिर्दिष्ट बाइंडिंग प्रकारासह बाइंडिंग तयार करणे शक्य नाही.";Strings.OfficeOM.L_MissingParameter="गहाळ मापदंड";Strings.OfficeOM.L_DialogInvalidScheme="URL योजना समर्थित नाही. त्याऐवजी HTTPS वापरा.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='प्रतिसाद पेलोड आकाराने मर्यादा ओलांडली आहे. कृपया, दस्तऐवजीकरण संदर्भ बघा: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_GetDataParametersConflict="विनिर्दिष्ट मापदंडांमध्ये समस्या आहेत.";Strings.OfficeOM.L_BrowserAPINotSupported="हा ब्राउझर विनंती केलेल्या API चे समर्थन करीत नाही.";Strings.OfficeOM.L_NamedItemNotFound="नामित आयटम अस्तित्वात नाही.";Strings.OfficeOM.L_EventHandlerAdditionFailed="इव्हेंट हँडलर जोडण्यात अयशस्वी झाले.";Strings.OfficeOM.L_OKButton="ठीक आहे";Strings.OfficeOM.L_UnsupportedUserIdentity="प्रयोक्ता ओळख प्रकार समर्थित नाही.";Strings.OfficeOM.L_UserClickIgnore="प्रयोक्त्याने संवाद बॉक्सकडे दुर्लक्ष करण्याचे निवडले.";Strings.OfficeOM.L_UnknownBindingType="बाइंडिंग प्रकार समर्थित नाही.";Strings.OfficeOM.L_MissingRequiredArguments="काही गहाळ आवश्यक आरग्यूमेंट";Strings.OfficeOM.L_SetDataIsTooLarge="विनिर्दिष्ट डेटा ऑब्जेक्ट खूपच मोठे आहे.";Strings.OfficeOM.L_TooManyIncompleteRequests="मागील कॉल पूर्ण होईपर्यंत प्रतीक्षा करा.";Strings.OfficeOM.L_InvalidCellsValue="एक किंवा अधिक मापदंडामध्ये परवानगी नसलेली मूल्ये आहेत. मूल्ये पुन्हा-तपासा आणि पुन्हा प्रयत्न करा.";Strings.OfficeOM.L_InvalidArgumentGeneric="फंक्शनमध्ये पास केलेले विवाद या परिस्थितीसाठी कार्य करत नाही, गहाळ आहेत, किंवा योग्य स्वरूपात नाहीत.";Strings.OfficeOM.L_GetDataIsTooLarge="विनंती डेटा खूपच मोठा आहे.";Strings.OfficeOM.L_SSOClientErrorMessage="क्लायंटमध्ये अनपेक्षित त्रुटी आली.";Strings.OfficeOM.L_InvalidDataFormat="विनिर्दिष्ट डेटा ऑब्जेक्टचे स्वरूप अवैध आहे.";Strings.OfficeOM.L_InvalidSetColumns="विनिर्दिष्ट स्तंभ अवैध आहेत.";Strings.OfficeOM.L_SelectionCannotBound="सद्य निवड बाइंड करणे शक्य नाही.";Strings.OfficeOM.L_InternalError="अंतर्गत त्रुटी";Strings.OfficeOM.L_EventHandlerNotExist="या बाइंडिंगसाठी विनिर्दिष्ट इव्हेंट हँडलर आढळला नाही.";Strings.OfficeOM.L_RunMustReturnPromise='".run" पद्धतीला पास केल्या गेलेल्या बॅच कार्याने प्रॉमिस परत केले नाही. कार्याने प्रॉमिस परत करणे आवश्यक आहे, जेणेकरून कोणत्याही स्वयंचलितपणे माग घेतल्या जाणार्या विषयवस्तू बॅच पूर्ण झाल्यावर सोडता येतील. सामान्यतः, आपण "context.sync()" मधून प्रतिसाद परत करून प्रॉमिस परत करू शकता.';Strings.OfficeOM.L_CannotRegisterEvent="इव्हेंट हँडलरची नोंदणी केली जाऊ शकत नाही.";Strings.OfficeOM.L_NotSupported="फंक्शन {0} समर्थित नाही.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="\"object.set\" पद्धतीच्या माध्यमातून '{0}' गुणधर्माला बदल लागू करता येणार नाहीत.";Strings.OfficeOM.L_DocumentReadOnly="विनंती केलेले ऑपरेशन सद्य दस्तऐवज मोडवर उपलब्ध नाही.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="विनिर्दिष्ट बाइंडिंग प्रकार प्रदान केलेल्या नामित आयटमसह सुसंगत नाही.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="निवड मर्यादा गाठलेली आहे";Strings.OfficeOM.L_ConfirmRefreshMessage="पुढे सुरु ठेवण्यासाठी, ऍड-इन काढा आणि मग पुन्हा जोडा, किंवा पृष्ठ रिफ्रेश करा.";Strings.OfficeOM.L_OperationNotSupported="ऑपरेशन समर्थित नाही.";Strings.OfficeOM.L_SSOClientError="Office मधून प्रमाणीकरण विनंतीमध्ये त्रुटी आली.";Strings.OfficeOM.L_AppNameNotExist="{0} साठी ऍड-इन नाव अस्तित्वात नाही.";Strings.OfficeOM.L_InvalidSSOAddinMessage="या अॅड-इन साठी ओळख API समर्थित नाही.";Strings.OfficeOM.L_APICallFailed="API कॉल अयशस्वी";Strings.OfficeOM.L_InvalidFormat="अवैध स्वरूप त्रुटी";Strings.OfficeOM.L_MultipleNamedItemFound="एकाच नावचे एकाधिक ऑब्जेक्ट्स आढळले.";Strings.OfficeOM.L_CustomXmlNodeNotFound="विनिर्दिष्ट नोड आढळला नाही.";Strings.OfficeOM.L_NotTrustedWAC="आपल्याला सुरक्षित ठेवण्यास मदत करण्यासाठी हे ऍड-इन अक्षम करण्यात आले आहे. हे ऍड-इन वापरणे चालू ठेवण्यासाठी, हा आयटम एका विश्वसनीय डोमेनमध्ये होस्ट केल्याचे प्रमाणित करा किंवा ते Office डेस्कटॉप अनुप्रयोगात उघडा.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP प्रोटोकॉल समर्थित नाही. त्याऐवजी HTTPS वापरा";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="फंक्शन नावामध्ये केवळ अक्षरे, अंक, अंडरस्कोअर्स आणि कालावधी असू शकतात.";Strings.OfficeOM.L_InvalidValue="अवैध मूल्य";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='विनंती पेलोड आकाराने मर्यादा ओलांडली आहे. कृपया, दस्तऐवजीकरण संदर्भ बघा: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_NotSupportedBindingType="विनिर्दिष्ट बाइंडिंग प्रकार {0} समर्थित नाही.";Strings.OfficeOM.L_OverwriteWorksheetData="सेट ऑपरेशन अयशस्वी झाले कारण प्रदान केलेला डेटा ऑब्जेक्ट अधिलिखित करेल किंवा डेटा हलवेल.";Strings.OfficeOM.L_SSOServerError="प्रमाणीकरण प्रदात्यामध्ये त्रुटी आली.";Strings.OfficeOM.L_DataWriteError="डेटा राइट त्रुटी";Strings.OfficeOM.L_IndexOutOfRange="अनुक्रमणिका परिक्षेत्राबाहेर आहे.";Strings.OfficeOM.L_RequestTimeout="कार्यान्वित होण्यासाठी कॉलला खूपच वेळ लागला.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="फंक्शनच्या व्याख्येचे प्रतिनिधत्व करणारे या नावाचे गुणधर्म Excel.CustomFunctions वर असणे आवश्यक आहे.";Strings.OfficeOM.L_ConfirmCancelMessage="क्षमस्व, आम्ही पुढे सुरु ठेवू शकत नाही.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="आपण {0} ला संभाव्य संवेदनशील माहिती पाठवणार आणि त्याकडून प्राप्त करणार आहात. आपण केवळ खालील वेबसाइटवर संवेदनशील माहिती प्राप्त करण्यावर विश्वास ठेवत असल्यास ठीक आहे क्लिक करा: {1}.";Strings.OfficeOM.L_ModalDialogOpeng="ऑपरेशन अयशस्वी झाले कारण या ऍड-इनकडे आधीपासूनच सक्रिय मोडल संवाद आहे.";Strings.OfficeOM.L_InvalidGetColumns="विनिर्दिष्ट स्तंभ अवैध आहेत.";Strings.OfficeOM.L_InvalidReadForBlankRow="विनिर्दिष्ट पंक्ति रिक्त आहे.";Strings.OfficeOM.L_NotImplemented="फंक्शन {0} लागू केलेले नाही.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="विनिर्दिष्ट कोएर्झन प्रकार बाइंडिंग प्रकाराशी सुसंगत नाही.";Strings.OfficeOM.L_DataNotMatchBindingType="विनिर्दिष्ट डेटा ऑब्जेक्ट बाइंडिंग प्रकाराशी सुसंगत नाही.";Strings.OfficeOM.L_DialogOK="ठीक आहे";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} नवीन विंडो प्रदर्शित करायची आहे.";Strings.OfficeOM.L_DialogParentIsMinimized="ऑपरेशन अयशस्वी झाले कारण पॅरेंट विंडो लहान केलेली आहे.";Strings.OfficeOM.L_InvalidGrantMessage="या अॅड-इनसाठी गहाळ मंजूरी.";Strings.OfficeOM.L_CannotNavigateTo="ऑब्जेक्ट अशा ठिकाणे ठेवला आहे जेथे नेव्हिगेशन समर्थित नाही.";Strings.OfficeOM.L_ConnectionFailureWithDetails="{0} च्या स्थिती कोडसह, त्रुटी कोड {1} आणि पुढील त्रुटी संदेशासह विनंती अयशस्वी झाली: {2}";Strings.OfficeOM.L_InvalidTableOptionValue="एक किंवा अधिक tableOptions मापदंडांमध्ये परवानगी नसलेली मूल्ये आहेत. मूल्ये पुन्हा तपासा आणि पुन्हा प्रयत्न करा.";Strings.OfficeOM.L_InvalidGetRows="विनिर्दिष्ट पंक्ति अवैध आहेत.";Strings.OfficeOM.L_InvalidApiCallInContext="सद्य संदर्भामध्ये अवैध API कॉल.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="फंक्शनच्या व्याख्येचे प्रतिनिधित्व करणार्या Excel.CustomFunctions वर या नावाच्या गुणधर्मामध्ये 'कॉल' गुणधर्म असणे आवश्यक आहे जे फंक्शन कार्यान्वित करते.";Strings.OfficeOM.L_HostError="होस्ट त्रुटी";Strings.OfficeOM.L_InvalidOrTimedOutSession="अवैध किंवा मुदत संपलेले सत्र";Strings.OfficeOM.L_CannotWriteToSelection="सद्य निवडीवर लिहू शकत नाही.";Strings.OfficeOM.L_InvalidBinding="अवैध बाइंडिंग";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="हा ऍड-इन प्रयोक्ता संमतीचे समर्थन करत नाही.";Strings.OfficeOM.L_SliceSizeNotSupported="विनिर्दिष्ट स्लाइस आकार समर्थित नाही.";Strings.OfficeOM.L_DataWriteReminder="डेटा राइट स्मरणपत्र";Strings.OfficeOM.L_ConfirmDialogConsent="ठीक आहे क्लिक केल्याने, आपण आपली सामुग्री आणि वैयक्तिक माहितीला {0} ऍक्सेसची अनुमती द्याल. ";Strings.OfficeOM.L_InvalidRequestContext="भिन्न विनंती आशयांमध्ये वस्तू वापरू शकत नाही.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="या बाइडिंग प्रकारावर ऑपरेशन समर्थित नाही.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="सद्य निवड विनिर्दिष्ट कोएरजन प्रकाराशी सुसंगत नाही.";Strings.OfficeOM.L_ColIndexOutOfRange="स्तंभ अनुक्रमणिका मूल्य हे अनुमत परिक्षेत्राच्या बाहेर आहे. स्तंभांची संख्येपेक्षा कमी असलेले मूल्य (0 किंवा जास्त) वापरा.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="ओळख प्रकाराचा प्रयोक्ता समर्थित नाही.";Strings.OfficeOM.L_APINotSupported="API समर्थित नाही";Strings.OfficeOM.L_SetDataParametersConflict="विनिर्दिष्ट मापदंडांमध्ये समस्या आहेत.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API या प्लॅटफॉर्मवर समर्थित नाही.";Strings.OfficeOM.L_InvalidResourceUrl="अवैध अॅप्लिकेशन संसाधन Url प्रदान केले.";Strings.OfficeOM.L_InvalidGetStartRowColumn="विनिर्दिष्ट startRow किंवा startColumn मूल्ये अवैध आहेत.";Strings.OfficeOM.L_DataNotMatchBindingSize="प्रदान केलेला डेटा ऑब्जेक्ट सद्य निवडीच्या आकाराशी जुळत नाही.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="दुसरे पुनर्प्राप्त करण्यापूर्वी सद्य फाइलवर closeAsync वापरा.";Strings.OfficeOM.L_DataNotMatchCoercionType="विनिर्दिष्ट डेटा ऑब्जेक्टचा प्रकार सद्य निवडीशी सुसंगत नाही.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="डेटा कालबाह्य आहे. ऑब्जेक्ट पुन्हा पुनर्प्राप्त करा.";Strings.OfficeOM.L_EventHandlerRemovalFailed="इव्हेंट हँडलर दूर करण्यात अयशस्वी झाले.";Strings.OfficeOM.L_DialogAddressNotTrusted="URL च्या डोमेनचा मॅनिफेस्टमधील AppDomains घटकामध्ये समावेश नाही आणि स्त्रोत स्थानाचे सबडोमेन नाही.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="कृपया निवड करा.";Strings.OfficeOM.L_DialogNavigateError="संवाद नेव्हिगेशन त्रुटी";Strings.OfficeOM.L_InvalidArgument="या परिस्थितीसाठी '{0}' युक्तीवाद काम करत नाही, गहाळ आहे किंवा योग्य स्वरूपणामध्ये नाही.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="संवाद बॉक्स तयार करण्यापासून ब्राउझर प्रतिबंध प्रतिबंधित करत आहेत. संवाद बॉक्स आणि ऍड-इन होस्टचे डोमेन समान सुरक्षा विभागात नाहीत.";Strings.OfficeOM.L_SettingsCannotSave="सेटिंग्ज सुरक्षित करता आल्या नाहीत.";Strings.OfficeOM.L_CoercionTypeNotSupported="विनिर्दिष्ट कोएर्झन प्रकार समर्थित नाही.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="प्रमाणिकरण संदर्भ मिळवण्यासाठी फंक्शन गहाळ आहे";Strings.OfficeOM.L_TooManyOptionalFunction="मापदंड यादीमध्ये एकाधिक पर्यायी फंक्शन";Strings.OfficeOM.L_CancelButton="रद्द करा";Strings.OfficeOM.L_ValueNotLoaded='परिणाम ऑब्जेक्टचे मूल्य अजून लोड केलेले नाही. मूल्य गुणधर्म वाचण्यापूर्वी, संबंधित विनंती संदर्भावर "context.sync()" कॉल करा.';Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="दुर्लक्ष करा";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="आपला ब्राउझर कॉन्फिगर करा";Strings.OfficeOM.L_InternalErrorDescription="अंतर्गत त्रुटी आली आहे.";Strings.OfficeOM.L_InvalidColumnsForBinding="विनिर्दिष्ट स्तंभ अवैध आहेत.";Strings.OfficeOM.L_InvalidSetStartRowColumn="विनिर्दिष्ट startRow किंवा startColumn मूल्ये अवैध आहेत.";Strings.OfficeOM.L_NotSupportedEventType="विनिर्दिष्ट इव्हेंट प्रकार {0} समर्थित नाही.";Strings.OfficeOM.L_InvalidBindingOperation="अवैध बाइंडिंग ऑपरेशन";Strings.OfficeOM.L_InvalidObjectPath='आपण जे करण्याचा प्रयत्न करत आहात त्यासाठी विषयवस्तू मार्ग \'{0}\' काम करत नाही. आपण अनेक "context.sync" कॉलदरम्यान आणि ".run" बॅचच्या क्रमवारी अंमलबजा वणीबाहेर विषयवस्तू वापरत असाल तर विषयवस्तूचे आयुष्यमान व्यवस्थापित करण्यासाठी, कृपया "context.trackedObjects.add()" आणि "context.trackedObjects.remove()" पद्धती वापरा.';Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="ऑपरेशन अयशस्वी झाले कारण अॅड-इन आधीच ऍक्सेस टोकनची विनंती केली आहे.";Strings.OfficeOM.L_EventRegistrationError="इव्हेंट नोंदणी त्रुटी";Strings.OfficeOM.L_DocumentIsInactive="ऑपरेशन अयशस्वी झाले कारण हे ऍड-इन असलेले दस्तऐवज निष्क्रिय आहे.";Strings.OfficeOM.L_InvalidFormatValue="एक किंवा अधिक स्वरूपण मापदंडांमध्ये अनुमती नसलेली मूल्ये आहेत. मूल्ये पुन्हा तपासा आणि पुन्हा प्रयत्न करा.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="जेव्हा सारणीमध्ये विलीन केलेले कक्ष असतील तेव्हा कोअर्जन प्रकारासह कोऑर्डीनेट मापदंड वापरले जाऊ शकत नाहीत.";Strings.OfficeOM.L_CallbackNotAFunction="कॉलबॅक फंक्शन प्रकाराचा असणे आवश्यक आहे, तो {0} प्रकाराचा होता.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl प्रकार समर्थित नाही.";Strings.OfficeOM.L_RequestTokenUnavailable="हे API कॉल वारंवारता मंद करण्यासाठी थांबविले आहे."
|
|
@@ -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_NonUniformPartialGetNotSupported="Parameter koordinat tidak dapat digunakan dengan Jadual jenis paksaan apabila jadual mengandungi sel cantum.";Strings.OfficeOM.L_CallbackNotAFunction="Panggil balik mestilah fungsi jenis, sebelum ini jenis {0}.";Strings.OfficeOM.L_InvalidColumnsForBinding="Lajur yang ditentukan adalah tidak sah.";Strings.OfficeOM.L_InvalidNode="Nod Tidak Sah";Strings.OfficeOM.L_SSOClientErrorMessage="Ralat yang tidak dijangka berlaku dalam klien.";Strings.OfficeOM.L_BindingCreationError="Ralat Penciptaan Pengikatan";Strings.OfficeOM.L_APICallFailed="Panggilan API Gagal";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Operasi gagal kerana tambahan ini tidak menyokong keizinan pengguna dalam kategori ini";Strings.OfficeOM.L_ConfirmRefreshMessage="Untuk teruskan, alih keluar tambahan dan tambah ia sekali lagi, atau segar semula halaman tersebut.";Strings.OfficeOM.L_InvalidDataObject="Objek Data Tidak Sah";Strings.OfficeOM.L_ConfirmCancelMessage="Harap maaf, kami tidak dapat meneruskan.";Strings.OfficeOM.L_InvalidCoercion="Jenis Paksaan Tidak Sah";Strings.OfficeOM.L_EventHandlerRemovalFailed="Gagal mengalih keluar pengendali acara.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="konfigurasikan pelayar anda";Strings.OfficeOM.L_MultipleNamedItemFound="Berbilang objek dengan nama yang sama ditemui.";Strings.OfficeOM.L_NotSupportedEventType="Jenis acara {0} yang ditentukan tidak disokong.";Strings.OfficeOM.L_DialogInvalidScheme="Skema URL tersebut tidak disokong. Sebaliknya, gunakan HTTPS.";Strings.OfficeOM.L_DataNotMatchSelection="Objek data yang dibekalkan tidak serasi dengan bentuk atau dimensi pilihan semasa.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Benarkan";Strings.OfficeOM.L_InvalidFormat="Ralat Format Tidak Sah";Strings.OfficeOM.L_GetSelectionNotSupported="Pilihan semasa tidak disokong.";Strings.OfficeOM.L_RequestTokenUnavailable="API ini telah ditetapkan untuk melambatkan frekuensi panggilan.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Url sumber yang tidak sah ditentukan dalam manifes.";Strings.OfficeOM.L_ApiNotFoundDetails="Kaedah atau sifat {0} adalah sebahagian daripada set keperluan {1} yang tidak tersedia dalam versi {2} anda.";Strings.OfficeOM.L_CancelButton="Batal";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Sesi Office anda telah tamat tempoh atau tidak sah. Untuk meneruskan, segarkan semula halaman.";Strings.OfficeOM.L_ElementMissing="Kami tidak dapat memformatkan sel jadual kerana beberapa nilai parameter telah hilang. Semak parameter sekali lagi dan cuba lagi.";Strings.OfficeOM.L_InvalidGetStartRowColumn="Nilai startRow atau startColumn yang ditentukan tidak sah.";Strings.OfficeOM.L_InvalidBindingError="Ralat Pengikatan Tidak Sah";Strings.OfficeOM.L_TooManyArguments="terlalu banyak argumen";Strings.OfficeOM.L_NoCapability="Anda tiada keizinan yang mencukupi untuk tindakan ini.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Perubahan kepada sifat '{0}' tidak boleh digunakan melalui kaedah \"set.objek\".";Strings.OfficeOM.L_CannotWriteToSelection="Tidak dapat menulis kepada pilihan semasa.";Strings.OfficeOM.L_SetDataIsTooLarge="Objek data yang ditentukan terlalu besar.";Strings.OfficeOM.L_SSOServerErrorMessage="Ralat yang tidak dijangka berlaku pada pelayan.";Strings.OfficeOM.L_CustomXmlError="Ralat XML Tersuai.";Strings.OfficeOM.L_PermissionDenied="Keizinan Dinafikan";Strings.OfficeOM.L_InvalidSSOAddinMessage="API identiti tidak disokong untuk tambahan ini.";Strings.OfficeOM.L_RedundantCallbackSpecification="Panggil balik tidak dapat ditentukan dalam senarai argumen dan dalam objek opsyenal.";Strings.OfficeOM.L_DialogAddressNotTrusted="Domain URL tidak termasuk dalam unsur AppDomains dalam manifes, dan bukan subdomain lokasi sumber.";Strings.OfficeOM.L_DialogParentIsMinimized="Pengendalian gagal kerana tetingkap induk diminimumkan.";Strings.OfficeOM.L_MemoryLimit="Had Memori Dilebihi";Strings.OfficeOM.L_ValueNotLoaded='Nilai objek hasil objek belum dimuatkan lagi. Sebelum membaca sifat nilai, hubungi "context.sync()" tentang konteks permintaan yang berkaitan.';Strings.OfficeOM.L_InvalidSetColumns="Lajur yang ditentukan adalah tidak sah.";Strings.OfficeOM.L_DocumentReadOnly="Operasi yang diminta tidak dibenarkan pada mod dokumen semasa.";Strings.OfficeOM.L_DataStale="Data Bukan Semasa";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Panggil closeAsync pada fail semasa sebelum mengambil yang lain.";Strings.OfficeOM.L_ConnectionFailureWithDetails="Permintaan tersebut gagal dengan kod status {0}, kod ralat {1} dan mesej ralat yang berikut: {2}";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='Saiz muatan tindak balas telah melebihi had. Sila rujuk dokumentasi: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="Nilai indeks baris berada di luar julat yang dibenarkan. Gunakan nilai (0 atau lebih tinggi) yang kurang daripada jumlah baris.";Strings.OfficeOM.L_ModalDialogOpeng="Operasi gagal kerana tambahan ini telah mempunyai dialog modal aktif.";Strings.OfficeOM.L_SSOClientError="Ralat berlaku dalam permintaan pengesahan daripada Office.";Strings.OfficeOM.L_NotTrustedWAC="Tambahan ini telah dinyahdayakan untuk membantu memastikan anda selamat. Untuk terus menggunakan tambahan ini, sahkan bahawa item ini dihoskan dalam domain dipercayai atau bukanya dalam aplikasi desktop Office.";Strings.OfficeOM.L_InvalidGrant="Tiada prapengesahan.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Mencuba mengeset sifat baca sahaja '{0}'.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Tidak Sah Atau Sesi Tamat Masa";Strings.OfficeOM.L_UserNotSignedIn="Tiada pengguna terdaftar masuk ke Office.";Strings.OfficeOM.L_DialogNavigateError="Ralat Navigasi Dialog";Strings.OfficeOM.L_InvalidGetRows="Baris yang ditentukan adalah tidak sah.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Nama fungsi mesti mengandungi ruang nama bukan kosong dan nama pendek bukan kosong.";Strings.OfficeOM.L_InternalErrorDescription="Ralat dalaman telah berlaku.";Strings.OfficeOM.L_InvalidGrantMessage="Tiada kebenaran diberikan untuk tambahan ini.";Strings.OfficeOM.L_InvalidAPICall="Panggilan API Tidak Sah";Strings.OfficeOM.L_CustomXmlNodeNotFound="Nod yang ditentukan tidak ditemui.";Strings.OfficeOM.L_WorkbookHiddenMessage="Permintaan JavaScript API gagal kerana buku kerja tersembunyi. Sila nyahsembunyikan buku kerja tersebut dan cuba lagi.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Sila buat pilihan.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Sebentar ...";Strings.OfficeOM.L_UserClickIgnore="Pengguna telah memilih untuk mengabaikan kotak dialog.";Strings.OfficeOM.L_DataNotMatchBindingType="Objek data yang ditentukan tidak serasi dengan jenis pengikatan.";Strings.OfficeOM.L_SettingsCannotSave="Seting tidak dapat disimpan.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Sifat dengan nama ini pada Excel.Script.CustomFunctions yang mewakili takrif fungsi mesti mengandungi sifat 'panggil' yang melaksanakan fungsi tersebut.";Strings.OfficeOM.L_InitializeNotReady="Office.js belum dimuatkan sepenuhnya lagi. Sila cuba lagi nanti atau pastikan untuk menambah kod pengasalan anda dalam fungsi Office.initialize.";Strings.OfficeOM.L_OperationNotSupported="Operasi tidak disokong.";Strings.OfficeOM.L_DataNotMatchBindingSize="Objek data yang dibekalkan tidak sepadan dengan saiz pilihan semasa.";Strings.OfficeOM.L_SSOServerError="Ralat berlaku dalam pembekal pengesahan.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Pembatasan pelayar menghalang kami daripada mencipta kotak dialog. Domain kotak dialog dan domain hos tambahan tidak berada dalam zon keselamatan yang sama.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Nota: Set pemformatan yang disetkan oleh panggilan API Pemformatan disyorkan agar kurang daripada 100.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Sambungan telah terputus semasa proses daftar masuk dan pengguna mungkin tidak didaftarkan masuk. Ini kemungkinan disebabkan oleh seting konfigurasi pelayar pengguna, seperti zon keselamatan.";Strings.OfficeOM.L_ConnectionFailureWithStatus="Permintaan tersebut gagal dengan kod status {0}.";Strings.OfficeOM.L_FunctionCallFailed="Fungsi panggilan {0} gagal, kod ralat: {1}.";Strings.OfficeOM.L_GetDataParametersConflict="Parameter yang ditentukan mempunyai konflik.";Strings.OfficeOM.L_BadSelectorString="Rentetan yang melepasi pemilih tidak diformatkan dengan sempurna atau tidak disokong.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Bukan Semasa";Strings.OfficeOM.L_InvalidSetStartRowColumn="Nilai startRow atau startColumn yang ditentukan tidak sah.";Strings.OfficeOM.L_FileTypeNotSupported="Jenis fail yang ditentukan tidak disokong.";Strings.OfficeOM.L_DisplayDialogError="Ralat Dialog Paparan";Strings.OfficeOM.L_HostError="Ralat Hos";Strings.OfficeOM.L_PropertyNotLoaded="Sifat '{0}' tidak tersedia. Sebelum membaca nilai sifat, panggil kaedah muat pada objek yang mengandungi dan panggil \"context.sync()\" pada konteks permintaan yang berkaitan.";Strings.OfficeOM.L_InvalidDataFormat="Format objek data yang ditentukan tidak sah.";Strings.OfficeOM.L_SpecifiedIdNotExist="ID yang ditentukan tidak wujud.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Aplikasi {0} tidak wujud. Microsoft.Office.WebExtension.initialize(reason) tidak dipanggil.";Strings.OfficeOM.L_ContinueButton="Teruskan";Strings.OfficeOM.L_InvalidSelectionForBindingType="Pengikatan tidak boleh dicipta dengan pilihan semasa dan jenis pengikatan yang ditentukan.";Strings.OfficeOM.L_TooManyOptionalObjects="berbilang objek opsyenal dalam senarai parameter";Strings.OfficeOM.L_NoHttpsWAC="Sesi Office ini tidak menggunakan sambungan yang selamat. Kami mengesyorkan supaya anda mengambil lebih langkah berjaga-jaga.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Tambahan sudah meminta token capaian.";Strings.OfficeOM.L_InvalidReadForBlankRow="Baris yang ditentukan adalah kosong.";Strings.OfficeOM.L_CannotNavigateTo="Objek terletak di lokasi yang tidak menyokong navigasi.";Strings.OfficeOM.L_SliceSizeNotSupported="Saiz hirisan yang dinyatakan tidak disokong.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Sifat dengan nama ini yang mewakili takrif fungsi mesti wujud pada Excel.Script.CustomFunctions.";Strings.OfficeOM.L_UnsupportedDataObject="Jenis objek data yang dibekalkan tidak disokong.";Strings.OfficeOM.L_OverwriteWorksheetData="Operasi set gagal kerana objek data yang dibekalkan akan menulis ganti atau menganjakkan data.";Strings.OfficeOM.L_SettingsStaleError="Ralat Lapuk Seting";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Parameter koordinat tidak dapat digunakan dengan Jadual jenis paksaan apabila jadual mengandungi sel cantum.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Jenis pengikatan yang ditentukan tidak serasi dengan item dinamakan yang dibekalkan.";Strings.OfficeOM.L_MissingRequiredArguments="tiada beberapa argumen yang diperlukan";Strings.OfficeOM.L_NamedItemNotFound="Item yang dinamakan tidak wujud.";Strings.OfficeOM.L_NotImplemented="Fungsi {0} tidak dilaksanakan.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Anda bakal menghantar dan menerima maklumat yang mungkin sensitif daripada {0}. Hanya klik OK jika anda mempercayai laman web berikut yang menerima maklumat sensitif: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="Dengan mengklik OK, anda akan membenarkan capaian {0} kepada kandungan dan maklumat peribadi anda. ";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Fungsi untuk mendapatkan konteks pengesahan tiada";Strings.OfficeOM.L_NotSupported="Fungsi {0} tidak disokong.";Strings.OfficeOM.L_SSOConnectionLostError="Sambungan telah terputus semasa proses daftar masuk.";Strings.OfficeOM.L_InvalidResourceUrl="Url sumber aplikasi yang tidak sah diberikan.";Strings.OfficeOM.L_MissingParameter="Parameter Hilang";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Had Pemilihan Dicapai";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Pengangkaan tidak disokong dalam aplikasi hos semasa.";Strings.OfficeOM.L_InvalidSetRows="Baris yang ditentukan adalah tidak sah.";Strings.OfficeOM.L_InvalidApiCallInContext="Panggilan API tidak sah dalam konteks semasa.";Strings.OfficeOM.L_OsfControlTypeNotSupported="Jenis OsfControl tidak disokong.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Gagal menambah pengendali acara.";Strings.OfficeOM.L_SaveSettingsError="Ralat Seting Simpan";Strings.OfficeOM.L_PropertyDoesNotExist="Sifat '{0}' tidak wujud pada objek tersebut.";Strings.OfficeOM.L_CoercionTypeNotSupported="Jenis paksaan yang ditentukan tidak disokong.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_SelectionCannotBound="Tidak dapat mengikat kepada pilihan semasa.";Strings.OfficeOM.L_DataWriteReminder="Peringatan Tulis Data";Strings.OfficeOM.L_DataReadError="Ralat Bacaan Data";Strings.OfficeOM.L_FormatValueOutOfRange="Nilai berada di luar julat yang dibenarkan.";Strings.OfficeOM.L_ImplicitNotLoaded="Modul tidak dimuatkan sebelum memperoleh token";Strings.OfficeOM.L_InvalidBindingOperation="Operasi Pengikatan Tidak Sah";Strings.OfficeOM.L_ColIndexOutOfRange="Nilai indeks lajur berada di luar julat yang dibenarkan. Gunakan nilai (0 atau lebih tinggi) yang kurang daripada jumlah lajur.";Strings.OfficeOM.L_InvalidObjectPath='Laluan objek \'{0}\' tidak berfungsi untuk apa yang anda sedang cuba lakukan. Jika anda menggunakan objek merentasi berbilang panggilan "context.sync" dan di luar pelaksanaan jujukan kelompok ".run", sila gunakan kaedah "context.trackedObjects.add()" dan "context.trackedObjects.remove()" untuk mengurus hayat hidup objek.';Strings.OfficeOM.L_OutOfRange="Di Luar Julat";Strings.OfficeOM.L_TooManyOptionalFunction="berbilang fungsi opsyenal dalam senarai parameter";Strings.OfficeOM.L_UnsupportedEnumeration="Pengangkaan Tidak Disokong";Strings.OfficeOM.L_DocumentIsInactive="Pengendalian gagal kerana dokumen yang mengandungi tambahan ini tidak aktif.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API tidak disokong dalam platform ini.";Strings.OfficeOM.L_UserAbortedMessage="Pengguna tidak mengizinkan kebenaran tambahan.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel berada dalam mod pengeditan sel. Sila keluar daripada mod edit dengan menekan 'ENTER' atau 'TAB' atau pilih sel lain dan kemudian cuba semula.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} mahu memaparkan tetingkap baru.";Strings.OfficeOM.L_DataNotMatchCoercionType="Jenis objek data yang dibekalkan tidak serasi dengan pilihan semasa.";Strings.OfficeOM.L_ConfirmDialog="Domain {0} bertindak sebagai Microsoft Office dan boleh menjalankan tambahan Office, yang boleh mengakses data peribadi anda. Jika anda mempercayai domain ini untuk berjalan sebagai Office dan mengakses data anda, klik OK untuk meneruskan.";Strings.OfficeOM.L_EventRegistrationError="Ralat Pendaftaran Acara";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Operasi tulis tidak disokong untuk Office apabila dialog modal dibuka.";Strings.OfficeOM.L_ReadSettingsError="Ralat Seting Bacaan";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath mengehadkan pemilihan kepada 1024 item.";Strings.OfficeOM.L_GetDataIsTooLarge="Set data yang diminta terlalu besar.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Jenis identiti pengguna tidak disokong.";Strings.OfficeOM.L_SettingsAreStale="Seting tidak dapat disimpan kerana ia bukan yang terkini.";Strings.OfficeOM.L_InvalidFormatValue="Satu atau lebih parameter format mempunyai nilai yang tidak dibenarkan. Semak nilai sekali lagi dan cuba lagi.";Strings.OfficeOM.L_IndexOutOfRange="Indeks di luar julat.";Strings.OfficeOM.L_DialogRequireHTTPS="Protocol HTTP tersebut tidak disokong. Sebaliknya, gunakan HTTPS";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Abai";Strings.OfficeOM.L_UserAborted="Pengguna telah menghenti paksa permintaan keizinan.";Strings.OfficeOM.L_InValidOptionalArgument="argumen opsyenal tidak sah";Strings.OfficeOM.L_InvalidGetColumns="Lajur yang ditentukan adalah tidak sah.";Strings.OfficeOM.L_InternalError="Ralat Dalaman";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Kandungan yang dipilih perlu berada dalam format jadual. Formatkan data sebagai jadual dan cuba lagi.";Strings.OfficeOM.L_TooManyIncompleteRequests="Tunggu sehingga panggilan terdahulu selesai.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Nota: Bilangan sel dalam jadual disyorkan agar kurang daripada 20,000 sel.";Strings.OfficeOM.L_RunMustReturnPromise='Fungsi kelompok yang dihantar kepada kaedah “.run” tidak mengembalikan janji. Fungsi mesti mengembalikan janji, supaya sebarang objek yang dijejaki secara automatik boleh dikeluarkan pada penyiapan kelompok ini. Biasanya, anda akan mengembalikan janji dengan mengembalikan respons daripada "context.sync()".';Strings.OfficeOM.L_CannotRegisterEvent="Pengendali peristiwa tidak boleh didaftarkan.";Strings.OfficeOM.L_OperationCancelledError="Operasi Dibatalkan";Strings.OfficeOM.L_DataWriteError="Ralat Penulisan Data";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Tambahan ini tidak menyokong keizinan pengguna.";Strings.OfficeOM.L_ShuttingDown="Operasi gagal kerana data bukan data semasa pada pelayan.";Strings.OfficeOM.L_InvalidArgument="Argumen '{0}' tidak berfungsi untuk keadaan ini, hilang atau bukan dalam format yang betul.";Strings.OfficeOM.L_InvalidCellsValue="Satu atau lebih parameter sel mempunyai nilai yang tidak dibenarkan. Semak nilai sekali lagi dan cuba lagi.";Strings.OfficeOM.L_FormattingReminder="Peringatan Pemformatan";Strings.OfficeOM.L_InvalidParameters="Fungsi {0} mempunyai parameter tidak sah.";Strings.OfficeOM.L_RequestTimeout="Panggilan mengambil masa yang terlalu lama untuk dilaksanakan.";Strings.OfficeOM.L_BindingNotExist="Pengikatan yang ditentukan tidak wujud.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Masalah rangkaian telah menghalang pengambilan fail.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Data tersebut sudah lapuk. Ambil objek semula.";Strings.OfficeOM.L_EventHandlerNotExist="Pengendali peristiwa yang ditentukan tidak ditemui bagi pengikatan ini.";Strings.OfficeOM.L_InvalidRequestContext="Tidak boleh menggunakan objek merentasi konteks permohonan berbeza.";Strings.OfficeOM.L_BindingToMultipleSelection="Pilihan tidak bersebelahan tidak disokong.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Operasi tersebut gagal kerana tambahan ini sudah meminta token capaian.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Pilihan semasa tidak serasi dengan jenis paksaan yang ditentukan.";Strings.OfficeOM.L_AppNameNotExist="Nama Tambahan untuk {0} tidak wujud.";Strings.OfficeOM.L_UnsupportedUserIdentity="Jenis identiti pengguna tidak disokong.";Strings.OfficeOM.L_NavOutOfBound="Pengendalian gagal kerana indeks berada di luar julat.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Nilai rowCount atau columnCount yang ditentukan tidak sah.";Strings.OfficeOM.L_InvalidArgumentGeneric="Argumen yang dihantar ke dalam fungsi tidak berfungsi untuk situasi ini, tiada atau bukan dalam format yang betul.";Strings.OfficeOM.L_InvalidBinding="Pengikatan Tidak Sah";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Jenis paksaan yang ditentukan tidak serasi dengan jenis pengikatan ini.";Strings.OfficeOM.L_NewWindowCrossZone="Setings keselamatan dalam pelayar anda menghalang kami daripada mencipta kotak dialog. Cuba pelayar yang berbeza, atau {0} supaya '{1}' dan domain yang ditunjukkan dalam bar alamat berada dalam zon keselamatan yang sama.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Argumen input tidak sah.";Strings.OfficeOM.L_NotSupportedBindingType="Jenis pengikatan {0} yang ditentukan tidak disokong.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='Ukuran muatan permintaan telah melebihi had. Sila rujuk dokumentasi: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidTableOptionValue="Satu atau lebih parameter tableOptions mempunyai nilai yang tidak dibenarkan. Semak nilai sekali lagi dan cuba lagi.";Strings.OfficeOM.L_APINotSupported="API Tidak Disokong";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_ActivityLimitReached="Had aktiviti telah dicapai.";Strings.OfficeOM.L_OperationCancelledErrorMessage="Operasi telah dibatalkan oleh pengguna.";Strings.OfficeOM.L_NetworkProblem="Masalah Rangkaian";Strings.OfficeOM.L_Timeout="Pengendalian telah tamat masa.";Strings.OfficeOM.L_BrowserAPINotSupported="Pelayan ini tidak menyokong API yang diminta.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Nama fungsi hanya boleh mengandungi huruf, digit, tanda garis bawah dan noktah.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operasi tidak disokong pada jenis pengikatan ini.";Strings.OfficeOM.L_DialogAlreadyOpened="Operasi gagal kerana tambahan ini terdapat dialog aktif.";Strings.OfficeOM.L_SettingNameNotExist="Nama seting yang ditentukan tidak wujud.";Strings.OfficeOM.L_SetDataParametersConflict="Parameter yang ditentukan mempunyai konflik.";Strings.OfficeOM.L_UnknownBindingType="Jenis pengikatan tidak disokong.";Strings.OfficeOM.L_InvalidValue="Nilai Tidak Sah"
|
|
@@ -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_SettingsCannotSave="Kan ikke lagre innstillingene.";Strings.OfficeOM.L_DataNotMatchCoercionType="Typen for det angitte dataobjektet er ikke kompatibel med gjeldende utvalg.";Strings.OfficeOM.L_UserAborted="Brukeren har avbrutt forespørselen om samtykke.";Strings.OfficeOM.L_DialogNavigateError="Navigasjonsfeil i dialogboks";Strings.OfficeOM.L_SSOServerError="Det oppstod en feil i godkjenningstjenesten.";Strings.OfficeOM.L_NavOutOfBound="Operasjonen mislyktes fordi indeksen er utenfor området.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Grensen for valg er nådd";Strings.OfficeOM.L_FunctionCallFailed="Funksjonen {0} mislyktes, feilkode: {1}.";Strings.OfficeOM.L_ActivityLimitReached="Aktivitetsgrensen er nådd.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Leserbegrensninger forhindret oss i å opprette dialogboksen. Domenet for dialogboksen og domenet til verten for tillegget er ikke i den samme sikkerhetssonen.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Obs! Antall celler i en tabell er foreslått å være mindre enn 20 000 celler.";Strings.OfficeOM.L_CannotNavigateTo="Objektet er plassert på et sted der navigasjon ikke støttes.";Strings.OfficeOM.L_InvalidGrant="Forhåndsautorisering mangler.";Strings.OfficeOM.L_EventRegistrationError="Feil under registrering av hendelsen";Strings.OfficeOM.L_ConfirmCancelMessage="Beklager, vi kan ikke fortsette.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Skriveoperasjon støttes ikke for Office når en modal dialogboks er åpen.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Identitetstypen for brukeren støttes ikke.";Strings.OfficeOM.L_SSOConnectionLostError="En tilkobling ble brutt under påloggingsprosessen.";Strings.OfficeOM.L_InvalidTableOptionValue="En eller flere av tableOptions-parameterne har verdier som ikke er tillatt. Dobbeltsjekk verdiene, og prøv på nytt.";Strings.OfficeOM.L_TooManyArguments="for mange argumenter";Strings.OfficeOM.L_InvalidGrantMessage="Manglende tildeling for dette tillegget.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignorer";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_APINotSupported="API støttes ikke";Strings.OfficeOM.L_NewWindowCrossZone="Sikkerhetsinnstillingene i leseren hindrer oss i å opprette en dialogboks. Prøv en annen nettleser eller {0} slik at {1} og domenet som vises i adresselinjen er i den samme sikkerhetssonen.";Strings.OfficeOM.L_InvalidColumnsForBinding="De angitte kolonnene er ugyldige.";Strings.OfficeOM.L_InvalidArgument="Argumentet {0} fungerer ikke for denne situasjonen, mangler eller er ikke i riktig format.";Strings.OfficeOM.L_InvalidArgumentGeneric="Argument(er) som ble sendt til funksjonen, fungerer ikke for denne situasjonen, mangler eller er ikke i riktig format.";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript API-forespørselen mislyktes fordi arbeids boken ble skjult. Ta frem arbeids boken, og prøv på nytt.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Du er i ferd med å sende og motta potensielt sensitiv informasjon fra {0}. Klikk bare OK hvis du stoler på at følgende nettsted mottar sensitiv informasjon: {1}.";Strings.OfficeOM.L_InitializeNotReady="Office.js er ikke fullstendig lastet inn ennå. Prøv på nytt senere, eller kontroller at du legger til initialiseringskoden din i Office.initialize-funksjonen.";Strings.OfficeOM.L_DataWriteReminder="Påminnelse om dataskriving";Strings.OfficeOM.L_InvalidResourceUrl="Ugyldig nettadresse for programressurs er angitt.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Ugyldige inndataargumenter.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Navnet på funksjonen kan bare inneholde bokstaver, sifre, understrekingstegn og punktum.";Strings.OfficeOM.L_TooManyIncompleteRequests="Vent til det forrige kallet er fullført.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Dataene er ikke oppdaterte";Strings.OfficeOM.L_NoHttpsWAC="Denne Office-økten bruker ikke en sikker tilkobling. Vi anbefaler at du tar ekstra forhånds regler.";Strings.OfficeOM.L_InValidOptionalArgument="ugyldig valgfritt argument";Strings.OfficeOM.L_InvalidParameters="Funksjonen {0} har ugyldige parametere.";Strings.OfficeOM.L_UnknownBindingType="Bindingstypen støttes ikke.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Kan ikke opprette en binding med gjeldende utvalg og angitt bindingstype.";Strings.OfficeOM.L_OperationCancelledErrorMessage="Operasjonen ble avbrutt av brukeren.";Strings.OfficeOM.L_DisplayDialogError="Vis dialogboksfeil";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Egenskapen med dette navnet på Excel.Script.CustomFunctions som representerer funksjonens definisjon, må inneholde en «kalle»-egenskap som implementerer funksjonen.";Strings.OfficeOM.L_RequestTimeout="Samtalen tok for lang tid å kjøre.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP-protokollen støttes ikke. Bruk HTTPS i stedet";Strings.OfficeOM.L_ReadSettingsError="Feil for leseinnstillinger";Strings.OfficeOM.L_DialogInvalidScheme="Oppsettet for nettadressen støttes ikke. Bruk HTTPS i stedet.";Strings.OfficeOM.L_DialogAddressNotTrusted="Domenet for URL-adressen er ikke inkludert i AppDomains-elementet i manifestet, og er ikke under domene av kilde plasseringen.";Strings.OfficeOM.L_SettingsStaleError="Feil for foreldede innstillinger";Strings.OfficeOM.L_InvalidNode="Ugyldig node";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} vil vise et nytt vindu.";Strings.OfficeOM.L_CannotWriteToSelection="Kan ikke skrive til gjeldende utvalg.";Strings.OfficeOM.L_ShuttingDown="Operasjonen mislyktes fordi dataene på serveren ikke er oppdaterte.";Strings.OfficeOM.L_DataNotMatchBindingType="Det angitte dataobjektet er ikke kompatibelt med bindingstypen.";Strings.OfficeOM.L_InvalidObjectPath="Objektbanen {0} fungerer ikke for det du prøver å gjøre. Hvis du bruker objektet på tvers av flere «context.sync»-kall og utenfor den sekvensielle utføringen av en satsvis «.run»-jobb, bruker du metodene «context.trackedObjects.add()» og «context.trackedObjects.remove()» til å administrere objektets levetid.";Strings.OfficeOM.L_SetDataIsTooLarge="Det angitte dataobjektet er for stort.";Strings.OfficeOM.L_GetSelectionNotSupported="Gjeldende utvalg støttes ikke.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Ugyldig eller tidsavbrutt økt";Strings.OfficeOM.L_MissingRequiredArguments="mangler noen nødvendige argumenter";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="Konfigurer nettleseren";Strings.OfficeOM.L_UserNotSignedIn="Ingen påloggede brukere i Office.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Programmet {0} finnes ikke. Microsoft.Office.WebExtension.Initialize(årsak) er ikke kalt.";Strings.OfficeOM.L_InvalidCoercion="Ugyldig konverteringstype";Strings.OfficeOM.L_CoercionTypeNotSupported="Den angitte konverteringstypen støttes ikke.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel er i celleredigeringsmodus. Avslutt redigeringsmodus ved å trykke på Enter eller Tab, eller ved å velge en annen celle og deretter prøve på nytt.";Strings.OfficeOM.L_InvalidSetColumns="De angitte kolonnene er ugyldige.";Strings.OfficeOM.L_InvalidAPICall="Ugyldig API-kall";Strings.OfficeOM.L_TooManyOptionalFunction="flere valgfrie funksjoner i parameterliste";Strings.OfficeOM.L_BindingNotExist="Den angitte bindingen finnes ikke.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Opplistingen støttes ikke i gjeldende vertsprogram.";Strings.OfficeOM.L_ValueNotLoaded='Verdien for resultatobjektet er ikke lastet inn ennå. Før du leser value-egenskapen, kan du ringe opp "context.sync()" på den tilknyttede forespørselskonteksten.';Strings.OfficeOM.L_InvalidBindingOperation="Ugyldig bindingsoperasjon";Strings.OfficeOM.L_SaveSettingsError="Feil under lagring av innstillinger";Strings.OfficeOM.L_HostError="Vertsfeil";Strings.OfficeOM.L_NetworkProblem="Nettverksproblem";Strings.OfficeOM.L_ConnectionFailureWithStatus="Forespørselen mislyktes med statuskoden {0}.";Strings.OfficeOM.L_OperationCancelledError="Operasjonen ble avbrutt";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage="Forespørselens nyttelast-størrelse har overskredet grensen. Vennligst se dokumentasjonen: «https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins».";Strings.OfficeOM.L_GetDataIsTooLarge="Det forespurte datasettet er for stort.";Strings.OfficeOM.L_DocumentIsInactive="Operasjonen mislyktes fordi dokumentet som inneholder dette tillegget, er inaktivt.";Strings.OfficeOM.L_OperationNotSupported="Operasjonen støttes ikke.";Strings.OfficeOM.L_SelectionCannotBound="Kan ikke binde til gjeldende utvalg.";Strings.OfficeOM.L_DataReadError="Datalesefeil";Strings.OfficeOM.L_PermissionDenied="Ingen tilgang";Strings.OfficeOM.L_PropertyNotLoaded="Egenskapen {0} er ikke tilgjengelig. Kall load-metoden på det inneholdende objektet før du leser egenskapens verdi, og kaller «context.sync()» på den tilknyttede forespørselskonteksten.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Funksjonen for å hente godkjenningskontekst mangler";Strings.OfficeOM.L_InvalidResourceUrlMessage="Ugyldig nettadresse for ressurs er angitt i manifestet.";Strings.OfficeOM.L_MissingParameter="Mangler parameter";Strings.OfficeOM.L_NotSupportedEventType="Den angitte hendelsestypen {0} støttes ikke.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_NotSupportedBindingType="Den angitte bindingstypen {0} støttes ikke.";Strings.OfficeOM.L_ImplicitNotLoaded="Modulen lastes ikke inn før det hentes et token";Strings.OfficeOM.L_ColIndexOutOfRange="Kolonneindeksverdien er utenfor det tillatte området. Bruk en verdi (0 eller høyere) som er lavere enn antallet kolonner.";Strings.OfficeOM.L_CancelButton="Avbryt";Strings.OfficeOM.L_DataNotMatchSelection="Det angitte dataobjektet er ikke kompatibelt med figuren eller dimensjonene for utvalget.";Strings.OfficeOM.L_OverwriteWorksheetData="Set-operasjonen mislyktes fordi det angitte dataobjektet vil overskrive eller flytte data.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Den angitte bindingstypen er ikke kompatibel med angitt navngitt element.";Strings.OfficeOM.L_FormatValueOutOfRange="Verdien er utenfor det tillatte området.";Strings.OfficeOM.L_ConfirmDialogConsent="Hvis du klikker OK, gir du {0} tilgang til innholdet og personlige opplysninger. ";Strings.OfficeOM.L_InvalidReadForBlankRow="Angitt rad er tom.";Strings.OfficeOM.L_SliceSizeNotSupported="Den angitte størrelsen på stykket støttes ikke.";Strings.OfficeOM.L_GetDataParametersConflict="De angitte parameterne er i konflikt.";Strings.OfficeOM.L_InvalidValue="Ugyldig verdi";Strings.OfficeOM.L_SSOUnsupportedPlatform="API støttes ikke på denne plattformen.";Strings.OfficeOM.L_NotTrustedWAC="Tillegget er deaktivert for å beskytte deg trygt. Hvis du vil fortsette å bruke tillegget, må du validere at dette elementet er vert på et klarert domene eller åpne det i Office Desktop app.";Strings.OfficeOM.L_CustomXmlError="Egendefinerte XML-feil.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Navnet på funksjonen må inneholde et navneområde som ikke er tomt, og et kort navn som ikke er tomt.";Strings.OfficeOM.L_UnsupportedUserIdentity="Brukeridentitetstypen støttes ikke.";Strings.OfficeOM.L_RedundantCallbackSpecification="Tilbakekall kan ikke angis både i argumentlisten og valgfrie objektet.";Strings.OfficeOM.L_DialogParentIsMinimized="Operasjonen mislyktes fordi det overordnede vinduet er minimert.";Strings.OfficeOM.L_FormattingReminder="Påminnelse om formatering";Strings.OfficeOM.L_CallbackNotAFunction="Tilbakekall må være av typen function. Var av typen {0}.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Kall closeAsync på den gjeldende filen før du henter en annen.";Strings.OfficeOM.L_NoCapability="Du har ikke tilstrekkelige tillatelser for denne handlingen.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Den angitte konverteringstypen er ikke kompatibel med bindingstypen.";Strings.OfficeOM.L_InvalidFormat="Feil for ugyldig format";Strings.OfficeOM.L_APICallFailed="API-kallet mislyktes";Strings.OfficeOM.L_InvalidDataFormat="Formatet på det angitte dataobjektet er ugyldig.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Dataene er utdaterte. Hent objektet på nytt.";Strings.OfficeOM.L_EventHandlerNotExist="Finner ikke den angitte hendelsesbehandlingen for denne bindingen.";Strings.OfficeOM.L_ApiNotFoundDetails="Metoden eller egenskapen {0} er en del av {1}-kravsettet, som ikke er tilgjengelig i din versjon av {2}.";Strings.OfficeOM.L_InvalidSetStartRowColumn="De angitte verdiene for startRow/startColumn er ugyldige.";Strings.OfficeOM.L_IndexOutOfRange="Indeksen er utenfor området.";Strings.OfficeOM.L_SSOClientErrorMessage="Det oppstod en uventet feil i klienten.";Strings.OfficeOM.L_InvalidCellsValue="En eller flere av cellenes parametere har verdier som ikke er tillatt. Dobbeltsjekk verdiene, og prøv på nytt.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Merket innhold må være i tabellformat. Formater dataene som en tabell, og prøv på nytt.";Strings.OfficeOM.L_ModalDialogOpeng="Operasjonen mislyktes fordi dette tillegget allerede har en aktiv modal dialogboks.";Strings.OfficeOM.L_RowIndexOutOfRange="Radindeksverdien er utenfor det tillatte området. Bruk en verdi (0 eller høyere) som er lavere enn antallet rader.";Strings.OfficeOM.L_Timeout="Operasjonen ble tidsavbrutt.";Strings.OfficeOM.L_InternalError="Intern feil";Strings.OfficeOM.L_DataStale="Dataene er ikke oppdaterte";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Vennligst velg.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Et nettverksproblem har forhindret henting av filen.";Strings.OfficeOM.L_InvalidBinding="Ugyldig binding";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Office-økten er utløpt eller ugyldig. Oppdater siden for å fortsette.";Strings.OfficeOM.L_MemoryLimit="Minne oversteget";Strings.OfficeOM.L_BindingCreationError="Feil under oppretting av binding";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Operasjonen mislyktes fordi dette tillegget allerede ber om et tilgangstoken.";Strings.OfficeOM.L_SetDataParametersConflict="De angitte parameterne er i konflikt.";Strings.OfficeOM.L_InternalErrorDescription="Det har oppstått en intern feil";Strings.OfficeOM.L_InvalidGetStartRowColumn="De angitte verdiene for startRow/startColumn er ugyldige.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="En tilkobling ble brutt under påloggingsprosessen, og brukeren kan ikke logges på. Dette var sannsynligvis på grunn av konfigurasjonsinnstillingene for nettleseren til brukeren, for eksempel sikkerhetssoner.";Strings.OfficeOM.L_ConnectionFailureWithDetails="Forespørselen mislyktes med statuskoden {0}, feilkoden {1} og den følgende feilmeldingen: {2}";Strings.OfficeOM.L_DocumentReadOnly="Den forespurte operasjonen er ikke tillatt i gjeldende dokumentmodus.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Obs! Formatet som er angitt av et API-kall for formatering, er foreslått å være under 100.";Strings.OfficeOM.L_PropertyDoesNotExist="Egenskapen {0} ikke finnes på objektet.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Kan ikke fjerne hendelsesbehandlingen.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Gjeldende utvalg er ikke kompatibelt med angitt rangeringstype.";Strings.OfficeOM.L_SettingNameNotExist="Det angitte innstillingsnavnet finnes ikke.";Strings.OfficeOM.L_InvalidBindingError="Feil på grunn av ugyldig binding";Strings.OfficeOM.L_InvalidSSOAddinMessage="Identitet-API støttes ikke for dette tillegget.";Strings.OfficeOM.L_RequestTokenUnavailable="Denne APIen er dempet for å redusere frekvensen for kall.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Forsøker å angi den skrivebeskyttede egenskapen {0}.";Strings.OfficeOM.L_NotSupported="Funksjonen {0} støttes ikke.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Koordinatparametere kan ikke brukes med rangeringstypetabell når tabellen inneholder sammenslåtte celler.";Strings.OfficeOM.L_ElementMissing="Vi kunne ikke formatere tabellcellen fordi det mangler noen parameterverdier. Dobbeltsjekk parameterne, og prøv på nytt.";Strings.OfficeOM.L_BrowserAPINotSupported="Denne nettleseren støtter ikke den forespurte APIen.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Endringer av egenskapen {0} kan ikke brukes med en object.set-metode.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operasjonen støttes ikke for denne bindingstypen.";Strings.OfficeOM.L_OutOfRange="Utenfor området";Strings.OfficeOM.L_InvalidSetRows="De angitte radene er ugyldige.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl-typen støttes ikke.";Strings.OfficeOM.L_CustomXmlNodeNotFound="Finner ikke den angitte noden.";Strings.OfficeOM.L_SSOClientError="Det oppstod en feil i godkjenningsforespørselen fra Office.";Strings.OfficeOM.L_AppNameNotExist="Navnet på tillegget for {0} finnes ikke.";Strings.OfficeOM.L_NotImplemented="Funksjonen {0} er ikke implementert.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Dette tillegget støtter ikke brukersamtykke.";Strings.OfficeOM.L_CannotRegisterEvent="Kan ikke registrere hendelsesbehandling.";Strings.OfficeOM.L_UnsupportedDataObject="Den angitte dataobjekttypen støttes ikke.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Tillat";Strings.OfficeOM.L_SpecifiedIdNotExist="Den angitte IDen finnes ikke.";Strings.OfficeOM.L_BadSelectorString="Strengen som ble sendt til velgeren, er feil formatert eller støttes ikke.";Strings.OfficeOM.L_DialogAlreadyOpened="Operasjonen mislyktes fordi dette tillegget allerede har en aktiv dialog.";Strings.OfficeOM.L_DataNotMatchBindingSize="Det angitte dataobjektet samsvarer ikke med størrelsen på gjeldende utvalg.";Strings.OfficeOM.L_InvalidGetColumns="De angitte kolonnene er ugyldige.";Strings.OfficeOM.L_InvalidApiCallInContext="Ugyldig API-kall i gjeldende kontekst.";Strings.OfficeOM.L_InvalidDataObject="Ugyldig dataobjekt";Strings.OfficeOM.L_MultipleNamedItemFound="Finner flere objekter med samme navn.";Strings.OfficeOM.L_InvalidGetRows="De angitte radene er ugyldige.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Koordinatparametere kan ikke brukes med rangeringstypetabell når tabellen inneholder sammenslåtte celler.";Strings.OfficeOM.L_SSOServerErrorMessage="Det oppstod en uventet feil på serveren.";Strings.OfficeOM.L_UserClickIgnore="Brukeren valgte å ignorere dialogboksen.";Strings.OfficeOM.L_ContinueButton="Fortsett";Strings.OfficeOM.L_BindingToMultipleSelection="Ikke-sammenhengende utvalg støttes ikke.";Strings.OfficeOM.L_UserAbortedMessage="Brukeren samtykket ikke til tillatelsene for tillegget.";Strings.OfficeOM.L_FileTypeNotSupported="Den angitte filtypen støttes ikke.";Strings.OfficeOM.L_ConfirmRefreshMessage="Hvis du vil fortsette, fjerner du tillegget og legger det til på nytt, eller oppdaterer siden.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Tillegget ber allerede om et tilgangstoken.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="En egenskap med dette navnet som representerer funksjonens definisjon, må finnes i Excel.Script.CustomFunctions.";Strings.OfficeOM.L_InvalidRequestContext="Kan ikke bruke objektet på tvers av ulike forespørselskontekster.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Et øyeblikk …";Strings.OfficeOM.L_UnsupportedEnumeration="Opplisting som ikke støttes";Strings.OfficeOM.L_TooManyOptionalObjects="flere valgfrie objekter i parameterliste";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Operasjonen mislyktes fordi dette tillegget ikke støtter brukersamtykke i denne kategorien";Strings.OfficeOM.L_EventHandlerAdditionFailed="Kan ikke legge til hendelsesbehandlingen.";Strings.OfficeOM.L_DataWriteError="Dataskrivefeil";Strings.OfficeOM.L_ConfirmDialog="Domenet {0} fungerer som Microsoft Office og kan kjøre Office tillegg, som kan få tilgang til personopplysningene dine. Hvis du stoler på at domenet kjører som Office og får tilgang til dataene, klikker du OK for å fortsette.";Strings.OfficeOM.L_RunMustReturnPromise="Satsvis-funksjonen som ble sendt til «.run»-metoden returnerte ikke et promise-objekt. Funksjonen må returnere et promise-objekt, slik at objekter som er automatisk sporet kan bli frigitt når den satsvise oppgaven er fullført. Vanligvis returnerer du et promise-objekt ved å returnere svaret fra «context.sync()».";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath begrenser utvalget til 1024 elementer.";Strings.OfficeOM.L_SettingsAreStale="Innstillingene kan ikke lagres fordi de ikke er oppdaterte.";Strings.OfficeOM.L_NamedItemNotFound="Det navngitte elementet finnes ikke.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage="Størrelsen på svarets nyttelast har overskredet grensen. Vennligst se dokumentasjonen: «https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins».";Strings.OfficeOM.L_InvalidGetRowColumnCounts="De angitte verdiene for rowCount eller columnCount er ugyldige.";Strings.OfficeOM.L_InvalidFormatValue="En eller flere av formatparameterne har verdier som ikke er tillatt. Dobbeltsjekk verdiene, og prøv på nytt."
|
|
@@ -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_RowIndexOutOfRange="De rij-indexwaarde ligt buiten het toegestane bereik. Gebruik een waarde (0 of hoger) die lager is dan het aantal rijen.";Strings.OfficeOM.L_SaveSettingsError="Fout bij instellingen opslaan";Strings.OfficeOM.L_SSOClientErrorMessage="Er is een onverwachte fout opgetreden in de client.";Strings.OfficeOM.L_MemoryLimit="Geheugenlimiet is overschreden";Strings.OfficeOM.L_UserClickIgnore="De gebruiker heeft het dialoogvenster genegeerd.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Opmerking: het is raadzaam minder dan 20.000 cellen in een tabel te gebruiken.";Strings.OfficeOM.L_CallbackNotAFunction="Terugbellen moet van het type functie is van het type {0}.";Strings.OfficeOM.L_InvalidSSOAddinMessage="De API voor identiteit wordt niet ondersteund voor deze invoegtoepassing.";Strings.OfficeOM.L_InvalidBindingOperation="Ongeldige bindende werking";Strings.OfficeOM.L_InvalidResourceUrl="Er is een ongeldige bron-URL voor de toepassing opgegeven.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="De bewerking is mislukt omdat er al een toegangstoken is aangevraagd voor deze invoegtoepassing.";Strings.OfficeOM.L_InvalidSetStartRowColumn="De opgegeven startRow- of startColumn-waarden zijn ongeldig.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Negeren";Strings.OfficeOM.L_EventHandlerRemovalFailed="De gebeurtenis-handler verwijderen is mislukt.";Strings.OfficeOM.L_InvalidGetColumns="De opgegeven kolommen zijn ongeldig.";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in de celbewerkingsmodus. Sluit de bewerkingsmodus door op ENTER of TAB te drukken of een andere cel te selecteren. Probeer het vervolgens opnieuw.";Strings.OfficeOM.L_OverwriteWorksheetData="De instelbewerking is mislukt omdat met het opgegeven gegevensobject gegevens worden overschreven of verschuiven.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Deze invoegtoepassing biedt geen ondersteuning voor toestemming van de gebruiker.";Strings.OfficeOM.L_ConfirmDialog="Het domein {0} fungeert als Microsoft Office en kan Office invoegtoepassingen uitvoeren die mogelijk toegang hebben tot uw persoonlijke gegevens. Als u het domein vertrouwt om als Office uit te voeren en toegang te krijgen tot uw gegevens, klikt u op OK om door te gaan.";Strings.OfficeOM.L_InvalidGetStartRowColumn="De opgegeven startRow- of startColumn-waarden zijn ongeldig.";Strings.OfficeOM.L_APINotSupported="API wordt niet ondersteund";Strings.OfficeOM.L_ReadSettingsError="Fout bij het lezen instellingen";Strings.OfficeOM.L_InvalidObjectPath="Het objectpad {0} werkt niet voor wat u wilt doen. Als u het object gebruikt in combinatie met meerdere aanroepen van context.sync en buiten de sequentiële uitvoering van een batch '.run', gebruikt u de methoden context.trackedObjects.add() en context.trackedObjects.remove() voor het beheren van de levensduur van het object.";Strings.OfficeOM.L_DataWriteError="Fout bij het schrijven van gegevens";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="De functienaam moet een niet-lege naamruimte en een niet-lege korte naam bevatten.";Strings.OfficeOM.L_SettingsCannotSave="De instellingen kunnen niet worden opgeslagen.";Strings.OfficeOM.L_SettingsAreStale="Instellingen kunnen niet worden opgeslagen omdat ze verouderd zijn.";Strings.OfficeOM.L_ConfirmRefreshMessage="Als u wilt doorgaan, verwijdert u de invoegtoepassing en voegt u deze opnieuw toe of vernieuwt u de pagina.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selectielimiet bereikt";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='De grootte van de nettolading van het antwoord overschrijdt de limiet. Raadpleeg de documentatie: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_InvalidGrantMessage="Toestemming voor deze invoegtoepassing ontbreekt.";Strings.OfficeOM.L_DialogInvalidScheme="Het URL-schema wordt niet ondersteund. Gebruik in plaats hiervan HTTPS.";Strings.OfficeOM.L_ConfirmCancelMessage="Er kan niet worden doorgegaan.";Strings.OfficeOM.L_InvalidDataObject="Ongeldige gegevensobject";Strings.OfficeOM.L_InvalidDataFormat="De indeling van het opgegeven gegevensobject is ongeldig.";Strings.OfficeOM.L_InvalidGrant="Verificatie vooraf ontbreekt.";Strings.OfficeOM.L_InvalidFormat="Fout: ongeldige indeling";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Maak een selectie.";Strings.OfficeOM.L_DataWriteReminder="Herinnering voor gegevens schrijven";Strings.OfficeOM.L_DataReadError="Fout bij het lezen van gegevens";Strings.OfficeOM.L_SelectionNotSupportCoercionType="De huidige selectie is niet compatibel met het opgegeven forceringstype.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="De gegevens zijn verouderd. Haal het object opnieuw op.";Strings.OfficeOM.L_BindingToMultipleSelection="Niet-aaneengesloten selecties worden niet ondersteund.";Strings.OfficeOM.L_CancelButton="Annuleren";Strings.OfficeOM.L_CannotRegisterEvent="De gebeurtenis-handler kan niet worden geregistreerd.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type wordt niet ondersteund.";Strings.OfficeOM.L_ActivityLimitReached="Activiteitenlimiet is bereikt.";Strings.OfficeOM.L_ConnectionFailureWithDetails="De aanvraag is mislukt met statuscode {0}, foutcode {1} en het volgende foutbericht: {2}";Strings.OfficeOM.L_InvalidBinding="Ongeldige Binding";Strings.OfficeOM.L_InvalidCellsValue="Een of meer celparameters hebben een waarde die niet is toegestaan. Controleer de waarden en probeer het opnieuw.";Strings.OfficeOM.L_InternalError="Interne fout";Strings.OfficeOM.L_InvalidValue="Ongeldige waarde";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Roep closeAsync op het huidige bestand aan voordat u een ander bestand ophaalt.";Strings.OfficeOM.L_NotSupportedBindingType="Het type van de opgegeven binding {0} wordt niet ondersteund.";Strings.OfficeOM.L_ValueNotLoaded="De waarde van het resultaatobject is nog niet geladen. Roep context.sync() in de context van de bijbehorende aanvraag aan voordat u de waarde-eigenschap leest.";Strings.OfficeOM.L_DataStale="De gegevens zijn niet actueel";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Een netwerkprobleem heeft het ophalen van het bestand verhinderd.";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Ongeldige invoerargumenten.";Strings.OfficeOM.L_PropertyDoesNotExist="Eigenschap {0} bestaat niet voor het object.";Strings.OfficeOM.L_DataNotMatchSelection="Het opgegeven gegevensobject is niet compatibel met de vorm of de afmetingen van de huidige selectie.";Strings.OfficeOM.L_RedundantCallbackSpecification="Terugbellen worden niet in de lijst met argumenten en optioneel object opgegeven.";Strings.OfficeOM.L_NewWindowCrossZone="Er kan geen dialoogvenster worden gemaakt vanwege de beveiligingsinstellingen in de browser. Gebruik een andere browser of {0} zodat {1} en het domein dat wordt weergegeven in de adresbalk, zich in dezelfde beveiligingszone bevinden.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Er wordt geprobeerd om de alleen-lezeneigenschap {0} in te stellen.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coördinaatparameters mogen niet worden gebruikt in een tabel met forceringstypen wanneer de tabel samengevoegde cellen bevat.";Strings.OfficeOM.L_BadSelectorString="De tekenreeks doorgegeven in de kiezer is onjuist opgemaakt of niet ondersteund.";Strings.OfficeOM.L_NoCapability="U hebt onvoldoende machtigingen voor deze actie.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Het identiteitstype van de gebruiker wordt niet ondersteund.";Strings.OfficeOM.L_EventHandlerNotExist="De opgegeven gebeurtenis-handler voor deze binding is niet gevonden.";Strings.OfficeOM.L_GetDataIsTooLarge="De gevraagde gegevensset is te groot.";Strings.OfficeOM.L_FormatValueOutOfRange="De waarde ligt buiten het toegestane bereik.";Strings.OfficeOM.L_RunMustReturnPromise="De batchfunctie die is doorgegeven aan de .run-methode, heeft geen promise geretourneerd. De functie moet een promise retourneren, zodat alle automatisch bijgehouden objecten bij de voltooiing van de batch kunnen worden vrijgegeven. Normaal gesproken retourneert u een promise door de reactie van context.sync() te retourneren.";Strings.OfficeOM.L_InvalidSetRows="De opgegeven rijen zijn ongeldig.";Strings.OfficeOM.L_SpecifiedIdNotExist="De opgegeven id bestaat niet.";Strings.OfficeOM.L_InvalidNode="Ongeldige knooppunt";Strings.OfficeOM.L_NotImplemented="Functie {0} is niet geïmplementeerd.";Strings.OfficeOM.L_TooManyArguments="te veel argumenten";Strings.OfficeOM.L_NotSupportedEventType="Het type van de opgegeven gebeurtenis {0} wordt niet ondersteund.";Strings.OfficeOM.L_SetDataIsTooLarge="Het opgegeven gegevensobject is te groot.";Strings.OfficeOM.L_ElementMissing="De tabelcel kan niet worden opgemaakt omdat sommige parameterwaarden ontbreken. Controleer de parameters en probeer het opnieuw.";Strings.OfficeOM.L_SelectionCannotBound="Kan niet binden aan de huidige selectie.";Strings.OfficeOM.L_NamedItemNotFound="Het benoemde item bestaat niet.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Het opgegeven forceringstype is niet compatibel met dit bindingstype.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="Met XPath wordt de selectie beperkt tot 1024 items.";Strings.OfficeOM.L_SSOConnectionLostError="Tijdens het aanmeldproces is een verbinding verbroken.";Strings.OfficeOM.L_FunctionCallFailed="Aanroepen van functie {0} is mislukt, foutcode: {1}.";Strings.OfficeOM.L_InvalidBindingError="Ongeldige bindende fout";Strings.OfficeOM.L_DialogNavigateError="Fout bij het navigeren naar het dialoogvenster";Strings.OfficeOM.L_DialogRequireHTTPS="Het HTTP-protocol wordt niet ondersteund. Gebruik in plaats hiervan HTTPS.";Strings.OfficeOM.L_GetDataParametersConflict="Er is een conflict tussen de opgegeven parameters.";Strings.OfficeOM.L_InitializeNotReady="Office.js is nog niet volledig geladen. Probeer het later opnieuw of zorg ervoor dat uw initialisatiecode is toegevoegd aan de functie Office.initialize.";Strings.OfficeOM.L_SetDataParametersConflict="Er is een conflict tussen de opgegeven parameters.";Strings.OfficeOM.L_InvalidFormatValue="Een of meer opmaakparameters hebben een waarde die niet is toegestaan. Controleer de waarden en probeer het opnieuw.";Strings.OfficeOM.L_DocumentIsInactive="De bewerking is mislukt omdat het document met deze invoegtoepassing inactief is.";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Er kan geen dialoogvenster worden gemaakt vanwege beperkingen van de browser. Het domein van het dialoogvenster en het domein van de invoegtoepassingshost bevinden zich niet in dezelfde beveiligingszone.";Strings.OfficeOM.L_NavOutOfBound="De bewerking is mislukt omdat de index buiten bereik is.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Gegevens zijn niet actueel";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Schrijfbewerking wordt niet ondersteund in Office wanneer een modaal dialoogvenster is geopend.";Strings.OfficeOM.L_CustomXmlError="Aangepaste XML-fout.";Strings.OfficeOM.L_InvalidParameters="Functie {0} heeft ongeldige parameters.";Strings.OfficeOM.L_EventRegistrationError="Gebeurtenis Fout";Strings.OfficeOM.L_InternalErrorDescription="Er is een interne fout opgetreden.";Strings.OfficeOM.L_IndexOutOfRange="Index buiten bereik.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Wijzigingen in eigenschap {0} kunnen niet worden toegepast via de methode object.set.";Strings.OfficeOM.L_InvalidColumnsForBinding="De opgegeven kolommen zijn ongeldig.";Strings.OfficeOM.L_NoHttpsWAC="Deze Office-sessie maakt geen gebruik van een beveiligde verbinding. U wordt aangeraden extra voorzorgsmaatregelen te nemen.";Strings.OfficeOM.L_InvalidApiCallInContext="Ongeldige API-aanroep in de huidige context.";Strings.OfficeOM.L_CannotNavigateTo="Het object bevindt zich op een plaats waar navigatie niet wordt ondersteund.";Strings.OfficeOM.L_ImplicitNotLoaded="De module is niet vooraf geladen haal een token op";Strings.OfficeOM.L_CannotWriteToSelection="Kan niet schrijven naar de huidige selectie.";Strings.OfficeOM.L_Timeout="Er is een time-out opgetreden voor de bewerking.";Strings.OfficeOM.L_PermissionDenied="Toestemming geweigerd";Strings.OfficeOM.L_InvalidReadForBlankRow="De opgegeven rij is leeg.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Geselecteerde inhoud moet een tabelindeling hebben. Maak de gegevens op als een tabel en probeer het opnieuw.";Strings.OfficeOM.L_SettingNameNotExist="De opgegeven instellingsnaam bestaat niet.";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Een ogenblik geduld...";Strings.OfficeOM.L_BindingNotExist="De opgegeven binding bestaat niet.";Strings.OfficeOM.L_HostError="Host-fout";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="browser configureren";Strings.OfficeOM.L_SettingsStaleError="Instellingen verlopen fout";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_InvalidTableOptionValue="Een of meer tableOptions-parameters hebben een waarde die niet is toegestaan. Controleer de waarden en probeer het opnieuw.";Strings.OfficeOM.L_OutOfRange="Buiten bereik";Strings.OfficeOM.L_DataNotMatchCoercionType="Het type van het opgegeven gegevensobject is niet compatibel met de huidige selectie.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="U staat op het staat om mogelijk gevoelige informatie van {0} te verzenden en te ontvangen. Klik alleen op OK als u de volgende website vertrouwt die de gevoelige informatie ontvangt: {1}.";Strings.OfficeOM.L_MultipleNamedItemFound="Er zijn meerdere objecten met dezelfde naam gevonden.";Strings.OfficeOM.L_GetSelectionNotSupported="De huidige selectie wordt niet ondersteund.";Strings.OfficeOM.L_DocumentReadOnly="De aangevraagde bewerking is niet toegestaan in de huidige documentmodus.";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Uw Office-sessie is verlopen of is ongeldig. Vernieuw de pagina om door te gaan.";Strings.OfficeOM.L_FileTypeNotSupported="Het opgegeven bestandstype wordt niet ondersteund.";Strings.OfficeOM.L_BrowserAPINotSupported="Deze browser biedt geen ondersteuning voor de aangevraagde API.";Strings.OfficeOM.L_ContinueButton="Doorgaan";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Er moet een eigenschap met deze naam voorkomen in Excel.Script.CustomFunctions die de definitie van de functie vertegenwoordigd.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='De grootte van de nettolading van de aanvraag overschrijdt de limiet. Raadpleeg de documentatie: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_TooManyOptionalFunction="meerdere optionele functies in de lijst met parameters";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="De bewerking is mislukt omdat deze invoegtoepassing geen ondersteuning biedt voor toestemming van de gebruiker in deze categorie";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Opmerking: het is raadzaam het aantal opmaaksets dat door een opmaak-API-aanroep wordt ingesteld, onder de 100 te houden.";Strings.OfficeOM.L_UnsupportedUserIdentity="Type gebruikersidentiteit wordt niet ondersteund.";Strings.OfficeOM.L_SSOServerErrorMessage="Er is een onverwachte fout opgetreden op de server.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Er is al een toegangstoken aangevraagd voor deze invoegtoepassing.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Toestaan";Strings.OfficeOM.L_UserAborted="Gebruiker heeft de toestemmingsaanvraag afgebroken.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="De eigenschap met deze naam in Excel.CustomFunctions die de definitie van de functie vertegenwoordigt, moet een eigenschap 'call' bevatten waarmee de functie wordt geïmplementeerd.";Strings.OfficeOM.L_UnsupportedEnumerationMessage="De opsomming wordt niet ondersteund in de huidige hosttoepassing.";Strings.OfficeOM.L_SliceSizeNotSupported="De opgegeven segmentgrootte wordt niet ondersteund.";Strings.OfficeOM.L_ConfirmDialogConsent="Als u op OK klikt, geeft u {0} toegang tot uw inhoud en persoonlijke gegevens. ";Strings.OfficeOM.L_DialogAddressNotTrusted="Het domein van de URL is niet opgenomen in het AppDomains element in het manifest en is geen subdomein van de bronlocatie.";Strings.OfficeOM.L_InValidOptionalArgument="ongeldig optioneel argument";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coördinaatparameters mogen niet worden gebruikt in een tabel met forceringstypen wanneer de tabel samengevoegde cellen bevat.";Strings.OfficeOM.L_InvalidCoercion="Ongeldig forceringstype";Strings.OfficeOM.L_OperationNotSupported="De bewerking wordt niet ondersteund.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Kan de gebeurtenis-handler toevoegen.";Strings.OfficeOM.L_RequestTokenUnavailable="Deze API is vertraagd om de oproepfrequentie te vertragen.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Ongeldige sessie of sessie met time-out";Strings.OfficeOM.L_ShuttingDown="De bewerking is mislukt omdat de gegevens verouderd zijn op de server.";Strings.OfficeOM.L_ApiNotFoundDetails="De methode of eigenschap {0} maakt deel uit van de ingestelde vereiste {1} die niet beschikbaar is in uw versie van {2}.";Strings.OfficeOM.L_ModalDialogOpeng="De bewerking is mislukt omdat deze invoegtoepassing al een actief modaal dialoogvenster heeft.";Strings.OfficeOM.L_DialogAlreadyOpened="De bewerking is mislukt omdat deze invoegtoepassing al een actief dialoogvenster heeft.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="De bewerking wordt niet ondersteund voor dit bindingstype.";Strings.OfficeOM.L_MissingRequiredArguments="Sommige argumenten ontbreekt";Strings.OfficeOM.L_InvalidGetRows="De opgegeven rijen zijn ongeldig.";Strings.OfficeOM.L_FormattingReminder="Herinnering voor opmaak";Strings.OfficeOM.L_ColIndexOutOfRange="De kolomindexwaarde ligt buiten het toegestane bereik. Gebruik een waarde (0 of hoger) die kleiner is dan het aantal kolommen.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="De functie voor verificatie van context ontbreekt";Strings.OfficeOM.L_OperationCancelledErrorMessage="De bewerking is geannuleerd door de gebruiker.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="De opgegeven rowCount- of columnCount-waarden zijn ongeldig.";Strings.OfficeOM.L_TooManyIncompleteRequests="Wacht tot de vorige aanroep is voltooid.";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_InvalidResourceUrlMessage="Er is een ongeldige bron-URL opgegeven in het manifest.";Strings.OfficeOM.L_TooManyOptionalObjects="meerdere optionele objecten in de lijst met parameters";Strings.OfficeOM.L_OperationCancelledError="Bewerking is geannuleerd";Strings.OfficeOM.L_SSOServerError="Er is een fout opgetreden in de verificatieprovider.";Strings.OfficeOM.L_DataNotMatchBindingType="Het opgegeven gegevensobject is niet compatibel met het bindingstype.";Strings.OfficeOM.L_PropertyNotLoaded="De eigenschap {0} is niet beschikbaar. Voordat u de waarde van de eigenschap leest, roept u de laadmethode aan in het containerobject en context.sync() in de bijbehorende aanvraagcontext.";Strings.OfficeOM.L_DialogParentIsMinimized="De bewerking is mislukt omdat het bovenliggende venster is geminimaliseerd.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Er kan geen binding worden gemaakt met de huidige selectie en het opgegeven bindingstype.";Strings.OfficeOM.L_InvalidRequestContext="Kan het object niet gebruiken in combinatie met verschillende aanvraagcontexten.";Strings.OfficeOM.L_DataNotMatchBindingSize="Het opgegeven gegevensobject komt niet overeen met de grootte van de huidige selectie.";Strings.OfficeOM.L_BindingCreationError="Fout bij het maken van binding";Strings.OfficeOM.L_InvalidSetColumns="De opgegeven kolommen zijn ongeldig.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API wordt niet ondersteund op dit platform.";Strings.OfficeOM.L_WorkbookHiddenMessage="De aanvraag van de JavaScript-API is mislukt omdat de werkmap is verborgen. De werkmap zichtbaar maken en probeer het opnieuw.";Strings.OfficeOM.L_ShowWindowDialogNotification="Er wordt een nieuw venster geopend in {0}.";Strings.OfficeOM.L_UserAbortedMessage="De gebruiker heeft geen toestemming gegeven voor de machtigingen voor de invoegtoepassing.";Strings.OfficeOM.L_AppNameNotExist="Naam van invoegtoepassing voor {0} bestaat niet.";Strings.OfficeOM.L_DisplayDialogError="Fout bij het weergeven van het dialoogvenster";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Tijdens het aanmeldproces is een verbinding verbroken en de gebruiker is mogelijk niet aangemeld. Dit is waarschijnlijk vanwege de configuratie-instellingen van de browser van de gebruiker, zoals beveiligingszones.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Toepassing {0} bestaat niet. Microsoft.Office.WebExtension.Initialize(Reason) niet wordt aangeroepen.";Strings.OfficeOM.L_CustomXmlNodeNotFound="Het opgegeven knooppunt is niet gevonden.";Strings.OfficeOM.L_NotSupported="Functie {0} wordt niet ondersteund.";Strings.OfficeOM.L_InvalidArgumentGeneric="De argumenten die zijn doorgegeven aan de functie, werken niet voor deze situatie, ontbreken of hebben niet de juiste indeling.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="De functienaam mag alleen letters, cijfers, onderstrepingstekens en punten bevatten.";Strings.OfficeOM.L_InvalidAPICall="Ongeldige API-aanroep";Strings.OfficeOM.L_APICallFailed="API-aanroep mislukt";Strings.OfficeOM.L_InvalidArgument="Het argument {0} werkt niet voor deze situatie, ontbreekt of heeft niet de juiste indeling.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Het opgegeven bindingstype is niet compatibel met het opgegeven benoemde item.";Strings.OfficeOM.L_UnsupportedEnumeration="Niet-ondersteunde (opsomming)";Strings.OfficeOM.L_RequestTimeout="Het gesprek duurde te lang om uit te voeren.";Strings.OfficeOM.L_UserNotSignedIn="Er is geen gebruiker aangemeld bij Office.";Strings.OfficeOM.L_MissingParameter="Ontbrekende parameter";Strings.OfficeOM.L_CoercionTypeNotSupported="Het opgegeven forceringstype wordt niet ondersteund.";Strings.OfficeOM.L_SSOClientError="Er is een fout opgetreden in de verificatieaanvraag van Office.";Strings.OfficeOM.L_NetworkProblem="Netwerkprobleem";Strings.OfficeOM.L_UnknownBindingType="Het bindingstype wordt niet ondersteund.";Strings.OfficeOM.L_UnsupportedDataObject="Het opgegeven type gegevensobject wordt niet ondersteund.";Strings.OfficeOM.L_NotTrustedWAC="Deze invoegtoepassing is uitgeschakeld om u te helpen uw veiligheid te beschermen. Als u de invoegtoepassing wilt blijven gebruiken, controleert u of dit item wordt gehost in een vertrouwd domein of opent in de Office Desktop-app.";Strings.OfficeOM.L_ConnectionFailureWithStatus="De aanvraag is mislukt met statuscode {0}."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_InternalErrorDescription="Det har oppstått ein intern feil.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="Dataa er forelda. Hent objektet på nytt.";Strings.OfficeOM.L_ShuttingDown="Operasjonen mislukkast, fordi dataa på tenaren ikkje er oppdaterte.";Strings.OfficeOM.L_SettingsCannotSave="Innstillingane kan ikkje lagrast.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="Funksjonsnamnet kan berre innehalde bokstavar, siffer, understrekingsteikn og punktum.";Strings.OfficeOM.L_TooManyOptionalObjects="fleire valfrie objekt i parameterliste";Strings.OfficeOM.L_NotSupportedBindingType="Den oppgitte bindingstypen {0} er ikkje støtta.";Strings.OfficeOM.L_DataReadError="Datalesefeil";Strings.OfficeOM.L_ConnectionFailureWithDetails="Førespurnaden vart mislukka med statuskoden {0}, feilkoden {1} og den følgjande feilmeldinga: {2}";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Ugyldige inndataargument.";Strings.OfficeOM.L_InvalidParameters="Funksjonen {0} har ugyldige parametrar.";Strings.OfficeOM.L_SSOClientErrorMessage="Det oppstod ein uventa feil i klienten.";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} vil vise i eit nytt vindauge.";Strings.OfficeOM.L_DataNotMatchSelection="Det oppgitte dataobjektet er ikkje kompatibelt med forma eller dimensjonane til gjeldande utval.";Strings.OfficeOM.L_EventRegistrationError="Feil under hendingsregistrering";Strings.OfficeOM.L_InvalidReadForBlankRow="Den oppgitte rada er tom.";Strings.OfficeOM.L_BindingCreationError="Feil under oppretting av binding";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Office-økta er avbroten eller er ugyldig. Oppdater sida for å halde fram.";Strings.OfficeOM.L_ReadSettingsError="Feil for leseinnstillingar";Strings.OfficeOM.L_InvalidGrant="Førehandsgodkjenning manglar.";Strings.OfficeOM.L_OperationCancelledErrorMessage="Operasjonen blei avbroten av brukaren.";Strings.OfficeOM.L_CustomXmlError="Egendefinert XML-feil.";Strings.OfficeOM.L_OperationNotSupported="Operasjonen blir ikkje støtta.";Strings.OfficeOM.L_SliceSizeNotSupported="Den oppgitte stykkestorleiken blir ikkje støtta.";Strings.OfficeOM.L_NavOutOfBound="Operasjonen mislukkast fordi indeksen er utanfor området.";Strings.OfficeOM.L_ConfirmDialog="Domenet {0} fungerer som Microsoft Office, og kan køyre Office-tillegg som kan få tilgang til personleg informasjon. Dersom du stolar på at domenet køyrer som Office og får tilgang til dataa dine, kan du klikke på OK for å halde fram.";Strings.OfficeOM.L_ValueNotLoaded='Verdien av resultatobjektet er ikkje lasta inn enno. Før du les verdieigenskapen, kan du ringe "context.sync()" på tilknytta spørjingskontekst.';Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_ActivityLimitReached="Aktivitetsgrensa er nådd.";Strings.OfficeOM.L_InvalidArgumentGeneric="Argumentet eller argumenta som vart ført inn i funksjonen, fungerer ikkje for denne situasjonen, manglar eller er ikkje i rett format.";Strings.OfficeOM.L_NotTrustedWAC="Dette tilleggsprogrammet er deaktivert for å halde deg trygg. Dersom du vil halde fram med å bruke tillegget, må du validere at dette elementet er drifta i eit klarert domene, eller opne tilleggsprogrammet i skrivebordsprogrammet for Office.";Strings.OfficeOM.L_OutOfRange="Utanfor området";Strings.OfficeOM.L_SetDataIsTooLarge="Det oppgitte dataobjektet er for stort.";Strings.OfficeOM.L_InvalidValue="Ugyldig verdi";Strings.OfficeOM.L_SSOServerError="Det oppstod ein feil i godkjenningsleverandøren.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Det merkte innhaldet må vere i tabellformat. Formater dataa som ein tabell, og prøv på nytt.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Kan ikkje fjerne hendingshandsaminga.";Strings.OfficeOM.L_GetDataIsTooLarge="Det førespurte datasettet er for stort.";Strings.OfficeOM.L_InValidOptionalArgument="ugyldig valfritt argument";Strings.OfficeOM.L_ColIndexOutOfRange="Kolonneindeksverdien er utanfor det tillatne området. Bruk ein verdi (0 eller høgare) som er mindre enn talet på kolonnar.";Strings.OfficeOM.L_InitializeNotReady="Office.js er ikkje fullstendig lasta inn enno. Prøv på nytt seinare, eller kontroller at du legg til initialiseringskoden din i Office.initialize-funksjonen.";Strings.OfficeOM.L_MissingParameter="Manglar parameter";Strings.OfficeOM.L_UnsupportedEnumerationMessage="Opplistinga blir ikkje støtta i gjeldande vertsprogram.";Strings.OfficeOM.L_PropertyNotLoaded="Eigenskapen {0} er ikkje tilgjengeleg. Før du les verdien til eigenskapen, kall opplastingsmetoden på det overordna objektet og kall context.sync() på den tilknytta førespurnadskonteksten.";Strings.OfficeOM.L_ContinueButton="Hald fram";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Eigenskapen med dette namnet på Excel.Scrpt.CustomFunctions som representerer definisjonen av funksjonen, må innehalde ein samtaleeigenskap som implementerer funksjonen.";Strings.OfficeOM.L_DataNotMatchBindingSize="Det oppgitte dataobjektet samsvarer ikkje med storleiken til gjeldande utval.";Strings.OfficeOM.L_IndexOutOfRange="Indeksen er utanfor området.";Strings.OfficeOM.L_UserNotSignedIn="Ingen brukar er pålogga Office.";Strings.OfficeOM.L_DocumentReadOnly="Den førespurte operasjonen er ikkje tillaten i den gjeldande dokumentmodusen.";Strings.OfficeOM.L_InvalidTableOptionValue="Éin eller fleire av tableOptions-parametrane har verdiar som ikkje er tillatne. Dobbeltsjekk verdiane, og prøv på nytt.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Ugyldig eller tidsavbroten økt";Strings.OfficeOM.L_InvalidGrantMessage="Manglar løyve for tillegget.";Strings.OfficeOM.L_ConfirmCancelMessage="Beklagar, men vi kan ikkje halde fram.";Strings.OfficeOM.L_Timeout="Operasjonen blei tidsavbroten.";Strings.OfficeOM.L_CoercionTypeNotSupported="Den oppgitte konverteringstypen er ikkje støtta.";Strings.OfficeOM.L_InvalidRequestContext="Kan ikkje bruke objektet over ulike førespurnadskontekstar.";Strings.OfficeOM.L_BindingNotExist="Den oppgitte bindinga finst ikkje.";Strings.OfficeOM.L_NotImplemented="Funksjonen {0} er ikkje implementert.";Strings.OfficeOM.L_MemoryLimit="Minnegrense overskriden";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage="Nyttelaststorleik i svar har overskride grensa. Referer til dokumentasjonen: «https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins».";Strings.OfficeOM.L_FunctionCallFailed="Kallet for funksjonen {0} mislukkast, feilkode: {1}.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Obs! Formatet som er oppgitt av eit API-kall for formatering, er foreslått å vere under 100.";Strings.OfficeOM.L_SSOServerErrorMessage="Det oppstod ein uventa feil på tenaren.";Strings.OfficeOM.L_UserClickIgnore="Brukaren valde å ignorere dialogboksen.";Strings.OfficeOM.L_UserAborted="Brukar avbraut førespurnaden om samtykke.";Strings.OfficeOM.L_NamedItemNotFound="Det namngitte elementet finst ikkje.";Strings.OfficeOM.L_InvalidBinding="Ugyldig binding";Strings.OfficeOM.L_UserAbortedMessage="Brukaren gav ikkje samtykke til tilleggsløyva.";Strings.OfficeOM.L_RequestTokenUnavailable="Denne API-en er dempa for å redusere frekvensen for kall.";Strings.OfficeOM.L_InvalidSelectionForBindingType="Kan ikkje opprette ei binding med gjeldande utval og oppgitt bindingstype.";Strings.OfficeOM.L_OverwriteWorksheetData="Set-operasjonen mislukkast fordi det oppgitte dataobjektet vil overskrive eller flytte data.";Strings.OfficeOM.L_DialogAddressNotTrusted="Domenet til nettadressa er ikkje inkludert i AppDomains-elementet i manifestet og er ikkje underdomene av kjeldeplasseringa.";Strings.OfficeOM.L_InvalidSetStartRowColumn="Dei oppgitte startRow- eller startColumn-verdiane er ugyldige.";Strings.OfficeOM.L_SSOConnectionLostError="Ei tilkopling gjekk tapt under påloggingprosessen.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="Funksjonsnamnet må innehalde eit namneområde og eit kort namn.";Strings.OfficeOM.L_FormatValueOutOfRange="Verdien er utan for det tillatne området.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Skriveoperasjonen er ikkje støtta for Office når ein sperrande dialog er open.";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="Funksjonen for å hente samanheng for godkjenning manglar";Strings.OfficeOM.L_APINotSupported="API blir ikkje støtta";Strings.OfficeOM.L_CallbackNotAFunction="Tilbakekall må vere av typen function, men var av typen {0}.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Kan ikkje leggje til hendingshandsaminga.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_InvalidNode="Ugyldig node";Strings.OfficeOM.L_CustomXmlNodeNotFound="Finn ikkje den oppgitte noden.";Strings.OfficeOM.L_DialogNavigateError="Dialognavigasjonsfeil";Strings.OfficeOM.L_OperationCancelledError="Operasjonen blei avbroten";Strings.OfficeOM.L_ModalDialogOpeng="Operasjonen mislukkast fordi dette tillegget allereie har ein aktiv sperrande dialogboks.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Dataa er ikkje oppdaterte";Strings.OfficeOM.L_BindingToMultipleSelection="Ikkje-kontinuerlege utval blir ikkje støtta.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Koordinatparametrar kan ikkje brukast med konverteringstypetabell når tabellen inneheld samanslåtte celler.";Strings.OfficeOM.L_GetSelectionNotSupported="Det gjeldande utvalet blir ikkje støtta.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="Den oppgitte bindingstypen er ikkje kompatibel med oppgitt namngitt element.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath avgrensar valet til 1024 element.";Strings.OfficeOM.L_MissingRequiredArguments="manglar nokre nødvendige argument";Strings.OfficeOM.L_InvalidColumnsForBinding="Dei oppgitte kolonnane er ugyldige.";Strings.OfficeOM.L_PropertyDoesNotExist="Eigenskapen {0} finst ikkje på objektet.";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript-API-førespurnaden mislukkast fordi arbeidsboka er skjult. Vis arbeidsboka, og prøv på nytt.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Programmet {0} finst ikkje. Microsoft.Office.WebExtension.initialize(reason) blir ikkje kalla.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="Operasjonen mislukkast fordi tillegget ikkje støttar brukarsamtykke i kategorien";Strings.OfficeOM.L_NotSupported="Funksjonen {0} blir ikkje støtta.";Strings.OfficeOM.L_NetworkProblem="Nettverksproblem";Strings.OfficeOM.L_ConfirmDialogConsent="Dersom du klikkar OK, gir du {0} tilgang til innhaldet og personlege opplysingar. ";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Prøver å oppgi den skriveverna eigenskapen {0}.";Strings.OfficeOM.L_DataWriteError="Dataskrivefeil";Strings.OfficeOM.L_CancelButton="Avbryt";Strings.OfficeOM.L_HostError="Vertsfeil";Strings.OfficeOM.L_NoHttpsWAC="Denne Office-økta bruker ikkje ei sikkert tilkopling. Vi tilrår at du tek ekstra forholdsreglar.";Strings.OfficeOM.L_InvalidGetRows="Dei oppgitte radene er ugyldige.";Strings.OfficeOM.L_RunMustReturnPromise="Bunkefunksjonen som vart sendt til .run-metoden returnerte ikkje eit løfte. Funksjonen må returnere eit løfte, slik at objekt som er automatisk spora kan bli frigitt når bunkinga er ferdig. Vanlegvis returnerer du eit løfte ved å returnere svaret frå context.sync().";Strings.OfficeOM.L_DocumentIsInactive="Operasjonen mislukkast fordi dokumentet som inneheld dette tillegget er inaktivt.";Strings.OfficeOM.L_SSOClientError="Det oppstod ein feil i godkjenningsførespurnaden frå Office.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Tillegget ber allereie om ein tilgangstoken.";Strings.OfficeOM.L_InvalidArgument="Argumentet {0} fungerer ikkje for denne situasjonen, manglar eller er ikkje i rett format.";Strings.OfficeOM.L_BadSelectorString="Strengen som blei send til veljaren, er feil formatert eller blir ikkje støtta.";Strings.OfficeOM.L_InvalidSetRows="Dei oppgitte radene er ugyldige.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Tillat";Strings.OfficeOM.L_InvalidSetColumns="Dei oppgitte kolonnane er ugyldige.";Strings.OfficeOM.L_TooManyOptionalFunction="fleire valfrie funksjonar i parameterliste";Strings.OfficeOM.L_InvalidApiCallInContext="Ugyldig API-kall i den gjeldande konteksten.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Obs! Talet på celler i ein tabell er foreslått å vere mindre enn 20 000 celler.";Strings.OfficeOM.L_AppNameNotExist="Tilleggsnamnet for {0} finst ikkje.";Strings.OfficeOM.L_DataNotMatchCoercionType="Typen for det oppgitte dataobjektet er ikkje kompatibel med gjeldande utval.";Strings.OfficeOM.L_DataStale="Dataa er ikkje oppdaterte";Strings.OfficeOM.L_GetDataParametersConflict="Dei oppgitte parametrane er i konflikt.";Strings.OfficeOM.L_DialogParentIsMinimized="Operasjonen mislukkast fordi overordna vindauge er minimert.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="Tillegget støttar ikkje brukarsamtykke.";Strings.OfficeOM.L_InvalidGetColumns="Dei oppgitte radene er ugyldige.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="Dei oppgitte rowCount- eller columnCount-verdiane er ugyldige.";Strings.OfficeOM.L_InvalidAPICall="Ugyldig API-kall";Strings.OfficeOM.L_SelectionNotSupportCoercionType="Gjeldande utval er ikkje kompatibelt med den oppgitte konverteringstypen.";Strings.OfficeOM.L_SettingNameNotExist="Det oppgitte innstillingsnamnet finst ikkje.";Strings.OfficeOM.L_InvalidDataObject="Ugyldig dataobjekt";Strings.OfficeOM.L_BrowserAPINotSupported="Denne nettlesaren støttar ikkje den førespurte API-en.";Strings.OfficeOM.L_ApiNotFoundDetails="Metoden eller eigenskapen {0} er ein del av {1}-krava, som ikkje er tilgjengelege i versjonen din av {2}.";Strings.OfficeOM.L_ImplicitNotLoaded="Modulen blir ikkje lasta inn før eit token er henta";Strings.OfficeOM.L_TooManyIncompleteRequests="Vent til det førre kallet er fullført.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API er ikkje støtta på denne plattforma.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configureer uw browser";Strings.OfficeOM.L_ConfirmDialogConsentTitle="Ein augeblink ...";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Gjer eit val.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="Du er i ferd med å sende og ta imot potensielt sensitiv informasjon frå {0}. Berre klikk OK dersom du stoler på denne nettstaden mottek den sensitive informasjonen: {1}.";Strings.OfficeOM.L_CannotNavigateTo="Objektet er plassert på ein stad der navigasjon ikkje blir støtta.";Strings.OfficeOM.L_DataNotMatchBindingType="Det oppgitte dataobjektet er ikkje kompatibelt med bindingstypen.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="Den oppgitte konverteringstypen er ikkje kompatibel med denne bindingstypen.";Strings.OfficeOM.L_NewWindowCrossZone="Tryggleiksinnstillingane i nettlesaren din hindrar oppretting av ein dialogboks. Prøv ein annan nettlesar, eller {0} slik at {1} og domenet som blir vist i adresselina, er i same tryggleikssone.";Strings.OfficeOM.L_PermissionDenied="Ingen tilgang";Strings.OfficeOM.L_DialogInvalidScheme="Skjemaet for nettadressa blir ikkje støtta. Bruk HTTPS i staden.";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Endringar på eigenskapen {0} kan ikkje bli brukt gjennom ein objekt.set-metode.";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP-protokollen blir ikkje støtta. Bruk HTTPS i staden";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel er i celleredigeringsmodus. Gå ut av redigeringsmodusen ved å trykkje på ENTER eller TAB eller velje ei anna celle, og prøv deretter på nytt.";Strings.OfficeOM.L_SettingsAreStale="Innstillingane kan ikkje lagrast, fordi dei ikkje er gjeldande.";Strings.OfficeOM.L_APICallFailed="API-kall mislukkast";Strings.OfficeOM.L_InvalidResourceUrl="Ugyldig nettadresse oppgitt for programressurs.";Strings.OfficeOM.L_InvalidObjectPath="Objektbanen {0} fungerer ikkje for det du prøver på. Dersom du brukar objektet over fleire context.sync-kall og utanfor den sekvensielle utføringa av ein .run-bunke, bruk metodane context.trackedObjects.add() og context.trackedObjects.remove() for å handsame objektet si levetid.";Strings.OfficeOM.L_TooManyArguments="for mange argument";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operasjonen blir ikkje støtta for denne bindingstypen.";Strings.OfficeOM.L_SpecifiedIdNotExist="Den oppgitte ID-en finst ikkje.";Strings.OfficeOM.L_UnsupportedUserIdentity="Identitetstypen til brukaren blir ikkje støtta.";Strings.OfficeOM.L_SaveSettingsError="Feil under lagring av innstillingar";Strings.OfficeOM.L_NotSupportedEventType="Den oppgitte hendingstypen {0} er ikkje støtta.";Strings.OfficeOM.L_UnsupportedEnumeration="Opplisting blir ikkje støtta";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Grensa for val er nådd";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Koordinatparametrar kan ikkje brukast med konverteringstypetabell når tabellen inneheld samanslåtte celler.";Strings.OfficeOM.L_InvalidCellsValue="Éin eller fleire av celleparametrane har verdiar som ikkje er tillatne. Dobbeltsjekk verdiane, og prøv på nytt.";Strings.OfficeOM.L_CannotWriteToSelection="Kan ikkje skrive til gjeldande utval.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Ugyldig nettadresse for ressurs spesifisert i manifestet.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="Ei tilkopling gjekk tapt under påloggingsprosessen, og brukaren kan ikkje loggast på. Dette var sannsynlegvis på grunn av konfigurasjonsinnstillingane til nettlesaren til brukaren, for eksempel tryggleikssoner.";Strings.OfficeOM.L_DisplayDialogError="Visingsdialogfeil";Strings.OfficeOM.L_InvalidFormat="Feil om ugyldig format";Strings.OfficeOM.L_DialogAlreadyOpened="Handlinga mislukkast fordi dette tillegget allereie har ein aktiv dialog.";Strings.OfficeOM.L_NetworkProblemRetrieveFile="Eit nettverksproblem har forhindra henting av fila.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl-typen blir ikkje støtta.";Strings.OfficeOM.L_ConfirmRefreshMessage="For å halde fram må du fjerne tilleggsprogrammet og legge til på nytt, eller oppdatere sida.";Strings.OfficeOM.L_InvalidDataFormat="Formatet til det oppgitte dataobjektet er ugyldig.";Strings.OfficeOM.L_InvalidFormatValue="Éin eller fleire av formatparametrane har verdiar som ikkje er tillatne. Dobbeltsjekk verdiane, og prøv på nytt.";Strings.OfficeOM.L_RedundantCallbackSpecification="Tilbakekall kan ikkje bli oppgitt både i argumentlista og i valfrie objekt.";Strings.OfficeOM.L_FileTypeNotSupported="Den oppgitte filtypen blir ikkje støtta.";Strings.OfficeOM.L_InvalidBindingError="Feil om ugyldig binding";Strings.OfficeOM.L_RequestTimeout="Det tok for lang tid å utføre kallet.";Strings.OfficeOM.L_InvalidCoercion="Ugyldig konverteringstype";Strings.OfficeOM.L_InvalidGetStartRowColumn="Dei oppgitte startRow- eller startColumn-verdiane er ugyldige.";Strings.OfficeOM.L_UnknownBindingType="Bindingstypen blir ikkje støtta.";Strings.OfficeOM.L_InvalidBindingOperation="Ugyldig bindingsoperasjon";Strings.OfficeOM.L_ElementMissing="Vi kan ikkje formatere tabellcella, fordi det manglar nokre parameterverdiar. Dobbeltsjekk parametrane, og prøv på nytt.";Strings.OfficeOM.L_FormattingReminder="Formateringspåminning";Strings.OfficeOM.L_ConnectionFailureWithStatus="Førespurnaden vart mislukka med statuskoden {0}.";Strings.OfficeOM.L_MultipleNamedItemFound="Fann fleire objekt med same namn.";Strings.OfficeOM.L_CannotRegisterEvent="Hendingshandsaminga kan ikkje bli registrert.";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Ein eigenskap med dette namnet som representerer definisjonen av funksjonen, må finnast på Excel.Script.CustomFunctions.";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignorer";Strings.OfficeOM.L_SelectionCannotBound="Kan ikkje binde til gjeldande utval.";Strings.OfficeOM.L_NoCapability="Du har ikkje tilstrekkelege løyve for denne handlinga.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="Identitetstypen for brukaren blir ikkje støtta.";Strings.OfficeOM.L_EventHandlerNotExist="Finn ikkje den oppgitte hendingshandsaminga for denne bindinga.";Strings.OfficeOM.L_SettingsStaleError="Feil for forelda innstillingar";Strings.OfficeOM.L_InternalError="Intern feil";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Kall closeAsync på den gjeldande fila før du hentar ei anna.";Strings.OfficeOM.L_RowIndexOutOfRange="Radindeksverdien er utanfor det tillatne området. Bruk ein verdi (0 eller høgare) som er mindre enn talet på rader.";Strings.OfficeOM.L_SetDataParametersConflict="Dei oppgitte parametrane er i konflikt.";Strings.OfficeOM.L_DataWriteReminder="Påminning om dataskriving";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Nettlesarrestriksjonar hindra oppretting av dialogboksen. Domenet til dialogboksen og domenet til verten for tilleggsprogrammet er ikkje i same tryggleikssone.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="Operasjonen mislukkast fordi dette tillegget allereie ber om ein tilgangstoken.";Strings.OfficeOM.L_UnsupportedDataObject="Den oppgitte dataobjekttypen blir ikkje støtta.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage="Førespurt nyttelaststorleik har overskride grensa. Referer til dokumentasjonen: «https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins».";Strings.OfficeOM.L_InvalidSSOAddinMessage="Identitets-API-en blir ikkje støtta for tillegget."
|