Skip to content

Commit 0632a98

Browse files
authored
Merge pull request #912 from marksweb/fix/quotes/french
fix: Changing quote types due to issues in French translation
2 parents bab263c + e74fec3 commit 0632a98

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

applications/migrations/0001_initial.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,15 @@ class Migration(migrations.Migration):
153153
models.TextField(
154154
blank=True,
155155
default="",
156-
help_text="Used only with 'Choices' question type",
156+
help_text='Used only with "Choices" question type',
157157
verbose_name="List all available options, separated with semicolon (;)",
158158
),
159159
),
160160
(
161161
"is_multiple_choice",
162162
models.BooleanField(
163163
default=False,
164-
help_text="Used only with 'Choices' question type",
164+
help_text='Used only with "Choices" question type',
165165
verbose_name="Are there multiple choices allowed?",
166166
),
167167
),

applications/models.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ class Question(models.Model):
9191
blank=True,
9292
default="",
9393
verbose_name=_("List all available options, separated with semicolon (;)"),
94-
help_text=_("Used only with 'Choices' question type"),
94+
help_text=_('Used only with "Choices" question type'),
9595
)
9696
is_multiple_choice = models.BooleanField(
9797
default=False,
9898
verbose_name=_("Are there multiple choices allowed?"),
99-
help_text=_("Used only with 'Choices' question type"),
99+
help_text=_('Used only with "Choices" question type'),
100100
)
101101
order = models.PositiveIntegerField(help_text=_("Position of the question"))
102102

0 commit comments

Comments
 (0)