]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/Python/BPDG/StringTable.py
BaseTools: Clean up source files
[mirror_edk2.git] / BaseTools / Source / Python / BPDG / StringTable.py
CommitLineData
111be80f 1## @file\r
2# This file is used to define strings used in the BPDG tool\r
3#\r
f7496d71 4# Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>\r
111be80f 5# This program and the accompanying materials\r
6# are licensed and made available under the terms and conditions of the BSD License\r
7# which accompanies this distribution. The full text of the license may be found at\r
8# http://opensource.org/licenses/bsd-license.php\r
9#\r
10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12##\r
13\r
14\r
15#string table starts here...\r
16\r
17#strings are classified as following types\r
18# MSG_...: it is a message string\r
19# ERR_...: it is a error string\r
20# WRN_...: it is a warning string\r
21# LBL_...: it is a UI label (window title, control label, etc.)\r
22# MNU_...: it is a menu item label\r
23# HLP_...: it is a help string\r
24# CFG_...: it is a config string used in module. Do not need to translate it.\r
25# XRC_...: it is a user visible string from xrc file\r
26\r
27MAP_FILE_COMMENT_TEMPLATE = \\r
28"""\r
29## @file\r
30#\r
31# THIS IS AUTO-GENERATED FILE BY BPDG TOOLS AND PLEASE DO NOT MAKE MODIFICATION.\r
32#\r
33# This file lists all VPD informations for a platform fixed/adjusted by BPDG tool.\r
f7496d71
LG
34#\r
35# Copyright (c) 2010 -2018, Intel Corporation. All rights reserved.<BR>\r
111be80f 36# This program and the accompanying materials\r
37# are licensed and made available under the terms and conditions of the BSD License\r
38# which accompanies this distribution. The full text of the license may be found at\r
39# http://opensource.org/licenses/bsd-license.php\r
40#\r
41# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
42# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
43#\r
44"""\r
45\r
46\r
47\r
48LBL_BPDG_LONG_UNI = (u"Intel(r) Binary Product Data Generation Tool (Intel(r) BPDG)")\r
45258285 49LBL_BPDG_VERSION = (u"1.0")\r
111be80f 50LBL_BPDG_USAGE = \\r
51(\r
45258285 52"""BPDG options -o Filename.bin -m Filename.map Filename.txt\r
f7496d71 53Copyright (c) 2010 - 2018, Intel Corporation All Rights Reserved.\r
111be80f 54\r
45258285 55 Intel(r) Binary Product Data Generation Tool (Intel(r) BPDG)\r
f7496d71 56\r
111be80f 57Required Flags:\r
08dd311f 58 -o BIN_FILENAME, --vpd-filename=BIN_FILENAME\r
111be80f 59 Specify the file name for the VPD binary file\r
60 -m FILENAME, --map-filename=FILENAME\r
f7496d71
LG
61 Generate file name for consumption during the build that contains\r
62 the mapping of Pcd name, offset, datum size and value derived\r
111be80f 63 from the input file and any automatic calculations.\r
f7496d71 64"""\r
111be80f 65)\r
66\r
67MSG_OPTION_HELP = ("Show this help message and exit.")\r
68MSG_OPTION_DEBUG_LEVEL = ("Print DEBUG statements, where DEBUG_LEVEL is 0-9.")\r
69MSG_OPTION_VERBOSE = ("Print informational statements.")\r
111be80f 70MSG_OPTION_QUIET = ("Returns the exit code and will display only error messages.")\r
71MSG_OPTION_VPD_FILENAME = ("Specify the file name for the VPD binary file.")\r
72MSG_OPTION_MAP_FILENAME = ("Generate file name for consumption during the build that contains the mapping of Pcd name, offset, datum size and value derived from the input file and any automatic calculations.")\r
08dd311f 73MSG_OPTION_FORCE = ("Will force overwriting existing output files rather than returning an error message.")\r
111be80f 74\r
75ERR_INVALID_DEBUG_LEVEL = ("Invalid level for debug message. Only "\r
76 "'DEBUG', 'INFO', 'WARNING', 'ERROR', "\r
77 "'CRITICAL' are supported for debugging "\r
78 "messages.")\r