diff options
author | Gilles-Philippe Morin <gphmorin@gmail.com> | 2015-01-18 11:56:10 -0500 |
---|---|---|
committer | Gilles-Philippe Morin <gphmorin@gmail.com> | 2015-01-18 11:56:10 -0500 |
commit | 51cc540cb2e5c3cb76827d83253b5824a74e93ec (patch) | |
tree | cafabd6f94db20101e447b248c348268e1b22dbc | |
parent | 2c8221cad896df23a791c637c9efdf586c829d73 (diff) | |
download | rpg-51cc540cb2e5c3cb76827d83253b5824a74e93ec.tar.gz rpg-51cc540cb2e5c3cb76827d83253b5824a74e93ec.tar.bz2 |
"Login" and "Logout" become "Log In" and "Log Out"
This change improves consistency with neighboring links such as "Update Profile" and "Register", which are two action verbs. "Login" and "Logout" were nouns and not verbs. Title case capitalization is applied because of "Update Profile".
-rw-r--r-- | inc/lang/en/lang.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/lang/en/lang.php b/inc/lang/en/lang.php index 92eb636ed..a5347e026 100644 --- a/inc/lang/en/lang.php +++ b/inc/lang/en/lang.php @@ -32,8 +32,8 @@ $lang['btn_upload'] = 'Upload'; $lang['btn_cancel'] = 'Cancel'; $lang['btn_index'] = 'Sitemap'; $lang['btn_secedit'] = 'Edit'; -$lang['btn_login'] = 'Login'; -$lang['btn_logout'] = 'Logout'; +$lang['btn_login'] = 'Log In'; +$lang['btn_logout'] = 'Log Out'; $lang['btn_admin'] = 'Admin'; $lang['btn_update'] = 'Update'; $lang['btn_delete'] = 'Delete'; |