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
|
FolderInfoModification.0=Toolchain is incompatible with the current configuration
|
||||||
ConfigurationModification.0=Builder 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
|
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() {
|
public CompatibilityStatus getCompatibilityStatus() {
|
||||||
return fIsProject ? CompatibilityStatus.OK_COMPATIBILITY_STATUS
|
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() {
|
public IModificationOperation[] getSupportedOperations() {
|
||||||
|
@ -300,7 +300,7 @@ public abstract class ToolListModification implements
|
||||||
String message;
|
String message;
|
||||||
if(!isCompatible()){
|
if(!isCompatible()){
|
||||||
severity = IStatus.ERROR;
|
severity = IStatus.ERROR;
|
||||||
message = Messages.getString("ToolListModification.2"); //$NON-NLS-1$
|
message = Messages.getString("ToolListModification.ToolIsIncompatible"); //$NON-NLS-1$
|
||||||
} else {
|
} else {
|
||||||
severity = IStatus.OK;
|
severity = IStatus.OK;
|
||||||
message = ""; //$NON-NLS-1$
|
message = ""; //$NON-NLS-1$
|
||||||
|
@ -463,7 +463,7 @@ public abstract class ToolListModification implements
|
||||||
ConflictSet conflicts;
|
ConflictSet conflicts;
|
||||||
if(!isCompatible()){
|
if(!isCompatible()){
|
||||||
severity = IStatus.ERROR;
|
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());
|
conflicts = new ConflictSet(fRealTool, fErrComflictMatchList, fStatusInfo.getConflictingTools());
|
||||||
} else {
|
} else {
|
||||||
severity = IStatus.OK;
|
severity = IStatus.OK;
|
||||||
|
|
Loading…
Add table
Reference in a new issue