Add translator documentation

* approved message had not been i18n-ed
* also had to i18n 'read-only' and 'read-write'
This commit is contained in:
Siebrand Mazeland 2010-04-10 22:49:33 +02:00
parent 1661be6851
commit 204cf0b96b
1 changed files with 11 additions and 6 deletions

View File

@ -88,7 +88,6 @@ class ApplicationList extends Widget
function showApplication() function showApplication()
{ {
$user = common_current_user(); $user = common_current_user();
$this->out->elementStart('li', array('class' => 'application', $this->out->elementStart('li', array('class' => 'application',
@ -133,11 +132,16 @@ class ApplicationList extends Widget
$this->out->elementStart('li'); $this->out->elementStart('li');
$access = ($this->application->access_type & Oauth_application::$writeAccess) // TRANS: Application access type
? 'read-write' : 'read-only'; $readWriteText = _('read-write');
// TRANS: Application access type
$readOnlyText = _('read-only');
$txt = 'Approved ' . common_date_string($appUser->modified) . $access = ($this->application->access_type & Oauth_application::$writeAccess)
" - $access access."; ? $readWriteText : $readOnlyText;
$modifiedDate = common_date_string($appUser->modified);
// TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only)
$txt = sprintf(_('Approved %1$s - "%2$s" access.'),$modifiedDate,$access);
$this->out->raw($txt); $this->out->raw($txt);
$this->out->elementEnd('li'); $this->out->elementEnd('li');
@ -151,7 +155,8 @@ class ApplicationList extends Widget
$this->out->elementStart('fieldset'); $this->out->elementStart('fieldset');
$this->out->hidden('id', $this->application->id); $this->out->hidden('id', $this->application->id);
$this->out->hidden('token', common_session_token()); $this->out->hidden('token', common_session_token());
$this->out->submit('revoke', _('Revoke')); // TRANS: Button label
$this->out->submit('revoke', _m('BUTTON','Revoke'));
$this->out->elementEnd('fieldset'); $this->out->elementEnd('fieldset');
$this->out->elementEnd('form'); $this->out->elementEnd('form');
$this->out->elementEnd('li'); $this->out->elementEnd('li');