1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 00:35:49 +02:00

Fix for bug 70147. TVT3.0: Preferences CDT Editor has non-externalized string.

This commit is contained in:
Mikhail Khodjaiants 2004-07-15 23:04:07 +00:00
parent 658a98966c
commit 04f9e243c8
3 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-07-15 Mikhail Khodjaiants
Fix for bug 70147. TVT3.0: Preferences CDT Editor has non-externalized string.
* plugin.properties
* plugin.xml
2004-07-15 Tanya Wolff 2004-07-15 Tanya Wolff
Fix for bug 69939. I18N: Memory view contains unexternalized strings. Fix for bug 69939. I18N: Memory view contains unexternalized strings.
Externalized Memory View Refresh menu item. Externalized Memory View Refresh menu item.

View file

@ -113,3 +113,6 @@ RefreshAction.label=Refresh
RefreshAction.tooltip=Refresh View's Content RefreshAction.tooltip=Refresh View's Content
AutoRefreshAction.label=Auto-Refresh AutoRefreshAction.label=Auto-Refresh
AutoRefreshAction.tooltip=Automatically Refresh View's Content AutoRefreshAction.tooltip=Automatically Refresh View's Content
DebugTextHover.label=Debugger
DebugTextHover.description=Shows the value of the expression selected in the debug perspective.

View file

@ -1046,7 +1046,8 @@
<extension <extension
point="org.eclipse.cdt.ui.textHovers"> point="org.eclipse.cdt.ui.textHovers">
<hover <hover
name="%DebugTextHover" label="%DebugTextHover.label"
description="%DebugTextHover.description"
perspective="org.eclipse.debug.ui.DebugPerspective" perspective="org.eclipse.debug.ui.DebugPerspective"
class="org.eclipse.cdt.debug.internal.ui.editors.DebugTextHover" class="org.eclipse.cdt.debug.internal.ui.editors.DebugTextHover"
id="org.eclipse.cdt.debug.internal.ui.editors.DebugTextHover"> id="org.eclipse.cdt.debug.internal.ui.editors.DebugTextHover">