1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

[188150] Added strings for "move up one level" action for hierarchy operations. Move up in list and move up in hierarchy are translated differently.

This commit is contained in:
David Dykstal 2007-05-22 19:42:53 +00:00
parent 0d4191c560
commit 089766f081
3 changed files with 7 additions and 1 deletions

View file

@ -999,6 +999,9 @@ public class SystemResources extends NLS
public static String ACTION_MOVEDOWN_LABEL;
public static String ACTION_MOVEDOWN_TOOLTIP;
public static String ACTION_MOVEUPLEVEL_LABEL;
public static String ACTION_MOVEUPLEVEL_TOOLTIP;
public static String ACTION_CONNECT_LABEL;
public static String ACTION_CONNECT_TOOLTIP;

View file

@ -921,6 +921,9 @@ ACTION_MOVEUP_TOOLTIP=Move selected resources up by one
ACTION_MOVEDOWN_LABEL=Move Down
ACTION_MOVEDOWN_TOOLTIP=Move selected resources down by one
ACTION_MOVEUPLEVEL_LABEL=Move up one level
ACTION_MOVEUPLEVEL_TOOLTIP=Move selected resources up one level
ACTION_CONNECT_LABEL=Connect...
ACTION_CONNECT_TOOLTIP=Connect to remote subsystem

View file

@ -222,7 +222,7 @@ public class SystemTableViewPart extends ViewPart
private IAdaptable _parent;
public UpAction()
{
super(SystemResources.ACTION_MOVEUP_LABEL, getEclipseImageDescriptor("elcl16/up_nav.gif")); //$NON-NLS-1$
super(SystemResources.ACTION_MOVEUPLEVEL_TOOLTIP, getEclipseImageDescriptor("elcl16/up_nav.gif")); //$NON-NLS-1$
setDisabledImageDescriptor(getEclipseImageDescriptor("dlcl16/up_nav.gif")); //$NON-NLS-1$
}