mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:19:27 +08: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
|