diff options
author | Eric Helgeson <erichelgeson@gmail.com> | 2010-07-19 21:09:09 -0500 |
---|---|---|
committer | Eric Helgeson <erichelgeson@gmail.com> | 2010-07-19 21:09:09 -0500 |
commit | 9b899eea750fd54c75fbb58e48526a5cab169f6c (patch) | |
tree | 5f9643e5362e51ac11d9dc4fa5526c36dcbea457 /actions/replies.php | |
parent | a65b3f171c4d23af8ca844439ad08959eb760b86 (diff) |
Make some messages gender neutral.
Diffstat (limited to 'actions/replies.php')
-rw-r--r-- | actions/replies.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/replies.php b/actions/replies.php index 608f71d6e..0474a6de0 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -196,18 +196,18 @@ class RepliesAction extends OwnerDesignAction function showEmptyListMessage() { - $message = sprintf(_('This is the timeline showing replies to %1$s but %2$s hasn\'t received a notice to his attention yet.'), $this->user->nickname, $this->user->nickname) . ' '; + $message = sprintf(_('This is the timeline showing replies to %1$s but %2$s hasn\'t received a notice to their attention yet.'), $this->user->nickname, $this->user->nickname) . ' '; if (common_logged_in()) { $current_user = common_current_user(); if ($this->user->id === $current_user->id) { $message .= _('You can engage other users in a conversation, subscribe to more people or [join groups](%%action.groups%%).'); } else { - $message .= sprintf(_('You can try to [nudge %1$s](../%2$s) or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname); + $message .= sprintf(_('You can try to [nudge %1$s](../%2$s) or [post something to their attention](%%%%action.newnotice%%%%?status_textarea=%3$s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname); } } else { - $message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to his or her attention.'), $this->user->nickname); + $message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to their attention.'), $this->user->nickname); } $this->elementStart('div', 'guide'); |