diff options
author | Ruben Davila <rdavila84@gmail.com> | 2017-05-25 14:21:53 -0500 |
---|---|---|
committer | Ruben Davila <rdavila84@gmail.com> | 2017-05-25 14:21:53 -0500 |
commit | 07eeb5d206d164643fa3dbe3eef57ac23a62cf47 (patch) | |
tree | 5f8af9035734d32283a2b7d68190e27c62fb8bff | |
parent | 43c3614ebfd3a224b9db5718f19aa1e1eb7e7e61 (diff) | |
download | gitlab-ce-07eeb5d206d164643fa3dbe3eef57ac23a62cf47.tar.gz |
Add small update for the i18n guide.fix-i18-docs
-rw-r--r-- | doc/development/i18n_guide.md | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/development/i18n_guide.md b/doc/development/i18n_guide.md index 44eca68aaca..735345bd126 100644 --- a/doc/development/i18n_guide.md +++ b/doc/development/i18n_guide.md @@ -7,6 +7,14 @@ For working with internationalization (i18n) we use tool for this task and we have a lot of applications that will help us to work with it. +## Setting up GitLab Development Kit (GDK) + +In order to be able to work on the [GitLab Community Edition](https://gitlab.com/gitlab-org/gitlab-ce) project we must download and +configure it through [GDK](https://gitlab.com/gitlab-org/gitlab-development-kit), we can do it by following this [guide](https://gitlab.com/gitlab-org/gitlab-development-kit/blob/master/doc/set-up-gdk.md). + +Once we have the GitLab project ready we can start working on the +translation of the project. + ## Tools We use a couple of gems: @@ -211,9 +219,11 @@ Let's suppose you want to add translations for a new language, let's say French. you just need to separate the region with an underscore (`_`). For example: ```sh - bundle exec rake gettext:add_language[en_gb] + bundle exec rake gettext:add_language[en_GB] ``` + Please note that you need to specify the region part in capitals. + 1. Now that the language is added, a new directory has been created under the path: `locale/fr/`. You can now start using your PO editor to edit the PO file located in: `locale/fr/gitlab.edit.po`. |