aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/forms.py')
-rw-r--r--src/web/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index 97ca75b0..fbfff85f 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -197,8 +197,8 @@ class AddFeedForm(Form):
class CategoryForm(Form):
- name = TextField(lazy_gettext("Name"))
- submit = SubmitField(lazy_gettext("Submit"))
+ name = TextField(lazy_gettext("Category name"))
+ submit = SubmitField(lazy_gettext("Save"))
class InformationMessageForm(Form):
bgstack15