class ISO3166::Data

def sync_translations!

def sync_translations!
  return unless cache_flush_required?
  locales_to_remove.each do |locale|
    unload_translations(locale)
  end
  locales_to_load.each do |locale|
    load_translations(locale)
  end
end