Skip to content

Commit 19bc55a

Browse files
committed
Fix various typos.
The typos and their corrections were found with the aid of https://github.com/lucasdemarchi/codespell.
1 parent 4817ba4 commit 19bc55a

32 files changed

+39
-39
lines changed

analytics/management/commands/client_activity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def add_arguments(self, parser):
2525
"'realm' will calculate client activity of realm. "
2626
"'user' will calculate client activity of the user.")
2727
parser.add_argument('--user', dest='user', type=str,
28-
help="The email adress of the user you want to calculate activity.")
28+
help="The email address of the user you want to calculate activity.")
2929
self.add_realm_args(parser)
3030

3131
def compute_activity(self, user_activity_objects):

docs/german.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ with Zulip could think of this as streams that are online.
199199

200200
* Bot - **Bot**
201201

202-
Not only is "bot" a short and easily rememberable term, it is also widely used
202+
Not only is "bot" a short and easily memorable term, it is also widely used
203203
in German technology magazines, forums, etc.
204204

205205
*"Bot" (Transifex, Heise, Die Zeit)*

docs/hashchange-system.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ different flows:
3030
equivalent to the previous one, as a *link* out of the browser history
3131
will be visited).
3232
* The user clicking some in-app click handler (e.g. "Stream settings"
33-
for an invidual stream), that potentially does
33+
for an individual stream), that potentially does
3434
several UI-manipulating things including e.g. loading the streams
3535
overlay, and needs to update the hash without re-triggering the open
3636
animation (etc.).

docs/linters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ flag to take note of is the `--modified` flag, which enables you to only run
126126
lint checks against files that are modified in your git repo. Most of the
127127
"sub-linters" respect this flag, but some will continue to process all the files.
128128
Generally, a good workflow is to run with `--modified` when you are iterating on
129-
the code, and then run without that option right before commiting new code.
129+
the code, and then run without that option right before committing new code.
130130

131131
If you need to troubleshoot the linters, there is a `--verbose` option that
132132
can give you clues about which linters may be running slow, for example.

docs/logging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ overlay over the message view area, to make exceptions in testing a
120120
new feature hard to miss.
121121

122122
* Blueslip is implemented in `static/js/blueslip.js`.
123-
* In order to capture essentially any error occuring in the browser,
123+
* In order to capture essentially any error occurring in the browser,
124124
blueslip does the following:
125125
* Wraps every function passed into `$.ready()`, i.e., every
126126
on-webapp-startup method used by Zulip.

docs/spanish.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Zulip friendly and usable.
3535
* Message - **Mensaje**
3636
* Private message (PM) - **Mensaje privado (MP)**
3737
* Group PM - **mensaje privado grupal**: even though "MP grupal" is the most
38-
precise translation, preferrably don't use that one. Many users may not
38+
precise translation, preferably don't use that one. Many users may not
3939
associate "MP" with *private message* in a group context. Better use it
4040
without abbreviations.
4141
* Realm - **Instancia**: the literal Spanish of realm is "reino",

docs/working-copies.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ the various working copies.
1919
Sometimes you need to get commits. Here are some scenarios:
2020

2121
- You may fork the official Zulip repo to your GitHub fork.
22-
- You may fetch commits from the offical Zulip repo to your local copy.
22+
- You may fetch commits from the official Zulip repo to your local copy.
2323
- You occasionally may fetch commits from your forked copy.
2424

2525
Sometimes you want to publish commits. Here are scenarios:

frontend_tests/node_tests/compose.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ people.add(bob);
214214

215215
(function test_validate_stream_message() {
216216
// This test is in kind of continuation to test_validate but since it is
217-
// primarly used to get coverage over functions called from validate()
218-
// we are seperating it up in different test. Though their relative position
217+
// primarily used to get coverage over functions called from validate()
218+
// we are separating it up in different test. Though their relative position
219219
// of execution should not be changed.
220220
global.page_params.realm_mandatory_topics = false;
221221
var sub = {

frontend_tests/node_tests/hotkey.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function stubbing(func_name_to_stub, test_function) {
129129
// An exception will be thrown here if a different
130130
// function is called than the one declared. Try to
131131
// provide a useful error message.
132-
// add a newline to seperate from other console output.
132+
// add a newline to separate from other console output.
133133
console.log('\nERROR: Mapping for character "' + e.which + '" does not match tests.');
134134
}
135135
}
@@ -320,7 +320,7 @@ function stubbing(func_name_to_stub, test_function) {
320320
// An exception will be thrown here if a different
321321
// function is called than the one declared. Try to
322322
// provide a useful error message.
323-
// add a newline to seperate from other console output.
323+
// add a newline to separate from other console output.
324324
console.log('\nERROR: Mapping for character "' + e.which + '" does not match tests.');
325325
}
326326
}

frontend_tests/node_tests/stream_events.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ stream_data.add_sub('Frontend', frontend);
190190
assert.equal(updated, true);
191191
});
192192

193-
// reset overriden value
193+
// reset overridden value
194194
set_global('narrow_state', { is_for_stream_id: noop });
195195

196196
with_overrides(function (override) {

frontend_tests/zjsunit/i18n.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var i18n = {};
22

33
i18n.t = function (str, context) {
4-
// We are currently assuming that we will recieve context in form of a Dict
4+
// We are currently assuming that we will receive context in form of a Dict
55
// of key value pairs and string will be having substitution for keywords
66
// like these "__keyword__".
77
if (context === undefined) {

requirements/common.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,5 +188,5 @@ social-auth-app-django==1.2.0
188188
# Needed for messages' rendered content parsing in push notifications.
189189
lxml==4.1.0
190190

191-
# One occurance left in home.py
191+
# One occurrence left in home.py
192192
simplejson==3.11.1

requirements/pip.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Dependancies for setting up pip to install our requirements.txt file.
1+
# Dependencies for setting up pip to install our requirements.txt file.
22
setuptools==36.6.0
33
pip==9.0.1
44
wheel==0.30.0

scripts/lib/docker-functions.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -349,10 +349,10 @@ zulip_first_start_init() {
349349
fi
350350
set -e
351351
touch "$DATA_DIR/.initiated"
352-
echo "Zulip first start init sucessful."
352+
echo "Zulip first start init successful."
353353
}
354354
# migrate_zulip_database Runs the zulip database migrations
355-
# This runs the migration everytime the container runs, to make sure Zulip has the
355+
# This runs the migration every time the container runs, to make sure Zulip has the
356356
# uptodate database version.
357357
migrate_zulip_database() {
358358
echo "Migrating Zulip to new version ..."

static/js/activity.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ exports.get_filter_text = function () {
613613
if (!meta.$user_list_filter) {
614614
// This may be overly defensive, but there may be
615615
// situations where get called before everything is
616-
// fully intialized. The empty string is a fine
616+
// fully initialized. The empty string is a fine
617617
// default here.
618618
blueslip.warn('get_filter_text() is called before initialization');
619619
return '';

static/js/filter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Filter.canonicalize_term = function (opts) {
169169
var operator = opts.operator;
170170
var operand = opts.operand;
171171

172-
// Make negated be explictly false for both clarity and
172+
// Make negated be explicitly false for both clarity and
173173
// simplifying deepEqual checks in the tests.
174174
if (!negated) {
175175
negated = false;

static/js/message_fetch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function get_old_messages_success(data, opts) {
5353
return;
5454
}
5555
if (! data) {
56-
// The server occationally returns no data during a
56+
// The server occasionally returns no data during a
5757
// restart. Ignore those responses and try again
5858
setTimeout(function () {
5959
exports.load_old_messages(opts);

static/js/popovers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ exports.compute_placement = function (elt, popover_height, popover_width,
657657
}
658658

659659
if (prefer_vertical_positioning && placement !== 'viewport_center') {
660-
// If vertical positioning is prefered and the popover fits in
660+
// If vertical positioning is preferred and the popover fits in
661661
// either top or bottom position then return.
662662
return placement;
663663
}

static/js/stream_color.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var exports = {};
44

55
exports.default_color = "#c2c2c2";
66
// Auto-assigned colors should be from the default palette so it's easy to undo
7-
// changes, so if that pallete changes, change these colors.
7+
// changes, so if that palette changes, change these colors.
88
var stream_assignment_colors = ["#76ce90", "#fae589", "#a6c7e5", "#e79ab5",
99
"#bfd56f", "#f4ae55", "#b0a5fd", "#addfe5",
1010
"#f5ce6e", "#c2726a", "#94c849", "#bd86e5",

templates/corporate/terms.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Services to share content with others, anyone you've shared content with
9999
content.
100100

101101
In order to provide the Services, our servers save a record of the messages
102-
received by each Zulip Account (the "Received Messsage Information" for the
102+
received by each Zulip Account (the "Received Message Information" for the
103103
account). If you are using our Services on behalf of a business and a
104104
representative of that business sends [[email protected]](mailto:[email protected])
105105
a request to delete all of your business' accounts with us, then within a

zerver/lib/attachments.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ def remove_attachment(user_profile, attachment):
2727
try:
2828
delete_message_image(attachment.path_id)
2929
except Exception:
30-
raise JsonableError(_("An error occured while deleting the attachment. Please try again later."))
30+
raise JsonableError(_("An error occurred while deleting the attachment. Please try again later."))
3131
attachment.delete()

zerver/lib/avatar.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def avatar_url_from_dict(userdict, medium=False):
2828
'''
2929
DEPRECATED: We should start using
3030
get_avatar_field to populate users,
31-
particulary for codepaths where the
31+
particularly for codepaths where the
3232
client can compute gravatar URLS
3333
on the client side.
3434
'''

zerver/lib/bugdown/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ def sanitize_url(url):
955955
locless_schemes = ['mailto', 'news', 'file']
956956
if netloc == '' and scheme not in locless_schemes:
957957
# This fails regardless of anything else.
958-
# Return immediately to save additional proccessing
958+
# Return immediately to save additional processing
959959
return None
960960

961961
# Upstream code will accept a URL like javascript://foo because it

zerver/lib/cache_helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,6 @@ def fill_remote_cache(cache):
104104
cache_set_many(items_for_remote_cache, timeout=3600*24)
105105
items_for_remote_cache = {}
106106
cache_set_many(items_for_remote_cache, timeout=3600*24*7)
107-
logging.info("Succesfully populated %s cache! Consumed %s remote cache queries (%s time)" %
107+
logging.info("Successfully populated %s cache! Consumed %s remote cache queries (%s time)" %
108108
(cache, get_remote_cache_requests() - remote_cache_requests_start,
109109
round(get_remote_cache_time() - remote_cache_time_start, 2)))

zerver/lib/generate_test_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def parse_file(config, gens, corpus_file):
4949
paragraphs = [] # type: List[str]
5050

5151
with open(corpus_file, "r") as infile:
52-
# OUR DATA: we need to seperate the person talking and what they say
52+
# OUR DATA: we need to separate the person talking and what they say
5353
paragraphs = remove_line_breaks(infile)
5454
paragraphs = add_flair(paragraphs, gens)
5555

zerver/lib/outgoing_webhook.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def notify_bot_owner(event, request_data, status_code=None, response_content=Non
190190
"```\n%s\n```" % (response_content,)
191191
if exception:
192192
notification_message += "\nWhen trying to send a request to the webhook service, an exception " \
193-
"of type %s occured:\n```\n%s\n```" % (type(exception).__name__, str(exception))
193+
"of type %s occurred:\n```\n%s\n```" % (type(exception).__name__, str(exception))
194194
send_response_message(bot_id, message_info, notification_message)
195195

196196
def request_retry(event, request_data, failure_message, exception=None):
@@ -256,7 +256,7 @@ def do_rest_call(rest_operation, request_data, event, service_handler, timeout=N
256256
request_retry(event, request_data, response_message, exception=e)
257257

258258
except requests.exceptions.RequestException as e:
259-
response_message = "An exception of type *%s* occured for message `%s`! " \
259+
response_message = "An exception of type *%s* occurred for message `%s`! " \
260260
"See the Zulip server logs for more information." % (type(e).__name__, event["command"],)
261261
logging.exception("Outhook trigger failed:\n %s" % (e,))
262262
fail_with_message(event, response_message)

zerver/lib/test_runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def slow(slowness_reason):
4545
'''
4646
This is a decorate that annotates a test as being "known
4747
to be slow." The decorator will set expected_run_time and slowness_reason
48-
as atributes of the function. Other code can use this annotation
48+
as attributes of the function. Other code can use this annotation
4949
as needed, e.g. to exclude these tests in "fast" mode.
5050
'''
5151
def decorator(f):

zerver/tests/test_attachments.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_remove_attachment_exception(self):
3131
self.login(user_profile.email)
3232
with mock.patch('zerver.lib.attachments.delete_message_image', side_effect=Exception()):
3333
result = self.client_delete('/json/attachments/{id}'.format(id=self.attachment.id))
34-
self.assert_json_error(result, "An error occured while deleting the attachment. Please try again later.")
34+
self.assert_json_error(result, "An error occurred while deleting the attachment. Please try again later.")
3535

3636
@mock.patch('zerver.lib.attachments.delete_message_image')
3737
def test_remove_attachment(self, ignored):

zerver/tests/test_messages.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ def test_personal_message(self):
10171017
def test_personal_message_copying_self(self):
10181018
# type: () -> None
10191019
"""
1020-
Sending a personal message to yourself plus another user is succesful,
1020+
Sending a personal message to yourself plus another user is successful,
10211021
and counts as a message just to that user.
10221022
"""
10231023
self.login(self.example_email("hamlet"))

zerver/tests/test_outgoing_webhook_system.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def test_timeout_request(self, mock_requests_request, mock_logger):
104104
bot_owner_notification = self.get_last_message()
105105
self.assertEqual(bot_owner_notification.content,
106106
'''[A message](http://zulip.testserver/#narrow/stream/Verona/subject/Foo/near/) triggered an outgoing webhook.
107-
When trying to send a request to the webhook service, an exception of type Timeout occured:
107+
When trying to send a request to the webhook service, an exception of type Timeout occurred:
108108
```
109109
Time is up!
110110
```''')
@@ -120,7 +120,7 @@ def test_request_exception(self, mock_fail_with_message, mock_requests_request,
120120
self.assertTrue(mock_fail_with_message.called)
121121
self.assertEqual(bot_owner_notification.content,
122122
'''[A message](http://zulip.testserver/#narrow/stream/Verona/subject/Foo/near/) triggered an outgoing webhook.
123-
When trying to send a request to the webhook service, an exception of type RequestException occured:
123+
When trying to send a request to the webhook service, an exception of type RequestException occurred:
124124
```
125125
I'm a generic exception :(
126126
```''')

zerver/tests/test_upload.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def test_delete_old_unclaimed_attachments(self):
262262
d2_attachment.create_time = two_week_ago
263263
d2_attachment.save()
264264

265-
# Send message refering only dummy_1
265+
# Send message referring only dummy_1
266266
self.subscribe(self.example_user("hamlet"), "Denmark")
267267
body = "Some files here ...[zulip.txt](http://localhost:9991/user_uploads/" + d1_path_id + ")"
268268
self.send_stream_message(self.example_email("hamlet"), "Denmark", body, "test")
@@ -302,7 +302,7 @@ def test_multiple_claim_attachments(self):
302302
def test_multiple_claim_attachments_different_owners(self):
303303
# type: () -> None
304304
"""This test tries to claim the same attachment more than once, first
305-
with a private stream and then with differnet recipients."""
305+
with a private stream and then with different recipients."""
306306
self.login(self.example_email("hamlet"))
307307
d1 = StringIO("zulip!")
308308
d1.name = "dummy_1.txt"

zerver/views/auth.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def remote_user_jwt(request):
237237
def google_oauth2_csrf(request, value):
238238
# type: (HttpRequest, str) -> str
239239
# In Django 1.10, get_token returns a salted token which changes
240-
# everytime get_token is called.
240+
# every time get_token is called.
241241
from django.middleware.csrf import _unsalt_cipher_token
242242
token = _unsalt_cipher_token(get_token(request))
243243
return hmac.new(token.encode('utf-8'), value.encode("utf-8"), hashlib.sha256).hexdigest()
@@ -372,7 +372,7 @@ def finish_google_oauth2(request):
372372
try:
373373
full_name = body['name']['formatted']
374374
except KeyError:
375-
# Only google+ users have a formated name. I am ignoring i18n here.
375+
# Only google+ users have a formatted name. I am ignoring i18n here.
376376
full_name = u'{} {}'.format(
377377
body['name']['givenName'], body['name']['familyName']
378378
)

0 commit comments

Comments
 (0)