mirror of https://github.com/zulip/zulip.git
docs: Add missing space to compound verbs “log in”, “set up”, etc.
Noun: backup, checkout, cleanup, login, logout, setup, shutdown, signup, timeout. Verb: back up, check out, clean up, log in, log out, set up, shut down, sign up, time out. Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
e3f2ffa681
commit
6060d0d364
|
@ -75,7 +75,7 @@ working on a proposal until 2 weeks before the deadline.
|
|||
|
||||
## Getting started
|
||||
|
||||
We have an easy-to-setup development environment, and a library of
|
||||
We have an easy-to-set-up development environment, and a library of
|
||||
tasks that are great for first-time contributors. Use
|
||||
[our first-time Zulip developer guide](../overview/contributing.html#your-first-codebase-contribution)
|
||||
to get your Zulip development environment set up and to find your first issue. If you have any
|
||||
|
|
|
@ -210,9 +210,9 @@ environment directory without worrying about tests.
|
|||
Zulip uses [django-two-factor-auth][0] as a beta 2FA integration.
|
||||
|
||||
To enable 2FA, set `TWO_FACTOR_AUTHENTICATION_ENABLED` in settings to
|
||||
`True`, then log into Zulip and add otp device from settings
|
||||
`True`, then log in to Zulip and add an OTP device from the settings
|
||||
page. Once the device is added, password based authentication will ask
|
||||
for one-time-password. In the development environment., this
|
||||
for a one-time-password. In the development environment, this
|
||||
one-time-password will be printed to the console when you try to
|
||||
log in. Just copy-paste it into the form field to continue.
|
||||
|
||||
|
|
|
@ -137,9 +137,10 @@ class BaseDocumentationSpider(scrapy.Spider):
|
|||
|
||||
def _make_requests(self, url: str) -> Iterator[Request]:
|
||||
# These URLs are for Zulip's webapp, which with recent changes
|
||||
# can be accessible without login an account. While we do
|
||||
# crawl documentation served by the webapp (E.g. /help/), we
|
||||
# don't want to crawl the webapp itself, so we exclude these.
|
||||
# can be accessible without logging into an account. While we
|
||||
# do crawl documentation served by the webapp (e.g. /help/),
|
||||
# we don't want to crawl the webapp itself, so we exclude
|
||||
# these.
|
||||
if (
|
||||
url in ["http://localhost:9981/", "http://localhost:9981"]
|
||||
or url.startswith("http://localhost:9981/#")
|
||||
|
|
|
@ -194,7 +194,8 @@ NON_EXPORTED_TABLES = {
|
|||
"zerver_scheduledemail_users",
|
||||
"zerver_scheduledmessage",
|
||||
# These tables are related to a user's 2FA authentication
|
||||
# configuration, which will need to be re-setup on the new server.
|
||||
# configuration, which will need to be set up again on the new
|
||||
# server.
|
||||
"two_factor_phonedevice",
|
||||
"otp_static_staticdevice",
|
||||
"otp_static_statictoken",
|
||||
|
|
Loading…
Reference in New Issue