aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-05 14:16:33 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-05 14:16:33 +0200
commitc12555181b653cbca3567925b649faec4e0ea789 (patch)
tree61189819aedb3c75cce8e8756793bed9d1a1d776 /pyaggr3g470r/views.py
parentRemove a validator for the profile form. (diff)
downloadnewspipe-c12555181b653cbca3567925b649faec4e0ea789.tar.gz
newspipe-c12555181b653cbca3567925b649faec4e0ea789.tar.bz2
newspipe-c12555181b653cbca3567925b649faec4e0ea789.zip
Updated translations.
Diffstat (limited to 'pyaggr3g470r/views.py')
-rw-r--r--pyaggr3g470r/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index a0373ef0..c8e268bc 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -185,7 +185,7 @@ def signup():
flash(gettext('Email already used.'), 'warning')
return render_template('signup.html', form=form)
- flash(gettext('Your account has been created. You can now sign.'), 'success')
+ flash(gettext('Your account has been created. You can now sign in.'), 'success')
return redirect(url_for('home'))
return render_template('signup.html', form=form)
bgstack15