mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:38:01 +08:00
41ee5b7c86
Refactors `TrustLevel` and moves translations from server to client Additional changes: * "staff" and "admin" wasn't translatable in site settings * it replaces a concatenated string with a translation * uses translation for trust levels in users_by_trust_level report * adds a DB migration to rename keys of translation overrides affected by this commit
30 lines
574 B
Ruby
30 lines
574 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TrustLevelAndStaffSetting < TrustLevelSetting
|
|
def self.valid_value?(val)
|
|
special_group?(val) ||
|
|
(val.to_i.to_s == val.to_s &&
|
|
valid_values.any? { |v| v == val.to_i })
|
|
end
|
|
|
|
def self.valid_values
|
|
TrustLevel.valid_range.to_a + special_groups
|
|
end
|
|
|
|
def self.special_group?(val)
|
|
special_groups.include?(val.to_s)
|
|
end
|
|
|
|
def self.special_groups
|
|
['staff', 'admin']
|
|
end
|
|
|
|
def self.translation(value)
|
|
if special_group?(value)
|
|
I18n.t("trust_levels.#{value}")
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|