summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS2
-rwxr-xr-xperl-install/standalone/drakclock2
2 files changed, 3 insertions, 1 deletions
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});
}