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

@@ -68,7 +68,7 @@ final class PhabricatorAuthOneTimeLoginController
if (!$token) {
return $this->newDialog()
->setTitle(pht('Unable to Login'))
->setTitle(pht('Unable to Log In'))
->setShortTitle(pht('Login Failure'))
->appendParagraph(
pht(
@@ -170,7 +170,7 @@ final class PhabricatorAuthOneTimeLoginController
case PhabricatorAuthSessionEngine::ONETIME_USERNAME:
case PhabricatorAuthSessionEngine::ONETIME_RESET:
default:
$title = pht('Login to Phabricator');
$title = pht('Log in to Phabricator');
break;
}
@@ -193,7 +193,7 @@ final class PhabricatorAuthOneTimeLoginController
$dialog = $this->newDialog()
->setTitle($title)
->addSubmitButton(pht('Login (%s)', $target_user->getUsername()))
->addSubmitButton(pht('Log In (%s)', $target_user->getUsername()))
->addCancelButton('/');
foreach ($body as $paragraph) {