L10n tweaks.

This commit is contained in:
Siebrand Mazeland 2011-04-01 22:35:23 +02:00
parent ade7172a25
commit bf75ae8f9b

View File

@ -123,7 +123,7 @@ class TwitterauthorizationAction extends Action
if ($this->arg('create')) { if ($this->arg('create')) {
if (!$this->boolean('license')) { if (!$this->boolean('license')) {
$this->showForm(_m('You can\'t register if you don\'t agree to the license.'), $this->showForm(_m('You cannot register if you do not agree to the license.'),
$this->trimmed('newname')); $this->trimmed('newname'));
return; return;
} }
@ -178,7 +178,7 @@ class TwitterauthorizationAction extends Action
); );
common_log(LOG_INFO, 'Twitter bridge - ' . $msg); common_log(LOG_INFO, 'Twitter bridge - ' . $msg);
$this->serverError( $this->serverError(
_m('Couldn\'t link your Twitter account.') _m('Could not link your Twitter account.')
); );
} }
@ -389,7 +389,7 @@ class TwitterauthorizationAction extends Action
$this->elementStart('li'); $this->elementStart('li');
$this->input('newname', _m('New nickname'), $this->input('newname', _m('New nickname'),
($this->username) ? $this->username : '', ($this->username) ? $this->username : '',
_m('1-64 lowercase letters or numbers, no punctuation or spaces')); _m('1-64 lowercase letters or numbers, no punctuation or spaces.'));
$this->elementEnd('li'); $this->elementEnd('li');
$this->elementStart('li'); $this->elementStart('li');
$this->input('email', _m('LABEL','Email'), $this->getEmail(), $this->input('email', _m('LABEL','Email'), $this->getEmail(),
@ -678,6 +678,4 @@ class TwitterauthorizationAction extends Action
} }
return true; return true;
} }
} }