Update translator documentation and L10n.
This commit is contained in:
parent
30bb740642
commit
d906ee1bcb
@ -86,9 +86,12 @@ class AllAction extends ProfileAction
|
|||||||
{
|
{
|
||||||
$user = common_current_user();
|
$user = common_current_user();
|
||||||
if ($user->id == $this->user->id) {
|
if ($user->id == $this->user->id) {
|
||||||
|
// TRANS: Title of a user's own start page.
|
||||||
return _('Home timeline');
|
return _('Home timeline');
|
||||||
} else {
|
} else {
|
||||||
$profile = $this->user->getProfile();
|
$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());
|
return sprintf(_("%s's home timeline"), $profile->getBestName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -228,7 +228,7 @@ class LoginAction extends Action
|
|||||||
$this->elementStart('ul', 'form_data');
|
$this->elementStart('ul', 'form_data');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
// TRANS: Field label on login page.
|
// TRANS: Field label on login page.
|
||||||
$this->input('nickname', _('Username or email'));
|
$this->input('nickname', _('Username or email address'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
// TRANS: Field label on login page.
|
// TRANS: Field label on login page.
|
||||||
|
Loading…
Reference in New Issue
Block a user