Commit 0a14f9bd authored by Douwe Maan's avatar Douwe Maan

Merge branch 'fix-i18-docs' into 'master'

Add small update for the i18n guide.

See merge request !11719
parents 67ea6389 07eeb5d2
...@@ -7,6 +7,14 @@ For working with internationalization (i18n) we use ...@@ -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 tool for this task and we have a lot of applications that will help us to work
with it. 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 ## Tools
We use a couple of gems: 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. ...@@ -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: you just need to separate the region with an underscore (`_`). For example:
```sh ```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 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 path: `locale/fr/`. You can now start using your PO editor to edit the PO file
located in: `locale/fr/gitlab.edit.po`. located in: `locale/fr/gitlab.edit.po`.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment