2004-06-25 14:49:43 +00:00
###############################################################################
2016-02-24 11:51:49 -05:00
# Copyright (c) 2000, 2016 QNX Software Systems and others.
2018-11-20 13:02:15 +00:00
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
2004-06-25 14:49:43 +00:00
# which accompanies this distribution, and is available at
2018-11-20 13:02:15 +00:00
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
2005-06-23 16:01:26 +00:00
#
2004-06-25 14:49:43 +00:00
# Contributors:
# QNX Software Systems - Initial API and implementation
2009-05-26 14:48:10 +00:00
# IBM Corporation
2011-01-17 18:17:43 +00:00
# Patrick Chuong (Texas Instruments) - Pin and Clone Supports (Bug 331781)
2011-03-10 20:38:23 +00:00
# Dobrin Alexiev (Texas Instruments) - initial API and implementation (bug 336876)
2012-07-24 13:13:32 -04:00
# Marc Khouzam (Ericsson) - Added support for connect command (Bug 365601)
2012-12-13 13:21:13 -05:00
# Marc Dumais (Ericsson) - Added support for reverse debug action (Bug 365776)
2013-04-30 11:59:16 -04:00
# Alvaro Sanchez-Leon (Ericsson AB) - Support for Step into selection (bug 244865)
2014-04-08 13:40:38 -04:00
# Marc Khouzam (Ericsson) - Added dynamic printf support (Bug 400628)
2015-05-22 21:17:45 +01:00
# Jonah Graham (Kichwa Coders) - Create "Add Line Breakpoint (C/C++)" action (Bug 464917)
2015-09-24 17:23:04 +02:00
# Intel Corporation - Added Reverse Debugging BTrace support
2004-06-25 14:49:43 +00:00
###############################################################################
2002-08-06 19:00:46 +00:00
2002-09-26 02:16:53 +00:00
pluginName = C/C++ Development Tools Debugger UI
2009-05-26 14:48:10 +00:00
providerName = Eclipse CDT
2002-08-06 19:00:46 +00:00
MemoryView.name = Memory
2003-01-31 22:38:15 +00:00
SignalsView.name = Signals
2008-03-24 21:21:02 +00:00
ExecutablesView.name = Executables
2002-08-06 19:00:46 +00:00
2002-08-23 22:25:36 +00:00
CDebuggerPage.name = C Debugger UI Page
2002-11-29 21:09:21 +00:00
MemoryPreferencePage.name = Memory View
2002-10-03 22:51:52 +00:00
CDebugPreferencePage.name = Debug
2010-12-10 22:39:43 +00:00
SourcePreferencePage.name = Source Lookup Path
2007-03-28 23:29:04 +00:00
BreakpointActionPage.name = Breakpoint Action UI Page
2002-08-23 22:25:36 +00:00
2002-09-05 21:54:51 +00:00
RunMenu.label = &Run
2002-09-05 14:31:26 +00:00
DebugActionSet.label = C/C++ Debug
2004-05-13 18:56:46 +00:00
ToggleInstructionStepModeAction.label = Instruction Stepping Mode
ToggleInstructionStepModeAction.tooltip = Instruction Stepping Mode
2002-10-23 19:01:55 +00:00
ShowDebuggerConsoleAction.label = Show Debugger Console
ShowDebuggerConsoleAction.tooltip = Show Debugger Console On Target Selection
2012-04-11 14:37:20 -07:00
AddBreakpoint.label = Toggle Brea&kpoint
2012-12-12 21:13:52 -08:00
AddBreakpointInteractive.label = &Add Breakpoint...
2014-04-08 13:40:38 -04:00
AddDynamicPrintfInteractive.label = Add &Dynamic-Printf...
2012-12-12 21:13:52 -08:00
EnableBreakpoint.label = &Toggle Breakpoint Enabled
2012-04-04 08:11:52 -07:00
BreakpointProperties.label = Breakpoint P&roperties...
2012-12-12 21:13:52 -08:00
RulerBreakpointProperties.label = Breakpoint P&roperties...
2010-03-05 18:45:11 +00:00
BreakpointPropertiesCommand.name = C/C++ Breakpoint Properties
BreakpointPropertiesCommand.description = View and edit properties for a given C/C++ breakpoint
2004-06-14 20:46:18 +00:00
ManageFunctionBreakpointAction.label = Toggle Breakpoint
ManageFunctionBreakpointAction.tooltip = Toggle Function/Method Breakpoint
2004-06-15 22:09:22 +00:00
ToggleWatchpointAction.label = Toggle Watchpoint
ToggleWatchpointAction.tooltip = Toggle Variable Watchpoint
2002-09-04 20:50:20 +00:00
BreakpointPropertiesAction.label = P&roperties...
2005-01-20 21:32:51 +00:00
AddExpressionAction.label = Add Watch Expression...
2015-07-14 15:14:38 +02:00
RunToLineAction.label = Run to &Line
ResumeAtLineAction.label = Resume at Li&ne
2018-11-22 23:46:49 +00:00
MoveToLineAction.label = &Move to Line\u0020
2015-07-14 15:14:38 +02:00
GlobalResumeAtLineAction.label = Resume at Li&ne (C/C++)
2008-07-07 18:44:06 +00:00
GlobalMoveToLineAction.label = Move to Line (C/C++)
2004-04-01 20:16:55 +00:00
ShowFullPathsAction.label = Show Full &Paths
2002-10-04 20:23:28 +00:00
ShowFullPathsAction.tooltip = Show Full Paths
2006-04-17 18:47:02 +00:00
AddWatchpoint.label = Add Watchpoint (C/C++)...
AddWatchpoint.tooltip = Add Watchpoint (C/C++)
2008-04-25 21:23:39 +00:00
AddEventBreakpoint.label = Add Event Breakpoint (C/C++)...
AddEventBreakpoint.tooltip = Add Event Breakpoint (C/C++)
2012-03-16 15:45:09 -07:00
AddFunctionBreakpoint.label = Add Function Breakpoint (C/C++)...
AddFunctionBreakpoint.tooltip = Add Function Breakpoint (C/C++)
2015-05-22 21:17:45 +01:00
AddLineBreakpoint.label = Add Line Breakpoint (C/C++)...
AddLineBreakpoint.tooltip = Add Line Breakpoint (C/C++)
2002-10-03 21:12:19 +00:00
2002-11-05 20:26:57 +00:00
AddGlobalsAction.label = Add Global Variables...
AddGlobalsAction.tooltip = Add Global Variables
2004-05-27 21:53:39 +00:00
RemoveGlobalsAction.label = Remove Global Variables
RemoveGlobalsAction.tooltip = Remove Selected Global Variables
RemoveAllGlobalsAction.label = Remove All Global Variables
RemoveAllGlobalsAction.tooltip = Remove All Global Variables
2002-11-05 20:26:57 +00:00
2002-12-17 02:46:01 +00:00
CVariableFormatMenu.label = Format
HexVariableFormatAction.label = Hexadecimal
DecVariableFormatAction.label = Decimal
2012-02-21 14:14:19 -05:00
NaturalVariableFormatAction.label = Default
2006-08-16 08:45:36 +00:00
BinaryVariableFormatAction.label = Binary
2002-12-17 02:46:01 +00:00
2002-10-03 21:12:19 +00:00
CDebugActionGroup.name = C/C++ Debug
2002-12-19 02:13:39 +00:00
2003-01-17 19:31:40 +00:00
LoadSymbolsAction.label = Load Symbols
2015-01-15 16:57:45 -05:00
LoadSymbolsAction.tooltip = Load Modules' Symbols
2004-06-11 21:49:09 +00:00
LoadSymbolsForAllAction.label = Load Symbols For All
2005-02-15 21:44:45 +00:00
LoadSymbolsForAllAction.tooltip = Load Symbols For All Modules
2004-03-19 18:45:21 +00:00
2003-02-14 18:50:51 +00:00
SignalAction.label = Resume With Signal
2004-03-19 18:45:21 +00:00
SignalAction.tooltip = Resume With Signal
2004-04-02 00:13:03 +00:00
SignalPropertiesAction.label = Signal Properties...
SignalPropertiesAction.tooltip = Open Signal Properties Dialog
2003-01-31 22:38:15 +00:00
2003-03-09 22:51:22 +00:00
CastToTypeAction.label = Cast To Type...
2008-07-30 08:37:09 +00:00
CastToTypeAction.tooltip = Cast Variable To Type
2003-08-19 17:37:36 +00:00
RestoreDefaultTypeAction.label = Restore Original Type
RestoreDefaultTypeAction.tooltip = Restore Original Type Of Variable
2003-03-10 23:07:45 +00:00
CastToArrayAction.label = Display As Array...
CastToArrayAction.tooltip = Display Variable As Array
2003-06-20 21:23:23 +00:00
2003-10-27 20:18:25 +00:00
DefaultSourceLocator.name = Default C/C++ Source Locator
2003-10-27 21:48:48 +00:00
OldDefaultSourceLocator.name = Default C/C++ Source Locator (old)
2004-04-15 22:53:48 +00:00
2006-05-19 20:56:19 +00:00
BreakpointMarkerPreference.label = Breakpoints
2004-05-11 20:32:10 +00:00
DebugPresentation.label = C/C++ Debug Appearance
2004-06-09 19:11:54 +00:00
2008-04-04 16:39:42 +00:00
# new disassembly
DisassemblyCategory.name = Disassembly
DisassemblyCategory.description = Category for disassembly commands
OpenDisassembly.name = Open Disassembly
2018-11-22 23:46:49 +00:00
OpenDisassembly.description = Open disassembly window\u0020
2008-04-04 16:39:42 +00:00
OpenDisassembly.label = Open Disassembly
OpenDisassembly.tooltip = Open disassembly window
DisassemblyEditor.name = Disassembly
DisassemblyRendering.name = Disassembly
2008-04-07 17:31:51 +00:00
2008-04-16 17:10:57 +00:00
DisassemblyPreferencePage.name = Disassembly
2008-04-04 16:39:42 +00:00
# new disassembly (end)
2004-07-15 23:04:07 +00:00
DebugTextHover.label = Debugger
2004-08-10 17:52:30 +00:00
DebugTextHover.description = Shows the value of the expression selected in the debug perspective.
DebuggingCContext.name = Debugging C/C++
DebuggingCContext.description = Debugging C/C++ Programs
2004-08-24 20:06:04 +00:00
2004-08-25 20:30:17 +00:00
CommonBreakpointPage.label = Common
FilteringBreakpointPage.label = Filtering
2004-10-15 19:33:26 +00:00
CommonSignalPage.label = Common
2005-02-12 00:09:10 +00:00
CommonModulePage.label = Common
2005-02-07 22:50:10 +00:00
2005-02-07 23:59:27 +00:00
ModulesDetailPaneFontDefinition.label = Modules View Detail Pane Text Font
ModulesDetailPaneFontDefinition.description = The text font used in the detail pane of the Modules view.
2005-02-15 04:01:19 +00:00
ModulePropertiesAction.label = Properties...
2005-02-12 00:09:10 +00:00
ModulePropertiesAction.tooltip = Open Module Properties Dialog
2005-05-20 21:25:59 +00:00
2014-10-24 11:42:04 -04:00
RegisterGroupingCategory.description = Set of commands for Register Grouping
RegisterGroupingCategory.name = Register Grouping commands
AddRegisterGroup.description = Adds a Register Group
AddRegisterGroup.name = Add RegisterGroup
AddRegisterGroup.label = Add Register Group
2005-05-20 21:25:59 +00:00
AddRegisterGroupAction.label = Add Register Group
AddRegisterGroupAction.tooltip = Add Register Group
2014-10-24 11:42:04 -04:00
RemoveRegisterGroups.description = Removes one or more Register Groups
RemoveRegisterGroups.name = Remove Register Groups
RemoveRegisterGroups.label = Remove Register Groups
RemoveRegisterGroupsAction.label = Remove Register Groups
RemoveRegisterGroupsAction.tooltip = Remove Register Groups
EditRegisterGroup.description = Edits a Register Group
EditRegisterGroup.name = Edit Register Group
EditRegisterGroup.label = Edit Register Group
2005-06-07 20:58:59 +00:00
EditRegisterGroupAction.label = Edit Register Group
EditRegisterGroupAction.tooltip = Edit Register Group
2014-10-24 11:42:04 -04:00
RestoreRegisterGroups.description = Restores the Default Register Groups
RestoreRegisterGroups.name = Restore Default Register Groups
RestoreRegisterGroups.label = Restore Default Register Groups
2005-06-09 20:21:16 +00:00
RestoredefaultRegisterGroupsAction.label = Restore Default Register Groups
RestoredefaultRegisterGroupsAction.tooltip = Restore Default Register Groups
2006-04-28 15:16:43 +00:00
# Import Executable
importExecutableWizard.name = C/C++ Executable
importExecutableWizard.description = Imports a C/C++ executable file. Will create a project and launch configuration for debugging.
2007-03-28 23:29:04 +00:00
BreakpointActionsPage.label = Actions
BreakpointActionsPrefPage.label = Breakpoint Actions
SoundAction.name = Sound Action
LogAction.name = Log Action
ResumeAction.name = Resume Action
2007-06-14 18:51:35 +00:00
ExternalToolAction.name = External Tool Action
2012-12-13 13:21:13 -05:00
ReverseDebugAction.name = Reverse Debug Action
2016-03-11 11:06:43 -05:00
CLICommandAction.name = Debugger Command Action
2008-04-28 21:57:25 +00:00
# Breakpoint Types
breapointType.label = Type
breapointType.regular.label = Regular
breapointType.hardware.label = Hardware
breapointType.temporay.label = Temporary
breapointType.hardwaretemporaty.label = Hardware Temporary
2009-02-27 22:38:54 +00:00
CApplicationShortcut.label = Local C/C++ Application
ContextualRunCApplication.description = Runs a local C/C++ application
ContextualDebugCApplication.description = Debugs a local C/C++ application
2010-03-11 19:19:38 +00:00
#Run Control commands
RunControlCategory.name = Run Control Commands
RunControlCategory.description = Set of commands for Run Control
ResumeWithoutSignal.name = Resume Without Signal
ResumeWithoutSignal.description = Resume Without Signal
ResumeWithoutSignal.label = Resume Without Signal
ResumeWithoutSignal.tooltip = Resume Ignoring Signal
2010-04-14 13:02:19 +00:00
# View memory command
command.viewMemory.description = View variable in memory view
command.viewMemory.name = View Memory
2009-12-16 20:32:47 +00:00
# Reverse debugging
ReverseActionSet.label = Reverse Debugging
ReverseDebuggingCategory.name = Reverse Debugging Commands
ReverseDebuggingCategory.description = Set of commands for Reverse Debugging
ReverseToggle.name = Reverse Toggle
ReverseToggle.description = Toggle Reverse Debugging
ReverseToggle.label = Toggle Reverse Debugging
2015-09-24 17:23:04 +02:00
ReverseToggle.commandparam = TraceMethod
2009-12-16 20:32:47 +00:00
ReverseResume.name = Reverse Resume
ReverseResume.description = Perform Reverse Resume
ReverseResume.label = Reverse Resume
2011-01-17 10:40:39 +00:00
ReverseStepInto.name = Reverse Step Into
ReverseStepInto.description = Perform Reverse Step Into
ReverseStepInto.label = Reverse Step Into
ReverseStepOver.name = Reverse Step Over
ReverseStepOver.description = Perform Reverse Step Over
ReverseStepOver.label = Reverse Step Over
2009-12-16 20:32:47 +00:00
Uncall.name = Uncall
Uncall.description = Perform Uncall
2009-12-18 18:59:44 +00:00
Uncall.label = Uncall
2016-02-25 16:04:45 -05:00
SoftwareTrace.label = Enable Software Reverse Debugging
SoftwareTrace.description = Enable Software Reverse Debugging. Slow, but detailed.
HardwareTrace.label = Enable Hardware Reverse Debugging
HardwareTrace.description = Enable Hardware Reverse Debugging. Fast, but less detailed.
2016-02-24 11:51:49 -05:00
ReverseDisable.label = Disable Reverse Debugging
ReverseDisable.description = Disable Reverse Debugging
2009-12-18 18:59:44 +00:00
2012-07-24 13:13:32 -04:00
# Connect command
Connect.name = Connect
Connect.description = Connect to a process
Connect.label = Connect...
Connect.tooltip = Connect to a process
2018-11-22 23:46:49 +00:00
# Debug View layout
2011-03-10 20:38:23 +00:00
DebugViewLayoutActionSet.label = Debug View Layout
DebugViewLayoutCategory.name = Debug View Layout Commands
DebugViewLayoutCategory.description = Set of commands for controlling the Debug View Layout
GroupDebugContexts.name = Group
GroupDebugContexts.description = Groups the selected debug contexts
UngroupDebugContexts.name = Ungroup
UngroupDebugContexts.description = Ungroups the selected debug contexts
2009-12-18 18:59:44 +00:00
# Menu for selecting breakpoint toggle type
BreakpointTypes.label = B&reakpoint Types
# Tracepoints
2010-01-27 19:05:47 +00:00
TracepointActionSet.label = C/C++ Tracepoints
TracingCategory.description = Category for Tracing Commands
TracingCategory.name = Tracing Commands
StartTracing.description = Start Tracing Experiment
2018-11-22 23:46:49 +00:00
StartTracing.name = Start Tracing\u0020
2010-01-27 19:05:47 +00:00
StopTracing.description = Stop Tracing Experiment
2018-11-22 23:46:49 +00:00
StopTracing.name = Stop Tracing\u0020
2010-01-27 19:05:47 +00:00
SaveTraceData.description = Save Trace Data to File
2018-11-22 23:46:49 +00:00
SaveTraceData.name = Save Trace Data\u0020
2010-02-01 16:23:38 +00:00
sourceNotFoundEditor.name = C/C++ Source Not Found Editor
2010-04-12 13:36:01 +00:00
CastingCategory.description = Set of commands for displaying variables and expressions as other types or arrays.
CastingCategory.name = Cast to Type or Array
2011-01-17 18:17:43 +00:00
# Pin & Clone
PinView.name = Pin to Debug Context
OpenNewView.name = Open New View
2011-09-21 13:51:29 +02:00
# Disassembly Ruler Column extension point
extPoint.disassemblyRulerColumn = Disassembly Ruler Column
2013-01-23 12:41:02 -05:00
# Debug New Executable Command
DebugNewExecutable.name = Debug New Executable
DebugNewExecutable.description = Debug a new executable
DebugNewExecutable.label = Debug New Executable...
DebugNewExecutable.tooltip = Debug a new executable
2013-04-30 11:59:16 -04:00
# Step into selection
popup.stepIntoSelection.description = Step into the current selected statement
popup.stepIntoSelection.name = Step Into Selection
2016-06-21 13:03:09 -04:00
# Debugger console view
DebuggerConsoleView.name = Debugger Console
2017-09-06 15:53:40 -04:00
GenericTarget.name = Generic Target
2025-06-26 13:38:34 +02:00
# Toggle Instruction Step Mode Command Activity support
org.eclipse.cdt.debug.ui.category.name = C/C++ Debug UI
org.eclipse.cdt.debug.ui.category.description = Controls visibility of C/C++ Debug UI contributions
org.eclipse.cdt.debug.ui.activity.toggleInstructionStepMode.name = Instruction Step Mode Button on main Toolbar
org.eclipse.cdt.debug.ui.activity.toggleInstructionStepMode.description = Control visibility of 'Toggle Instruction Step Mode' button on the main Toolbar