Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-07-22 18:03:49 +0000
committerMichael Valenta2004-07-22 18:03:49 +0000
commit50bfeef6ed2f83ea06448025f27df29b5915b439 (patch)
treebbcfc28094d75a9ebc4b2f01e07161dcc5d43354
parent333de1a9d5969576dab22fb8ff2541c1f9e606b1 (diff)
downloadeclipse.platform.team-50bfeef6ed2f83ea06448025f27df29b5915b439.tar.gz
eclipse.platform.team-50bfeef6ed2f83ea06448025f27df29b5915b439.tar.xz
eclipse.platform.team-50bfeef6ed2f83ea06448025f27df29b5915b439.zip
Bug 70648 TVT3.0: Wrong string displayed in Ext Connect Method panelM20040722
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ExtMethodPreferencePage.java2
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties2
2 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ExtMethodPreferencePage.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ExtMethodPreferencePage.java
index 7d91e5d20..0bd731df2 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ExtMethodPreferencePage.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ExtMethodPreferencePage.java
@@ -97,7 +97,7 @@ public class ExtMethodPreferencePage extends PreferencePage implements IWorkbenc
composite.setLayoutData(new GridData());
Label intro = new Label(composite, SWT.LEFT | SWT.WRAP);
- intro.setText(Policy.bind("ExtMethodPreferencePage.0")); //$NON-NLS-1$
+ intro.setText(Policy.bind("ExtMethodPreferencePage.2")); //$NON-NLS-1$
GridData data = new GridData();
data.horizontalSpan = 2;
data.horizontalAlignment = GridData.FILL;
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties
index cd8cf8614..38bf48120 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties
@@ -745,7 +745,7 @@ ExtMethodPreferencePage_message=These variables define the external connection p
ExtMethodPreferencePage_CVS_RSH=CVS_&RSH:
ExtMethodPreferencePage_Browse=&Browse...
ExtMethodPreferencePage.0=Use an &external program to connect
-ExtMethodPreferencePage.0=Choosing to use another connection method allows the meta information in CVS projects to be compatible with external CVS tools while using a custom connection method.
+ExtMethodPreferencePage.2=Choosing to use another connection method allows the meta information in CVS projects to be compatible with external CVS tools while using a custom connection method.
ExtMethodPreferencePage.1=Use another &connection method type to connect
ExtMethodPreferencePage_Details=Select a program or script
ExtMethodPreferencePage_CVS_RSH_Parameters=&Parameters:

Back to the top