Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto Sanchez2012-11-29 19:54:21 +0000
committerIgor Fedorenko2012-12-16 18:06:13 +0000
commitd04b7946ee9b7da29654a1f12a73466e82b525e0 (patch)
tree4d2ee0c15395b1ca2144859dbf7f62178dd250f9 /org.eclipse.m2e.scm
parentbd1d499d0eaa3cd57e0cfddd1544d49f1eff76dd (diff)
downloadm2e-core-d04b7946ee9b7da29654a1f12a73466e82b525e0.tar.gz
m2e-core-d04b7946ee9b7da29654a1f12a73466e82b525e0.tar.xz
m2e-core-d04b7946ee9b7da29654a1f12a73466e82b525e0.zip
395396 Non externalized string in Checkout Maven Projects from SCM wizardmilestones/1.3/1.3.0.20121216-1819
- I wrote 100% of the code; - I have the right to contribute the code to Eclipse; - The file header contains the appropriate License header
Diffstat (limited to 'org.eclipse.m2e.scm')
-rw-r--r--org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/Messages.java4
-rw-r--r--org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/messages.properties1
-rw-r--r--org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/wizards/MavenCheckoutLocationPage.java4
3 files changed, 6 insertions, 3 deletions
diff --git a/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/Messages.java b/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/Messages.java
index d0ce0eca..797543d0 100644
--- a/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/Messages.java
+++ b/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/Messages.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008-2010 Sonatype, Inc.
+ * Copyright (c) 2008-2012 Sonatype, Inc.
* 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
@@ -85,6 +85,8 @@ public class Messages extends NLS {
public static String MavenCheckoutOperation_task_scanning;
public static String MavenCheckoutOperation_task_checking;
+
+ public static String MavenCheckoutLocationPage_linkMarketPlace;
static {
// initialize resource bundle
diff --git a/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/messages.properties b/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/messages.properties
index e93ae1f2..0a4ffd83 100644
--- a/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/messages.properties
+++ b/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/messages.properties
@@ -30,3 +30,4 @@ MavenMaterializePomWizard_location_title=Select project location
MavenMaterializePomWizard_title=Import Maven Projects
MavenCheckoutOperation_task_checking=Checking out {0} {1}
MavenCheckoutOperation_task_scanning=Scanning {0} {1}
+MavenCheckoutLocationPage_linkMarketPlace=Find more SCM connectors in the <a>m2e Marketplace</a>
diff --git a/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/wizards/MavenCheckoutLocationPage.java b/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/wizards/MavenCheckoutLocationPage.java
index 46504509..00803275 100644
--- a/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/wizards/MavenCheckoutLocationPage.java
+++ b/org.eclipse.m2e.scm/src/org/eclipse/m2e/scm/internal/wizards/MavenCheckoutLocationPage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008-2010 Sonatype, Inc.
+ * Copyright (c) 2008-2012 Sonatype, Inc.
* 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
@@ -266,7 +266,7 @@ public class MavenCheckoutLocationPage extends AbstractMavenWizardPage {
if(Platform.getBundle("org.eclipse.m2e.discovery") != null) {
m2eMarketplace = new Link(composite, SWT.NONE);
m2eMarketplace.setLayoutData(new GridData(SWT.END, SWT.END, true, true, 5, 1));
- m2eMarketplace.setText("Find more SCM connectors in the <a>m2e Marketplace</a>");
+ m2eMarketplace.setText(Messages.MavenCheckoutLocationPage_linkMarketPlace);
m2eMarketplace.addSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent e) {

Back to the top