The site uses the Gravatar service for user avatars.
Check out Gravatar's help section for more detailed instructions.
- Gravatar is disabled until further notice..
+ Gravatar is disabled until further notice.
{{ linkable_header("Deleting Your Torrent", "delete") }}
diff --git a/nyaa/templates/layout.html b/nyaa/templates/layout.html
index 4cbb1de..e695844 100644
--- a/nyaa/templates/layout.html
+++ b/nyaa/templates/layout.html
@@ -255,7 +255,7 @@
diff --git a/nyaa/views/account.py b/nyaa/views/account.py
index 7a072de..a3ff1b5 100644
--- a/nyaa/views/account.py
+++ b/nyaa/views/account.py
@@ -47,8 +47,8 @@ def login():
ban = models.Ban.banned(user.id, None).first()
ban_reason = ban.reason if ban else '[No reason provided]'
ban_str = ('Login failed! You are banned. '
- 'Reason: "{0}" If you believe this is a mistake, contact '
- 'a moderator on IRC.'.format(ban_reason))
+ 'Reason: "{0}" If you believe this is a mistake, please '
+ 'contact our team.'.format(ban_reason))
flask.flash(Markup(ban_str), 'danger')
return flask.redirect(flask.url_for('account.login'))
@@ -116,19 +116,17 @@ def register():
if app.config['RAID_MODE_LIMIT_REGISTER']:
flask.flash(Markup(app.config['RAID_MODE_REGISTER_MESSAGE'] + ' '
- 'Please ask a moderator to manually '
+ 'Please ask our team to manually '
'activate your account \'{}\'.'
- .format(flask.url_for('site.help') + '#irchelp',
- flask.url_for('users.view_user',
+ .format(flask.url_for('users.view_user',
user_name=user.username),
user.username)), 'warning')
elif models.RangeBan.is_rangebanned(user.registration_ip):
flask.flash(Markup('Your IP is blocked from creating new accounts. '
- 'Please ask a moderator to manually '
+ 'Please ask our team to manually '
'activate your account \'{}\'.'
- .format(flask.url_for('site.help') + '#irchelp',
- flask.url_for('users.view_user',
+ .format(flask.url_for('users.view_user',
user_name=user.username),
user.username)), 'warning')
else: