mirror of https://github.com/zulip/zulip.git
parent
b61d48d94b
commit
08404f2824
|
@ -14,7 +14,7 @@ preference settings, including the following:
|
|||
|
||||
* Display settings, including:
|
||||
* Default view ([Recent topics](/help/recent-topics) vs. [All messages](/help/reading-strategies#all-messages))
|
||||
* [Light mode vs. dark mode](/help/night-mode)
|
||||
* [Light mode vs. dark mode](/help/dark-theme)
|
||||
* [Emoji theme](/help/emoji-and-emoticons#change-your-emoji-set)
|
||||
* Notification settings, including:
|
||||
* [What types of messages trigger notifications][default-notifications]
|
||||
|
|
|
@ -12,4 +12,4 @@ transparent background, and trim any bordering whitespace. To upload a logo:
|
|||
|
||||
{end_tabs}
|
||||
|
||||
Make sure to test the logo in both light mode and [dark mode](/help/night-mode).
|
||||
Make sure to test the logo in both light mode and [dark mode](/help/dark-theme).
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
[edit your profile information](https://zulip.com/help/edit-your-profile) to tell others
|
||||
about yourself.
|
||||
- [Review your display settings](/help/review-your-settings#review-your-display-settings).
|
||||
You can [switch between day and night mode](/help/night-mode),
|
||||
You can [switch between day and night mode](/help/dark-theme),
|
||||
[pick your favorite emoji theme](/help/emoji-and-emoticons#change-your-emoji-set),
|
||||
[change your language](/help/change-your-language), and make other tweaks to your Zulip experience.
|
||||
- [Browse and subscribe to streams](/help/browse-and-subscribe-to-streams).
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
## Display settings
|
||||
* [Review your settings](/help/review-your-settings)
|
||||
* [Night mode](/help/night-mode)
|
||||
* [Night mode](/help/dark-theme)
|
||||
* [Change your language](/help/change-your-language)
|
||||
* [Change your timezone](/help/change-your-timezone)
|
||||
* [Use 24-hour time](/help/change-the-time-format)
|
||||
|
|
|
@ -477,6 +477,7 @@ def write_instrumentation_reports(full_suite: bool, include_webhooks: bool) -> N
|
|||
"help/troubleshooting-desktop-notifications",
|
||||
"for/working-groups-and-communities/",
|
||||
"help/only-allow-admins-to-add-emoji",
|
||||
"help/night-mode",
|
||||
"api/delete-stream",
|
||||
"casper/(?P<path>.+)",
|
||||
"static/(?P<path>.+)",
|
||||
|
|
|
@ -7535,7 +7535,7 @@ paths:
|
|||
- name: color_scheme
|
||||
in: query
|
||||
description: |
|
||||
Controls which [color theme](/help/night-mode) to use.
|
||||
Controls which [color theme](/help/dark-theme) to use.
|
||||
|
||||
- 1 - Automatic
|
||||
- 2 - Night mode
|
||||
|
@ -9474,7 +9474,7 @@ paths:
|
|||
color_scheme:
|
||||
type: integer
|
||||
description: |
|
||||
Controls which [color theme](/help/night-mode) to use.
|
||||
Controls which [color theme](/help/dark-theme) to use.
|
||||
|
||||
- 1 - Automatic
|
||||
- 2 - Night mode
|
||||
|
@ -11182,7 +11182,7 @@ paths:
|
|||
color_scheme:
|
||||
type: integer
|
||||
description: |
|
||||
Controls which [color theme](/help/night-mode) to use.
|
||||
Controls which [color theme](/help/dark-theme) to use.
|
||||
|
||||
- 1 - Automatic
|
||||
- 2 - Night mode
|
||||
|
@ -12079,7 +12079,7 @@ paths:
|
|||
- name: color_scheme
|
||||
in: query
|
||||
description: |
|
||||
Controls which [color theme](/help/night-mode) to use.
|
||||
Controls which [color theme](/help/dark-theme) to use.
|
||||
|
||||
- 1 - Automatic
|
||||
- 2 - Night mode
|
||||
|
|
|
@ -867,6 +867,10 @@ urls += [
|
|||
"help/add-custom-emoji",
|
||||
RedirectView.as_view(url="/help/custom-emoji", permanent=True),
|
||||
),
|
||||
path(
|
||||
"help/night-mode",
|
||||
RedirectView.as_view(url="/help/dark-theme", permanent=True),
|
||||
),
|
||||
path("help/", help_documentation_view),
|
||||
path("help/<path:article>", help_documentation_view),
|
||||
path("api/", api_documentation_view),
|
||||
|
|
Loading…
Reference in New Issue