diff options
| author | Greg Roach <fisharebest@gmail.com> | 2016-06-10 21:41:01 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2016-06-10 21:41:01 +0100 |
| commit | 552fa1fb475f138699c21e1e8883a931f5d9efd9 (patch) | |
| tree | a7387ff61ef6ed791ed944433bea69ee0542570e /app/Module/LoginBlockModule.php | |
| parent | 3670b9ef3ac0bc03b9cd24ac0833928b96878e90 (diff) | |
| download | webtrees-552fa1fb475f138699c21e1e8883a931f5d9efd9.tar.gz webtrees-552fa1fb475f138699c21e1e8883a931f5d9efd9.tar.bz2 webtrees-552fa1fb475f138699c21e1e8883a931f5d9efd9.zip | |
Fix #966 - English text
Diffstat (limited to 'app/Module/LoginBlockModule.php')
| -rw-r--r-- | app/Module/LoginBlockModule.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Module/LoginBlockModule.php b/app/Module/LoginBlockModule.php index 29da93dbcd..92fc7f1387 100644 --- a/app/Module/LoginBlockModule.php +++ b/app/Module/LoginBlockModule.php @@ -61,7 +61,7 @@ class LoginBlockModule extends AbstractModule implements ModuleBlockInterface { $title = I18N::translate('Sign out'); $content = '<div class="center"><form method="post" action="logout.php" name="logoutform" onsubmit="return true;">'; $content .= '<br>' . I18N::translate('You are signed in as %s.', '<a href="edituser.php" class="name2">' . Auth::user()->getRealNameHtml() . '</a>') . '<br><br>'; - $content .= '<input type="submit" value="' . I18N::translate('Sign out') . '">'; + $content .= '<input type="submit" value="' . /* I18N: A button label. */ I18N::translate('sign out') . '">'; $content .= '<br><br></form></div>'; } else { @@ -80,7 +80,7 @@ class LoginBlockModule extends AbstractModule implements ModuleBlockInterface { </label> </div> <div> - <input type="submit" value="' . I18N::translate('Sign in') . '"> + <input type="submit" value="' . /* I18N: A button label. */ I18N::translate('sign in') . '"> </div> <div> <a href="#" id="passwd_click">' . I18N::translate('Forgot password?') . '</a> |
