summaryrefslogtreecommitdiff
path: root/actions/peoplesearch.php
diff options
context:
space:
mode:
authorMike Cochrane <mikec@mikenz.geek.nz>2008-07-10 01:10:35 -0400
committerMike Cochrane <mikec@mikenz.geek.nz>2008-07-10 01:10:35 -0400
commitce2b174c4a083128cd14154d0f6c61e19d5cb229 (patch)
tree696fb99c6a85e785ca57f1fd4c6bbc0d04efa2b1 /actions/peoplesearch.php
parent8fe61b0b9266d6b3ca2786c84287d24a3ae1f4ef (diff)
More _t( to _( and sprintfs in new code
darcs-hash:20080710051035-533db-4a3d824a50545b8a291a81059dcbb97487a13630.gz
Diffstat (limited to 'actions/peoplesearch.php')
-rw-r--r--actions/peoplesearch.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php
index 644f0a7f7..308832429 100644
--- a/actions/peoplesearch.php
+++ b/actions/peoplesearch.php
@@ -25,12 +25,12 @@ define(PROFILES_PER_PAGE, 10);
class PeoplesearchAction extends SearchAction {
function get_instructions() {
- return _t('Search for people on %%site.name%% by their name, location, or interests. ' .
+ return _('Search for people on %%site.name%% by their name, location, or interests. ' .
'Separate the terms by spaces; they must be 3 characters or more.');
}
function get_title() {
- return _t('People search');
+ return _('People search');
}
function show_results($q, $page) {
@@ -61,7 +61,7 @@ class PeoplesearchAction extends SearchAction {
}
common_element_end('ul');
} else {
- common_element('p', 'error', _t('No results'));
+ common_element('p', 'error', _('No results'));
}
common_pagination($page > 1, $cnt > PROFILES_PER_PAGE,