Skip to content

Commit

Permalink
fix: incorrect text for section containers
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Sep 5, 2024
1 parent 95bafae commit 8a8a066
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions taccsite_cms/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,32 +614,32 @@ def get_subdirs_as_module_names(path):
('container', _('Container')), # default
(
'container o-section o-section--style-light',
_('Fluid, Light section')
_('Container + Light section')
),
(
'container o-section o-section--style-dark',
_('Fluid, Dark section')
_('Container + Dark section')
),
)),
(_('Fluid container'), (
('container-fluid', _('Fluid')), # default
(
'container-fluid o-section o-section--style-light',
_('Fluid, Light section')
_('Fluid Container + Light section')
),
(
'container-fluid o-section o-section--style-dark',
_('Fluid, Dark section')
_('Fluid Container + Dark section')
),
)),
(_('No container'), (
(
'o-section o-section--style-light',
_('Fluid, Light section')
_('Light section')
),
(
'o-section o-section--style-dark',
_('Fluid, Dark section')
_('Dark section')
),
)),
]
Expand Down

0 comments on commit 8a8a066

Please sign in to comment.