summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRubén Dávila <ruben@gitlab.com>2017-08-14 11:47:13 -0500
committerRubén Dávila <ruben@gitlab.com>2017-08-14 11:47:13 -0500
commitdc469ed4d3abc738db2fbc45619d6dc259fcde83 (patch)
treea383391ccaea54761a8f25cdf47c29a020f4dc55
parentfcd6a17ce430b1f5218c61ef91759a4539639a59 (diff)
downloadgitlab-ce-dc469ed4d3abc738db2fbc45619d6dc259fcde83.tar.gz
Add missing guidelines for i18n setup
-rw-r--r--doc/update/9.2-to-9.3.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/update/9.2-to-9.3.md b/doc/update/9.2-to-9.3.md
index e51459ae4ff..6245d22f5bb 100644
--- a/doc/update/9.2-to-9.3.md
+++ b/doc/update/9.2-to-9.3.md
@@ -97,6 +97,7 @@ cd /home/git/gitlab
sudo -u git -H git fetch --all
sudo -u git -H git checkout -- db/schema.rb # local changes will be restored automatically
+sudo -u git -H git checkout -- locale
```
For GitLab Community Edition:
@@ -279,6 +280,10 @@ sudo -u git -H bundle clean
# Run database migrations
sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production
+# Compile GetText PO files
+
+sudo -u git -H bundle exec rake gettext:compile RAILS_ENV=production
+
# Update node dependencies and recompile assets
sudo -u git -H bundle exec rake yarn:install gitlab:assets:clean gitlab:assets:compile RAILS_ENV=production NODE_ENV=production