diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-01-31 17:06:48 +0000 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-01-31 17:06:48 +0000 |
commit | 76fd5f9a352564c6241cf88ba6fae0a9701e4270 (patch) | |
tree | dd6afdd5c1cdd10d9f1468e3cd2408beffaa6281 /app/models/user.rb | |
parent | ac4587afff81177a0bf86fc0064b81538811cb29 (diff) |
Change (Banned) to (Account suspended)
When a user account has been suspended, we write (Banned) after their
user name. But sometimes we need to suspend accounts temporarily,
such as pending the result of a discussion, and it is misleading
to write (Banned) in such cases; so let’s change it to (Account
suspended) instead.
Diffstat (limited to 'app/models/user.rb')
-rw-r--r-- | app/models/user.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 2193805ea..8c4b35fe6 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -132,7 +132,7 @@ class User < ActiveRecord::Base name.strip! end if self.public_banned? - name = _("{{user_name}} (Banned)", :user_name=>name) + name = _("{{user_name}} (Account suspended)", :user_name=>name) end name end |