1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-10 18:45:26 +02:00

Fix for bug 69939. I18N: Memory view contains unexternalized strings.

Externalized Memory View Refresh menu item.
This commit is contained in:
Mikhail Khodjaiants 2004-07-15 17:24:11 +00:00
parent 972737f089
commit c1339e75e0
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2004-07-15 Tanya Wolff
Fix for bug 69939. I18N: Memory view contains unexternalized strings.
Externalized Memory View Refresh menu item.
* RefreshMemoryAction.java
* ActionMessages.properties
2004-07-09 Mikhail Khodjaiants
Fix for bug 69221: "Show full paths" doesn't work for shared libraries.
* SharedLibrariesView.java

View file

@ -135,3 +135,4 @@ ClearMemoryAction.1=Clears the current memory block
ClearMemoryAction.2=Clear
RefreshMemoryAction.0=Refreshs the current memory block.
RefreshMemoryAction.1=Refresh
RefreshMemoryAction.2=Refresh

View file

@ -28,11 +28,11 @@ public class RefreshMemoryAction extends SelectionProviderAction implements IUpd
* Constructor for RefreshMemoryAction.
*/
public RefreshMemoryAction( MemoryViewer viewer ) {
super( viewer, "Refresh" ); //$NON-NLS-1$
super( viewer, ActionMessages.getString("RefreshMemoryAction.1") ); //$NON-NLS-1$
fMemoryViewer = viewer;
CDebugImages.setLocalImageDescriptors( this, CDebugImages.IMG_LCL_REFRESH );
setDescription( ActionMessages.getString( "RefreshMemoryAction.0" ) ); //$NON-NLS-1$
setToolTipText( ActionMessages.getString( "RefreshMemoryAction.1" ) ); //$NON-NLS-1$
setToolTipText( ActionMessages.getString("RefreshMemoryAction.2") ); //$NON-NLS-1$
WorkbenchHelp.setHelp( this, ICDebugHelpContextIds.REFRESH_MEMORY_ACTION );
}