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
|