summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2026-01-10 13:46:04 +0000
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2026-01-13 17:35:12 +0000
commit6b97afafdabdeca6b8f25f65f20871220aace0d9 (patch)
tree179c28b33584b965e1caedb1b5bc69dc50974618
parent6ff41b6dbca5058eefbc35264934fce3fce5134d (diff)
downloaddrakx-6b97afafdabdeca6b8f25f65f20871220aace0d9.tar
drakx-6b97afafdabdeca6b8f25f65f20871220aace0d9.tar.gz
drakx-6b97afafdabdeca6b8f25f65f20871220aace0d9.tar.bz2
drakx-6b97afafdabdeca6b8f25f65f20871220aace0d9.tar.xz
drakx-6b97afafdabdeca6b8f25f65f20871220aace0d9.zip
drakclock: use UTC instead of GMT in dialogue (mga#6056)
-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});
}