Sha256: f162050ec700c123e0cd15a21a6613a09435f50b0a02496bd7d26b2f3ae782c3
Contents?: true
Size: 1.87 KB
Versions: 2
Compression:
Stored size: 1.87 KB
Contents
# encoding: utf-8 namespace :trans do desc "Fetch translation files from Web Translate It" task :fetch, :locale do |task, args| welcome_message puts "Fetching file for locale #{args.locale}…" configuration = WebTranslateIt::Configuration.new configuration.files.each do |file| response_code = file.fetch(args.locale) handle_response(file.file_path_for_locale(args.locale), response_code) end end namespace :fetch do desc "Fetch all the translation files from Web Translate It" task :all do welcome_message configuration = WebTranslateIt::Configuration.new locales = configuration.target_locales configuration.ignore_locales.each do |ignore| locales.delete(ignore) end puts "Fetching all files for all locales…" locales.each do |locale| configuration.files.each do |file| unless File.exist?(file.file_path_for_directory(locale)) Dir.mkdir(file.file_path_for_directory(locale)) end response_code = file.fetch(locale) handle_response(file.file_path_for_locale(locale), response_code) end end end end desc "Upload the translation files for a locale to Web Translate It" task :upload, :locale do |task, args| welcome_message puts "Uploading file for locale #{args.locale}…" configuration = WebTranslateIt::Configuration.new configuration.files.each do |file| response_code = file.upload(args.locale) handle_response(file.file_path_for_locale(args.locale), response_code) end end def handle_response(file_path, response_code) if response_code < 400 puts "#{file_path}: #{response_code}, OK" else puts "#{file_path}: #{response_code}, Problem!" end end def welcome_message puts "Web Translate It v#{WebTranslateIt::Util.version}" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wti_gettext_i18n_rails-1.0.1 | lib/web_translate_it/tasks.rb |
wti_gettext_i18n_rails-1.0.0 | lib/web_translate_it/tasks.rb |