Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dd06d09dc4de6d3d989bfcbae470427850457144 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
###############################################################################
# Copyright (c) 2012, 2013 Wind River Systems, Inc. and others. All rights reserved.
# This program and the accompanying materials are made available under the terms
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
# available at http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Wind River Systems - initial API and implementation
###############################################################################

ProcessLauncher_error_channelConnectFailed=Failed to connect channel for target ''{0}''.\n\nPossible Cause:\n{1}
ProcessLauncher_error_channelNotConnected=Channel is not connected!
ProcessLauncher_error_missingProcessPath=Illegal argument: Process image path must be specified!
ProcessLauncher_error_missingRequiredService=Failed to get required service: {0}!
ProcessLauncher_error_illegalNullArgument=Illegal argument: ''{0}'' has to be not null.
ProcessLauncher_error_getEnvironmentFailed=Failed to get initial process environment from remote target.
ProcessLauncher_error_processLaunchFailed=Failed to launch remote process.\n\nProcess Path: {0}\nProcess Arguments: {1}
ProcessLauncher_error_processTerminateFailed=Failed to terminate remote process.\n\nProcess Name: {0}
ProcessLauncher_error_processSendSignalFailed=Failed to send signal {0} to process.\n\nProcess Name: {1}
ProcessLauncher_error_possibleCause=\n\nPossible Cause:\n{0}
ProcessLauncher_cause_subscribeFailed=Failed to subscribe to the remote process streams service.
ProcessLauncher_cause_startFailed=Failed to start remote process.
ProcessLauncher_cause_ioexception=An IOException occurred.
ProcessLauncher_state_connected=Running
ProcessLauncher_state_connecting=Launching
ProcessLauncher_state_closed=Terminated

ProcessStreamReaderRunnable_error_readFailed=Failed to read data from stream with id ''{0}''.\n\nPossible Cause:\n{1}
ProcessStreamWriterRunnable_error_writeFailed=Failed to write data to stream with id ''{0}''.\n\nPossible Cause:\n{1}
ProcessStreamReaderRunnable_error_appendFailed=Failed to append data from stream with id ''{0}'' to data receiver.\n\nLost data:\n{1}.

PendingOperation_label=Pending...

AttachStep_error_possibleCause=\n\nPossible Cause:\n{0}
AttachStep_error_missingService=Failed to attach to selected context(s). The required service is missing on target ''{0}''.
AttachStep_error_openChannel=Failed to attach to selected context(s). A channel to target ''{0}'' cannot be opened.
AttachStep_error_getContext=Failed to query properties for context ''{0}''.
AttachStep_error_attach=Failed to attach to context ''{0}''.
AttachStep_error_title=Error

DetachStep_error_title=Error
DetachStep_error_disconnect=Failed to detach from context: {0}
DetachStep_error_getContext=Failed to get context: {0}
DetachStep_error_detach=Failed to detach context: {0}
DetachStep_error_openChannel=Failed to open channel: {0}

TerminateStep_error_title=Error
TerminateStep_error_terminate=Failed to terminate context: {0}
TerminateStep_error_getContext=Failed to get context: {0}
TerminateStep_error_openChannel=Failed to open channel: {0}

Back to the top