summaryrefslogtreecommitdiff
path: root/chimere/models.py
diff options
context:
space:
mode:
authorValérie-Emma Leroux <emma@iggdrasil.net>2018-03-18 21:31:38 +0100
committerValérie-Emma Leroux <emma@iggdrasil.net>2018-03-18 21:31:38 +0100
commit500608314b7008d6b78da6a9750b542604483e1b (patch)
tree421af21f32ae3789dfc08eff62232fec2a936b32 /chimere/models.py
parent7664456f9d088c506378552d4636938273022748 (diff)
downloadChimère-500608314b7008d6b78da6a9750b542604483e1b.tar.bz2
Chimère-500608314b7008d6b78da6a9750b542604483e1b.zip
Update and fix labels
Diffstat (limited to 'chimere/models.py')
-rw-r--r--chimere/models.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/chimere/models.py b/chimere/models.py
index 80bf0f3..a2a88e4 100644
--- a/chimere/models.py
+++ b/chimere/models.py
@@ -60,7 +60,7 @@ class Page(models.Model):
title = models.CharField(_("Name"), max_length=150)
image = models.ImageField(
_("Image"), blank=True, null=True, upload_to='maps',
- help_text=_("If an image is provided, this image replace the title on"
+ help_text=_("If an image is provided, this image replace the title on "
"the menu"))
mnemonic = models.CharField(_("Mnemonic"), max_length=150, blank=True,
null=True)
@@ -69,12 +69,12 @@ class Page(models.Model):
blank=True, null=True)
url = models.URLField(_("Url"), blank=True, null=True,
help_text=_("Target to an external link (do not fill "
- "content if you want to point to an "
+ "content if you want to point to this "
"external link)"))
content = models.TextField(
_("Content"), blank=True, null=True,
help_text=_("Content of the page (do not fill external link if you "
- "want to display this content."))
+ "want to display this content)"))
class Meta:
verbose_name = _("Page")
@@ -316,7 +316,7 @@ class SubCategory(models.Model):
_("Simplify tolerance for lower zoom"), blank=True, null=True,
help_text=_("Only relevant when Minimum zoom is set. Use the "
"Douglas-Peucker algorythm to simplify the geometry when "
- "details is not alvailable. Adjust to your data volume "
+ "details is not available. Adjust to your data volume "
"and your performance need. 0.0003 is a good starting "
"point. Note: topology is not preserved."))