Sha256: a627afad58abd9a517ddb17828cb8511cbbb0df3e22f0d3008afa8501e30f1c9
Contents?: true
Size: 858 Bytes
Versions: 3
Compression:
Stored size: 858 Bytes
Contents
# encoding: utf-8 require 'web_translate_it/util' require 'web_translate_it/configuration' require 'web_translate_it/translation_file' require 'web_translate_it/auto_fetch' require 'web_translate_it/command_line' require 'web_translate_it/project' require 'web_translate_it/server' module WebTranslateIt def self.fetch_translations config = Configuration.new locale = I18n.locale.to_s return if config.ignore_locales.include?(locale) config.logger.debug { "➔ Fetching #{locale.upcase} language file(s) from Web Translate It…" } if config.logger WebTranslateIt::Util.http_connection do |http| config.files.find_all{ |file| file.locale == locale }.each do |file| response = file.fetch(http) config.logger.debug { "➔ Web Translate It response: #{response}" } if config.logger end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
web_translate_it-1.8.2.0 | lib/web_translate_it.rb |
web_translate_it-1.8.1.9 | lib/web_translate_it.rb |
web_translate_it-1.8.1.8 | lib/web_translate_it.rb |