From fb0e54c9e85d388f5c9bcb890a0771e74e338853 Mon Sep 17 00:00:00 2001 From: Abhishek Banthia <8280282+n0shake@users.noreply.github.com> Date: Mon, 22 Apr 2024 10:33:30 -0400 Subject: [PATCH] "Heads up!" -> "Heads up:" --- Clocker/Panel/Data Layer/TimezoneDataOperations.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Clocker/Panel/Data Layer/TimezoneDataOperations.swift b/Clocker/Panel/Data Layer/TimezoneDataOperations.swift index f459602..6e118ca 100644 --- a/Clocker/Panel/Data Layer/TimezoneDataOperations.swift +++ b/Clocker/Panel/Data Layer/TimezoneDataOperations.swift @@ -73,11 +73,11 @@ extension TimezoneDataOperations { if numberOfDays == 0 { let hoursLeft = nextDaylightSavingsTransition.hours(from: newDate) let suffix = hoursLeft == 1 ? "hour" : "hours" - return "Heads up! DST transition will occur in \(hoursLeft) \(suffix)." + return "Heads up: DST transition will occur in \(hoursLeft) \(suffix)." } let suffix = numberOfDays == 1 ? "day" : "days" - return "Heads up! DST transition will occur in \(numberOfDays) \(suffix)." + return "Heads up: DST transition will occur in \(numberOfDays) \(suffix)." } func compactMenuTitle() -> String {