mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
tzsetup: be explicit about *timezone* abbreviation
During the install process tzsetup asks a question like
Does the abbreviation `EDT' look reasonable?
The installer asks lots of questions, some that relate to the previous
screen or topic and some that do not. A new user installed FreeBSD for
the first time and was confused by this question, not realizing that it
was asking whether the abbreviation is correct for the selected
timezone.
Reviewed by: bapt, brooks, imp
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D44500
This commit is contained in:
parent
428f86fd2f
commit
40b57cb616
1 changed files with 1 additions and 1 deletions
|
|
@ -709,7 +709,7 @@ confirm_zone(const char *filename)
|
|||
tm = localtime(&t);
|
||||
|
||||
snprintf(prompt, sizeof(prompt),
|
||||
"Does the abbreviation `%s' look reasonable?", tm->tm_zone);
|
||||
"Does the timezone abbreviation `%s' look reasonable?", tm->tm_zone);
|
||||
conf.title = "Confirmation";
|
||||
rv = (bsddialog_yesno(&conf, prompt, 5, 72) == BSDDIALOG_YES);
|
||||
return (rv);
|
||||
|
|
|
|||
Loading…
Reference in a new issue