class Localer::Data::Checker

Check missing translations Returns true if no missing translations found, otherwise false

Public Instance Methods

call() click to toggle source
# File lib/localer/data/checker.rb, line 10
def call
  data.each do |_locale, _key, value|
    return false if value.nil?
  end
  true
end