mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 23:23:45 +08:00
11 lines
222 B
Ruby
11 lines
222 B
Ruby
module I18n
|
|
module Backend
|
|
# Configure custom fallback order
|
|
class FallbackLocaleList < Hash
|
|
def [](locale)
|
|
[locale, SiteSetting.default_locale.to_sym, :en].uniq.compact
|
|
end
|
|
end
|
|
end
|
|
end
|