|
@@ -15,11 +15,9 @@
|
|
|
static const char nconf_readme[] = N_(
|
|
|
"Overview\n"
|
|
|
"--------\n"
|
|
|
-"Some kernel features may be built directly into the kernel.\n"
|
|
|
-"Some may be made into loadable runtime modules. Some features\n"
|
|
|
-"may be completely removed altogether. There are also certain\n"
|
|
|
-"kernel parameters which are not really features, but must be\n"
|
|
|
-"entered in as decimal or hexadecimal numbers or possibly text.\n"
|
|
|
+"This interface let you select features and parameters for the build.\n"
|
|
|
+"Features can either be built-in, modularized, or ignored. Parameters\n"
|
|
|
+"must be entered in as decimal or hexadecimal numbers or text.\n"
|
|
|
"\n"
|
|
|
"Menu items beginning with following braces represent features that\n"
|
|
|
" [ ] can be built in or removed\n"
|
|
@@ -95,7 +93,7 @@ static const char nconf_readme[] = N_(
|
|
|
"-----------------------------\n"
|
|
|
"nconfig supports the use of alternate configuration files for\n"
|
|
|
"those who, for various reasons, find it necessary to switch\n"
|
|
|
-"between different kernel configurations.\n"
|
|
|
+"between different configurations.\n"
|
|
|
"\n"
|
|
|
"At the end of the main menu you will find two options. One is\n"
|
|
|
"for saving the current configuration to a file of your choosing.\n"
|
|
@@ -128,9 +126,9 @@ static const char nconf_readme[] = N_(
|
|
|
"\n"
|
|
|
"Optional personality available\n"
|
|
|
"------------------------------\n"
|
|
|
-"If you prefer to have all of the kernel options listed in a single\n"
|
|
|
-"menu, rather than the default multimenu hierarchy, run the nconfig\n"
|
|
|
-"with NCONFIG_MODE environment variable set to single_menu. Example:\n"
|
|
|
+"If you prefer to have all of the options listed in a single menu, rather\n"
|
|
|
+"than the default multimenu hierarchy, run the nconfig with NCONFIG_MODE\n"
|
|
|
+"environment variable set to single_menu. Example:\n"
|
|
|
"\n"
|
|
|
"make NCONFIG_MODE=single_menu nconfig\n"
|
|
|
"\n"
|
|
@@ -185,19 +183,19 @@ setmod_text[] = N_(
|
|
|
"has been configured as a module.\n"
|
|
|
"As a result, this feature will be built as a module."),
|
|
|
nohelp_text[] = N_(
|
|
|
-"There is no help available for this kernel option.\n"),
|
|
|
+"There is no help available for this option.\n"),
|
|
|
load_config_text[] = N_(
|
|
|
"Enter the name of the configuration file you wish to load.\n"
|
|
|
"Accept the name shown to restore the configuration you\n"
|
|
|
"last retrieved. Leave blank to abort."),
|
|
|
load_config_help[] = N_(
|
|
|
"\n"
|
|
|
-"For various reasons, one may wish to keep several different kernel\n"
|
|
|
+"For various reasons, one may wish to keep several different\n"
|
|
|
"configurations available on a single machine.\n"
|
|
|
"\n"
|
|
|
"If you have saved a previous configuration in a file other than the\n"
|
|
|
-"kernel's default, entering the name of the file here will allow you\n"
|
|
|
-"to modify that configuration.\n"
|
|
|
+"default one, entering its name here will allow you to modify that\n"
|
|
|
+"configuration.\n"
|
|
|
"\n"
|
|
|
"If you are uncertain, then you have probably never used alternate\n"
|
|
|
"configuration files. You should therefor leave this blank to abort.\n"),
|
|
@@ -206,8 +204,8 @@ save_config_text[] = N_(
|
|
|
"as an alternate. Leave blank to abort."),
|
|
|
save_config_help[] = N_(
|
|
|
"\n"
|
|
|
-"For various reasons, one may wish to keep different kernel\n"
|
|
|
-"configurations available on a single machine.\n"
|
|
|
+"For various reasons, one may wish to keep different configurations\n"
|
|
|
+"available on a single machine.\n"
|
|
|
"\n"
|
|
|
"Entering a file name here will allow you to later retrieve, modify\n"
|
|
|
"and use the current configuration as an alternate to whatever\n"
|
|
@@ -681,8 +679,7 @@ static int do_exit(void)
|
|
|
return 0;
|
|
|
}
|
|
|
res = btn_dialog(main_window,
|
|
|
- _("Do you wish to save your "
|
|
|
- "new kernel configuration?\n"
|
|
|
+ _("Do you wish to save your new configuration?\n"
|
|
|
"<ESC> to cancel and resume nconfig."),
|
|
|
2,
|
|
|
" <save> ",
|
|
@@ -701,18 +698,16 @@ static int do_exit(void)
|
|
|
if (res)
|
|
|
btn_dialog(
|
|
|
main_window,
|
|
|
- _("Error during writing of the kernel "
|
|
|
- "configuration.\n"
|
|
|
- "Your kernel configuration "
|
|
|
- "changes were NOT saved."),
|
|
|
+ _("Error during writing of configuration.\n"
|
|
|
+ "Your configuration changes were NOT saved."),
|
|
|
1,
|
|
|
"<OK>");
|
|
|
else {
|
|
|
char buf[1024];
|
|
|
snprintf(buf, 1024,
|
|
|
_("Configuration written to %s\n"
|
|
|
- "End of Linux kernel configuration.\n"
|
|
|
- "Execute 'make' to build the kernel or try"
|
|
|
+ "End of the configuration.\n"
|
|
|
+ "Execute 'make' to start the build or try"
|
|
|
" 'make help'."), filename);
|
|
|
btn_dialog(
|
|
|
main_window,
|
|
@@ -724,7 +719,7 @@ static int do_exit(void)
|
|
|
default:
|
|
|
btn_dialog(
|
|
|
main_window,
|
|
|
- _("Your kernel configuration changes were NOT saved."),
|
|
|
+ _("Your configuration changes were NOT saved."),
|
|
|
1,
|
|
|
"<OK>");
|
|
|
break;
|