mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
35 lines
699 B
Ruby
Executable File
35 lines
699 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require_relative '../lib/tooling/gettext_extractor'
|
|
|
|
silent = ARGV.delete('--silent')
|
|
pot_file = ARGV.shift
|
|
|
|
if !pot_file || !Dir.exist?(File.dirname(pot_file))
|
|
abort <<~MSG
|
|
Please provide a target file name as the first argument, e.g.
|
|
#{$PROGRAM_NAME} locale/gitlab.pot
|
|
MSG
|
|
end
|
|
|
|
unless silent
|
|
puts <<~MSG
|
|
Extracting translatable strings from source files...
|
|
MSG
|
|
end
|
|
|
|
root_dir = File.expand_path('../../', __dir__)
|
|
|
|
extractor = Tooling::GettextExtractor.new(
|
|
glob_base: root_dir
|
|
)
|
|
|
|
File.write(pot_file, extractor.generate_pot)
|
|
|
|
unless silent
|
|
puts <<~MSG
|
|
All done. Please commit the changes to `#{pot_file}`.
|
|
MSG
|
|
end
|