diff --git a/damus/Views/Events/FollowPack/FollowPackView.swift b/damus/Views/Events/FollowPack/FollowPackView.swift index fee791e3..301dd30d 100644 --- a/damus/Views/Events/FollowPack/FollowPackView.swift +++ b/damus/Views/Events/FollowPack/FollowPackView.swift @@ -140,12 +140,12 @@ struct FollowPackView: View { let displayName = Profile.displayName(profile: profile, pubkey: event.event.pubkey) switch displayName { case .one(let one): - Text(NSLocalizedString("Created by \(one)", comment: "Lets the user know who created this follow pack.")) + Text("Created by \(one)", comment: "Lets the user know who created this follow pack.") .font(.subheadline).foregroundColor(.gray) case .both(username: let username, displayName: let displayName): HStack(spacing: 6) { - Text(NSLocalizedString("Created by \(displayName)", comment: "Lets the user know who created this follow pack.")) + Text("Created by \(displayName)", comment: "Lets the user know who created this follow pack.") .font(.subheadline).foregroundColor(.gray) Text(verbatim: "@\(username)") diff --git a/damus/en-US.xcloc/Localized Contents/en-US.xliff b/damus/en-US.xcloc/Localized Contents/en-US.xliff index a922cfac..262cafb4 100644 --- a/damus/en-US.xcloc/Localized Contents/en-US.xliff +++ b/damus/en-US.xcloc/Localized Contents/en-US.xliff @@ -790,6 +790,11 @@ Context menu option for copying the version of damus. Create new wallet Button text for creating a new wallet. + + Created by %@ + Created by %@ + Lets the user know who created this follow pack. + Current balance Current balance @@ -5006,6 +5011,11 @@ Context menu option for copying the version of damus. Create new wallet Button text for creating a new wallet. + + Created by %@ + Created by %@ + Lets the user know who created this follow pack. + Current balance Current balance diff --git a/damus/en-US.xcloc/Source Contents/damus/Localizable.xcstrings b/damus/en-US.xcloc/Source Contents/damus/Localizable.xcstrings index 0a22a655..7ec9d390 100644 --- a/damus/en-US.xcloc/Source Contents/damus/Localizable.xcstrings +++ b/damus/en-US.xcloc/Source Contents/damus/Localizable.xcstrings @@ -468,6 +468,9 @@ "Create new wallet" : { "comment" : "Button text for creating a new wallet." }, + "Created by %@" : { + "comment" : "Lets the user know who created this follow pack." + }, "Current balance" : { "comment" : "Label for displaying current wallet balance" }, diff --git a/damus/en-US.xcloc/Source Contents/damus/en-US.lproj/Localizable.strings b/damus/en-US.xcloc/Source Contents/damus/en-US.lproj/Localizable.strings index 86a08589..af5d4acf 100644 Binary files a/damus/en-US.xcloc/Source Contents/damus/en-US.lproj/Localizable.strings and b/damus/en-US.xcloc/Source Contents/damus/en-US.lproj/Localizable.strings differ