From 40b57cb616ca19aee3de104acd058da289c936bb Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Mon, 25 Mar 2024 16:25:23 -0400 Subject: [PATCH] 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 --- usr.sbin/tzsetup/tzsetup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/tzsetup/tzsetup.c b/usr.sbin/tzsetup/tzsetup.c index 9610023ec3ea..fee5762b6fa6 100644 --- a/usr.sbin/tzsetup/tzsetup.c +++ b/usr.sbin/tzsetup/tzsetup.c @@ -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);