1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 187141, externalize strings.

This commit is contained in:
Ken Ryall 2007-05-16 22:53:08 +00:00
parent 1fdc9f49a0
commit 64914990f7
2 changed files with 2 additions and 5 deletions

View file

@ -106,11 +106,7 @@ public class SoundAction extends AbstractBreakpointAction {
}
public String getDefaultName() {
// if (soundFile != null) {
// return MessageFormat.format("Play {0}", new Object[]
// {soundFile.getName()});
// }
return "Untitled Sound Action"; //$NON-NLS-1$
return Messages.getString("SoundAction.UntitledName"); //$NON-NLS-1$
}
public File getSoundFile() {

View file

@ -25,6 +25,7 @@ SoundActionComposite.7=Play Sound
SoundActionComposite.9=That sound file does not exist.
SoundAction.error.0=Missing sound file "{0}"
SoundAction.ActionTypeName=Sound Action
SoundAction.UntitledName=Untitled Sound Action
LogActionComposite.0=Message to log when the breakpoint is hit:
LogActionComposite.1=Evaluate as expression
LogAction.ConsoleTitle=Log Action Messages