diff --git a/Mlem/Enums/Settings/PostSortType.swift b/Mlem/Enums/Settings/PostSortType.swift index a8aa7fae1..480961317 100644 --- a/Mlem/Enums/Settings/PostSortType.swift +++ b/Mlem/Enums/Settings/PostSortType.swift @@ -85,9 +85,9 @@ enum PostSortType: String, Codable, CaseIterable, Identifiable { case .topHour: return "Top of the last hour" case .topSixHour: - return "Top of the last six hours" + return "Top of the last 6 hours" case .topTwelveHour: - return "Top of the last twelve hours" + return "Top of the last 12 hours" case .topDay: return "Top of today" case .topWeek: @@ -164,9 +164,9 @@ extension PostSortType: SettingsOptions { case .topHour: return "Hour" case .topSixHour: - return "Six Hours" + return "6 Hours" case .topTwelveHour: - return "Twelve Hours" + return "12 Hours" case .topDay: return "Day" case .topWeek: diff --git a/Mlem/Views/Shared/Comments/Comment Item Logic.swift b/Mlem/Views/Shared/Comments/Comment Item Logic.swift index 16957ebdd..a99be893f 100644 --- a/Mlem/Views/Shared/Comments/Comment Item Logic.swift +++ b/Mlem/Views/Shared/Comments/Comment Item Logic.swift @@ -151,7 +151,7 @@ extension CommentItem { // upvote let (upvoteText, upvoteImg) = hierarchicalComment.commentView.myVote == .upvote ? - ("Undo upvote", Icons.upvoteSquareFill) : + ("Undo Upvote", Icons.upvoteSquareFill) : ("Upvote", Icons.upvoteSquare) ret.append(MenuFunction.standardMenuFunction( text: upvoteText, @@ -166,7 +166,7 @@ extension CommentItem { // downvote let (downvoteText, downvoteImg) = hierarchicalComment.commentView.myVote == .downvote ? - ("Undo downvote", Icons.downvoteSquareFill) : + ("Undo Downvote", Icons.downvoteSquareFill) : ("Downvote", Icons.downvoteSquare) ret.append(MenuFunction.standardMenuFunction( text: downvoteText,