blob: 06e6e622a6283418770e40533aac8ef63e181433 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation 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:
* Julien HENRY - Linux implementation
*******************************************************************************/
package org.eclipse.equinox.internal.security.linux.nls;
import org.eclipse.osgi.util.NLS;
public class LinuxPasswordProviderMessages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.security.linux.nls.messages"; //$NON-NLS-1$
public static String getMasterPasswordError;
public static String saveMasterPasswordError;
public static String newMasterPasswordGenerated;
static {
// load message values from bundle file
reloadMessages();
}
public static void reloadMessages() {
NLS.initializeMessages(BUNDLE_NAME, LinuxPasswordProviderMessages.class);
}
}