add the ability to see who faved or boosted a toot (#962)

* move reblog/fav count up in detailed status view and make them clickable

* use status object returned by api when reblogging/faving

* Reblogs -> Boosts

* add support for viewing who faved/reblogged a status

* add onShowReblogs/onShowFavs to listener, fix display bug

* remove unneeded icon from previous revision

* small code improvements

* fix liking/boosting toot with card
This commit is contained in:
Konrad Pozniak 2018-12-27 09:48:24 +01:00 committed by GitHub
commit c869886c19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 651 additions and 648 deletions

View file

@ -360,4 +360,17 @@
<string name="unpin_action">Unpin</string>
<string name="pin_action">Pin</string>
<plurals name="favs">
<item quantity="one">&lt;b>%1$s&lt;/b> Favourite</item>
<item quantity="other">&lt;b>%1$s&lt;/b> Favourites</item>
</plurals>
<plurals name="reblogs">
<item quantity="one">&lt;b>%s&lt;/b> Boost</item>
<item quantity="other">&lt;b>%s&lt;/b> Boosts</item>
</plurals>
<string name="title_reblogged_by">Boosted by</string>
<string name="title_favourited_by">Favourited by</string>
</resources>