blob: 1567ffe8559abb3940fba9301a72aa407ebf91f8 [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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.security.win32.nls;
import org.eclipse.osgi.util.NLS;
public class WinCryptoMessages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.security.win32.nls.messages"; //$NON-NLS-1$
// Windows module
public static String encryptPasswordFailed;
public static String decryptPasswordFailed;
public static String newPasswordGenerated;
static {
// load message values from bundle file
reloadMessages();
}
public static void reloadMessages() {
NLS.initializeMessages(BUNDLE_NAME, WinCryptoMessages.class);
}
}