core/com.nokia.carbide.discovery.ui/src/com/nokia/carbide/discovery/ui/Messages.java
author dadubrow
Wed, 19 May 2010 15:35:14 -0500
changeset 1374 67b625db1866
child 1385 e626d1981906
permissions -rw-r--r--
fix bugs, externalize strings, change some labels, add status line

package com.nokia.carbide.discovery.ui;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "com.nokia.carbide.discovery.ui.messages"; //$NON-NLS-1$
	public static String DiscoveryView_CheckAllLabel;
	public static String DiscoveryView_InstallLabel;
	public static String DiscoveryView_MissingDirectoryURLError;
	public static String DiscoveryView_RefreshLabel;
	public static String DiscoveryView_StatusLineFmt;
	public static String DiscoveryView_UncheckAllLabel;
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}
}