]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Translator documentation updated/added.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 3 Apr 2011 22:41:21 +0000 (00:41 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 3 Apr 2011 22:41:48 +0000 (00:41 +0200)
i18n tweaks.
Superfluous whitespace removed.

YAY! All StatusNet core messages in the 1.0.x branch have been documented at this point in time!!!

32 files changed:
actions/cancelsubscription.php
actions/deletenotice.php
actions/disfavor.php
actions/favor.php
actions/groupblock.php
actions/groupunblock.php
actions/logout.php
actions/makeadmin.php
actions/newmessage.php
actions/newnotice.php
actions/nudge.php
actions/pluginenable.php
actions/subedit.php
actions/subscribe.php
actions/tagother.php
actions/unsubscribe.php
index.php
lib/adminpanelaction.php
lib/deletegroupform.php
lib/joinform.php
lib/jsonsearchresultslist.php
lib/noticeform.php
lib/noticelist.php
lib/noticelistitem.php
lib/primarynav.php
lib/profileformaction.php
lib/settingsaction.php
plugins/OpenID/finishaddopenid.php
plugins/SearchSub/searchsubaction.php
plugins/SubMirror/actions/basemirror.php
plugins/TagSub/tagsubaction.php
plugins/UserFlag/adminprofileflag.php

index 30726e0d0415ab3da4d6513d740f0184e38bb229..226fd0822e803dd44affe97ec015a1e3c45c5fe2 100644 (file)
@@ -53,7 +53,7 @@ class CancelsubscriptionAction extends Action
             StatusNet::setApi(true);
         }
         if (!common_logged_in()) {
-            // TRANS: Client error displayed when trying to leave a group while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return;
         }
index 9032de897416f272dc53bce51d568d7b147810c9..e3690c51d4a44891829f504c09e664d8c137dbfd 100644 (file)
@@ -48,7 +48,7 @@ class DeletenoticeAction extends Action
         $this->user   = common_current_user();
 
         if (!$this->user) {
-            // TRANS: Error message displayed trying to delete a notice while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             common_user_error(_('Not logged in.'));
             exit;
         }
index 39598d60bfd6aa08e551a4af056aa6c5ea37bd24..e9fc17c5b730fd75b9faf3baaf918859d39b48ff 100644 (file)
@@ -57,7 +57,7 @@ class DisfavorAction extends Action
     {
         parent::handle($args);
         if (!common_logged_in()) {
-            // TRANS: Client error displayed when trying to remove a favorite while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return;
         }
index 494648f67169f0b71629f429b4ec9988d28a7f85..39d7735d0085a4a43cbab0d9bf0ef92f9a0adb6f 100644 (file)
@@ -58,7 +58,7 @@ class FavorAction extends Action
     {
         parent::handle($args);
         if (!common_logged_in()) {
-            // TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return;
         }
index 3f8cb90e9e7528af4bdfb7eed69b10c1344f5576..a597d47c29dbc67eaa0f6ea6bfcd4c631826e004 100644 (file)
@@ -56,7 +56,7 @@ class GroupblockAction extends RedirectingAction
     {
         parent::prepare($args);
         if (!common_logged_in()) {
-            // TRANS: Client error displayed trying to block a user from a group while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return false;
         }
index 7b92e83f718cc6e8fdbfb7dba3ff314fa1fb48b4..c14ec04adc3dbeec9b0582c8ff66db5946b7c886 100644 (file)
@@ -56,7 +56,7 @@ class GroupunblockAction extends Action
     {
         parent::prepare($args);
         if (!common_logged_in()) {
-            // TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return false;
         }
index 8e903db22119ae8f69fb813fbb6bf8bff415d8ed..567d808cd1f7e38863f77d1087dc8cc68758f7b9 100644 (file)
@@ -65,7 +65,7 @@ class LogoutAction extends Action
     {
         parent::handle($args);
         if (!common_logged_in()) {
-            // TRANS: Client error displayed trying to log out when not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
         } else {
             if (Event::handle('StartLogout', array($this))) {
index 0ca537f75579b0c8841a8d0a75ff596200516dfd..8ec8a7ce0c777dd900fef77f420d6e7cd7d60463 100644 (file)
@@ -58,7 +58,7 @@ class MakeadminAction extends RedirectingAction
     {
         parent::prepare($args);
         if (!common_logged_in()) {
-            // TRANS: Client error displayed when trying to access the "make admin" page while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return false;
         }
index 8f185b55b582ce56d1a2dfe21d8469b55a3ee846..dd7c5357ba0f2980f3b13de4a56b1be217271bd3 100644 (file)
@@ -85,7 +85,7 @@ class NewmessageAction extends Action
         parent::handle($args);
 
         if (!common_logged_in()) {
-            // TRANS: Client error displayed trying to create a new direct message while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'), 403);
         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->saveNewMessage();
index 97282e215d16d2630a136cc8e0a75f1189116ea8..a8a5fa932fd0305e652343ce1bd3cbe273847a79 100644 (file)
@@ -64,7 +64,7 @@ class NewnoticeAction extends Action
     function title()
     {
         // TRANS: Page title for sending a new notice.
-        return _('New notice');
+        return _m('TITLE','New notice');
     }
 
     /**
@@ -83,7 +83,7 @@ class NewnoticeAction extends Action
     function handle($args)
     {
         if (!common_logged_in()) {
-            // TRANS: Client error displayed trying to send a notice while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             // check for this before token since all POST and FILES data
@@ -289,7 +289,8 @@ class NewnoticeAction extends Action
     {
         $this->startHTML('text/xml;charset=utf-8', true);
         $this->elementStart('head');
-        $this->element('title', null, _('New notice'));
+        // TRANS: Title for form to send a new notice.
+        $this->element('title', null, _m('TITLE','New notice'));
         $this->elementEnd('head');
         $this->elementStart('body');
 
index 401285b9f30febfe2816c23788f0a083e41d1f13..a44915a2d69955a7692547c164d1ecc34d81c5e3 100644 (file)
@@ -60,7 +60,7 @@ class NudgeAction extends Action
         parent::handle($args);
 
         if (!common_logged_in()) {
-            // TRANS: Client error displayed trying to nudge a user without being logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return;
         }
index 4caa6baf37e5f161d3eeabdf4b678250aafb6380..156a604cf060ed64008795f00b4c82af110d53f2 100644 (file)
@@ -95,7 +95,7 @@ class PluginEnableAction extends Action
         $this->user = common_current_user();
 
         if (empty($this->user)) {
-            // TRANS: Client error displayed when trying to enable or disable a plugin while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return false;
         }
index f8b22d72b901147b2ac7e9f1e84f8c02be9cd8c5..7439904af0dd72e6fd118b2444661f4bc3752e83 100644 (file)
@@ -29,7 +29,7 @@ class SubeditAction extends Action
         parent::prepare($args);
 
         if (!common_logged_in()) {
-            // TRANS: Client error displayed trying a change a subscription while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return false;
         }
index fad153fc6e39f1f0110775527eabdce15717f970..b8c1cdd8f78bbe3c663dda13f48b706d14155242 100644 (file)
@@ -94,7 +94,7 @@ class SubscribeAction extends Action
         $this->user = common_current_user();
 
         if (empty($this->user)) {
-            // TRANS: Client error displayed trying to subscribe when not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return false;
         }
index 6d63ea5b5e0b6f7ac0480b9a3da549bf479aa05e..be1aae20eb38c76c5487f75e29823970caa1c14a 100644 (file)
@@ -31,7 +31,7 @@ class TagotherAction extends Action
     {
         parent::prepare($args);
         if (!common_logged_in()) {
-            // TRANS: Client error displayed on user tag page when trying to add tags while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'), 403);
             return false;
         }
index 73661a4f169795cf46e24521c222e8e90e9c4aaf..ba9ecd8f00e5d46b3409181f89dc5bfcb4201995 100644 (file)
@@ -48,7 +48,7 @@ class UnsubscribeAction extends Action
     {
         parent::handle($args);
         if (!common_logged_in()) {
-            // TRANS: Client error displayed when trying to unsubscribe while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return;
         }
index c8d4fbee9b0f30a6e44325b2a6508cef02a377f8..8617780be7593ec8b6a9687a6395eaa7fed696d8 100644 (file)
--- a/index.php
+++ b/index.php
@@ -106,20 +106,22 @@ function handleError($error)
             $_cur = null;
 
             $msg = sprintf(
+                // TRANS: Database error message.
                 _(
-                    'The database for %s isn\'t responding correctly, '.
-                    'so the site won\'t work properly. '.
+                    'The database for %1$s is not responding correctly, '.
+                    'so the site will not work properly. '.
                     'The site admins probably know about the problem, '.
-                    'but you can contact them at %s to make sure. '.
+                    'but you can contact them at %2$s to make sure. '.
                     'Otherwise, wait a few minutes and try again.'
                 ),
                 common_config('site', 'name'),
                 common_config('site', 'email')
             );
         } else {
+            // TRANS: Error message.
             $msg = _(
                 'An important error occured, probably related to email setup. '.
-                'Check logfiles for more info..'
+                'Check logfiles for more info.'
             );
         }
 
@@ -127,6 +129,7 @@ function handleError($error)
         $dac->showPage();
 
     } catch (Exception $e) {
+        // TRANS: Error message.
         echo _('An error occurred.');
     }
     exit(-1);
@@ -250,6 +253,7 @@ function main()
 
     if (!_have_config()) {
         $msg = sprintf(
+            // TRANS: Error message displayed when there is no StatusNet configuration file.
             _(
                 "No configuration file found. Try running ".
                 "the installation program first."
@@ -281,6 +285,7 @@ function main()
     $args = $r->map($path);
 
     if (!$args) {
+        // TRANS: Error message displayed when trying to access a non-existing page.
         $cac = new ClientErrorAction(_('Unknown page'), 404);
         $cac->showPage();
         return;
@@ -335,6 +340,7 @@ function main()
     $action_class = ucfirst($action).'Action';
 
     if (!class_exists($action_class)) {
+        // TRANS: Error message displayed when trying to perform an undefined action.
         $cac = new ClientErrorAction(_('Unknown action'), 404);
         $cac->showPage();
     } else {
index 5e7e284b5cc52b18bac0d2e7ec8579b92b7a9444..5642c68d629139c382d8cdc2056a8894ea7eff98 100644 (file)
@@ -67,7 +67,7 @@ class AdminPanelAction extends Action
         // User must be logged in.
 
         if (!common_logged_in()) {
-            // TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return false;
         }
index 9d8012d33bb3e74b771b5b0ef15baccefa01e086..65bc34812e7039dbcc84dfc84632631b612d2ba0 100644 (file)
@@ -47,13 +47,11 @@ if (!defined('STATUSNET')) {
  * @see      UnsubscribeForm
  * @fixme    merge a bunch of this stuff with similar form types to reduce boilerplate
  */
-
 class DeleteGroupForm extends Form
 {
     /**
      * group for user to delete
      */
-
     var $group = null;
 
     /**
@@ -62,7 +60,6 @@ class DeleteGroupForm extends Form
      * @param HTMLOutputter $out   output channel
      * @param group         $group group to join
      */
-
     function __construct($out=null, $group=null)
     {
         parent::__construct($out);
@@ -75,7 +72,6 @@ class DeleteGroupForm extends Form
      *
      * @return string ID of the form
      */
-
     function id()
     {
         return 'group-delete-' . $this->group->id;
@@ -86,7 +82,6 @@ class DeleteGroupForm extends Form
      *
      * @return string of the form class
      */
-
     function formClass()
     {
         return 'form_group_delete';
@@ -97,7 +92,6 @@ class DeleteGroupForm extends Form
      *
      * @return string URL of the action
      */
-
     function action()
     {
         return common_local_url('deletegroup',
@@ -115,9 +109,9 @@ class DeleteGroupForm extends Form
      *
      * @return void
      */
-
     function formActions()
     {
-        $this->out->submit('submit', _('Delete'));
+        // TRANS: Button text for deleting a group.
+        $this->out->submit('submit', _m('BUTTON','Delete'));
     }
 }
index 0918133a554ea57cfbab5a7fa3a148caf8979ab7..a1a6189b089b65a1989175bbe62be670bbc7aabb 100644 (file)
@@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php';
  *
  * @see      UnsubscribeForm
  */
-
 class JoinForm extends Form
 {
     /**
      * group for user to join
      */
-
     var $group = null;
 
     /**
@@ -61,7 +59,6 @@ class JoinForm extends Form
      * @param HTMLOutputter $out   output channel
      * @param group         $group group to join
      */
-
     function __construct($out=null, $group=null)
     {
         parent::__construct($out);
@@ -74,7 +71,6 @@ class JoinForm extends Form
      *
      * @return string ID of the form
      */
-
     function id()
     {
         return 'group-join-' . $this->group->id;
@@ -85,7 +81,6 @@ class JoinForm extends Form
      *
      * @return string of the form class
      */
-
     function formClass()
     {
         return 'form_group_join ajax';
@@ -96,7 +91,6 @@ class JoinForm extends Form
      *
      * @return string URL of the action
      */
-
     function action()
     {
         return common_local_url('joingroup',
@@ -108,9 +102,9 @@ class JoinForm extends Form
      *
      * @return void
      */
-
     function formActions()
     {
-        $this->out->submit('submit', _('Join'));
+        // TRANS: Button text for joining a group.
+        $this->out->submit('submit', _m('BUTTON','Join'));
     }
 }
index 80d4036aad54694e851a4d84d6f2df215c5ddfe1..8bf3678d4fa12fc5fad55d875b55c8985b3e2fe4 100644 (file)
@@ -256,9 +256,9 @@ class ResultItem
      *
      * @return string a fully rendered source of the Notice
      */
-
     function getSourceLink($source)
     {
+        // Gettext translations for the below source types are available.
         $source_name = _($source);
         switch ($source) {
         case 'web':
@@ -277,5 +277,4 @@ class ResultItem
 
         return $source_name;
     }
-
 }
index ee4e2ca9670fe8dbf29b16f29dbe21641099641e..bc47dd1bd3b531621cf01b0c59950419165d7d7b 100644 (file)
@@ -256,6 +256,7 @@ class NoticeForm extends Form
                                                       'data-api' => common_local_url('geocode')));
 
                 // @fixme checkbox method allows no way to change the id without changing the name
+                //// TRANS: Checkbox label to allow sharing geo location in notices.
                 //$this->out->checkbox('notice_data-geo', _('Share my location'), true);
                 $this->out->elementStart('label', 'notice_data-geo');
                 $this->out->element('input', array(
index dbe2a0996f94b565aa7d1df7f8b4d89e3f0462cd..273bf3a231601f0dfcb26710bfa99c94cd8ff058 100644 (file)
@@ -53,7 +53,6 @@ require_once INSTALLDIR.'/lib/attachmentlist.php';
  * @see      NoticeListItem
  * @see      ProfileNoticeList
  */
-
 class NoticeList extends Widget
 {
     /** the current stream of notices being displayed. */
@@ -65,7 +64,6 @@ class NoticeList extends Widget
      *
      * @param Notice $notice stream of notices from DB_DataObject
      */
-
     function __construct($notice, $out=null)
     {
         parent::__construct($out);
@@ -80,11 +78,11 @@ class NoticeList extends Widget
      *
      * @return int count of notices listed.
      */
-
     function show()
     {
         $this->out->elementStart('div', array('id' =>'notices_primary'));
-        $this->out->element('h2', null, _('Notices'));
+        // TRANS: Header in notice list.
+        $this->out->element('h2', null, _m('HEADER','Notices'));
         $this->out->elementStart('ol', array('class' => 'notices xoxo'));
 
         $cnt = 0;
@@ -122,10 +120,8 @@ class NoticeList extends Widget
      *
      * @return NoticeListItem a list item for displaying the notice
      */
-
     function newListItem($notice)
     {
         return new NoticeListItem($notice, $this->out);
     }
 }
-
index aafa935140ada05de6588b2c278f5029e55e7060..9c509664060523c1964f379dcdc8720c0f0cfa3b 100644 (file)
@@ -420,6 +420,7 @@ class NoticeListItem extends Widget
         $ns = $this->notice->getSource();
 
         if ($ns) {
+            // TRANS: A possible notice source (web interface).
             $source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _m('SOURCE','web')) : _($ns->name);
             $this->out->text(' ');
             $this->out->elementStart('span', 'source');
index fc9f3c72035fceeac3c23a06eb1b57e4006bf8f9..7a9815af7b04309981ab5f426d7177ec5b2fa0c6 100644 (file)
@@ -57,7 +57,7 @@ class PrimaryNav extends Menu
                                 // TRANS: Menu item in primary navigation panel.
                                 _m('MENU','Settings'),
                                 // TRANS: Menu item title in primary navigation panel.
-                                _('Change your personal settings'),
+                                _('Change your personal settings.'),
                                 false,
                                 'nav_account');
                 if ($user->hasRight(Right::CONFIGURESITE)) {
@@ -65,14 +65,15 @@ class PrimaryNav extends Menu
                                     // TRANS: Menu item in primary navigation panel.
                                     _m('MENU','Admin'),
                                     // TRANS: Menu item title in primary navigation panel.
-                                    _('Site configuration'),
+                                    _('Site configuration.'),
                                     false,
                                     'nav_admin');
                 }
                 $this->action->menuItem(common_local_url('logout'),
                                 // TRANS: Menu item in primary navigation panel.
                                 _m('MENU','Logout'),
-                                _('Logout from the site'),
+                                // TRANS: Menu item title in primary navigation panel.
+                                _('Logout from the site.'),
                                 false,
                                 'nav_logout');
             } else {
@@ -80,7 +81,7 @@ class PrimaryNav extends Menu
                                 // TRANS: Menu item in primary navigation panel.
                                 _m('MENU','Login'),
                                 // TRANS: Menu item title in primary navigation panel.
-                                _('Login to the site'),
+                                _('Login to the site.'),
                                 false,
                                 'nav_login');
             }
@@ -90,7 +91,7 @@ class PrimaryNav extends Menu
                                 // TRANS: Menu item in primary navigation panel.
                                 _m('MENU','Search'),
                                 // TRANS: Menu item title in primary navigation panel.
-                                _('Search the site'),
+                                _('Search the site.'),
                                 false,
                                 'nav_search');
             }
index 57065282239c2e74702931c39fcb77af6712db14..b5f2e5d2a31232c3773d193dc2e9b3818fad4bc9 100644 (file)
@@ -59,7 +59,7 @@ class ProfileFormAction extends RedirectingAction
 
         if (!common_logged_in()) {
             if ($_SERVER['REQUEST_METHOD'] == 'POST') {
-                // TRANS: Client error displayed when trying to change user options while not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
                 $this->clientError(_('Not logged in.'));
             } else {
                 // Redirect to login.
index c7113d15c2b651c6ba07fe302b1973d3fdbf4bdb..c70a5ffa8d7a3fd7b4b52d8c1a1c605aff4012c5 100644 (file)
@@ -69,6 +69,7 @@ class SettingsAction extends CurrentUserDesignAction
     {
         parent::handle($args);
         if (!common_logged_in()) {
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
             return;
         } else if (!common_is_real_login()) {
index 6eb2f2d20637ec65c101326a090b55e3787b728a..c442aac989f120e9a674785fdc2e2859cc4394d8 100644 (file)
@@ -64,7 +64,7 @@ class FinishaddopenidAction extends Action
     {
         parent::handle($args);
         if (!common_logged_in()) {
-            // TRANS: Client error message
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_m('Not logged in.'));
         } else {
             $this->tryLogin();
index db1a0e9abcdeae6c4bd8ebe5a047ade35517d4e8..0234feef400c226da929f2e6d261ee8eed2b3448 100644 (file)
@@ -95,7 +95,7 @@ class SearchsubAction extends Action
         $this->user = common_current_user();
 
         if (empty($this->user)) {
-            // TRANS: Client error displayed trying to subscribe when not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_m('Not logged in.'));
             return false;
         }
index 6a9109d13ad5d27aeee9c341e686df6578e9d104..9a01e2ddb727ee9a4a779c0fef164f64079e4b97 100644 (file)
@@ -133,6 +133,7 @@ abstract class BaseMirrorAction extends Action
         $this->user = common_current_user();
 
         if (empty($this->user)) {
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_m('Not logged in.'));
             return false;
         }
index 83bf106bed0bc6626f417f9310af1499fc9b1e6c..18335f4cc8cd38b8f2b0f84cd5560a18bf5d986b 100644 (file)
@@ -95,7 +95,7 @@ class TagsubAction extends Action
         $this->user = common_current_user();
 
         if (empty($this->user)) {
-            // TRANS: Client error displayed trying to subscribe when not logged in.
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_m('Not logged in.'));
             return false;
         }
index 2f62fa7c41e8eb54afebdc98bb714ec18d724b6c..1aafa3c1bf4394255d7999210de0232b3ee86c78 100644 (file)
@@ -61,6 +61,7 @@ class AdminprofileflagAction extends Action
         // User must be logged in.
 
         if (!common_logged_in()) {
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_m('Not logged in.'));
             return;
         }