From 0ea718b743e9c2235adceb8b09db84e8c2abd59c Mon Sep 17 00:00:00 2001
From: Jonathan Weth <edugit@jonathanweth.de>
Date: Thu, 9 Jan 2020 22:54:30 +0100
Subject: [PATCH] Apply suggestion to aleksis/apps/hjelp/models.py

---
 aleksis/apps/hjelp/models.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/aleksis/apps/hjelp/models.py b/aleksis/apps/hjelp/models.py
index 5877654..ccb4f43 100644
--- a/aleksis/apps/hjelp/models.py
+++ b/aleksis/apps/hjelp/models.py
@@ -35,9 +35,9 @@ class FAQQuestion(models.Model):
 
     show = models.BooleanField(verbose_name=_("Published"), default=False)
     answer_text = models.TextField(blank=True,
-                                   help_text=_("You can use HTML syntax in the FAQ-answers!<br> Because of "
-                                               "our CSS framework all <strong>&lt;ul&gt;</strong>-Elements "
-                                               "must have the CSS class <em>browser-default</em>!"),
+                                   help_text=_("You can use HTML syntax in the FAQ answers. <br> Because of "
+                                               "our CSS framework all <strong>&lt;ul&gt;</strong> elements "
+                                               "must have the CSS class <em>browser-default</em>."),
                                    verbose_name=_("Answer"))
 
     section = models.ForeignKey(FAQSection, on_delete=models.CASCADE, blank=True, related_name="questions",
-- 
GitLab