Skip to content
Snippets Groups Projects
Verified Commit ed33774d authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Re-introduce accidentally removed translations

parent 409214bc
No related branches found
No related tags found
1 merge request!96Replace django-dbsettings with django-constance
......@@ -276,12 +276,12 @@ CONSTANCE_ADDITIONAL_FIELDS = {
"image_field": ["django.forms.ImageField", {}]
}
CONSTANCE_CONFIG = {
"COLOUR_PRIMARY": ("#007bff", "Primary colour"),
"COLOUR_SECONDARY": ("#007bff", "Secondary colour"),
"MAIL_OUT_NAME": ("AlekSIS", "Mail out name"),
"MAIL_OUT": ("aleksis@example.com", "Mail out address"),
"PRIVACY_URL": ("", "Link to privacy policy"),
"IMPRINT_URL": ("", "Link to imprint"),
"COLOUR_PRIMARY": ("#007bff", _("Primary colour")),
"COLOUR_SECONDARY": ("#007bff", _("Secondary colour")),
"MAIL_OUT_NAME": ("AlekSIS", _("Mail out name")),
"MAIL_OUT": ("aleksis@example.com", _("Mail out address")),
"PRIVACY_URL": ("", _("Link to privacy policy")),
"IMPRINT_URL": ("", _("Link to imprint")),
}
CONSTANCE_CONFIG_FIELDSETS = {
"Theme settings": ("COLOUR_PRIMARY", "COLOUR_SECONDARY"),
......
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