From ab8c166d49433c445d1de186c8e876c41583e927 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 20 Aug 2011 20:33:16 +0200 Subject: [PATCH] Add translator documentation. --- actions/showapplication.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/actions/showapplication.php b/actions/showapplication.php index a40e3d9905..adfd17a06c 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -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');