From 6b97afafdabdeca6b8f25f65f20871220aace0d9 Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Sat, 10 Jan 2026 13:46:04 +0000 Subject: drakclock: use UTC instead of GMT in dialogue (mga#6056) --- perl-install/NEWS | 2 ++ perl-install/standalone/drakclock | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index b94751c9d..ff37b81f6 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- drakclock: use UTC instead of GMT in dialogue (mga#6056) + Version 18.71 - 5 January 2026 - drakclock: diff --git a/perl-install/standalone/drakclock b/perl-install/standalone/drakclock index 34a0e9fec..5fc892d8e 100755 --- a/perl-install/standalone/drakclock +++ b/perl-install/standalone/drakclock @@ -41,7 +41,7 @@ $button_time->signal_connect(clicked => sub { local $::isEmbedded = 0; # to prevent sub window embedding if (my $tz = $in->ask_from_treelist(N("Timezone - DrakClock"), N("Which is your timezone?"), '/', \@timezones, $timezone->{timezone})) { $timezone->{timezone} = $tz; - $timezone->{UTC} = $in->ask_yesorno(N("GMT - DrakClock"), N("Is your hardware clock set to GMT?"), $timezone->{UTC}); + $timezone->{UTC} = $in->ask_yesorno(N("UTC - DrakClock"), N("Is your hardware clock set to UTC?"), $timezone->{UTC}); timezone::write($timezone); $label_timezone->set_text($timezone->{timezone}); } -- cgit v1.2.1