Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ae219d7e35fce1b6d03a68f8b54d4cb2ad0b2a55 (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
###############################################################################
# Copyright (c) 2009, 2016 Ericsson 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:
#   Ericsson - initial API and implementation
#   Jens Elmenthaler (Verigy) - Added Full GDB pretty-printing support (bug 302121)
#   Anton Gorenkov - A preference to use RTTI for variable types determination (Bug 377536)
#   IBM Corporation
#   Marc Khouzam (Ericsson) - Add preference for aggressive breakpoint filtering (Bug 360735)
#   Intel Corporation - Added Reverse Debugging BTrace support
###############################################################################

GdbDebugPreferencePage_Add_button=Add
GdbDebugPreferencePage_description=General settings for GDB Debugging

GdbDebugPreferencePage_general_behavior_label=General Behavior
GdbDebugPreferencePage_enableTraces_label=Enable GDB traces with character limit:
GdbDebugPreferencePage_autoTerminateGdb_label=Terminate GDB when last process exits
GdbDebugPreferencePage_Command_column_name=GDB/MI Command
GdbDebugPreferencePage_Command_field_can_not_be_empty='Command' field can not be empty
GdbDebugPreferencePage_Command_timeout=Command timeout (ms):

GdbDebugPreferencePage_useInspectorHover_label=Use enhanced debug hover

GdbDebugPreferencePage_hideRunningThreads=Show only suspended threads in the Debug View
GdbDebugPreferencePage_useAggressiveBpFilter=Use aggressive breakpoint filtering
GdbDebugPreferencePage_prettyPrinting_label=Pretty Printing
GdbDebugPreferencePage_enablePrettyPrinting_label1=Enable pretty printers in variable/expression tree
GdbDebugPreferencePage_enablePrettyPrinting_label2=(Note: requires python-enabled GDB)
GdbDebugPreferencePage_initialChildCountLimitForCollections_label=For collections, initially limit child count to

GdbDebugPreferencePage_use_rtti_label1=Display run-time type of variables
GdbDebugPreferencePage_use_rtti_label2=(Note: requires GDB 7.5 or higher)

GdbDebugPreferencePage_defaults_label=Debug Configurations Defaults
GdbDebugPreferencePage_Delete_button=Delete
GdbDebugPreferencePage_Invalid_timeout_value=Invalid timeout value
GdbDebugPreferencePage_Timeout_column_name=Timeout(ms)
GdbDebugPreferencePage_Timeout_value_can_not_be_negative=Timeout value can not be negative

GdbDebugPreferencePage_Advanced_button=&Advanced...
GdbDebugPreferencePage_Advanced_timeout_dialog_message=Specify commands and corresponding timeout values.
GdbDebugPreferencePage_Advanced_timeout_dialog_title=Add/delete/modify custom timeouts for GDB/MI commands
GdbDebugPreferencePage_Advanced_timeout_settings_dialog_tooltip=Specify commands and corresponding timeout values, use zero for "no timeout".\nMI commands must start with hyphen ('-'). For example, '-target-select'.\nThe default value will be used for all commands that are not mentioned here.
GdbDebugPreferencePage_Advanced_Timeout_Settings=Advanced Timeout Settings

GdbDebugPreferencePage_Browse_button=&Browse...
GdbDebugPreferencePage_GDB_command_file=GDB command file:
GdbDebugPreferencePage_GDB_command_file_dialog_title=GDB Command File
GdbDebugPreferencePage_GDB_debugger=GDB debugger:
GdbDebugPreferencePage_GDB_debugger_dialog_title=GDB Debugger
GdbDebugPreferencePage_Non_stop_mode=Non-stop mode (Note: Requires non-stop GDB)
GdbDebugPreferencePage_Stop_on_startup_at=Stop on startup at:

ReverseDebugPreferencePage_ReverseSettings=Settings for Reverse Debugging
ReverseDebugPreferencePage_SelectHardwareTracingMethod=Hardware technology for instruction recording:
ReverseDebugPreferencePage_GDBPreference=Automatic (let GDB choose)
ReverseDebugPreferencePage_BranchTrace=Branch Trace Store
ReverseDebugPreferencePage_ProcessorTrace=Intel(R) Processor Trace

GdbConsolePreferencePage_InvertColors = Invert console colors
GdbConsolePreferencePage_BufferLines = Console buffer lines:

Back to the top