Add translator documentation.
This commit is contained in:
parent
1fa689e913
commit
ab8c166d49
|
@ -253,14 +253,19 @@ class ShowApplicationAction extends Action
|
||||||
$this->element('h2', null, _('Application info'));
|
$this->element('h2', null, _('Application info'));
|
||||||
|
|
||||||
$this->elementStart('dl');
|
$this->elementStart('dl');
|
||||||
|
// TRANS: Field label on application page.
|
||||||
$this->element('dt', null, _('Consumer key'));
|
$this->element('dt', null, _('Consumer key'));
|
||||||
$this->element('dd', null, $consumer->consumer_key);
|
$this->element('dd', null, $consumer->consumer_key);
|
||||||
|
// TRANS: Field label on application page.
|
||||||
$this->element('dt', null, _('Consumer secret'));
|
$this->element('dt', null, _('Consumer secret'));
|
||||||
$this->element('dd', null, $consumer->consumer_secret);
|
$this->element('dd', null, $consumer->consumer_secret);
|
||||||
|
// TRANS: Field label on application page.
|
||||||
$this->element('dt', null, _('Request token URL'));
|
$this->element('dt', null, _('Request token URL'));
|
||||||
$this->element('dd', null, common_local_url('ApiOauthRequestToken'));
|
$this->element('dd', null, common_local_url('ApiOauthRequestToken'));
|
||||||
|
// TRANS: Field label on application page.
|
||||||
$this->element('dt', null, _('Access token URL'));
|
$this->element('dt', null, _('Access token URL'));
|
||||||
$this->element('dd', null, common_local_url('ApiOauthAccessToken'));
|
$this->element('dd', null, common_local_url('ApiOauthAccessToken'));
|
||||||
|
// TRANS: Field label on application page.
|
||||||
$this->element('dt', null, _('Authorize URL'));
|
$this->element('dt', null, _('Authorize URL'));
|
||||||
$this->element('dd', null, common_local_url('ApiOauthAuthorize'));
|
$this->element('dd', null, common_local_url('ApiOauthAuthorize'));
|
||||||
$this->elementEnd('dl');
|
$this->elementEnd('dl');
|
||||||
|
|
Loading…
Reference in New Issue
Block a user