From 34d9f5a1d8d13c17907c42ce2878b7011923f708 Mon Sep 17 00:00:00 2001 From: xeals Date: Mon, 25 Oct 2021 17:46:05 +1100 Subject: [PATCH] Correct capitalization for KJ in preference form --- cookbook/forms.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cookbook/forms.py b/cookbook/forms.py index 55aa1a0ad..0ac1d8cb7 100644 --- a/cookbook/forms.py +++ b/cookbook/forms.py @@ -45,6 +45,10 @@ class UserPreferenceForm(forms.ModelForm): 'comments' ) + labels = { + 'use_kj': 'Use KJ' + } + help_texts = { 'nav_color': _('Color of the top navigation bar. Not all colors work with all themes, just try them out!'), # noqa: E501