microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/common/error/errorStrings.ts
41lines · modeblame
3c172a05Artem Egorov8 years ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. | |
| 3 | | |
| 4 | export const ERROR_STRINGS = { | |
4f7c7447Meena Kunnathur Balakrishnan10 years ago | 5 | "CommandFailed": "Error while executing command '{0}'", |
| 6 | "CommandFailedWithErrorCode": "Command '{0}' failed with error code {1}", | |
df4bce40digeff10 years ago | 7 | "ExpectedIntegerValue": "Expected an integer. Couldn't read {0}", |
17161993Meena Kunnathur Balakrishnan10 years ago | 8 | "PackagerStartFailed": "Error while executing React Native Packager.", |
ba165ebbArtem Egorov8 years ago | 9 | "IOSDeployNotFound": "Unable to find ios-deploy. Please make sure to install it globally('npm install -g ios-deploy')", |
17161993Meena Kunnathur Balakrishnan10 years ago | 10 | "DeviceNotPluggedIn": "Unable to mount developer disk image.", |
| 11 | "DeveloperDiskImgNotMountable": "Unable to mount developer disk image.", | |
| 12 | "UnableToLaunchApplication": "Unable to launch application.", | |
| 13 | "ApplicationLaunchTimedOut": "Timeout launching application. Is the device locked?", | |
| 14 | "IOSSimulatorNotLaunchable": "Unable to launch iOS simulator. Try specifying a different target.", | |
| 15 | "OpnPackagerLocationNotFound": "opn package location not found", | |
| 16 | "PackageNotFound": "Attempting to find package {0} failed with error: {1}", | |
42fac1f6Meena Kunnathur Balakrishnan10 years ago | 17 | "PlatformNotSupported": "Platform '{0}' is not supported on host platform: {1}", |
17161993Meena Kunnathur Balakrishnan10 years ago | 18 | "ProjectVersionNotParsable": "Couldn't parse the version component of the package at {0}: version = {1}", |
| 19 | "ProjectVersionUnsupported": "Project version = {0}", | |
3c172a05Artem Egorov8 years ago | 20 | "ProjectVersionNotReadable": "Unable to read version = {0}", |
bf6ca504Meena Kunnathur Balakrishnan10 years ago | 21 | "TelemetryInitializationFailed": "{0}. Couldn't initialize telemetry", |
190e393cMeena Kunnathur Balakrishnan10 years ago | 22 | "ExtensionActivationFailed": "Failed to activate the React Native Tools extension", |
| 23 | "DebuggerStubLauncherFailed": "Failed to setup the stub launcher for the debugger", | |
| 24 | "IntellisenseSetupFailed": "Failed to setup IntelliSense", | |
| 25 | "NodeDebuggerConfigurationFailed": "Failed to configure the node debugger location for the debugger", | |
| 26 | "FailedToStopPackagerOnExit": "Failed to stop the packager while closing React Native Tools", | |
| 27 | "FailedToRunOnAndroid": "Failed to run the application in Android", | |
| 28 | "FailedToRunOnIos": "Failed to run the application in iOS", | |
4787ec09Artem Egorov7 years ago | 29 | "FailedToRunExponent": "Failed to run the application in Exponent", |
0611729dRuslan Bikkinin7 years ago | 30 | "FailedToPublishToExpHost": "Failed to publish the application to Exponent", |
190e393cMeena Kunnathur Balakrishnan10 years ago | 31 | "FailedToStartPackager": "Failed to start the React Native packager", |
| 32 | "FailedToStopPackager": "Failed to stop the React Native packager", | |
267aac11Bret Johnson9 years ago | 33 | "FailedToRestartPackager": "Failed to restart the React Native packager", |
190e393cMeena Kunnathur Balakrishnan10 years ago | 34 | "DebuggingFailed": "Cannot debug application", |
18d8ad2adigeff10 years ago | 35 | "DebuggingFailedInNodeWrapper": "Cannot debug application due to an error in the internal Node Debugger", |
2166bdabdigeff10 years ago | 36 | "RNTempFolderDeletionFailed": "Couldn't delete the temporary folder {0}", |
5e651f3edigeff10 years ago | 37 | "CouldNotFindLocationOfNodeDebugger": "Couldn't find the location of the node-debugger extension", |
8b2be31edigeff10 years ago | 38 | "PackagerRunningInDifferentPort": "A packager cannot be started on port {0} because a packager process is already running on port {1}", |
4b124a08Jimmy Thomson9 years ago | 39 | "ErrorWhileProcessingMessageInIPMSServer": "An error ocurred while handling message: {0}", |
3c172a05Artem Egorov8 years ago | 40 | "ErrorNoPipeFound": "Unable to set up communication with VSCode react-native extension. Is this a react-native project, and have you made sure that the react-native npm package is installed at the root?", |
ba165ebbArtem Egorov8 years ago | 41 | }; |