diff --git a/ihatemoney/forms.py b/ihatemoney/forms.py index a8ebd075..1bfb0fe2 100644 --- a/ihatemoney/forms.py +++ b/ihatemoney/forms.py @@ -432,7 +432,7 @@ class MemberForm(FlaskForm): class InviteForm(FlaskForm): emails = StringField(_("People to notify"), render_kw={"class": "tag"}) - submit = SubmitField(_("Send invites")) + submit = SubmitField(_("Send the invitations")) def validate_emails(self, field): for email in [email.strip() for email in self.emails.data.split(",")]: diff --git a/ihatemoney/templates/dashboard.html b/ihatemoney/templates/dashboard.html index 15baf96f..6380ffae 100644 --- a/ihatemoney/templates/dashboard.html +++ b/ihatemoney/templates/dashboard.html @@ -34,7 +34,7 @@ - {{ + {{ _('show') }} @@ -51,4 +51,4 @@ {% else %}
{{ _("The Dashboard is currently deactivated.") }}
{% endif %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/ihatemoney/templates/forms.html b/ihatemoney/templates/forms.html index 48c3df2b..26eb376a 100644 --- a/ihatemoney/templates/forms.html +++ b/ihatemoney/templates/forms.html @@ -101,7 +101,7 @@ {{ input(form.default_currency) }}
- +
{% endmacro %} @@ -113,7 +113,7 @@ {{ form.hidden_tag() }} {{ input(form.password) }}
- +
{% endmacro %}