From ec706b43e9dcb977a4d3f1b8c825e5bd1107a1be Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Mon, 10 Jun 2024 11:17:07 +0100 Subject: [PATCH] fix: updated headers for account lists --- internal/model/account.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/internal/model/account.go b/internal/model/account.go index 7bda900..ad3fe5b 100644 --- a/internal/model/account.go +++ b/internal/model/account.go @@ -199,15 +199,15 @@ func (a AccountList) Display(noColor bool) string { switch a.Type { case AccountListFollowers: - output += utilities.HeaderFormat(noColor, "FOLLOWED BY:") + output += utilities.HeaderFormat(noColor, "Followed by:") case AccountListFollowing: - output += utilities.HeaderFormat(noColor, "FOLLOWING:") + output += utilities.HeaderFormat(noColor, "Following:") case AccountListBlockedAccount: - output += utilities.HeaderFormat(noColor, "BLOCKED ACCOUNTS:") + output += utilities.HeaderFormat(noColor, "Blocked accounts:") 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: - output += utilities.HeaderFormat(noColor, "ACCOUNTS:") + output += utilities.HeaderFormat(noColor, "Accounts:") } if a.Type == AccountListBlockedAccount {