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:
parent
1fdc9f49a0
commit
64914990f7
2 changed files with 2 additions and 5 deletions
|
@ -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() {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue