From b9750dab779e6688b2790cb11085a9a059d09494 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 13 Jan 2023 10:18:03 -0800 Subject: [PATCH] Rename Boost to Repost --- damus/Views/ActionBar/EventActionBar.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/damus/Views/ActionBar/EventActionBar.swift b/damus/Views/ActionBar/EventActionBar.swift index bab5477c..767bf966 100644 --- a/damus/Views/ActionBar/EventActionBar.swift +++ b/damus/Views/ActionBar/EventActionBar.swift @@ -97,15 +97,15 @@ struct EventActionBar: View { } } } - .alert(NSLocalizedString("Boost", comment: "Title of alert for confirming to boost a post."), isPresented: $confirm_boost) { + .alert(NSLocalizedString("Repost", comment: "Title of alert for confirming to repost a post."), isPresented: $confirm_boost) { Button("Cancel") { confirm_boost = false } - Button(NSLocalizedString("Boost", comment: "Button to confirm boosting a post.")) { + Button(NSLocalizedString("Repost", comment: "Button to confirm reposting a post.")) { send_boost() } } message: { - Text("Are you sure you want to boost this post?", comment: "Alert message to ask if user wants to boost a post.") + Text("Are you sure you want to repost this?", comment: "Alert message to ask if user wants to repost a post.") } .onReceive(handle_notify(.liked)) { n in let liked = n.object as! Counted