svn commit: r195863 - in head/usr.sbin/sysinstall: . help
Edward Tomasz Napierala
trasz at FreeBSD.org
Sat Jul 25 08:36:29 UTC 2009
Author: trasz
Date: Sat Jul 25 08:36:28 2009
New Revision: 195863
URL: http://svn.freebsd.org/changeset/base/195863
Log:
Change the name displayed in sysinstall(8) from 'Wizard Mode'
to 'Expert Mode', to make it less confusing to new users, to whom
a 'wizard' is a set of simple dialogs with the 'next >>>' button.
Approved by: re (kensmith)
Modified:
head/usr.sbin/sysinstall/disks.c
head/usr.sbin/sysinstall/help/usage.hlp
head/usr.sbin/sysinstall/label.c
Modified: head/usr.sbin/sysinstall/disks.c
==============================================================================
--- head/usr.sbin/sysinstall/disks.c Sat Jul 25 06:42:42 2009 (r195862)
+++ head/usr.sbin/sysinstall/disks.c Sat Jul 25 08:36:28 2009 (r195863)
@@ -206,7 +206,7 @@ print_command_summary(void)
{
mvprintw(14, 0, "The following commands are supported (in upper or lower case):");
mvprintw(16, 0, "A = Use Entire Disk G = set Drive Geometry C = Create Slice");
- mvprintw(17, 0, "D = Delete Slice Z = Toggle Size Units S = Set Bootable | = Wizard m.");
+ mvprintw(17, 0, "D = Delete Slice Z = Toggle Size Units S = Set Bootable | = Expert m.");
mvprintw(18, 0, "T = Change Type U = Undo All Changes Q = Finish");
if (!RunningAsInit)
mvprintw(18, 47, "W = Write Changes");
@@ -644,7 +644,7 @@ diskPartition(Device *dev)
break;
case '|':
- if (!msgNoYes("Are you SURE you want to go into Wizard mode?\n"
+ if (!msgNoYes("Are you SURE you want to go into Expert mode?\n"
"No seat belts whatsoever are provided!")) {
clear();
refresh();
Modified: head/usr.sbin/sysinstall/help/usage.hlp
==============================================================================
--- head/usr.sbin/sysinstall/help/usage.hlp Sat Jul 25 06:42:42 2009 (r195862)
+++ head/usr.sbin/sysinstall/help/usage.hlp Sat Jul 25 08:36:28 2009 (r195863)
@@ -52,7 +52,7 @@ that may have scrolled off the screen.
Down keys to move through the saved text. To leave scroll-back mode,
press the Scroll Lock key again. This feature is most useful for
reading back through your boot messages (go ahead, try it now!) though
-it's also useful when dealing with sub-shells or other "wizard modes"
+it's also useful when dealing with sub-shells or other "expert modes"
that don't use menus and tend to scroll their output off the top of
the screen.
Modified: head/usr.sbin/sysinstall/label.c
==============================================================================
--- head/usr.sbin/sysinstall/label.c Sat Jul 25 06:42:42 2009 (r195862)
+++ head/usr.sbin/sysinstall/label.c Sat Jul 25 08:36:28 2009 (r195863)
@@ -1285,7 +1285,7 @@ diskLabel(Device *dev)
#ifndef __ia64__
case '|':
- if (!msgNoYes("Are you sure you want to go into Wizard mode?\n\n"
+ if (!msgNoYes("Are you sure you want to go into Expert mode?\n\n"
"This is an entirely undocumented feature which you are not\n"
"expected to understand!")) {
int i;
More information about the svn-src-all
mailing list