OpenWrt

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 2  →  ?path2? @ 3
/branches/18.06.1/scripts/config/conf.c
@@ -75,9 +75,9 @@
static void check_stdin(void)
{
if (!valid_stdin) {
printf("%s",_("aborted!\n\n"));
printf("%s",_("Console input/output is redirected. "));
printf("%s",_("Run 'make oldconfig' to update configuration.\n\n"));
printf(_("aborted!\n\n"));
printf(_("Console input/output is redirected. "));
printf(_("Run 'make oldconfig' to update configuration.\n\n"));
exit(1);
}
}
@@ -87,7 +87,7 @@
enum symbol_type type = sym_get_type(sym);
 
if (!sym_has_value(sym))
printf("%s",_("(NEW) "));
printf(_("(NEW) "));
 
line[0] = '\n';
line[1] = 0;
@@ -288,7 +288,7 @@
if (child->sym->name)
printf(" (%s)", child->sym->name);
if (!sym_has_value(child->sym))
printf("%s",_(" (NEW)"));
printf(_(" (NEW)"));
printf("\n");
}
printf(_("%*schoice"), indent - 1, "");
@@ -436,7 +436,7 @@
}
} else if (input_mode != olddefconfig) {
if (!conf_cnt++)
printf("%s",_("*\n* Restart config...\n*\n"));
printf(_("*\n* Restart config...\n*\n"));
rootEntry = menu_get_parent_menu(menu);
conf(rootEntry);
}