2017-04-25 22:47:49 -04:00
|
|
|
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
|
2017-05-02 14:13:28 -04:00
|
|
|
folders = %W(app lib config #{locale_path}).join(',')
|
2017-07-07 11:40:10 -04:00
|
|
|
exts = %w(rb erb haml slim rhtml js jsx vue handlebars hbs mustache).join(',')
|
2017-04-25 22:47:49 -04:00
|
|
|
|
|
|
|
Dir.glob(
|
|
|
|
"{#{folders}}/**/*.{#{exts}}"
|
|
|
|
)
|
|
|
|
end
|
2017-06-01 16:07:56 -04:00
|
|
|
|
|
|
|
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
|
2017-04-25 22:47:49 -04:00
|
|
|
end
|