diff --git a/snikket_web/admin.py b/snikket_web/admin.py index e4548a7..f8b84da 100644 --- a/snikket_web/admin.py +++ b/snikket_web/admin.py @@ -325,7 +325,7 @@ class EditCircleForm(flask_wtf.FlaskForm): # type:ignore ) action_save = wtforms.SubmitField( - _l("Apply") + _l("Update circle") ) action_delete = wtforms.SubmitField( diff --git a/snikket_web/translations/messages.pot b/snikket_web/translations/messages.pot index 2c4d0fd..59f21dd 100644 --- a/snikket_web/translations/messages.pot +++ b/snikket_web/translations/messages.pot @@ -77,8 +77,8 @@ msgstr "" msgid "Select user" msgstr "" -#: snikket_web/admin.py:328 snikket_web/user.py:68 -msgid "Apply" +#: snikket_web/admin.py:328 +msgid "Update circle" msgstr "" #: snikket_web/admin.py:332 @@ -183,6 +183,10 @@ msgstr "" msgid "Profile visibility" msgstr "" +#: snikket_web/templates/user_home.html:7 snikket_web/user.py:68 +msgid "Update profile" +msgstr "" + #: snikket_web/user.py:93 msgid "Incorrect password" msgstr "" @@ -890,10 +894,6 @@ msgstr "" msgid "Welcome home, %(user_name)s." msgstr "" -#: snikket_web/templates/user_home.html:7 -msgid "Update profile" -msgstr "" - #: snikket_web/templates/user_home.html:8 msgid "" "Change display name, set avatar and configure visibility of your personal" diff --git a/snikket_web/user.py b/snikket_web/user.py index 12c0c2d..9d934e2 100644 --- a/snikket_web/user.py +++ b/snikket_web/user.py @@ -65,7 +65,7 @@ class ProfileForm(flask_wtf.FlaskForm): # type:ignore ) action_save = wtforms.SubmitField( - _l("Apply"), + _l("Update profile"), )