mirror of
https://git.sr.ht/~cadence/bibliogram
synced 2024-11-22 08:07:30 +00:00
Alter follower count text/number order
This commit is contained in:
parent
aa5d6966a3
commit
20b4e448eb
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user