mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
reverted some string externalizing which should never have been done.
This commit is contained in:
parent
e4fe32a7bc
commit
0e68bf890b
2 changed files with 4 additions and 8 deletions
|
@ -12,10 +12,6 @@ cdi.Session.Unknown_target=Unkown target
|
|||
cdi.VariableManager.Unknown_type=Unknown type
|
||||
cdi.VariableManager.Wrong_variable_type=Wrong variable type
|
||||
cdi.VariableManager.Unknown_variable_ogject=Unknown variable object
|
||||
cdi.SignalManager.ignore=aaignore
|
||||
cdi.SignalManager.noignore=noignoreqq
|
||||
cdi.SignalManager.stop=aastop
|
||||
cdi.SignalManager.nostop=nostopqq
|
||||
cdi.model.VariableObject.Target_not_responding=Target is not responding
|
||||
cdi.model.Target.Unknown_thread=Unknown thread
|
||||
cdi.model.Target.Target_not_responding=Target is not responding
|
||||
|
|
|
@ -127,15 +127,15 @@ public class SignalManager extends Manager implements ICDISignalManager {
|
|||
StringBuffer buffer = new StringBuffer(sig.getName());
|
||||
buffer.append(" "); //$NON-NLS-1$
|
||||
if (isIgnore) {
|
||||
buffer.append(CdiResources.getString("cdi.SignalManager.ignore")); //$NON-NLS-1$
|
||||
buffer.append("ignore"); //$NON-NLS-1$
|
||||
} else {
|
||||
buffer.append(CdiResources.getString("cdi.SignalManager.noignore")); //$NON-NLS-1$
|
||||
buffer.append("noignore"); //$NON-NLS-1$
|
||||
}
|
||||
buffer.append(" "); //$NON-NLS-1$
|
||||
if (isStop) {
|
||||
buffer.append(CdiResources.getString("cdi.SignalManager.stop")); //$NON-NLS-1$
|
||||
buffer.append("stop"); //$NON-NLS-1$
|
||||
} else {
|
||||
buffer.append(CdiResources.getString("cdi.SignalManager.nostop")); //$NON-NLS-1$
|
||||
buffer.append("nostop"); //$NON-NLS-1$
|
||||
}
|
||||
MIHandle handle = factory.createMIHandle(buffer.toString());
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue