We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42d3691 commit 49983f4Copy full SHA for 49983f4
djangocms_bootstrap4/contrib/bootstrap4_grid/models.py
@@ -1,6 +1,7 @@
1
from functools import partial
2
3
from django.db import models
4
+from django.utils.translation import gettext
5
from django.utils.translation import gettext_lazy as _
6
7
from django.utils.translation import ngettext
@@ -37,7 +38,7 @@ class Bootstrap4GridContainer(CMSPlugin):
37
38
default=get_first_choice(GRID_CONTAINER_CHOICES),
39
max_length=255,
40
help_text=mark_safe_lazy(
- _(
41
+ gettext(
42
"Defines if the grid should use fixed width (<code>.container</code>) "
43
"or fluid width (<code>.container-fluid</code>)."
44
)
0 commit comments