From e1dab7f062f495b225fbab4f66044d6d3134bdec Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 22 Nov 2016 08:18:59 +0100 Subject: Updated translations. --- src/web/views/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/views') diff --git a/src/web/views/user.py b/src/web/views/user.py index 58c23dd2..34e0b513 100644 --- a/src/web/views/user.py +++ b/src/web/views/user.py @@ -29,7 +29,7 @@ def profile_public(nickname=None): user = user_contr.get(nickname=nickname) if not user.is_public_profile: if current_user.is_authenticated and current_user.id == user.id: - flash('You must set your profile to public.', 'info') + flash(gettext('You must set your profile to public.'), 'info') return redirect(url_for('user.profile')) filters = {} -- cgit