rename toolbar name Favorites to Bookmarks (#4717)

* rename toolbar name Favorites to Bookmarks

* fix issue

* fix string.xml file
This commit is contained in:
Prince kushwaha 2021-12-10 18:05:44 +05:30 committed by GitHub
parent 674b033d32
commit b7be49333d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 5 deletions

View file

@ -271,7 +271,7 @@ public class MainActivity extends BaseActivity
setTitle(getString(R.string.navigation_item_explore));
loadFragment(ExploreFragment.newInstance(),false);
}else if(fragmentName.equals(ActiveFragment.BOOKMARK.name())) {
setTitle(getString(R.string.favorites));
setTitle(getString(R.string.bookmarks));
loadFragment(BookmarkFragment.newInstance(),false);
}
}