Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b5a3094790689484f54cf639232b581135b6924e (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
###############################################################################
# Copyright (c) 2006, 2013 Wind River Systems and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
#   Wind River Systems - initial API and implementation
#   IBM Corporation
#   Patrick Chuong (Texas Instruments) - Pin and Clone Supports (331781)
#   Alvaro Sanchez-Leon (Ericsson AB) - Support for Step into selection (bug 244865)
###############################################################################
pluginName=Debugger Services Framework UI
providerName=Eclipse CDT


# disassembly
disassemblyPreferencePage.name = Disassembly
disassemblyView.name= Disassembly

command.gotoPC.name=Go to Program Counter
command.gotoPC.description=Navigate to current program counter
command.gotoAddress.name=Go to Address...
command.gotoAddress.description=Navigate to address
command.gotoSymbol.name=Go to Symbol...
command.gotoSymbol.description=Navigate to symbolic address
command.rulerToggleBreakpoint.name=Toggle Breakpoint
command.rulerToggleBreakpoint.description=Toggle breakpoint in disassembly ruler

commandContext.name= In Disassembly
commandContext.description= When debugging in assembly mode

# actions
action.breakpointProperties.label = Breakpoint Properties...
action.toggleBreakpoint.label = Toggle Breakpoint
action.addBreakpoint.label = Add Breakpoint...

menu.updatePolicy = Update Policy
menu.threadsUpdatePolicy = Threads Update Policy
menu.updateScope = Update Scope

menu.numberFormat = Number Format

preferencePage.name = View Performance

action.expandStack.label = E&xpand Stack

action.refreshAll.name=Refresh Debug Views

action.refresh.label=Refresh

popup.addExpression.label=Add Watch Expression...
popup.resumeAtLine.label=Resume At Li&ne
popup.moveToLine.label=&Move To Line\u0020
popup.runToLine.label=Run To &Line

menu.addGroup.label=Add Expression Group
command.addLocals.label=Local Variables
command.addRegisters.label=Registers
command.addLocals.name=Add Expression Group > Local Variables
command.addRegisters.name=Add Expression Group > Registers

command.refreshAll.name=Refresh Debug Views
command.refreshAll.description=Refresh all data in debug views

# Preferences

StaleData.foreground.label=Stale data foreground color\u0020
StaleData.foreground.description=This color is used to indicate that a given element of data in a view is stale.  User should refresh the view to see current data.  The foreground color is used only when the view is showing data in columns.\u0020

StaleData.background.label=Stale data background color\u0020
StaleData.background.description=This color is used to indicate that a given element of data in a view is stale.  User should refresh the view to see current data.  The background color is used only when the view is in no-columns mode.\u0020

debugUpdateModes.label = Debug Update Modes

# Pin & Clone
PinView.name = Pin to Debug Context
OpenNewView.name = Open New View

# Disassembly ruler columns
disassemblyRulerColumn.addresses=Addresses
disassemblyRulerColumn.functionOffsets=Function Offsets
disassemblyRulerColumn.opcodes=Opcodes

# Step into selection
stepIntoSelectionHyperlinkDetector.label = C/C++ Step Into Selection
stepIntoSelectionHyperlinkDetector.description = Performs the step into selection command on demand via a hyperlink



Back to the top