Update translator documentation.
Update L10n. Update whitespace.
This commit is contained in:
parent
4651c9d94a
commit
558a512ac7
@ -110,6 +110,7 @@ ENDOFPIWIK;
|
|||||||
'author' => 'Tobias Diekershoff, Evan Prodromou',
|
'author' => 'Tobias Diekershoff, Evan Prodromou',
|
||||||
'homepage' => 'http://status.net/wiki/Plugin:Piwik',
|
'homepage' => 'http://status.net/wiki/Plugin:Piwik',
|
||||||
'rawdescription' =>
|
'rawdescription' =>
|
||||||
|
// TRANS: Plugin description.
|
||||||
_m('Use <a href="http://piwik.org/">Piwik</a> Open Source web analytics software.'));
|
_m('Use <a href="http://piwik.org/">Piwik</a> Open Source web analytics software.'));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -242,7 +242,7 @@ class Poll extends Managed_DataObject
|
|||||||
$p->uri);
|
$p->uri);
|
||||||
$link = '<a href="' . htmlspecialchars($p->uri) . '">' . htmlspecialchars($question) . '</a>';
|
$link = '<a href="' . htmlspecialchars($p->uri) . '">' . htmlspecialchars($question) . '</a>';
|
||||||
// TRANS: Rendered version of the notice content creating a poll.
|
// TRANS: Rendered version of the notice content creating a poll.
|
||||||
// TRANS: %s a link to the poll with the question as link description.
|
// TRANS: %s is a link to the poll with the question as link description.
|
||||||
$rendered = sprintf(_m('Poll: %s'), $link);
|
$rendered = sprintf(_m('Poll: %s'), $link);
|
||||||
|
|
||||||
$tags = array('poll');
|
$tags = array('poll');
|
||||||
|
@ -227,12 +227,12 @@ class PollPlugin extends MicroAppPlugin
|
|||||||
|
|
||||||
if (!$pollUri) {
|
if (!$pollUri) {
|
||||||
// TRANS: Exception thrown trying to respond to a poll without a poll reference.
|
// TRANS: Exception thrown trying to respond to a poll without a poll reference.
|
||||||
throw new Exception(_m('Invalid poll response: no poll reference.'));
|
throw new Exception(_m('Invalid poll response: No poll reference.'));
|
||||||
}
|
}
|
||||||
$poll = Poll::staticGet('uri', $pollUri);
|
$poll = Poll::staticGet('uri', $pollUri);
|
||||||
if (!$poll) {
|
if (!$poll) {
|
||||||
// TRANS: Exception thrown trying to respond to a non-existing poll.
|
// TRANS: Exception thrown trying to respond to a non-existing poll.
|
||||||
throw new Exception(_m('Invalid poll response: poll is unknown.'));
|
throw new Exception(_m('Invalid poll response: Poll is unknown.'));
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
$notice = Poll_response::saveNew($profile, $poll, $selection, $options);
|
$notice = Poll_response::saveNew($profile, $poll, $selection, $options);
|
||||||
@ -258,7 +258,7 @@ class PollPlugin extends MicroAppPlugin
|
|||||||
return $this->activityObjectFromNoticePollResponse($notice);
|
return $this->activityObjectFromNoticePollResponse($notice);
|
||||||
default:
|
default:
|
||||||
// TRANS: Exception thrown when performing an unexpected action on a poll.
|
// TRANS: Exception thrown when performing an unexpected action on a poll.
|
||||||
// TRANS: %s is the unpexpected object type.
|
// TRANS: %s is the unexpected object type.
|
||||||
throw new Exception(sprintf(_m('Unexpected type for poll plugin: %s.'), $notice->object_type));
|
throw new Exception(sprintf(_m('Unexpected type for poll plugin: %s.'), $notice->object_type));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -416,7 +416,7 @@ class PollPlugin extends MicroAppPlugin
|
|||||||
return $this->showNoticePollResponse($notice, $out);
|
return $this->showNoticePollResponse($notice, $out);
|
||||||
default:
|
default:
|
||||||
// TRANS: Exception thrown when performing an unexpected action on a poll.
|
// TRANS: Exception thrown when performing an unexpected action on a poll.
|
||||||
// TRANS: %s is the unpexpected object type.
|
// TRANS: %s is the unexpected object type.
|
||||||
throw new Exception(sprintf(_m('Unexpected type for poll plugin: %s.'), $notice->object_type));
|
throw new Exception(sprintf(_m('Unexpected type for poll plugin: %s.'), $notice->object_type));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -444,6 +444,7 @@ class PollPlugin extends MicroAppPlugin
|
|||||||
$form->show();
|
$form->show();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
// TRANS: Error text displayed if no poll data could be found.
|
||||||
$out->text(_m('Poll data is missing'));
|
$out->text(_m('Poll data is missing'));
|
||||||
}
|
}
|
||||||
$out->elementEnd('div');
|
$out->elementEnd('div');
|
||||||
|
@ -81,7 +81,7 @@ class RespondPollAction extends Action
|
|||||||
|
|
||||||
if (empty($this->user)) {
|
if (empty($this->user)) {
|
||||||
// TRANS: Client exception thrown trying to respond to a poll while not logged in.
|
// TRANS: Client exception thrown trying to respond to a poll while not logged in.
|
||||||
throw new ClientException(_m("You must be logged in to respond to a poll."),
|
throw new ClientException(_m('You must be logged in to respond to a poll.'),
|
||||||
403);
|
403);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,6 +55,7 @@ class PostDebugPlugin extends Plugin
|
|||||||
'author' => 'Brion Vibber',
|
'author' => 'Brion Vibber',
|
||||||
'homepage' => 'http://status.net/wiki/Plugin:PostDebug',
|
'homepage' => 'http://status.net/wiki/Plugin:PostDebug',
|
||||||
'rawdescription' =>
|
'rawdescription' =>
|
||||||
|
// TRANS: Plugin description.
|
||||||
_m('Debugging tool to record request details on POST.'));
|
_m('Debugging tool to record request details on POST.'));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -145,6 +146,4 @@ class PostDebugPlugin extends Plugin
|
|||||||
}
|
}
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user