mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:42:04 +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
26 lines
624 B
Ruby
26 lines
624 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RenameTrustLevelTranslations < ActiveRecord::Migration[6.1]
|
|
KEYS = %w[newuser basic member regular leader]
|
|
|
|
def up
|
|
KEYS.each do |key|
|
|
execute <<~SQL
|
|
UPDATE translation_overrides
|
|
SET translation_key = 'js.trust_levels.names.#{key}'
|
|
WHERE translation_key = 'trust_levels.#{key}.title'
|
|
SQL
|
|
end
|
|
end
|
|
|
|
def down
|
|
KEYS.each do |key|
|
|
execute <<~SQL
|
|
UPDATE translation_overrides
|
|
SET translation_key = 'trust_levels.#{key}.title'
|
|
WHERE translation_key = 'js.trust_levels.names.#{key}'
|
|
SQL
|
|
end
|
|
end
|
|
end
|