]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
* translator documentation added.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 23 Oct 2010 17:20:51 +0000 (19:20 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 23 Oct 2010 17:20:51 +0000 (19:20 +0200)
* superfluous whitespace removed.

actions/apioauthauthorize.php
actions/oauthappssettings.php
classes/Status_network_tag.php

index b83582702ecf43bfd06771144d46025f375c96aa..f2f1071d9b147ab02969f005fc2ce103ffb57580 100644 (file)
@@ -579,7 +579,7 @@ class ApiOauthAuthorizeAction extends Action
         $title = sprintf(
            // TRANS: Header of user notification after authorising an application access to a profile.
            // TRANS: %s is the authorised application name.
-            _("You have successfully authorized %s."),
+            _('You have successfully authorized %s.'),
             $this->app->name
         );
 
index e75f014ab5186da0819d00375543f9e4460097c1..c98c90dbf8353549065a520e532ddc5e33259f0a 100644 (file)
@@ -56,6 +56,7 @@ class OauthappssettingsAction extends SettingsAction
         $this->page = ($this->arg('page')) ? ($this->arg('page') + 0) : 1;
 
         if (!common_logged_in()) {
+            // TRANS: Message displayed to an anonymous user trying to view OAuth application list.
             $this->clientError(_('You must be logged in to list your applications.'));
             return false;
         }
@@ -71,6 +72,7 @@ class OauthappssettingsAction extends SettingsAction
 
     function title()
     {
+        // TRANS: Page title for OAuth applications
         return _('OAuth applications');
     }
 
@@ -82,6 +84,7 @@ class OauthappssettingsAction extends SettingsAction
 
     function getInstructions()
     {
+        // TRANS: Page instructions for OAuth applications
         return _('Applications you have registered');
     }
 
@@ -120,6 +123,7 @@ class OauthappssettingsAction extends SettingsAction
             array('href' => common_local_url('newapplication'),
                   'class' => 'more'
             ),
+            // TRANS: Link description to add a new OAuth application.
             'Register a new application');
         $this->elementEnd('p');
 
@@ -133,6 +137,7 @@ class OauthappssettingsAction extends SettingsAction
 
     function showEmptyListMessage()
     {
+        // TRANS: Empty list message on page with OAuth applications.
         $message = sprintf(_('You have not registered any applications yet.'));
 
         $this->elementStart('div', 'guide');
@@ -163,5 +168,4 @@ class OauthappssettingsAction extends SettingsAction
         }
 
     }
-
 }
index 3398ac8c8496f6f6b52777c61fc28dcbb1327d1a..2273ecb2e5cf90fb08d96c30ba3ca65996673474 100644 (file)
@@ -43,7 +43,6 @@ class Status_network_tag extends Safe_DataObject
         $this->_connect();
     }
 
-
     /* Static get */
     function staticGet($k,$v=null)
     {