{
$user = common_current_user();
if ($user->id == $this->user->id) {
+ // TRANS: Title of a user's own start page.
return _('Home timeline');
} else {
$profile = $this->user->getProfile();
+ // TRANS: Title of another user's start page.
+ // TRANS: %s is the other user's name.
return sprintf(_("%s's home timeline"), $profile->getBestName());
}
}
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
// TRANS: Field label on login page.
- $this->input('nickname', _('Username or email'));
+ $this->input('nickname', _('Username or email address'));
$this->elementEnd('li');
$this->elementStart('li');
// TRANS: Field label on login page.