]> cat aescling's git repositories - mastodon.git/commitdiff
Add missing locale file for ga and add rake task to check for it (#11813)
authorEugen Rochko <eugen@zeonfederated.com>
Thu, 12 Sep 2019 02:58:33 +0000 (04:58 +0200)
committerGitHub <noreply@github.com>
Thu, 12 Sep 2019 02:58:33 +0000 (04:58 +0200)
* 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

.circleci/config.yml
app/javascript/mastodon/locales/ga.json [new file with mode: 0644]
lib/tasks/repo.rake

index 8ab08ebae5f5101a020d32990ff33a939de19936..ff8eb485986f0a9bba3b091eb1c6ca895b3e5249 100644 (file)
@@ -173,9 +173,11 @@ jobs:
     <<: *defaults
     steps:
       - *attach_workspace
+      - *install_system_dependencies
       - run: bundle exec i18n-tasks check-normalized
       - run: bundle exec i18n-tasks unused -l en
       - run: bundle exec i18n-tasks check-consistent-interpolations
+      - run: bundle exec rake repo:check_locales_files
 
 workflows:
   version: 2
diff --git a/app/javascript/mastodon/locales/ga.json b/app/javascript/mastodon/locales/ga.json
new file mode 100644 (file)
index 0000000..0967ef4
--- /dev/null
@@ -0,0 +1 @@
+{}
index 8ceec3085461f3e556e10c829942f383968c17fc..d1de17b7c0347da7ce820a6c90c7bdafa4b747d6 100644 (file)
@@ -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