More _t( to _( and sprintfs in new code
darcs-hash:20080710051035-533db-4a3d824a50545b8a291a81059dcbb97487a13630.gz
This commit is contained in:
parent
8fe61b0b92
commit
ce2b174c4a
@ -27,12 +27,12 @@ define(NOTICES_PER_PAGE, 20);
|
|||||||
class NoticesearchAction extends SearchAction {
|
class NoticesearchAction extends SearchAction {
|
||||||
|
|
||||||
function get_instructions() {
|
function get_instructions() {
|
||||||
return _t('Search for notices on %%site.name%% by their contents. ' .
|
return _('Search for notices on %%site.name%% by their contents. ' .
|
||||||
'Separate search terms by spaces; they must be 3 characters or more.');
|
'Separate search terms by spaces; they must be 3 characters or more.');
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_title() {
|
function get_title() {
|
||||||
return _t('Text search');
|
return _('Text search');
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_results($q, $page) {
|
function show_results($q, $page) {
|
||||||
@ -62,7 +62,7 @@ class NoticesearchAction extends SearchAction {
|
|||||||
}
|
}
|
||||||
common_element_end('ul');
|
common_element_end('ul');
|
||||||
} else {
|
} else {
|
||||||
common_element('p', 'error', _t('No results'));
|
common_element('p', 'error', _('No results'));
|
||||||
}
|
}
|
||||||
|
|
||||||
common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
|
common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
|
||||||
@ -78,7 +78,7 @@ class NoticesearchAction extends SearchAction {
|
|||||||
'href' => common_local_url('noticesearchrss',
|
'href' => common_local_url('noticesearchrss',
|
||||||
array('q' => $q)),
|
array('q' => $q)),
|
||||||
'type' => 'application/rss+xml',
|
'type' => 'application/rss+xml',
|
||||||
'title' => _t('Search Stream Feed')));
|
'title' => _('Search Stream Feed')));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -124,14 +124,14 @@ class NoticesearchAction extends SearchAction {
|
|||||||
common_text(' (');
|
common_text(' (');
|
||||||
common_element('a', array('class' => 'inreplyto',
|
common_element('a', array('class' => 'inreplyto',
|
||||||
'href' => $replyurl),
|
'href' => $replyurl),
|
||||||
_t('in reply to...'));
|
_('in reply to...'));
|
||||||
common_text(')');
|
common_text(')');
|
||||||
}
|
}
|
||||||
common_element_start('a',
|
common_element_start('a',
|
||||||
array('href' => common_local_url('newnotice',
|
array('href' => common_local_url('newnotice',
|
||||||
array('replyto' => $profile->nickname)),
|
array('replyto' => $profile->nickname)),
|
||||||
'onclick' => 'doreply("'.$profile->nickname.'"); return false',
|
'onclick' => 'doreply("'.$profile->nickname.'"); return false',
|
||||||
'title' => _t('reply'),
|
'title' => _('reply'),
|
||||||
'class' => 'replybutton'));
|
'class' => 'replybutton'));
|
||||||
common_raw('→');
|
common_raw('→');
|
||||||
common_element_end('a');
|
common_element_end('a');
|
||||||
|
@ -61,9 +61,9 @@ class NoticesearchrssAction extends Rss10Action {
|
|||||||
global $config;
|
global $config;
|
||||||
$q = $this->trimmed('q');
|
$q = $this->trimmed('q');
|
||||||
$c = array('url' => common_local_url('noticesearchrss', array('q' => $q)),
|
$c = array('url' => common_local_url('noticesearchrss', array('q' => $q)),
|
||||||
'title' => $config['site']['name'] . _t(' Search Stream for "' . $q . '"'),
|
'title' => $config['site']['name'] . sprintf(_(' Search Stream for "%s"'), $q),
|
||||||
'link' => common_local_url('noticesearch', array('q' => $q)),
|
'link' => common_local_url('noticesearch', array('q' => $q)),
|
||||||
'description' => _t('All updates matching search term "') . $q . '"');
|
'description' => sprintf(_('All updates matching search term "%s"'), $q));
|
||||||
return $c;
|
return $c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,12 +25,12 @@ define(PROFILES_PER_PAGE, 10);
|
|||||||
class PeoplesearchAction extends SearchAction {
|
class PeoplesearchAction extends SearchAction {
|
||||||
|
|
||||||
function get_instructions() {
|
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.');
|
'Separate the terms by spaces; they must be 3 characters or more.');
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_title() {
|
function get_title() {
|
||||||
return _t('People search');
|
return _('People search');
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_results($q, $page) {
|
function show_results($q, $page) {
|
||||||
@ -61,7 +61,7 @@ class PeoplesearchAction extends SearchAction {
|
|||||||
}
|
}
|
||||||
common_element_end('ul');
|
common_element_end('ul');
|
||||||
} else {
|
} else {
|
||||||
common_element('p', 'error', _t('No results'));
|
common_element('p', 'error', _('No results'));
|
||||||
}
|
}
|
||||||
|
|
||||||
common_pagination($page > 1, $cnt > PROFILES_PER_PAGE,
|
common_pagination($page > 1, $cnt > PROFILES_PER_PAGE,
|
||||||
|
@ -81,8 +81,8 @@ class Action { // lawsuit
|
|||||||
common_element_start('ul', array('id' => 'nav_views'));
|
common_element_start('ul', array('id' => 'nav_views'));
|
||||||
foreach ($menu as $menuaction => $menudesc) {
|
foreach ($menu as $menuaction => $menudesc) {
|
||||||
common_menu_item(common_local_url($menuaction),
|
common_menu_item(common_local_url($menuaction),
|
||||||
_t($menudesc[0]),
|
_($menudesc[0]),
|
||||||
_t($menudesc[1]),
|
_($menudesc[1]),
|
||||||
$action == $menuaction);
|
$action == $menuaction);
|
||||||
}
|
}
|
||||||
common_element_end('ul');
|
common_element_end('ul');
|
||||||
|
Loading…
Reference in New Issue
Block a user