1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

Bug 340525 - Duplicate string ID found: BuildVarListDialog_0, BuildVarListDialog_1

This commit is contained in:
Vivian Kong 2011-03-21 14:56:47 +00:00
parent 16ef2697a6
commit 3879610c4d
3 changed files with 10 additions and 7 deletions

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2010 Andrew Gvozdev and others.
* Copyright (c) 2010, 2011 Andrew Gvozdev and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -7,6 +7,7 @@
*
* Contributors:
* Andrew Gvozdev - Initial API and implementation
* IBM Corporation
*******************************************************************************/
package org.eclipse.cdt.internal.ui.newui;
@ -75,6 +76,8 @@ public class Messages extends NLS {
public static String BuildVarListDialog_6;
public static String BuildVarListDialog_7;
public static String BuildVarListDialog_8;
public static String BuildVarListDialog_10;
public static String BuildVarListDialog_11;
public static String CCProjectWizard_0;
public static String CDTCommonProjectWizard_0;
public static String CDTCommonProjectWizard_1;

View file

@ -1,5 +1,5 @@
###############################################################################
# Copyright (c) 2000, 2010 IBM Corporation, QNX Software Systems, and others.
# Copyright (c) 2000, 2011 IBM Corporation, QNX Software Systems, and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@ -263,8 +263,8 @@ BuildVarListDialog_5=List of Directory paths
BuildVarListDialog_6=Any path
BuildVarListDialog_7=List of any paths
BuildVarListDialog_8=Text
BuildVarListDialog_0=<not available>
BuildVarListDialog_1=Build variables
BuildVarListDialog_10=<not available>
BuildVarListDialog_11=Build variables
StringVariableSelectionDialog_message=&Choose a variable (? = any character, * = any string):
StringVariableSelectionDialog_columnDescription=&Variable Description:
CDTMainWizardPage_0=Project name cannot contain '\#' symbol

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2007, 2009 Intel Corporation and others.
* Copyright (c) 2007, 2011 Intel Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -40,7 +40,7 @@ public class BuildVarListDialog extends ElementListSelectionDialog {
private Text text;
private Label type;
private static final String LIST_DESCRIPTION = Messages.BuildVarListDialog_1;
private static final String LIST_DESCRIPTION = Messages.BuildVarListDialog_11;
public BuildVarListDialog(Shell parent, Object[] input) {
super(parent, new LabelProvider () {
@ -109,7 +109,7 @@ public class BuildVarListDialog extends ElementListSelectionDialog {
}
}
if (descr == null)
descr = Messages.BuildVarListDialog_0;
descr = Messages.BuildVarListDialog_10;
text.setText(descr);
}