Make minor text corrections as suggested by workshop participants

This commit is contained in:
Anna Sidwell 2018-12-20 22:12:20 +01:00
parent 6fd3dfa825
commit 1e437d43e4

View File

@ -359,11 +359,8 @@ class CaseStudy(models.Model):
# 1.1 # 1.1
entry_name = models.CharField( entry_name = models.CharField(
verbose_name=_("Entry Name"), verbose_name=_("Project name"),
help_text=_("This should usually be the name of the project. \ help_text=_("Please write the local name, followed by any translated name if necessary."),
If you are writing this case study in a language not used \
in the locale of its project, you should provide its local name \
first, as well as any translated name."),
max_length=128 max_length=128
) )
@ -376,7 +373,7 @@ class CaseStudy(models.Model):
# 1.5.1 # 1.5.1
area_of_land = models.IntegerField( area_of_land = models.IntegerField(
verbose_name=_("Approximate land area"), verbose_name=_("Approximate land area"),
help_text=_("The area of land covered by the project (in km²)") help_text=_("The area of land covered by the project (km²)")
) )
# 1.5.2 # 1.5.2
@ -395,8 +392,7 @@ class CaseStudy(models.Model):
around land lease or purchase contracts, etc.\ around land lease or purchase contracts, etc.\
\ \
<p class='text-muted'>We understand this is a difficult question, so \ <p class='text-muted'>We understand this is a difficult question, so \
please try to provide just the information you know. \ please try to provide <b>just the information you know</b>.</p>"),
If we have any major questions we will ask them in the moderation process.</p>"),
max_length=256, max_length=256,
blank=True, blank=True,
) )
@ -469,8 +465,8 @@ class CaseStudy(models.Model):
# 1.9 # 1.9
synopsis = models.TextField( synopsis = models.TextField(
verbose_name=_("Synopsis"), verbose_name=_("Project synopsis"),
help_text=_("Briefly describe the project. This will be displayed at\ help_text=_("Briefly summarise the project. This will be displayed at\
the top of the case study page. Maximum 500 chars (about \ the top of the case study page. Maximum 500 chars (about \
3½ tweets)") 3½ tweets)")
) )