blob: 52df6f2505899cb711be929935aa81b3a23674f6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Ericsson
*
* 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:
* Jacques Bouthillier - Initial implementation
* Marc-Andre Laperle - Add Topic to dashboard
******************************************************************************/
package org.eclipse.mylyn.gerrit.dashboard;
import org.eclipse.osgi.util.NLS;
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.mylyn.gerrit.dashboard.messages"; //$NON-NLS-1$
public static String GerritPlugin_started;
public static String GerritPlugin_stopped;
public static String GerritPlugin_Version;
public static String GerritTask_branch;
public static String GerritTask_topic;
public static String GerritTask_changeID;
public static String GerritTask_owner;
public static String GerritTask_project;
public static String GerritTask_shortID;
public static String GerritTask_star;
public static String GerritTask_subject;
public static String GerritTask_status;
public static String GerritTask_taskID;
public static String GerritTask_updated;
public static String Tracer_consoleLog;
public static String Tracer_debug;
public static String Tracer_error;
public static String Tracer_info;
public static String Tracer_logFile;
public static String Tracer_warning;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}