blob: 4134763d4b3c61827834bca440f3e1085b66e7a5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Tasktop Technologies 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.builds.ui.view;
import org.eclipse.osgi.util.NLS;
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.mylyn.internal.builds.ui.view.messages"; //$NON-NLS-1$
public static String BuildsView_Build;
public static String BuildsView_BuildStatusSummary;
public static String BuildsView_HideSucceedingPlans;
public static String BuildsView_LastBuilt;
public static String BuildsView_LastUpdate;
public static String BuildsView_LastUpdateFailed;
public static String BuildsView_NoServersAvailable;
public static String BuildsView_ShowTextFilter;
public static String BuildsView_Summary;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}