Sha256: 0791218135dd05de3530d4bc12d6833087af3baf8bcff579e587687316525f45

Contents?: true

Size: 1.4 KB

Versions: 9

Compression:

Stored size: 1.4 KB

Contents

namespace :i18n do
  desc 'Find all translations in views, helpers and controllers'
  task update: :environment do
    require "i18n_screwdriver"
    require "yaml"

    translations = I18nScrewdriver.gather_translations
    puts "Found #{translations.keys.size} unique translations"
    default_locale = I18n.default_locale.to_s
    I18nScrewdriver.update_translations_file(default_locale, translations)
  end

  desc 'Translate all not yet translated texts for a given locale'
  task translate: :environment do
    require "i18n_screwdriver"
    require "yaml"

    raise "ERROR: usage: TRANSLATE=de rake i18n:translate" unless ENV['TRANSLATE']
    locale = ENV['TRANSLATE']
    default_locale = I18n.default_locale.to_s

    texts = I18nScrewdriver.load_translations(default_locale)
    translations = {}
    begin
      translations = I18nScrewdriver.load_translations(locale)
    rescue I18nScrewdriver::Error => e
      puts "WARNING: #{e.message}"
    end

    puts "Translating #{translations.keys.size} entries from <#{default_locale}> to <#{locale}> (enter :q to save and quit, ctrl-c to abort):"
    texts.keys.sort.each do |key|
      next unless ["", nil].include?(translations[key])
      puts "> #{texts[key]}"
      input = STDIN.gets.chomp
      break if input == ":q"
      translations[key] = input
    end

    puts "Saving translations..."
    I18nScrewdriver.write_translations(locale, translations)
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
i18n_screwdriver-12.0.0 lib/tasks/i18n.rake
i18n_screwdriver-10.7.2 lib/tasks/i18n.rake
i18n_screwdriver-10.7.1 lib/tasks/i18n.rake
i18n_screwdriver-10.7.0 lib/tasks/i18n.rake
i18n_screwdriver-10.6.0 lib/tasks/i18n.rake
i18n_screwdriver-10.5.0 lib/tasks/i18n.rake
i18n_screwdriver-10.4.0 lib/tasks/i18n.rake
i18n_screwdriver-10.3.0 lib/tasks/i18n.rake
i18n_screwdriver-10.2.1 lib/tasks/i18n.rake