1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-02 22:05:44 +02:00

Fix capitalization of Run to Line, Move to Line, etc.

This commit is contained in:
Anton Leherbauer 2015-07-14 15:14:38 +02:00
parent 654c2999e1
commit 7861db94e1
4 changed files with 10 additions and 10 deletions

View file

@ -54,10 +54,10 @@ ToggleWatchpointAction.label=Toggle Watchpoint
ToggleWatchpointAction.tooltip=Toggle Variable Watchpoint ToggleWatchpointAction.tooltip=Toggle Variable Watchpoint
BreakpointPropertiesAction.label=P&roperties... BreakpointPropertiesAction.label=P&roperties...
AddExpressionAction.label=Add Watch Expression... AddExpressionAction.label=Add Watch Expression...
RunToLineAction.label=Run To &Line RunToLineAction.label=Run to &Line
ResumeAtLineAction.label=Resume At Li&ne ResumeAtLineAction.label=Resume at Li&ne
MoveToLineAction.label=&Move To Line MoveToLineAction.label=&Move to Line
GlobalResumeAtLineAction.label=Resume At Li&ne (C/C++) GlobalResumeAtLineAction.label=Resume at Li&ne (C/C++)
GlobalMoveToLineAction.label=Move to Line (C/C++) GlobalMoveToLineAction.label=Move to Line (C/C++)
ShowFullPathsAction.label=Show Full &Paths ShowFullPathsAction.label=Show Full &Paths
ShowFullPathsAction.tooltip=Show Full Paths ShowFullPathsAction.tooltip=Show Full Paths

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2004, 2005 QNX Software Systems and others. * Copyright (c) 2004, 2015 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -33,7 +33,7 @@ import org.eclipse.ui.PlatformUI;
* Manages the current evaluation context (stack frame) for evaluation actions. * Manages the current evaluation context (stack frame) for evaluation actions.
* In each page, the selection is tracked in each debug view (if any). When a debug * In each page, the selection is tracked in each debug view (if any). When a debug
* target selection exists, the "debuggerActive" System property is set to true. * target selection exists, the "debuggerActive" System property is set to true.
* This property is used to make the "Run To Line" and "Resume At Line" actions * This property is used to make the "Run to Line" and "Resume at Line" actions
* visible in editors only if there is a running debug session. * visible in editors only if there is a running debug session.
*/ */
public class EvaluationContextManager implements IWindowListener, IPageListener, ISelectionListener, IPartListener2 { public class EvaluationContextManager implements IWindowListener, IPageListener, ISelectionListener, IPartListener2 {

View file

@ -30,7 +30,7 @@ SignalZeroObjectActionDelegate.1=Operation failed.
RunToLineActionDelegate.Error_1=Error RunToLineActionDelegate.Error_1=Error
RunToLineActionDelegate.Operation_failed_1=Operation failed. RunToLineActionDelegate.Operation_failed_1=Operation failed.
RunToLineAdapter.Empty_editor_1=Empty editor RunToLineAdapter.Empty_editor_1=Empty editor
RunToLineAdapter.0=Run To Line failed. RunToLineAdapter.0=Run to Line failed.
RunToLineAdapter.Missing_document_1=Missing document RunToLineAdapter.Missing_document_1=Missing document
ToggleBreakpointAdapter.Empty_editor_1=Empty editor ToggleBreakpointAdapter.Empty_editor_1=Empty editor
ToggleBreakpointAdapter.Missing_document_1=Missing document ToggleBreakpointAdapter.Missing_document_1=Missing document

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2004, 2010 QNX Software Systems and others. * Copyright (c) 2004, 2015 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -29,8 +29,8 @@ import org.eclipse.ui.PlatformUI;
* Manages the current evaluation context (stack frame) for evaluation actions. * Manages the current evaluation context (stack frame) for evaluation actions.
* In each page, the selection is tracked in each debug view (if any). When a debug * In each page, the selection is tracked in each debug view (if any). When a debug
* target selection exists, the "debuggerActive" System property is set to true. * target selection exists, the "debuggerActive" System property is set to true.
* This property is used to make the "Run To Line", "Resume At Line", * This property is used to make the "Run to Line", "Resume at Line",
* "Move To Line" and "Add Watch Expression" actions * "Move to Line" and "Add Watch Expression" actions
* visible in editors only if there is a running debug session. * visible in editors only if there is a running debug session.
*/ */
public class EvaluationContextManager implements IWindowListener, IDebugContextListener { public class EvaluationContextManager implements IWindowListener, IDebugContextListener {