]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 20 Aug 2011 18:33:16 +0000 (20:33 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 20 Aug 2011 18:33:16 +0000 (20:33 +0200)
actions/showapplication.php

index a40e3d9905e31c87084133e4779d86303d731a2d..adfd17a06cd5fbfeb9de95d92a1451028fc3ccb8 100644 (file)
@@ -253,14 +253,19 @@ class ShowApplicationAction extends Action
         $this->element('h2', null, _('Application info'));
 
         $this->elementStart('dl');
+        // TRANS: Field label on application page.
         $this->element('dt', null, _('Consumer key'));
         $this->element('dd', null, $consumer->consumer_key);
+        // TRANS: Field label on application page.
         $this->element('dt', null, _('Consumer secret'));
         $this->element('dd', null, $consumer->consumer_secret);
+        // TRANS: Field label on application page.
         $this->element('dt', null, _('Request token URL'));
         $this->element('dd', null, common_local_url('ApiOauthRequestToken'));
+        // TRANS: Field label on application page.
         $this->element('dt', null, _('Access token URL'));
         $this->element('dd', null, common_local_url('ApiOauthAccessToken'));
+        // TRANS: Field label on application page.
         $this->element('dt', null, _('Authorize URL'));
         $this->element('dd', null, common_local_url('ApiOauthAuthorize'));
         $this->elementEnd('dl');