Update translator documentation.
This commit is contained in:
parent
4292fa1fc4
commit
f64c312942
|
@ -205,7 +205,7 @@ class ProfilesettingsAction extends SettingsAction
|
||||||
}
|
}
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
$this->checkbox('private_stream',
|
$this->checkbox('private_stream',
|
||||||
// TRANS:
|
// TRANS: Checkbox label in profile settings.
|
||||||
_('Make updates visible only to my followers'),
|
_('Make updates visible only to my followers'),
|
||||||
($this->arg('private_stream')) ?
|
($this->arg('private_stream')) ?
|
||||||
$this->boolean('private_stream') : $user->private_stream);
|
$this->boolean('private_stream') : $user->private_stream);
|
||||||
|
|
|
@ -351,6 +351,7 @@ class Notice extends Memcached_DataObject
|
||||||
$repeat = Notice::staticGet('id', $repeat_of);
|
$repeat = Notice::staticGet('id', $repeat_of);
|
||||||
|
|
||||||
if (empty($repeat)) {
|
if (empty($repeat)) {
|
||||||
|
// TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice.
|
||||||
throw new ClientException(_('Cannot repeat; original notice is missing or deleted.'));
|
throw new ClientException(_('Cannot repeat; original notice is missing or deleted.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user