microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.6.16

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/common/error/errorStrings.ts

41lines · modeblame

3c172a05Artem Egorov8 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
4export const ERROR_STRINGS = {
4f7c7447Meena Kunnathur Balakrishnan10 years ago5"CommandFailed": "Error while executing command '{0}'",
6"CommandFailedWithErrorCode": "Command '{0}' failed with error code {1}",
df4bce40digeff10 years ago7"ExpectedIntegerValue": "Expected an integer. Couldn't read {0}",
17161993Meena Kunnathur Balakrishnan10 years ago8"PackagerStartFailed": "Error while executing React Native Packager.",
ba165ebbArtem Egorov8 years ago9"IOSDeployNotFound": "Unable to find ios-deploy. Please make sure to install it globally('npm install -g ios-deploy')",
17161993Meena Kunnathur Balakrishnan10 years ago10"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 ago17"PlatformNotSupported": "Platform '{0}' is not supported on host platform: {1}",
17161993Meena Kunnathur Balakrishnan10 years ago18"ProjectVersionNotParsable": "Couldn't parse the version component of the package at {0}: version = {1}",
19"ProjectVersionUnsupported": "Project version = {0}",
3c172a05Artem Egorov8 years ago20"ProjectVersionNotReadable": "Unable to read version = {0}",
bf6ca504Meena Kunnathur Balakrishnan10 years ago21"TelemetryInitializationFailed": "{0}. Couldn't initialize telemetry",
190e393cMeena Kunnathur Balakrishnan10 years ago22"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 ago29"FailedToRunExponent": "Failed to run the application in Exponent",
0611729dRuslan Bikkinin7 years ago30"FailedToPublishToExpHost": "Failed to publish the application to Exponent",
190e393cMeena Kunnathur Balakrishnan10 years ago31"FailedToStartPackager": "Failed to start the React Native packager",
32"FailedToStopPackager": "Failed to stop the React Native packager",
267aac11Bret Johnson9 years ago33"FailedToRestartPackager": "Failed to restart the React Native packager",
190e393cMeena Kunnathur Balakrishnan10 years ago34"DebuggingFailed": "Cannot debug application",
18d8ad2adigeff10 years ago35"DebuggingFailedInNodeWrapper": "Cannot debug application due to an error in the internal Node Debugger",
2166bdabdigeff10 years ago36"RNTempFolderDeletionFailed": "Couldn't delete the temporary folder {0}",
5e651f3edigeff10 years ago37"CouldNotFindLocationOfNodeDebugger": "Couldn't find the location of the node-debugger extension",
8b2be31edigeff10 years ago38"PackagerRunningInDifferentPort": "A packager cannot be started on port {0} because a packager process is already running on port {1}",
4b124a08Jimmy Thomson9 years ago39"ErrorWhileProcessingMessageInIPMSServer": "An error ocurred while handling message: {0}",
3c172a05Artem Egorov8 years ago40"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 ago41};