forked from GNUsocial/gnu-social
Fix translator documentation issues.
This commit is contained in:
parent
cffbda8183
commit
3d36c755a3
@ -104,7 +104,7 @@ class ActivityImporter extends QueueHandler
|
|||||||
if ($activity->objects[0]->id == $author->id) {
|
if ($activity->objects[0]->id == $author->id) {
|
||||||
if (!$this->trusted) {
|
if (!$this->trusted) {
|
||||||
// TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
// TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
throw new ClientException(_("Cannot force subscription for untrusted user."));
|
throw new ClientException(_('Cannot force subscription for untrusted user.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$other = $activity->actor;
|
$other = $activity->actor;
|
||||||
@ -113,8 +113,8 @@ class ActivityImporter extends QueueHandler
|
|||||||
if (!empty($otherUser)) {
|
if (!empty($otherUser)) {
|
||||||
$otherProfile = $otherUser->getProfile();
|
$otherProfile = $otherUser->getProfile();
|
||||||
} else {
|
} else {
|
||||||
// TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
// TRANS: Client exception thrown when trying to force a remote user to subscribe.
|
||||||
throw new Exception(_("Cannot force remote user to subscribe."));
|
throw new Exception(_('Cannot force remote user to subscribe.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
// XXX: don't do this for untrusted input!
|
// XXX: don't do this for untrusted input!
|
||||||
@ -129,13 +129,13 @@ class ActivityImporter extends QueueHandler
|
|||||||
|
|
||||||
if (empty($otherProfile)) {
|
if (empty($otherProfile)) {
|
||||||
// TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
// TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
throw new ClientException(_("Unknown profile."));
|
throw new ClientException(_('Unknown profile.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
Subscription::start($profile, $otherProfile);
|
Subscription::start($profile, $otherProfile);
|
||||||
} else {
|
} else {
|
||||||
// TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
// TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
throw new Exception(_("This activity seems unrelated to our user."));
|
throw new Exception(_('This activity seems unrelated to our user.'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -151,7 +151,7 @@ class ActivityImporter extends QueueHandler
|
|||||||
$oprofile = Ostatus_profile::ensureActivityObjectProfile($activity->objects[0]);
|
$oprofile = Ostatus_profile::ensureActivityObjectProfile($activity->objects[0]);
|
||||||
if (!$oprofile->isGroup()) {
|
if (!$oprofile->isGroup()) {
|
||||||
// TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
// TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
throw new ClientException(_("Remote profile is not a group!"));
|
throw new ClientException(_('Remote profile is not a group!'));
|
||||||
}
|
}
|
||||||
$group = $oprofile->localGroup();
|
$group = $oprofile->localGroup();
|
||||||
}
|
}
|
||||||
@ -201,7 +201,7 @@ class ActivityImporter extends QueueHandler
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
// TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
throw new ClientException(_("Not overwriting author info for non-trusted user."));
|
throw new ClientException(_('Not overwriting author info for non-trusted user.'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -217,7 +217,7 @@ class ActivityImporter extends QueueHandler
|
|||||||
// @fixme fetch from $sourceUrl?
|
// @fixme fetch from $sourceUrl?
|
||||||
// TRANS: Client exception thrown when trying to import a notice without content.
|
// TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
// TRANS: %s is the notice URI.
|
// TRANS: %s is the notice URI.
|
||||||
throw new ClientException(sprintf(_("No content for notice %s."),$sourceUri));
|
throw new ClientException(sprintf(_('No content for notice %s.'),$sourceUri));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get (safe!) HTML and text versions of the content
|
// Get (safe!) HTML and text versions of the content
|
||||||
|
@ -81,7 +81,7 @@ class ActivityMover extends QueueHandler
|
|||||||
function moveActivity($act, $sink, $user, $remote)
|
function moveActivity($act, $sink, $user, $remote)
|
||||||
{
|
{
|
||||||
if (empty($user)) {
|
if (empty($user)) {
|
||||||
// TRANS: Exception thrown if no user is provided. %s is a user ID.
|
// TRANS: Exception thrown if a non-existing user is provided. %s is a user ID.
|
||||||
throw new Exception(sprintf(_('No such user "%s".'),$act->actor->id));
|
throw new Exception(sprintf(_('No such user "%s".'),$act->actor->id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user