fix: updated headers for account lists

This commit is contained in:
Dan Anglin 2024-06-10 11:17:07 +01:00
parent 5fb55ed2cf
commit ec706b43e9
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -199,15 +199,15 @@ func (a AccountList) Display(noColor bool) string {
switch a.Type { switch a.Type {
case AccountListFollowers: case AccountListFollowers:
output += utilities.HeaderFormat(noColor, "FOLLOWED BY:") output += utilities.HeaderFormat(noColor, "Followed by:")
case AccountListFollowing: case AccountListFollowing:
output += utilities.HeaderFormat(noColor, "FOLLOWING:") output += utilities.HeaderFormat(noColor, "Following:")
case AccountListBlockedAccount: case AccountListBlockedAccount:
output += utilities.HeaderFormat(noColor, "BLOCKED ACCOUNTS:") output += utilities.HeaderFormat(noColor, "Blocked accounts:")
case AccountListFollowRequests: case AccountListFollowRequests:
output += utilities.HeaderFormat(noColor, "ACCOUNTS THAT HAVE REQUESTED TO FOLLOW YOU:") output += utilities.HeaderFormat(noColor, "Accounts that have requested to follow you:")
default: default:
output += utilities.HeaderFormat(noColor, "ACCOUNTS:") output += utilities.HeaderFormat(noColor, "Accounts:")
} }
if a.Type == AccountListBlockedAccount { if a.Type == AccountListBlockedAccount {