diff --git a/frappe/commands/site.py b/frappe/commands/site.py index 63da4db093..e788c7ec4d 100644 --- a/frappe/commands/site.py +++ b/frappe/commands/site.py @@ -728,7 +728,7 @@ def move(dest_dir, site): @click.command('set-password') @click.argument('user') @click.argument('password', required=False) -@click.option('--logout-all-sessions', help='Logout from all sessions', is_flag=True, default=False) +@click.option('--logout-all-sessions', help='Log out from all sessions', is_flag=True, default=False) @pass_context def set_password(context, user, password=None, logout_all_sessions=False): "Set password for a user on a site" @@ -741,7 +741,7 @@ def set_password(context, user, password=None, logout_all_sessions=False): @click.command('set-admin-password') @click.argument('admin-password', required=False) -@click.option('--logout-all-sessions', help='Logout from all sessions', is_flag=True, default=False) +@click.option('--logout-all-sessions', help='Log out from all sessions', is_flag=True, default=False) @pass_context def set_admin_password(context, admin_password=None, logout_all_sessions=False): "Set Administrator password for a site" diff --git a/frappe/utils/install.py b/frappe/utils/install.py index 3af77b885f..ac26a98eb6 100644 --- a/frappe/utils/install.py +++ b/frappe/utils/install.py @@ -236,7 +236,7 @@ def add_standard_navbar_items(): 'is_standard': 1 }, { - 'item_label': 'Logout', + 'item_label': 'Log out', 'item_type': 'Action', 'action': 'frappe.app.logout()', 'is_standard': 1 diff --git a/frappe/website/doctype/website_settings/website_settings.py b/frappe/website/doctype/website_settings/website_settings.py index 2c28092aec..a7a0bc5bac 100644 --- a/frappe/website/doctype/website_settings/website_settings.py +++ b/frappe/website/doctype/website_settings/website_settings.py @@ -111,7 +111,7 @@ def get_website_settings(context=None): 'footer_items': get_items('footer_items'), "post_login": [ {"label": _("My Account"), "url": "/me"}, - {"label": _("Logout"), "url": "/?cmd=web_logout"} + {"label": _("Log out"), "url": "/?cmd=web_logout"} ] })