Use Log In vs. Login when it's a verb

Summary: Cursory research indicates that "login" is a noun, referring to a form, and "log in" is a verb, referring to the action of logging in. I went though every instances of 'login' I could find and tried to clarify all this language. Also, we have "Phabricator" on the registration for like 4-5 times, which is a bit verbose, so I tried to simplify that language as well.

Test Plan: Tested logging in and logging out. Pages feel simpler.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D18322
This commit is contained in:
Chad Little
2017-08-02 12:26:40 -07:00
parent ab018e1b49
commit ba4b936dff
18 changed files with 44 additions and 45 deletions

View File

@@ -483,14 +483,14 @@ final class PhabricatorAuthRegisterController
if ($can_edit_username) {
$form->appendChild(
id(new AphrontFormTextControl())
->setLabel(pht('Phabricator Username'))
->setLabel(pht('Username'))
->setName('username')
->setValue($value_username)
->setError($e_username));
} else {
$form->appendChild(
id(new AphrontFormMarkupControl())
->setLabel(pht('Phabricator Username'))
->setLabel(pht('Username'))
->setValue($value_username)
->setError($e_username));
}
@@ -546,7 +546,7 @@ final class PhabricatorAuthRegisterController
} else {
$submit
->addCancelButton($this->getApplicationURI('start/'))
->setValue(pht('Register Phabricator Account'));
->setValue(pht('Register Account'));
}
@@ -560,7 +560,7 @@ final class PhabricatorAuthRegisterController
} else {
$crumbs->addTextCrumb(pht('Register'));
$crumbs->addTextCrumb($provider->getProviderName());
$title = pht('Phabricator Registration');
$title = pht('Create a New Account');
}
$crumbs->setBorder(true);