Remove string referencing tipping posts, add missing localized string comments, and export strings for translation

This commit is contained in:
2023-06-11 14:45:03 -04:00
parent df20b67fc1
commit 2d29403145
5 changed files with 17 additions and 12 deletions

View File

@@ -18,11 +18,11 @@ struct ZapEvent: View {
Image("zap.fill")
.foregroundColor(.orange)
Text("\(format_msats(zap.amount))", comment: "Text indicating the zap amount. i.e. number of satoshis that were tipped to a user")
Text(verbatim: format_msats(zap.amount))
.font(.headline)
if is_top_zap {
Text("Top Zap")
Text("Top Zap", comment: "Text indicating that this zap is the one with the highest amount of sats.")
.font(.caption)
.foregroundColor(.gray)
.padding([.top], 2)