Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointGroupMessages.properties10
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/GroupBreakpointsByAction.java5
2 files changed, 12 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointGroupMessages.properties b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointGroupMessages.properties
index 5b848d129..05ab821be 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointGroupMessages.properties
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointGroupMessages.properties
@@ -19,3 +19,13 @@ SetDefaultBreakpointGroupAction.1=Set Default Custom Group
SetDefaultBreakpointGroupAction.2=&Specify the custom group in which new breakpoints will be automatically placed:
RenameBreakpointGroupAction.0=Rename CUstom Group
RenameBreakpointGroupAction.1=&Specify the new name for the custom group:
+GroupBreakpointsByAction.0=&None
+GroupBreakpointsByAction.1=&Advanced...
+GroupBreakpointsByDialog.0=Specify which groups should be applied to the Breakpoints view and in which order they should be applied.
+GroupBreakpointsByDialog.1=A&vailable Groups:
+GroupBreakpointsByDialog.2=&Add -->
+GroupBreakpointsByDialog.3=&Selected Groups:
+GroupBreakpointsByDialog.4=<-- &Remove
+GroupBreakpointsByDialog.5=Move &Up
+GroupBreakpointsByDialog.6=Move &Down
+GroupBreakpointsByDialog.7=Group Breakpoints \ No newline at end of file
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/GroupBreakpointsByAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/GroupBreakpointsByAction.java
index e7e2907d4..7b8a7b7ce 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/GroupBreakpointsByAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/GroupBreakpointsByAction.java
@@ -14,7 +14,6 @@ import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
-import org.eclipse.debug.internal.ui.actions.ActionMessages;
import org.eclipse.debug.internal.ui.views.breakpoints.BreakpointContainerFactoryManager;
import org.eclipse.debug.ui.IBreakpointContainerFactory;
import org.eclipse.jface.action.ActionContributionItem;
@@ -80,12 +79,12 @@ public class GroupBreakpointsByAction extends AbstractBreakpointsViewAction impl
// Add hard-coded actions
IAction action = new GroupBreakpointsAction(null, fView);
- action.setText(ActionMessages.getString("GroupBreakpointsByAction.0")); //$NON-NLS-1$
+ action.setText(BreakpointGroupMessages.getString("GroupBreakpointsByAction.0")); //$NON-NLS-1$
ActionContributionItem item= new ActionContributionItem(action);
item.fill(menu, -1);
AdvancedGroupBreakpointsByAction advancedAction = new AdvancedGroupBreakpointsByAction(fView);
- advancedAction.setText(ActionMessages.getString("GroupBreakpointsByAction.1")); //$NON-NLS-1$
+ advancedAction.setText(BreakpointGroupMessages.getString("GroupBreakpointsByAction.1")); //$NON-NLS-1$
item= new ActionContributionItem(advancedAction);
item.fill(menu, -1);
}

Back to the top