rename references of privileged to gold

This commit is contained in:
r888888888
2013-04-28 00:04:52 -07:00
parent 6a00c6330f
commit d5f575159f
112 changed files with 165 additions and 165 deletions

View File

@@ -4,7 +4,7 @@ module Moderator
choices = [
["", ""],
["Member", 20],
["Privileged", 30],
["Gold", 30],
["Contributor", 33],
["Janitor", 35],
["Moderator", 40],

View File

@@ -2,7 +2,7 @@ module Moderator
module InvitationsHelper
def level_select
choices = []
choices << ["Privileged", User::Levels::PRIVILEGED]
choices << ["Gold", User::Levels::GOLD]
choices << ["Contributor", User::Levels::CONTRIBUTOR]
select(:invitation, :level, choices)
end