in lib/twitter_cldr/resources/timezones_importer.rb [123:138]
def timezones
@timezones ||= doc.xpath('ldml/dates/timeZoneNames/zone').inject({}) do |result, zone|
type = zone.attr('type').to_sym
result[type] = {}
long = nodes_to_hash(zone.xpath('long/*'))
result[type][:long] = long unless long.empty?
short = nodes_to_hash(zone.xpath('short/*'))
result[type][:short] = short unless short.empty?
city = zone.xpath('exemplarCity').first
if city && !unconfirmed_draft?(city) && !secondary?(city)
result[type][:city] = city.content
end
result
end
end