mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
10 lines
176 B
Ruby
10 lines
176 B
Ruby
|
class I18nInterpolationKeysFinder
|
||
|
def self.find(text)
|
||
|
keys = text.scan(I18n::INTERPOLATION_PATTERN)
|
||
|
keys.flatten!
|
||
|
keys.compact!
|
||
|
keys.uniq!
|
||
|
keys
|
||
|
end
|
||
|
end
|