Update translator documentation and L10n.

This commit is contained in:
Siebrand Mazeland 2011-05-05 12:47:26 +02:00
parent 30bb740642
commit d906ee1bcb
2 changed files with 4 additions and 1 deletions

View File

@ -86,9 +86,12 @@ class AllAction extends ProfileAction
{
$user = common_current_user();
if ($user->id == $this->user->id) {
// TRANS: Title of a user's own start page.
return _('Home timeline');
} else {
$profile = $this->user->getProfile();
// TRANS: Title of another user's start page.
// TRANS: %s is the other user's name.
return sprintf(_("%s's home timeline"), $profile->getBestName());
}
}

View File

@ -228,7 +228,7 @@ class LoginAction extends Action
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
// TRANS: Field label on login page.
$this->input('nickname', _('Username or email'));
$this->input('nickname', _('Username or email address'));
$this->elementEnd('li');
$this->elementStart('li');
// TRANS: Field label on login page.