Rename the "exit" option in the "select your installation" menu into
"Abandon installation" to make clear it is fatal - suggested by Andreas Gustafsson.
This commit is contained in:
parent
6e3d6f98d8
commit
c5d76a21ae
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: menus.mi,v 1.2 2014/08/03 16:09:38 martin Exp $ */
|
/* $NetBSD: menus.mi,v 1.3 2014/08/04 08:50:13 martin Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2003 The NetBSD Foundation, Inc.
|
* Copyright (c) 2003 The NetBSD Foundation, Inc.
|
||||||
|
@ -271,7 +271,8 @@ menu distmedium, title MSG_Select_medium, y=-5;
|
||||||
option MSG_Skip_group,exit, action { *(int *)arg = SET_SKIP_GROUP; };
|
option MSG_Skip_group,exit, action { *(int *)arg = SET_SKIP_GROUP; };
|
||||||
option MSG_Abandon, exit, action { *(int *)arg = SET_ABANDON; };
|
option MSG_Abandon, exit, action { *(int *)arg = SET_ABANDON; };
|
||||||
|
|
||||||
menu distset, title MSG_Select_your_distribution, exit, no default exit;
|
menu distset, title MSG_Select_your_distribution, exit,
|
||||||
|
no default exit, exitstring MSG_Abandon;
|
||||||
display action { msg_display (MSG_distset); };
|
display action { msg_display (MSG_distset); };
|
||||||
option MSG_Full_installation, exit, action { *(int *)arg = 1; init_set_status(0); };
|
option MSG_Full_installation, exit, action { *(int *)arg = 1; init_set_status(0); };
|
||||||
option MSG_Full_installation_nox, exit, action { *(int *)arg = 1; init_set_status(SFLAG_NOX); };
|
option MSG_Full_installation_nox, exit, action { *(int *)arg = 1; init_set_status(SFLAG_NOX); };
|
||||||
|
|
Loading…
Reference in New Issue