Merge remote branch 'origin/1.0.x' into 1.0.x
This commit is contained in:
commit
558bfb8c86
@ -267,7 +267,7 @@ class PollPlugin extends MicroAppPlugin
|
|||||||
{
|
{
|
||||||
$object = new ActivityObject();
|
$object = new ActivityObject();
|
||||||
$object->id = $notice->uri;
|
$object->id = $notice->uri;
|
||||||
$object->type = self::POLL_OBJECT;
|
$object->type = self::POLL_RESPONSE_OBJECT;
|
||||||
$object->title = $notice->content;
|
$object->title = $notice->content;
|
||||||
$object->summary = $notice->content;
|
$object->summary = $notice->content;
|
||||||
$object->link = $notice->bestUrl();
|
$object->link = $notice->bestUrl();
|
||||||
@ -290,7 +290,7 @@ class PollPlugin extends MicroAppPlugin
|
|||||||
{
|
{
|
||||||
$object = new ActivityObject();
|
$object = new ActivityObject();
|
||||||
$object->id = $notice->uri;
|
$object->id = $notice->uri;
|
||||||
$object->type = self::POLL_RESPONSE_OBJECT;
|
$object->type = self::POLL_OBJECT;
|
||||||
$object->title = $notice->content;
|
$object->title = $notice->content;
|
||||||
$object->summary = $notice->content;
|
$object->summary = $notice->content;
|
||||||
$object->link = $notice->bestUrl();
|
$object->link = $notice->bestUrl();
|
||||||
|
@ -115,13 +115,13 @@ class SearchSubsAction extends GalleryAction
|
|||||||
$current_user = common_current_user();
|
$current_user = common_current_user();
|
||||||
if ($this->user->id === $current_user->id) {
|
if ($this->user->id === $current_user->id) {
|
||||||
// TRANS: Search subscription list text when the logged in user has no search subscriptions.
|
// TRANS: Search subscription list text when the logged in user has no search subscriptions.
|
||||||
$message = _('You\'re not subscribed to any text searches right now. You can push the "Subscribe" button ' .
|
$message = _m('You are not subscribed to any text searches right now. You can push the "Subscribe" button ' .
|
||||||
'on any notice text search to automatically receive any public messages on this site that match that ' .
|
'on any notice text search to automatically receive any public messages on this site that match that ' .
|
||||||
'search, even if you\'re not subscribed to the poster.');
|
'search, even if you are not subscribed to the poster.');
|
||||||
} else {
|
} else {
|
||||||
// TRANS: Search subscription list text when looking at the subscriptions for a of a user other
|
// TRANS: Search subscription list text when looking at the subscriptions for a of a user other
|
||||||
// TRANS: than the logged in user that has no search subscriptions. %s is the user nickname.
|
// TRANS: than the logged in user that has no search subscriptions. %s is the user nickname.
|
||||||
$message = sprintf(_('%s is not subscribed to any searches.'), $this->user->nickname);
|
$message = sprintf(_m('%s is not subscribed to any searches.'), $this->user->nickname);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -165,7 +165,9 @@ class SearchSubscriptionsListItem extends SubscriptionListItem
|
|||||||
}
|
}
|
||||||
|
|
||||||
$url = common_local_url('noticesearch', array('q' => $search));
|
$url = common_local_url('noticesearch', array('q' => $search));
|
||||||
$linkline = sprintf(_m('"<a href="%s">%s</a>" since %s'),
|
// TRANS: Search subscription list item. %1$s is a URL to a notice search,
|
||||||
|
// TRANS: %2$s are the search criteria, %3$s is a datestring.
|
||||||
|
$linkline = sprintf(_m('"<a href="%1$s">%2$s</a>" since %3$s'),
|
||||||
htmlspecialchars($url),
|
htmlspecialchars($url),
|
||||||
htmlspecialchars($search),
|
htmlspecialchars($search),
|
||||||
common_date_string($searchsub->created));
|
common_date_string($searchsub->created));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user