Bookmarks (#1560)
* add bookmarks to timelines * add Bookmarks to main menu * cleanup * handle BookmarkEvent * fix tests * fix bookmark handling in NotificationsFragment * add bookmark accessibility actions
This commit is contained in:
parent
d6ec5ca8d3
commit
d9694df0c2
44 changed files with 1235 additions and 122 deletions
|
|
@ -4,6 +4,8 @@
|
|||
<item name="action_reply" type="id" />
|
||||
<item name="action_favourite" type="id" />
|
||||
<item name="action_unfavourite" type="id" />
|
||||
<item name="action_bookmark" type="id" />
|
||||
<item name="action_unbookmark" type="id" />
|
||||
<item name="action_reblog" type="id" />
|
||||
<item name="action_unreblog" type="id" />
|
||||
<item name="action_open_profile" type="id" />
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@
|
|||
<color name="tusky_blue_light">#56a7e1</color>
|
||||
<color name="tusky_orange">#ca8f04</color>
|
||||
<color name="tusky_orange_light">#fab207</color>
|
||||
<color name="tusky_green">#19a341</color>
|
||||
<color name="tusky_green_light">#25d069</color>
|
||||
|
||||
<color name="toolbar_view_media">#8f000000</color>
|
||||
<color name="header_background_filter">#44000000</color>
|
||||
|
|
|
|||
|
|
@ -107,8 +107,8 @@
|
|||
|
||||
|
||||
<string name="description_status" translatable="false">
|
||||
<!-- Display name, cw?, content?, poll? relative date, reposted by?, reposted?, favorited?, username, media?; visibility, fav number?, reblog number?-->
|
||||
%1$s; %2$s; %3$s, %13$s %4$s, %5$s; %6$s, %7$s, %8$s, %9$s; %10$s, %11$s, %12$s
|
||||
<!-- Display name, cw?, content?, poll? relative date, reposted by?, reposted?, favorited?, bookmarked?, username, media?; visibility, fav number?, reblog number?-->
|
||||
%1$s; %2$s; %3$s, %14$s %4$s, %5$s; %6$s, %7$s, %8$s, %9$s, %10$s; %11$s, %12$s, %13$s
|
||||
</string>
|
||||
|
||||
<string-array name="rick_roll_domains" translatable="false">
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@
|
|||
<string name="title_follows">Follows</string>
|
||||
<string name="title_followers">Followers</string>
|
||||
<string name="title_favourites">Favorites</string>
|
||||
<string name="title_bookmarks">Bookmarks</string>
|
||||
<string name="title_mutes">Muted users</string>
|
||||
<string name="title_blocks">Blocked users</string>
|
||||
<string name="title_domain_mutes">Hidden domains</string>
|
||||
|
|
@ -67,6 +68,7 @@
|
|||
<string name="action_reblog">Boost</string>
|
||||
<string name="action_unreblog">Remove boost</string>
|
||||
<string name="action_favourite">Favorite</string>
|
||||
<string name="action_bookmark">Bookmark</string>
|
||||
<string name="action_unfavourite">Remove favorite</string>
|
||||
<string name="action_more">More</string>
|
||||
<string name="action_compose">Compose</string>
|
||||
|
|
@ -91,6 +93,7 @@
|
|||
<string name="action_view_preferences">Preferences</string>
|
||||
<string name="action_view_account_preferences">Account Preferences</string>
|
||||
<string name="action_view_favourites">Favorites</string>
|
||||
<string name="action_view_bookmarks">Bookmarks</string>
|
||||
<string name="action_view_mutes">Muted users</string>
|
||||
<string name="action_view_blocks">Blocked users</string>
|
||||
<string name="action_view_domain_mutes">Hidden domains</string>
|
||||
|
|
@ -443,6 +446,9 @@
|
|||
<string name="description_status_favourited">
|
||||
Favorited
|
||||
</string>
|
||||
<string name="description_status_bookmarked">
|
||||
Bookmarked
|
||||
</string>
|
||||
<string name="description_visiblity_public">
|
||||
Public
|
||||
</string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue