Update translator documentation.

This commit is contained in:
Siebrand Mazeland 2011-03-31 22:48:03 +02:00
parent 4292fa1fc4
commit f64c312942
2 changed files with 2 additions and 1 deletions

View File

@ -205,7 +205,7 @@ class ProfilesettingsAction extends SettingsAction
}
$this->elementStart('li');
$this->checkbox('private_stream',
// TRANS:
// TRANS: Checkbox label in profile settings.
_('Make updates visible only to my followers'),
($this->arg('private_stream')) ?
$this->boolean('private_stream') : $user->private_stream);

View File

@ -351,6 +351,7 @@ class Notice extends Memcached_DataObject
$repeat = Notice::staticGet('id', $repeat_of);
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.'));
}