mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Bug 319322: Spelling corrected and duplicate messages removed
This commit is contained in:
parent
aa7a3e8243
commit
f1627c3e15
2 changed files with 4 additions and 7 deletions
|
@ -10,8 +10,5 @@
|
|||
###############################################################################
|
||||
FolderInfoModification.0=Toolchain is incompatible with the current configuration
|
||||
ConfigurationModification.0=Builder is incompatible with the current configuration
|
||||
ToolListModification.ToolIsIncompatible=Tool is incompatible with the current configuration
|
||||
RulesManager.1=Tool-chain modification rules initialization
|
||||
|
||||
ToolListModification.0=Tool is incompatible with the current configuration
|
||||
ToolListModification.2=Tool is incompatible with the current cnfiguration
|
||||
ToolListModification.4=Tool is incompatible with the current cnfiguration
|
||||
|
|
|
@ -94,7 +94,7 @@ public abstract class ToolListModification implements
|
|||
|
||||
public CompatibilityStatus getCompatibilityStatus() {
|
||||
return fIsProject ? CompatibilityStatus.OK_COMPATIBILITY_STATUS
|
||||
: new CompatibilityStatus(IStatus.ERROR, Messages.getString("ToolListModification.0"), null); //$NON-NLS-1$
|
||||
: new CompatibilityStatus(IStatus.ERROR, Messages.getString("ToolListModification.ToolIsIncompatible"), null); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
public IModificationOperation[] getSupportedOperations() {
|
||||
|
@ -300,7 +300,7 @@ public abstract class ToolListModification implements
|
|||
String message;
|
||||
if(!isCompatible()){
|
||||
severity = IStatus.ERROR;
|
||||
message = Messages.getString("ToolListModification.2"); //$NON-NLS-1$
|
||||
message = Messages.getString("ToolListModification.ToolIsIncompatible"); //$NON-NLS-1$
|
||||
} else {
|
||||
severity = IStatus.OK;
|
||||
message = ""; //$NON-NLS-1$
|
||||
|
@ -463,7 +463,7 @@ public abstract class ToolListModification implements
|
|||
ConflictSet conflicts;
|
||||
if(!isCompatible()){
|
||||
severity = IStatus.ERROR;
|
||||
message = Messages.getString("ToolListModification.4");; //$NON-NLS-1$
|
||||
message = Messages.getString("ToolListModification.ToolIsIncompatible"); //$NON-NLS-1$
|
||||
conflicts = new ConflictSet(fRealTool, fErrComflictMatchList, fStatusInfo.getConflictingTools());
|
||||
} else {
|
||||
severity = IStatus.OK;
|
||||
|
|
Loading…
Add table
Reference in a new issue