]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Thu, 31 Mar 2011 20:48:03 +0000 (22:48 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Thu, 31 Mar 2011 20:48:03 +0000 (22:48 +0200)
actions/profilesettings.php
classes/Notice.php

index 86afc23af2074c215567717122abdb69ba4fb8a1..fbaddaa5f9cd04e6c61d5165be81dd944b94248d 100644 (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);
index 1b21819fbd59edbe5845e19d18c69a86c2bcd6f7..2fac7b9e2cda73d544d8f03dc4c697497e95c6f6 100644 (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.'));
             }