1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Bug 464918: Fix broken externalized strings

Change-Id: I7e1aad4553b7c370618f80d3fd611649bed9b819
Signed-off-by: Jonah Graham <jonah@kichwacoders.com>
This commit is contained in:
Jonah Graham 2015-04-17 20:44:31 +01:00 committed by Gerrit Code Review @ Eclipse.org
parent da1993169d
commit f6cc476a95
3 changed files with 3 additions and 2 deletions

View file

@ -89,6 +89,7 @@ CastToArrayActionDelegate.7=The length must be greater than 0.
CastToArrayActionDelegate.8=Unable to display this variable as an array.
EnableVariablesActionDelegate.0=Exceptions occurred enabling the variable(s).
EnableVariablesActionDelegate.1=Enable variable(s) failed.
AddFunctionBreakpointActionDelegate.0=Cannot add function breakpoint.
AddWatchpointActionDelegate.0=Cannot add watchpoint.
AddWatchpointDialog.0=Add Watchpoint
AddWatchpointDialog.1=Expression to watch:

View file

@ -69,7 +69,7 @@ public class AddFunctionBreakpointActionDelegate extends ActionDelegate implemen
try {
cToggleTarget.createFunctionBreakpointInteractive(fView, fSelection);
} catch (CoreException e) {
CDebugUIPlugin.errorDialog( ActionMessages.getString( "AddWatchpointActionDelegate1.0" ), e ); //$NON-NLS-1$
CDebugUIPlugin.errorDialog( ActionMessages.getString( "AddFunctionBreakpointActionDelegate.0" ), e ); //$NON-NLS-1$
}
}
}

View file

@ -80,7 +80,7 @@ public class AddWatchpointActionDelegate extends ActionDelegate implements IView
try {
cToggleTarget.createWatchpointsInteractive(fPart, fSelection);
} catch (CoreException e) {
CDebugUIPlugin.errorDialog( ActionMessages.getString( "AddWatchpointActionDelegate1.0" ), e ); //$NON-NLS-1$
CDebugUIPlugin.errorDialog( ActionMessages.getString( "AddWatchpointActionDelegate.0" ), e ); //$NON-NLS-1$
}
}
}