mirror of https://github.com/zulip/zulip.git
help: Offer links to "All messages" for logged in users.
- Replaces instructions for opening all messages with `{relative|message|all}`.
This commit is contained in:
parent
a9a1946819
commit
930909c1b2
|
@ -9,8 +9,7 @@ view](/help/configure-default-view#configure-default-view) for the Zulip web app
|
|||
|
||||
{tab|desktop-web}
|
||||
|
||||
1. Open **All messages** from the left sidebar or with the
|
||||
<kbd>A</kbd> keyboard shortcut.
|
||||
{relative|message|all}
|
||||
|
||||
{tab|mobile}
|
||||
|
||||
|
|
|
@ -80,10 +80,16 @@ recent_instructions = """
|
|||
sidebar.
|
||||
"""
|
||||
|
||||
all_instructions = """
|
||||
1. Click on <i class="fa fa-align-left"></i> **All messages** in the left
|
||||
sidebar or use the <kbd>A</kbd> keyboard shortcut.
|
||||
"""
|
||||
|
||||
message_info = {
|
||||
"drafts": ["Drafts", "/#drafts", draft_instructions],
|
||||
"scheduled": ["Scheduled messages", "/#scheduled", scheduled_instructions],
|
||||
"recent": ["Recent conversations", "/#recent", recent_instructions],
|
||||
"all": ["All messages", "/#all_messages", all_instructions],
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue