Skip to content
Snippets Groups Projects
Commit ee2415ba authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Add verbose names for all preference sections

(cherry picked from commit f0334859)
parent 379273c5
No related branches found
No related tags found
1 merge request!669Do release 2.0b2
...@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file. ...@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog`_, The format is based on `Keep a Changelog`_,
and this project adheres to `Semantic Versioning`_. and this project adheres to `Semantic Versioning`_.
Unreleased
----------
Changed
~~~~~~~
* Add verbose names for all preference sections.
`2.0b1`_ - 2021-06-01 `2.0b1`_ - 2021-06-01
--------------------- ---------------------
......
...@@ -19,13 +19,13 @@ from .models import Group, Person ...@@ -19,13 +19,13 @@ from .models import Group, Person
from .registries import person_preferences_registry, site_preferences_registry from .registries import person_preferences_registry, site_preferences_registry
from .util.notifications import get_notification_choices_lazy from .util.notifications import get_notification_choices_lazy
general = Section("general") general = Section("general", verbose_name=_("General"))
school = Section("school") school = Section("school", verbose_name=_("School"))
theme = Section("theme") theme = Section("theme", verbose_name=_("Theme"))
mail = Section("mail") mail = Section("mail", verbose_name=_("Mail"))
notification = Section("notification") notification = Section("notification", verbose_name=_("Notifications"))
footer = Section("footer") footer = Section("footer", verbose_name=_("Footer"))
account = Section("account") account = Section("account", verbose_name=_("Accounts"))
auth = Section("auth", verbose_name=_("Authentication")) auth = Section("auth", verbose_name=_("Authentication"))
internationalisation = Section("internationalisation", verbose_name=_("Internationalisation")) internationalisation = Section("internationalisation", verbose_name=_("Internationalisation"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment