Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/RepositoryViewUITexts.java')
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/RepositoryViewUITexts.java40
1 files changed, 38 insertions, 2 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/RepositoryViewUITexts.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/RepositoryViewUITexts.java
index 0322cc7012..fb8a9e2dd9 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/RepositoryViewUITexts.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/RepositoryViewUITexts.java
@@ -1,6 +1,17 @@
+/*******************************************************************************
+ * Copyright (c) 2010 SAP AG.
+ * 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Mathias Kinzler (SAP AG) - initial implementation
+ *******************************************************************************/
package org.eclipse.egit.ui.internal.repository;
import org.eclipse.osgi.util.NLS;
+
/**
* UI Texts for the Repositories View
*
@@ -33,6 +44,18 @@ public class RepositoryViewUITexts extends NLS {
public static String RepositoriesView_Clone_Tooltip;
/** */
+ public static String RepositoriesView_ConfigureFetchMenu;
+
+ /** */
+ public static String RepositoriesView_ConfigurePushMenu;
+
+ /** */
+ public static String RepositoriesView_ConfirmDeleteRemoteHeader;
+
+ /** */
+ public static String RepositoriesView_ConfirmDeleteRemoteMessage;
+
+ /** */
public static String RepositoriesView_ConfirmProjectDeletion_Question;
/** */
@@ -42,6 +65,9 @@ public class RepositoryViewUITexts extends NLS {
public static String RepositoriesView_Error_WindowTitle;
/** */
+ public static String RepositoriesView_ErrorHeader;
+
+ /** */
public static String RepositoriesView_ExistingProjects_Nodetext;
/** */
@@ -57,16 +83,26 @@ public class RepositoryViewUITexts extends NLS {
public static String RepositoriesView_ImportRepository_MenuItem;
/** */
+ public static String RepositoriesView_NewRemoteMenu;
+
+ /** */
+ public static String RepositoriesView_OpenPropertiesMenu;
+
+ /** */
public static String RepositoriesView_Refresh_Button;
/** */
+ public static String RepositoriesView_RemotesNodeText;
+
+ /** */
public static String RepositoriesView_Remove_MenuItem;
+ /** */
+ public static String RepositoriesView_RemoveRemoteMenu;
+
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, RepositoryViewUITexts.class);
}
- private RepositoryViewUITexts() {
- }
}

Back to the top