Skip to content

Commit

Permalink
Merge pull request DjangoGirls#912 from marksweb/fix/quotes/french
Browse files Browse the repository at this point in the history
fix: Changing quote types due to issues in French translation
  • Loading branch information
amakarudze committed Oct 2, 2023
2 parents bab263c + e74fec3 commit 0632a98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions applications/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,15 +153,15 @@ class Migration(migrations.Migration):
models.TextField(
blank=True,
default="",
help_text="Used only with 'Choices' question type",
help_text='Used only with "Choices" question type',
verbose_name="List all available options, separated with semicolon (;)",
),
),
(
"is_multiple_choice",
models.BooleanField(
default=False,
help_text="Used only with 'Choices' question type",
help_text='Used only with "Choices" question type',
verbose_name="Are there multiple choices allowed?",
),
),
Expand Down
4 changes: 2 additions & 2 deletions applications/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ class Question(models.Model):
blank=True,
default="",
verbose_name=_("List all available options, separated with semicolon (;)"),
help_text=_("Used only with 'Choices' question type"),
help_text=_('Used only with "Choices" question type'),
)
is_multiple_choice = models.BooleanField(
default=False,
verbose_name=_("Are there multiple choices allowed?"),
help_text=_("Used only with 'Choices' question type"),
help_text=_('Used only with "Choices" question type'),
)
order = models.PositiveIntegerField(help_text=_("Position of the question"))

Expand Down

0 comments on commit 0632a98

Please sign in to comment.