// This file was generated by a tool. Modifying it will produce unexpected behavior /** * @public */ export interface IErrorStrings { /** * [Tag:ODSP-SPPPLAT-SPLoader] Separator for a list of elements. Used when loading a list of words in an error or log message. The usage is for a list of resources and libraries when an error happens as contextual information. Example: Missing dependency "another". Existing dependencies: jquery, jqueryui, moment */ 'listSeparator': string; /** * {Locked}An error to show when a component fails to load. {0} is the component id, {1} is the component alias, {2} is the original error that caused the failure. */ 'loadComponentError': string; /** * {Locked}An error to show when a component fails to load a component dependency through the failover path. {0} is the dependency name, {1} is the component id, {2} is the component alias, {3} is the original error that caused the dependency to fail. */ 'loadComponentDependencyError': string; /** * [Tag:ODSP-SPPPLAT-SPLoader] {Locked}An error to show when a component fails to load a component dependency through the failover path. {0} is the dependency name, {1} is the failover path, {2} is the component id, {3} is the component alias, {4} is the original error that caused the failure. */ 'loadComponentDependencyFailoverPathError': string; /** * [Tag:ODSP-SPPPLAT-SPLoader] {Locked}An error to show when a component fails to load a path dependency. {0} is the dependency name, {1} is the component id, {2} is the component alias, {3} is the original error that caused the failure. */ 'loadPathDependencyError': string; /** * {Locked}An error to show when a component fails to load a path dependency because another dependency failed to load. {0} is the dependency name, {1} is the component id, {2} is the component alias. */ 'loadPathDependencyBlockedByAnotherDependencyError': string; /** * [Tag:ODSP-SPPPLAT-SPLoader] {Locked}An error to show when a component fails to load a path dependency. {0} is the component id, {1} is the component alias, {2} is the original error that caused the failure. */ 'loadEntryPointError': string; /** * {Locked}An error to show when after loading a component, the output is empty. {0} is the component id, {1} is the component alias. */ 'loadComponentReturnsEmptyError': string; /** * {Locked}An error to show when after loading a component, the output has an empty default property. {0} is the component id, {1} is the component alias. */ 'loadComponentReturnsDefaultEmptyError': string; /** * [Tag:ODSP-SPPPLAT-SPLoader] {Locked}An error to show when the Javascript file declares a dependency not declared in the manifest. {0} is the component id, {1} is the component alias, {2} is the dependency name. */ 'moduleHasUndeclaredDependencyError': string; /** * {Locked}An error to show when loadScript is called with 2 parameters and the 2nd is a string. This is unsupported and otherwise the system throws a confusing error. */ 'loadScriptWithStringError': string; /** * {Locked}An error to show when trying to load a resource from a URL and the HTTP response is Not found (404). FOr localhost files we recommend that the user checks that they are running 'gulp serve' or 'heft start' (to load files from localhost) {0} is the manifest id, {1} is the manifest alias, {2} is the resource name, {3} is the URL */ 'urlStatusLocalhostFileNotFoundError': string; /** * {Locked}An error to show when trying to load a resource from a URL and the HTTP response is Not found (404). {0} is the manifest id, {1} is the manifest alias, {2} is the resource name, {3} is the URL */ 'urlStatusFileNotFoundError': string; /** * {Locked}An error to show when trying to load a resource from a URL and the HTTP response is Forbidden (403). {0} is the manifest id, {1} is the manifest alias, {2} is the resource name, {3} is the URL */ 'urlStatusForbiddenError': string; /** * {Locked}An error to show when trying to load a resource from a URL and the HTTP response is a client error (4xx). {0} is the manifest id, {1} is the manifest alias, {2} is the resource name, {3} is the URL */ 'urlStatusClientErrorError': string; /** * {Locked}An error to show when trying to load a resource from a URL and the HTTP response is a server error (5xx). {0} is the manifest id, {1} is the manifest alias, {2} is the resource name, {3} is the URL */ 'urlStatusServerErrorError': string; /** * {Locked}An error to show when trying to load a resource from a URL and there are network problems. {0} is the manifest id, {1} is the manifest alias, {2} is the resource name, {3} is the URL */ 'urlStatusLocalhostNetworkErrorError': string; /** * {Locked}An error to show when trying to load a resource from a URL and there are network problems. {0} is the manifest id, {1} is the manifest alias, {2} is the resource name, {3} is the URL */ 'urlStatusHttpsNetworkErrorError': string; /** * {Locked}An error to show when trying to load a resource from a URL and there are network problems. {0} is the manifest id, {1} is the manifest alias, {2} is the resource name, {3} is the URL */ 'urlStatusNetworkErrorError': string; /** * {Locked}An error to show when trying to load a resource from a URL and there are problems, but we are unable to identify them. {0} is the manifest id, {1} is the manifest alias, {2} is the resource name, {3} is the URL */ 'urlStatusUndefinedError': string; /** * {Locked}Error to show when a script fails to create a global variable. The {0} placeholder is the global variable name and the {1} placeholder is the script name or URL. */ 'failedToCreateGlobalVariableError': string; /** * {Locked}Error to show when a required dependency is not loaded. The {0} placeholder is the module being loaded, the {1} placeholder is the dependency that is not available. */ 'dependencyLoadError': string; /** * [Tag:ODSP-SPPPLAT-SPLoader] {Locked}An error to show when a component tries to load a path dependency that doesn't exist. {0} is the dependency name, {1} is the component id, {2} is the component alias, {3} is a separated list of existing path dependencies. */ 'missingPathDependencyError': string; } /** * @public */ declare const strings: IErrorStrings; export default strings;