Fix localization issues and import translations

This commit is contained in:
2023-03-29 09:05:10 -04:00
parent 5a238502cb
commit 08b7e50bd8
44 changed files with 726 additions and 64 deletions

View File

@@ -39,7 +39,7 @@ enum DisplayName {
func parse_display_name(profile: Profile?, pubkey: String) -> DisplayName {
if pubkey == "anon" {
return .one("Anonymous")
return .one(NSLocalizedString("Anonymous", comment: "Placeholder display name of anonymous user."))
}
guard let profile else {