mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00

First Implementation: * Non-stop as well as All-stop debugging * Function / Method name validation, arguments size validation (no arguments signature yet) * Ctrl-F5 as short key (consistent with JDT) * Hyper link support with Ctrl-Shift click * Junit Test (Services part) Change-Id: I58903b4b6b7f9fd39a827f5297ad23ac3f96186d Reviewed-on: https://git.eclipse.org/r/11305 Reviewed-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> IP-Clean: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> Tested-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
85 lines
3.2 KiB
Properties
85 lines
3.2 KiB
Properties
###############################################################################
|
|
# Copyright (c) 2006, 2013 Wind River Systems 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
|
|
# 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
|
|
popup.runToLine.label=Run To &Line
|
|
|
|
command.refreshAll.name=Refresh Debug Views
|
|
command.refreshAll.description=Refresh all data in debug views
|
|
|
|
# Preferences
|
|
|
|
StaleData.foreground.label=Stale data foreground color
|
|
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.
|
|
|
|
StaleData.background.label=Stale data background color
|
|
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.
|
|
|
|
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
|
|
|
|
|
|
|