'Home' to 'Home timeline'

This commit is contained in:
Evan Prodromou 2011-05-04 10:49:46 -07:00
parent f67607d2f1
commit be57e253fb
1 changed files with 2 additions and 2 deletions

View File

@ -86,10 +86,10 @@ class AllAction extends ProfileAction
{
$user = common_current_user();
if ($user->id == $this->user->id) {
return _('Home');
return _('Home timeline');
} else {
$profile = $this->user->getProfile();
return sprintf(_("%s's Home"), $profile->getBestName());
return sprintf(_("%s's home timeline"), $profile->getBestName());
}
}