Fix localization issues and export strings for translation

This commit is contained in:
2023-07-09 15:12:35 -04:00
parent 83ef50586a
commit fcd7d2beab
10 changed files with 202 additions and 101 deletions

View File

@@ -452,7 +452,8 @@ struct ProfileView: View {
NavigationLink(value: Route.FollowersYouKnow(friendedFollowers: friended_followers, followers: followers)) {
HStack {
CondensedProfilePicturesView(state: damus_state, pubkeys: friended_followers, maxPictures: 3)
Text(followedByString(friended_followers, profiles: damus_state.profiles))
let followedByString = followedByString(friended_followers, profiles: damus_state.profiles)
Text(followedByString)
.font(.subheadline).foregroundColor(.gray)
.multilineTextAlignment(.leading)
}