mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Patch from Sunil Davasam with fixes to the UI tips dispplayed in the C/C++ Build Property page and "Manage Configurations" dialog
This commit is contained in:
parent
4ec475f113
commit
96cb849c2e
2 changed files with 5 additions and 4 deletions
|
@ -60,7 +60,7 @@ BuildPropertyPage.label.AddConfButton=Manage...
|
||||||
BuildPropertyPage.selection.configuration.all=All configurations
|
BuildPropertyPage.selection.configuration.all=All configurations
|
||||||
BuildPropertyPage.tip.platform=Select a platform for the project
|
BuildPropertyPage.tip.platform=Select a platform for the project
|
||||||
BuildPropertyPage.tip.config=Select the configuration to edit
|
BuildPropertyPage.tip.config=Select the configuration to edit
|
||||||
BuildPropertyPage.tip.addconf=Add configurations for the platform
|
BuildPropertyPage.tip.manageconf=Manage configurations of the project
|
||||||
BuildPropertyPage.tip.remconf=Remove configurations for the platform
|
BuildPropertyPage.tip.remconf=Remove configurations for the platform
|
||||||
BuildPropertyPage.manage.title=Manage
|
BuildPropertyPage.manage.title=Manage
|
||||||
BuildPropertyPage.error.Unknown_tree_element=Unknown type of element in tree of type {0}
|
BuildPropertyPage.error.Unknown_tree_element=Unknown type of element in tree of type {0}
|
||||||
|
@ -296,6 +296,8 @@ ManageConfig.label.new.config.dialog=Create configuration
|
||||||
ManageConfig.label.rename.config.dialog=Rename configuration
|
ManageConfig.label.rename.config.dialog=Rename configuration
|
||||||
ManageConfig.deletedialog.message=Are you sure you want to delete the "{0}" configuration?
|
ManageConfig.deletedialog.message=Are you sure you want to delete the "{0}" configuration?
|
||||||
ManageConfig.deletedialog.title=Confirm Delete
|
ManageConfig.deletedialog.title=Confirm Delete
|
||||||
|
ManageConfig.tip.convert=Converts the selected configuration to use a tool chain selected in the conversion target list
|
||||||
|
ManageConfig.tip.conversionTarget=A list of conversion targets available for the selected configuration
|
||||||
|
|
||||||
# Toolchain Conversion Target confirmation Dialog
|
# Toolchain Conversion Target confirmation Dialog
|
||||||
ConfigurationConvert.confirmdialog.message=Currently the "{0}" Configuration uses "{1}" tool-chain. After conversion it will use "{2}" tool-chain. Do you want to proceed?
|
ConfigurationConvert.confirmdialog.message=Currently the "{0}" Configuration uses "{1}" tool-chain. After conversion it will use "{2}" tool-chain. Do you want to proceed?
|
||||||
|
|
|
@ -74,9 +74,8 @@ public class BuildPropertyPage extends AbstractBuildPropertyPage implements IWor
|
||||||
private static final String TIP = PREFIX + ".tip"; //$NON-NLS-1$
|
private static final String TIP = PREFIX + ".tip"; //$NON-NLS-1$
|
||||||
private static final String PLAT_TIP = TIP + ".platform"; //$NON-NLS-1$
|
private static final String PLAT_TIP = TIP + ".platform"; //$NON-NLS-1$
|
||||||
private static final String CONF_TIP = TIP + ".config"; //$NON-NLS-1$
|
private static final String CONF_TIP = TIP + ".config"; //$NON-NLS-1$
|
||||||
private static final String ADD_TIP = TIP + ".addconf"; //$NON-NLS-1$
|
private static final String MANAGE_TIP = TIP + ".manageconf"; //$NON-NLS-1$
|
||||||
private static final String MANAGE_TITLE = PREFIX + ".manage.title"; //$NON-NLS-1$
|
private static final String MANAGE_TITLE = PREFIX + ".manage.title"; //$NON-NLS-1$
|
||||||
private static final String ID_SEPARATOR = "."; //$NON-NLS-1$
|
|
||||||
private static final String MSG_CLOSEDPROJECT = "MngMakeProjectPropertyPage.closedproject"; //$NON-NLS-1$
|
private static final String MSG_CLOSEDPROJECT = "MngMakeProjectPropertyPage.closedproject"; //$NON-NLS-1$
|
||||||
|
|
||||||
private static final String MSG_UNSUPPORTED_PROJ = PREFIX + ".unsupported.proj"; //$NON-NLS-1$
|
private static final String MSG_UNSUPPORTED_PROJ = PREFIX + ".unsupported.proj"; //$NON-NLS-1$
|
||||||
|
@ -185,7 +184,7 @@ public class BuildPropertyPage extends AbstractBuildPropertyPage implements IWor
|
||||||
});
|
});
|
||||||
configSelector.setToolTipText(ManagedBuilderUIMessages.getResourceString(CONF_TIP));
|
configSelector.setToolTipText(ManagedBuilderUIMessages.getResourceString(CONF_TIP));
|
||||||
manageConfigs = ControlFactory.createPushButton(configGroup, ManagedBuilderUIMessages.getResourceString(ADD_CONF));
|
manageConfigs = ControlFactory.createPushButton(configGroup, ManagedBuilderUIMessages.getResourceString(ADD_CONF));
|
||||||
manageConfigs.setToolTipText(ManagedBuilderUIMessages.getResourceString(ADD_TIP));
|
manageConfigs.setToolTipText(ManagedBuilderUIMessages.getResourceString(MANAGE_TIP));
|
||||||
manageConfigs.addSelectionListener(new SelectionAdapter() {
|
manageConfigs.addSelectionListener(new SelectionAdapter() {
|
||||||
public void widgetSelected(SelectionEvent e) {
|
public void widgetSelected(SelectionEvent e) {
|
||||||
handleManageConfig();
|
handleManageConfig();
|
||||||
|
|
Loading…
Add table
Reference in a new issue