comparison kconfig/mconf.c @ 108:261736dafd2e

Change help text: not just used for the kernel.
author Rob Landley <rob@landley.net>
date Mon, 12 Mar 2007 21:10:06 -0400
parents 4d21d59f3206
children 6a7d64f51b1b
comparison
equal deleted inserted replaced
107:7a82432fa970 108:261736dafd2e
28 28
29 static char menu_backtitle[128]; 29 static char menu_backtitle[128];
30 static const char mconf_readme[] = N_( 30 static const char mconf_readme[] = N_(
31 "Overview\n" 31 "Overview\n"
32 "--------\n" 32 "--------\n"
33 "Some kernel features may be built directly into the kernel.\n" 33 "Some features may be built directly into the project.\n"
34 "Some may be made into loadable runtime modules. Some features\n" 34 "Some may be made into loadable runtime modules. Some features\n"
35 "may be completely removed altogether. There are also certain\n" 35 "may be completely removed altogether. There are also certain\n"
36 "kernel parameters which are not really features, but must be\n" 36 "parameters which are not really features, but must be\n"
37 "entered in as decimal or hexadecimal numbers or possibly text.\n" 37 "entered in as decimal or hexadecimal numbers or possibly text.\n"
38 "\n" 38 "\n"
39 "Menu items beginning with [*], <M> or [ ] represent features\n" 39 "Menu items beginning with [*], <M> or [ ] represent features\n"
40 "configured to be built in, modularized or removed respectively.\n" 40 "configured to be built in, modularized or removed respectively.\n"
41 "Pointed brackets <> represent module capable features.\n" 41 "Pointed brackets <> represent module capable features.\n"
114 "\n" 114 "\n"
115 "Alternate Configuration Files\n" 115 "Alternate Configuration Files\n"
116 "-----------------------------\n" 116 "-----------------------------\n"
117 "Menuconfig supports the use of alternate configuration files for\n" 117 "Menuconfig supports the use of alternate configuration files for\n"
118 "those who, for various reasons, find it necessary to switch\n" 118 "those who, for various reasons, find it necessary to switch\n"
119 "between different kernel configurations.\n" 119 "between different configurations.\n"
120 "\n" 120 "\n"
121 "At the end of the main menu you will find two options. One is\n" 121 "At the end of the main menu you will find two options. One is\n"
122 "for saving the current configuration to a file of your choosing.\n" 122 "for saving the current configuration to a file of your choosing.\n"
123 "The other option is for loading a previously saved alternate\n" 123 "The other option is for loading a previously saved alternate\n"
124 "configuration.\n" 124 "configuration.\n"
147 "become confused when those variables (LINES & COLUMNS) don't reflect\n" 147 "become confused when those variables (LINES & COLUMNS) don't reflect\n"
148 "the true screen size.\n" 148 "the true screen size.\n"
149 "\n" 149 "\n"
150 "Optional personality available\n" 150 "Optional personality available\n"
151 "------------------------------\n" 151 "------------------------------\n"
152 "If you prefer to have all of the kernel options listed in a single\n" 152 "If you prefer to have all of the options listed in a single\n"
153 "menu, rather than the default multimenu hierarchy, run the menuconfig\n" 153 "menu, rather than the default multimenu hierarchy, run the menuconfig\n"
154 "with MENUCONFIG_MODE environment variable set to single_menu. Example:\n" 154 "with MENUCONFIG_MODE environment variable set to single_menu. Example:\n"
155 "\n" 155 "\n"
156 "make MENUCONFIG_MODE=single_menu menuconfig\n" 156 "make MENUCONFIG_MODE=single_menu menuconfig\n"
157 "\n" 157 "\n"
199 "Use the <TAB> key to move from the input field to the buttons below it."), 199 "Use the <TAB> key to move from the input field to the buttons below it."),
200 setmod_text[] = N_( 200 setmod_text[] = N_(
201 "This feature depends on another which has been configured as a module.\n" 201 "This feature depends on another which has been configured as a module.\n"
202 "As a result, this feature will be built as a module."), 202 "As a result, this feature will be built as a module."),
203 nohelp_text[] = N_( 203 nohelp_text[] = N_(
204 "There is no help available for this kernel option.\n"), 204 "There is no help available for this option.\n"),
205 load_config_text[] = N_( 205 load_config_text[] = N_(
206 "Enter the name of the configuration file you wish to load. " 206 "Enter the name of the configuration file you wish to load. "
207 "Accept the name shown to restore the configuration you " 207 "Accept the name shown to restore the configuration you "
208 "last retrieved. Leave blank to abort."), 208 "last retrieved. Leave blank to abort."),
209 load_config_help[] = N_( 209 load_config_help[] = N_(
210 "\n" 210 "\n"
211 "For various reasons, one may wish to keep several different kernel\n" 211 "For various reasons, one may wish to keep several different\n"
212 "configurations available on a single machine.\n" 212 "configurations available on a single machine.\n"
213 "\n" 213 "\n"
214 "If you have saved a previous configuration in a file other than the\n" 214 "If you have saved a previous configuration in a file other than the\n"
215 "kernel's default, entering the name of the file here will allow you\n" 215 "default, entering the name of the file here will allow you\n"
216 "to modify that configuration.\n" 216 "to modify that configuration.\n"
217 "\n" 217 "\n"
218 "If you are uncertain, then you have probably never used alternate\n" 218 "If you are uncertain, then you have probably never used alternate\n"
219 "configuration files. You should therefor leave this blank to abort.\n"), 219 "configuration files. You should therefor leave this blank to abort.\n"),
220 save_config_text[] = N_( 220 save_config_text[] = N_(
221 "Enter a filename to which this configuration should be saved " 221 "Enter a filename to which this configuration should be saved "
222 "as an alternate. Leave blank to abort."), 222 "as an alternate. Leave blank to abort."),
223 save_config_help[] = N_( 223 save_config_help[] = N_(
224 "\n" 224 "\n"
225 "For various reasons, one may wish to keep different kernel\n" 225 "For various reasons, one may wish to keep different\n"
226 "configurations available on a single machine.\n" 226 "configurations available on a single machine.\n"
227 "\n" 227 "\n"
228 "Entering a file name here will allow you to later retrieve, modify\n" 228 "Entering a file name here will allow you to later retrieve, modify\n"
229 "and use the current configuration as an alternate to whatever\n" 229 "and use the current configuration as an alternate to whatever\n"
230 "configuration options you have selected at that time.\n" 230 "configuration options you have selected at that time.\n"