From be57e253fb40097864cfbcde8efa71e6a187fd94 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 4 May 2011 10:49:46 -0700 Subject: [PATCH] 'Home' to 'Home timeline' --- actions/all.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/all.php b/actions/all.php index 388f24daad..8ee3ec3fa6 100644 --- a/actions/all.php +++ b/actions/all.php @@ -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()); } }