| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- * DevExtreme (core/errors.js)
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
- */
- "use strict";
- var errorUtils = require("./utils/error");
- module.exports = errorUtils({
- E0001: "Method is not implemented",
- E0002: "Member name collision: {0}",
- E0003: "A class must be instantiated using the 'new' keyword",
- E0004: "The NAME property of the component is not specified",
- E0005: "Unknown device",
- E0006: "Unknown endpoint key is requested",
- E0007: "'Invalidate' method is called outside the update transaction",
- E0008: "Type of the option name is not appropriate to create an action",
- E0009: "Component '{0}' has not been initialized for an element",
- E0010: "Animation configuration with the '{0}' type requires '{1}' configuration as {2}",
- E0011: "Unknown animation type '{0}'",
- E0012: "jQuery version is too old. Please upgrade jQuery to 1.10.0 or later",
- E0013: "KnockoutJS version is too old. Please upgrade KnockoutJS to 2.3.0 or later",
- E0014: "The 'release' method shouldn't be called for an unlocked Lock object",
- E0015: "Queued task returned an unexpected result",
- E0017: "Event namespace is not defined",
- E0018: "DevExpress.ui.DevExpressPopup widget is required",
- E0020: "Template engine '{0}' is not supported",
- E0021: "Unknown theme is set: {0}",
- E0022: "LINK[rel=DevExpress-theme] tags must go before DevExpress included scripts",
- E0023: "Template name is not specified",
- E0024: "DevExtreme bundle already included",
- E0025: "Unexpected argument type",
- E0100: "Unknown validation type is detected",
- E0101: "Misconfigured range validation rule is detected",
- E0102: "Misconfigured comparison validation rule is detected",
- E0110: "Unknown validation group is detected",
- E0120: "Adapter for a DevExpressValidator component cannot be configured",
- E0121: "The 'customItem' field of the 'onCustomItemCreating' function's parameter should contain a custom item or Promise that is resolved after the item is created.",
- W0000: "'{0}' is deprecated in {1}. {2}",
- W0001: "{0} - '{1}' option is deprecated in {2}. {3}",
- W0002: "{0} - '{1}' method is deprecated in {2}. {3}",
- W0003: "{0} - '{1}' property is deprecated in {2}. {3}",
- W0004: "Timeout for theme loading is over: {0}",
- W0005: "'{0}' event is deprecated in {1}. {2}",
- W0006: "Invalid recurrence rule: '{0}'",
- W0007: "'{0}' Globalize culture is not defined",
- W0008: "Invalid view name: '{0}'",
- W0009: "Invalid time zone name: '{0}'",
- W0010: "{0} is deprecated in {1}. {2}",
- W0011: "Number parsing is invoked while the parser is not defined",
- W0012: "Date parsing is invoked while the parser is not defined",
- W0013: "'{0}' file is deprecated in {1}. {2}",
- W0014: "{0} - '{1}' type is deprecated in {2}. {3}",
- W0015: "Instead of returning a value from the '{0}' function, write it into the '{1}' field of the function's parameter.",
- W0016: 'The "{0}" option does not accept the "{1}" value since v.{2}. {3}.'
- });
|