mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Externalization fixes
This commit is contained in:
parent
592eaff970
commit
66c09b8cae
4 changed files with 4 additions and 2 deletions
|
@ -1719,7 +1719,7 @@ public class PathEntryTranslator {
|
||||||
private void applyOutputEntries(ICOutputEntry entries[], int op){
|
private void applyOutputEntries(ICOutputEntry entries[], int op){
|
||||||
CBuildData bData = fCfgData.getBuildData();
|
CBuildData bData = fCfgData.getBuildData();
|
||||||
if(bData == null){
|
if(bData == null){
|
||||||
CCorePlugin.log("PathEntryTranslator: failed to apply output entries: Build Data is null, ignoring..");
|
CCorePlugin.log(UtilMessages.getString("PathEntryTranslator.2")); //$NON-NLS-1$
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ KindBasedStore.0=illegal kind
|
||||||
KindBasedStore.1=illegal kind
|
KindBasedStore.1=illegal kind
|
||||||
PathEntryTranslator.0=illegal kind
|
PathEntryTranslator.0=illegal kind
|
||||||
PathEntryTranslator.1=illegal kind
|
PathEntryTranslator.1=illegal kind
|
||||||
|
PathEntryTranslator.2=PathEntryTranslator: failed to apply output entries: Build Data is null, ignoring..
|
||||||
CDataSerializer.20=no id attribute for configuration
|
CDataSerializer.20=no id attribute for configuration
|
||||||
CDataSerializer.21=failed to create configuration
|
CDataSerializer.21=failed to create configuration
|
||||||
CDataSerializer.22=no id attribute for folder data
|
CDataSerializer.22=no id attribute for folder data
|
||||||
|
|
|
@ -900,7 +900,7 @@ public class CProjectDescriptionManager implements ICProjectDescriptionManager {
|
||||||
if(project.exists() && project.isOpen()){
|
if(project.exists() && project.isOpen()){
|
||||||
fDescriptionMap.put(project, des);
|
fDescriptionMap.put(project, des);
|
||||||
} else {
|
} else {
|
||||||
CCorePlugin.log("attempt to set description for the non-openned project");
|
CCorePlugin.log(SettingsModelMessages.getString("CProjectDescriptionManager.16")); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
fDescriptionMap.remove(project);
|
fDescriptionMap.remove(project);
|
||||||
|
|
|
@ -34,6 +34,7 @@ CProjectDescriptionManager.12=Serialing CDT Project settings..
|
||||||
CProjectDescriptionManager.13=Refreshing the project settings
|
CProjectDescriptionManager.13=Refreshing the project settings
|
||||||
CProjectDescriptionManager.14=workspace info element does not exist
|
CProjectDescriptionManager.14=workspace info element does not exist
|
||||||
CProjectDescriptionManager.15=Preference Configuration
|
CProjectDescriptionManager.15=Preference Configuration
|
||||||
|
CProjectDescriptionManager.16=attempt to set description for the non-openned project
|
||||||
CFolderDescription.0=data was not created
|
CFolderDescription.0=data was not created
|
||||||
CFolderDescription.1=expected proxy of type ICLanguageSetting, but was
|
CFolderDescription.1=expected proxy of type ICLanguageSetting, but was
|
||||||
CFolderDescription.2=data was not created
|
CFolderDescription.2=data was not created
|
||||||
|
|
Loading…
Add table
Reference in a new issue