1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Fix for 187267, "Select indexer" in English on pref page.

This commit is contained in:
Markus Schorn 2007-05-16 15:52:03 +00:00
parent ffdb59ab2e
commit b6e3d64778

View file

@ -66,9 +66,9 @@ public class IndexerBlock extends AbstractCOptionPage {
private static final String PREF_PAGE_ID = "org.eclipse.cdt.ui.preferences.IndexerPreferencePage"; //$NON-NLS-1$
private static final String INDEXER_LABEL = "C/C++ Indexer"; //$NON-NLS-1$
private static final String INDEXER_DESCRIPTION = "C/C++ Indexer setting for this project."; //$NON-NLS-1$
private static final String INDEXER_COMBO_LABEL = "Select indexer"; //$NON-NLS-1$
private static final String INDEXER_LABEL = CUIPlugin.getResourceString("BaseIndexerBlock.label" ); //$NON-NLS-1$
private static final String INDEXER_DESCRIPTION = CUIPlugin.getResourceString("BaseIndexerBlock.desc"); //$NON-NLS-1$
private static final String INDEXER_COMBO_LABEL = CUIPlugin.getResourceString("BaseIndexerBlock.comboLabel"); //$NON-NLS-1$
private PreferenceScopeBlock fPrefScopeBlock;
private Combo fIndexersComboBox;