1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 04:55:22 +02:00

[188150] TVT33:TCT336: pl: please help find 'Move up' string

https://bugs.eclipse.org/bugs/show_bug.cgi?id=188150
This commit is contained in:
David Dykstal 2008-05-14 22:45:29 +00:00
parent 6ec0b00bdd
commit d2d4154f5d
3 changed files with 7 additions and 1 deletions

View file

@ -22,6 +22,7 @@
* David Dykstal (IBM) - [210242] Credentials dialog should look different if password is not supported or optional * David Dykstal (IBM) - [210242] Credentials dialog should look different if password is not supported or optional
* David Dykstal (IBM) - [216858] Need the ability to Import/Export RSE connections for sharing * David Dykstal (IBM) - [216858] Need the ability to Import/Export RSE connections for sharing
* David Dykstal (IBM) - [231943] Make "true" and "false" translatable on SystemTypeFieldEditor * David Dykstal (IBM) - [231943] Make "true" and "false" translatable on SystemTypeFieldEditor
* David Dykstal (IBM) - [188150] adding "go up one level" tooltip
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.internal.ui; package org.eclipse.rse.internal.ui;
@ -832,6 +833,7 @@ public class SystemResources extends NLS
public static String ACTION_MOVEDOWN_LABEL; public static String ACTION_MOVEDOWN_LABEL;
public static String ACTION_MOVEDOWN_TOOLTIP; public static String ACTION_MOVEDOWN_TOOLTIP;
public static String ACTION_MOVEUPLEVEL_TOOLTIP; public static String ACTION_MOVEUPLEVEL_TOOLTIP;
public static String ACTION_GOUPLEVEL_TOOLTIP;
public static String ACTION_CONNECT_LABEL; public static String ACTION_CONNECT_LABEL;
public static String ACTION_CONNECT_TOOLTIP; public static String ACTION_CONNECT_TOOLTIP;

View file

@ -24,6 +24,7 @@
# David Dykstal (IBM) - [210242] Credentials dialog should look different if password is not supported or optional # David Dykstal (IBM) - [210242] Credentials dialog should look different if password is not supported or optional
# David Dykstal (IBM) - [216858] Need the ability to Import/Export RSE connections for sharing # David Dykstal (IBM) - [216858] Need the ability to Import/Export RSE connections for sharing
# David Dykstal (IBM) - [231943] Make true and false translatable on SystemTypeFieldEditor # David Dykstal (IBM) - [231943] Make true and false translatable on SystemTypeFieldEditor
# David Dykstal (IBM) - [188150] adding "go up one level" tooltip
################################################################################ ################################################################################
# NLS_MESSAGEFORMAT_VAR # NLS_MESSAGEFORMAT_VAR
@ -753,6 +754,8 @@ ACTION_MOVEDOWN_TOOLTIP=Move selected resources down by one
ACTION_MOVEUPLEVEL_TOOLTIP=Move selected resources up one level ACTION_MOVEUPLEVEL_TOOLTIP=Move selected resources up one level
ACTION_GOUPLEVEL_TOOLTIP=Go up one level
ACTION_CONNECT_LABEL=Connect... ACTION_CONNECT_LABEL=Connect...
ACTION_CONNECT_TOOLTIP=Connect to remote subsystem ACTION_CONNECT_TOOLTIP=Connect to remote subsystem

View file

@ -34,6 +34,7 @@
* Martin Oberhuber (Wind River) - [228774] Improve ElementComparer Performance * Martin Oberhuber (Wind River) - [228774] Improve ElementComparer Performance
* David McKnight (IBM) - [229116] NPE in when editing remote file in new workspace * David McKnight (IBM) - [229116] NPE in when editing remote file in new workspace
* David Dykstal (IBM) - [231867] TVT34:TCT196: PLK: "Subset" window too narrow * David Dykstal (IBM) - [231867] TVT34:TCT196: PLK: "Subset" window too narrow
* David Dykstal (IBM) - [188150] adding "go up one level" tooltip
*******************************************************/ *******************************************************/
package org.eclipse.rse.internal.ui.view; package org.eclipse.rse.internal.ui.view;
@ -246,7 +247,7 @@ public class SystemTableViewPart extends ViewPart
private IAdaptable _parent; private IAdaptable _parent;
public UpAction() public UpAction()
{ {
super(SystemResources.ACTION_MOVEUPLEVEL_TOOLTIP, getEclipseImageDescriptor("elcl16/up_nav.gif")); //$NON-NLS-1$ super(SystemResources.ACTION_GOUPLEVEL_TOOLTIP, getEclipseImageDescriptor("elcl16/up_nav.gif")); //$NON-NLS-1$
setDisabledImageDescriptor(getEclipseImageDescriptor("dlcl16/up_nav.gif")); //$NON-NLS-1$ setDisabledImageDescriptor(getEclipseImageDescriptor("dlcl16/up_nav.gif")); //$NON-NLS-1$
} }