diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-09-12 04:58:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-12 04:58:33 +0200 |
commit | 9361981388ed372b0502aec7d74fee9cacb4cf86 (patch) | |
tree | e1576fa24b1559d0fa18a576f0fe950b086411d9 /lib/tasks | |
parent | 16cdaa1110878f84a542f0f9a6b323ba800f4e81 (diff) |
Add missing locale file for ga and add rake task to check for it (#11813)
* Add missing locale file for ga and add rake task to check for it * Update lib/tasks/repo.rake Co-Authored-By: Yamagishi Kazutoshi <ykzts@desire.sh> * Fix check-i18n build
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/repo.rake | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/tasks/repo.rake b/lib/tasks/repo.rake index 8ceec3085..d1de17b7c 100644 --- a/lib/tasks/repo.rake +++ b/lib/tasks/repo.rake @@ -76,4 +76,19 @@ namespace :repo do tmp.unlink end end + + task check_locales_files: :environment do + pastel = Pastel.new + + missing_yaml_files = I18n.available_locales.reject { |locale| File.exist?(Rails.root.join('config', 'locales', "#{locale}.yml")) } + missing_json_files = I18n.available_locales.reject { |locale| File.exist?(Rails.root.join('app', 'javascript', 'mastodon', 'locales', "#{locale}.json")) } + + if missing_json_files.empty? && missing_yaml_files.empty? + puts pastel.green('OK') + else + puts pastel.red("Missing YAML files: #{pastel.bold(missing_yaml_files.join(', '))}") unless missing_yaml_files.empty? + puts pastel.red("Missing JSON files: #{pastel.bold(missing_json_files.join(', '))}") unless missing_json_files.empty? + exit(1) + end + end end |