Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct spelling mistakes #195

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Here is an example of these rules applied:
## Pull Requests

Please keep your pull requests focused on one specific thing only. If you
have a number of contributions to make, then please send seperate pull
have a number of contributions to make, then please send separate pull
requests. It is much easier on maintainers to receive small, well defined,
pull requests, than it is to have a single large one that batches up a
lot of unrelated commits.
Expand Down
6 changes: 3 additions & 3 deletions symposion/proposals/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ProposalBase(models.Model):
)
abstract_html = models.TextField(blank=True)
additional_notes = models.TextField(
_("Addtional Notes"),
_("Additional Notes"),
blank=True,
help_text=_("Anything else you'd like the program committee to know when making their "
"selection: your past experience, etc. This is not made public. Edit using "
Expand All @@ -125,7 +125,7 @@ def additional_speaker_validator(self, a_speaker):
raise ValidationError(_("%s has already been in speakers.") % a_speaker.speaker.email)

additional_speakers = models.ManyToManyField(Speaker, through="AdditionalSpeaker",
blank=True, verbose_name=_("Addtional speakers"))
blank=True, verbose_name=_("Additional speakers"))
cancelled = models.BooleanField(default=False, verbose_name=_("Cancelled"))

def save(self, *args, **kwargs):
Expand Down Expand Up @@ -195,7 +195,7 @@ class AdditionalSpeaker(models.Model):

class Meta:
unique_together = ("speaker", "proposalbase")
verbose_name = _("Addtional speaker")
verbose_name = _("Additional speaker")
verbose_name_plural = _("Additional speakers")

def __str__(self):
Expand Down
2 changes: 1 addition & 1 deletion symposion/reviews/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ class BulkPresentationForm(forms.Form):
talk_ids = forms.CharField(
label=_("Talk ids"),
max_length=500,
help_text=_("Provide a comma seperated list of talk ids to accept.")
help_text=_("Provide a comma separated list of talk ids to accept.")
)
2 changes: 1 addition & 1 deletion symposion/reviews/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def delete(self):
lv.delete()
else:
# handle that we've found a latest vote
# check if self is the lastest vote
# check if self is the latest vote
if self == latest:
# self is the latest review; revert the latest vote to the
# previous vote
Expand Down
2 changes: 1 addition & 1 deletion symposion/reviews/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

def has_permission(user, proposal, speaker=False, reviewer=False):
"""
Returns whether or not ther user has permission to review this proposal,
Returns whether or not the user has permission to review this proposal,
with the specified requirements.

If ``speaker`` is ``True`` then the user can be one of the speakers for the
Expand Down