Skip to content

Commit

Permalink
"Heads up!" -> "Heads up:"
Browse files Browse the repository at this point in the history
  • Loading branch information
n0shake committed Apr 22, 2024
1 parent 26dcb31 commit fb0e54c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Clocker/Panel/Data Layer/TimezoneDataOperations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit fb0e54c

Please sign in to comment.