summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@vanlanduyt.co>2018-06-20 22:09:23 +0200
committerBob Van Landuyt <bob@vanlanduyt.co>2018-06-20 22:09:23 +0200
commite6813519db34dd49953ddb4fdb06d3aef444ca15 (patch)
treead524e1da7a0d5309c8a9d8e2285418e5b27b293
parent1a426b040f3cef46dd63a54afcb65404b18ebfc6 (diff)
downloadgitlab-ce-bvl-dont-generate-mo.tar.gz
Don't generate `.mo` filesbvl-dont-generate-mo
Since we are only using `.po` files for translation we can shave off some setup time. Generating the `mo` files also regenerates the PO-files, including fuzzy translations. Those cause a lot of bugs, and we don't need them anymore since the `po` files are generated by an external translation service.
-rw-r--r--lib/tasks/gettext.rake1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/tasks/gettext.rake b/lib/tasks/gettext.rake
index d7c40cb6a12..3fb399497ba 100644
--- a/lib/tasks/gettext.rake
+++ b/lib/tasks/gettext.rake
@@ -16,7 +16,6 @@ namespace :gettext 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