mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 19:14:32 +08:00
20 lines
349 B
Ruby
20 lines
349 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ProblemCheck::TranslationOverrides < ProblemCheck
|
||
|
self.priority = "low"
|
||
|
|
||
|
def call
|
||
|
if !TranslationOverride.exists?(status: %i[outdated invalid_interpolation_keys])
|
||
|
return no_problem
|
||
|
end
|
||
|
|
||
|
problem
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def translation_key
|
||
|
"dashboard.outdated_translations_warning"
|
||
|
end
|
||
|
end
|