aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-09 14:07:38 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-09 14:07:38 +0200
commita0203dc2aae6bd36dd980832b6ffbfdf75b5c936 (patch)
treec7a7493dedd3efcf4598d11d3c1911da19aa1f9d /src/web/forms.py
parentAdd a link to the list of categories. (diff)
downloadnewspipe-a0203dc2aae6bd36dd980832b6ffbfdf75b5c936.tar.gz
newspipe-a0203dc2aae6bd36dd980832b6ffbfdf75b5c936.tar.bz2
newspipe-a0203dc2aae6bd36dd980832b6ffbfdf75b5c936.zip
Updated translations.
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