1
0
Fork 0
mirror of https://github.com/KokaKiwi/BarInsta synced 2026-03-05 20:11:36 +00:00

they asked to change names and stuff

This commit is contained in:
Austin Huang 2020-08-13 21:02:24 -04:00
parent ac8ccec703
commit bb8f189784
No known key found for this signature in database
GPG key ID: 84C23AA04587A91F
3 changed files with 4 additions and 3 deletions

View file

@ -63,8 +63,9 @@ public final class FollowViewer extends BaseLanguageActivity implements SwipeRef
followers = intent.getBooleanExtra(Constants.EXTRAS_FOLLOWERS, false);
name = intent.getStringExtra(Constants.EXTRAS_NAME);
namePost = name + " is";
namePost = name;
if (Utils.isEmpty(name)) {
// this usually should not occur
name = "You";
namePost = "You're";
}

View file

@ -54,7 +54,7 @@ public final class NotificationsViewer extends BaseLanguageActivity implements S
notificationsBinding.swipeRefreshLayout.setRefreshing(true);
setSupportActionBar(notificationsBinding.toolbar.toolbar);
notificationsBinding.toolbar.toolbar.setTitle(R.string.title_notifications);
notificationsBinding.toolbar.toolbar.setTitle(R.string.action_notif);
resources = getResources();