microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
eba0de58017cd198f69bffca9be3d8e0e4df4d6a

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/common/error/errorStrings.ts

41lines · modecode

1// 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 = {
5 "CommandFailed": "Error while executing command '{0}'",
6 "CommandFailedWithErrorCode": "Command '{0}' failed with error code {1}",
7 "ExpectedIntegerValue": "Expected an integer. Couldn't read {0}",
8 "PackagerStartFailed": "Error while executing React Native Packager.",
9 "IOSDeployNotFound": "Unable to find ios-deploy. Please make sure to install it globally('npm install -g ios-deploy')",
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}",
17 "PlatformNotSupported": "Platform '{0}' is not supported on host platform: {1}",
18 "ProjectVersionNotParsable": "Couldn't parse the version component of the package at {0}: version = {1}",
19 "ProjectVersionUnsupported": "Project version = {0}",
20 "ProjectVersionNotReadable": "Unable to read version = {0}",
21 "TelemetryInitializationFailed": "{0}. Couldn't initialize telemetry",
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",
29 "FailedToRunExponent": "Failed to run the application in Exponent",
30 "FailedToPublishToExpHost": "Failed to publish the application to Exponent",
31 "FailedToStartPackager": "Failed to start the React Native packager",
32 "FailedToStopPackager": "Failed to stop the React Native packager",
33 "FailedToRestartPackager": "Failed to restart the React Native packager",
34 "DebuggingFailed": "Cannot debug application",
35 "DebuggingFailedInNodeWrapper": "Cannot debug application due to an error in the internal Node Debugger",
36 "RNTempFolderDeletionFailed": "Couldn't delete the temporary folder {0}",
37 "CouldNotFindLocationOfNodeDebugger": "Couldn't find the location of the node-debugger extension",
38 "PackagerRunningInDifferentPort": "A packager cannot be started on port {0} because a packager process is already running on port {1}",
39 "ErrorWhileProcessingMessageInIPMSServer": "An error ocurred while handling message: {0}",
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?",
41};
42