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();

View File

@ -190,7 +190,7 @@
<string name="followers_compare">Comparing followers &amp; following</string>
<string name="followers_both_following">Both following each other</string>
<string name="followers_not_following">not following %s</string>
<string name="followers_not_follower">%s not following</string>
<string name="followers_not_follower">%s is not following</string>
<string name="login_error_loading_cookies">Error loading cookies</string>
<string name="login_success_loading_cookies">Successfully loaded cookies!\nIf you still can\'t open private pages/posts, re-login!</string>
<string name="comment_hint">Write a new comment...</string>