diff options
Diffstat (limited to 'chimere/models.py')
-rw-r--r-- | chimere/models.py | 8 |
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.")) |