BigW Consortium Gitlab

gettext.rake 684 Bytes
Newer Older
1 2 3 4 5 6
require "gettext_i18n_rails/tasks"

namespace :gettext do
  # Customize list of translatable files
  # See: https://github.com/grosser/gettext_i18n_rails#customizing-list-of-translatable-files
  def files_to_translate
Ruben Davila committed
7 8
    folders = %W(app lib config #{locale_path}).join(',')
    exts = %w(rb erb haml slim rhtml js jsx vue coffee handlebars hbs mustache).join(',')
9 10 11 12 13

    Dir.glob(
      "{#{folders}}/**/*.{#{exts}}"
    )
  end
14 15 16 17 18 19 20 21

  task :compile do
    # See: https://gitlab.com/gitlab-org/gitlab-ce/issues/33014#note_31218998
    FileUtils.touch(File.join(Rails.root, 'locale/gitlab.pot'))

    Rake::Task['gettext:pack'].invoke
    Rake::Task['gettext:po_to_json'].invoke
  end
22
end