1 /*
2  * The Initial Developer of the Original Code is International
3  * Business Machines Corporation. Portions created by IBM
4  * Corporation are Copyright (C) 2005 International Business
5  * Machines Corporation. All Rights Reserved.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the Common Public License as published by
9  * IBM Corporation; either version 1 of the License, or (at your option)
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * Common Public License for more details.
16  *
17  * You should have received a copy of the Common Public License
18  * along with this program; if not, a copy can be viewed at
19  * http://www.opensource.org/licenses/cpl1.0.php.
20  */
21 
22 #ifndef __DATA_INIT_H
23 #define __DATA_INIT_H
24 
25 #define TOKEN_CLEAR_PROMPT	_("Warning: The TPM token has already been initialized. " \
26 				"Reinitializing the TPM token will cause " \
27 				"all TPM token data to be lost.\n" \
28 				"Clear the TPM token data? [y/N]: ")
29 #define TOKEN_CLEAR_YES		_("y")
30 #define TOKEN_CLEAR_NO		_("n")
31 
32 #endif
33