Alter follower count text/number order

This commit is contained in:
Cadence Ember 2021-01-19 02:36:50 +13:00
parent aa5d6966a3
commit 20b4e448eb
No known key found for this signature in database
GPG Key ID: BC1C2C61CF521B17
2 changed files with 4 additions and 4 deletions

View File

@ -43,8 +43,8 @@ const {pug} = require("./utils/functions")
data.verified_badge_title = "Verified"
data.verified_badge_alt = "Verified."
data.post_counter_label = "posts"
data.outgoing_follows_counter_label = "following"
data.incoming_follows_counter_label = "followed by"
data.outgoing_follows_counter_label = "Following"
data.incoming_follows_counter_label = "Followed by"
data.quota_left = "Quota left:"
data.t_home = "Home"
data.tab_timeline = "Timeline"

View File

@ -78,12 +78,12 @@ html
if followerCountsAvailable
if user.following != undefined
div.profile-counter
| #[span(data-numberformat=user.following).count #{numberFormat(user.following)} ]
= ll.outgoing_follows_counter_label
span(data-numberformat=user.following).count #{numberFormat(user.following)}
if user.followedBy != undefined
div.profile-counter
| #[span(data-numberformat=user.followedBy).count #{numberFormat(user.followedBy)} ]
= ll.incoming_follows_counter_label
span(data-numberformat=user.followedBy).count #{numberFormat(user.followedBy)}
else
div.profile-counter.not-available Followers not available.
.links