summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2008-12-11 18:53:41 -0500
committerZach Copley <zach@controlyourself.ca>2008-12-11 18:53:41 -0500
commit6a0873e30dc075491120ef134e7726cbbc8cb18d (patch)
treefe0fbc3f9d5ba9dd66a1f122f60177d350b8882b /actions
parent0910a8915b590d3075ede3e1a3f5ec68e18ca829 (diff)
Better titles and instructions for Featured and Popular tabs
(Do not be afraid of this patch!) darcs-hash:20081211235341-7b5ce-98bae58e267b4e4b0adb5835e5a05e19cd910363.gz
Diffstat (limited to 'actions')
-rw-r--r--actions/favorited.php4
-rw-r--r--actions/featured.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/actions/favorited.php b/actions/favorited.php
index 13962b42e..5f6c19c16 100644
--- a/actions/favorited.php
+++ b/actions/favorited.php
@@ -28,7 +28,7 @@ class FavoritedAction extends StreamAction {
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
- common_show_header(_('Favorited timeline'),
+ common_show_header(_('Popular notices'),
array($this, 'show_header'), NULL,
array($this, 'show_top'));
@@ -51,7 +51,7 @@ class FavoritedAction extends StreamAction {
}
function get_instructions() {
- return _('Showing most favorited notices from the last week');
+ return _('Showing recently popular notices');
}
function show_notices($page) {
diff --git a/actions/featured.php b/actions/featured.php
index 2bbe7c70c..96fbd89ab 100644
--- a/actions/featured.php
+++ b/actions/featured.php
@@ -29,7 +29,7 @@ class FeaturedAction extends StreamAction {
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
- common_show_header(_('Featured timeline'),
+ common_show_header(_('Featured users'),
array($this, 'show_header'), NULL,
array($this, 'show_top'));