diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-02 21:03:27 -0400 |
---|---|---|
committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-03 16:20:53 -0400 |
commit | f3ad633f55b8f2ac744924ca38018c41ee035f1e (patch) | |
tree | 5c61bf27c870ecb53b24bf6708d74b7977da542d /docs/markdown/Localisation.md | |
parent | b80d40c287789ec0cb430842923a0254c86a6150 (diff) | |
download | meson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.zip meson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.tar.gz meson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.tar.bz2 |
doc: Fix several minor typos.
Diffstat (limited to 'docs/markdown/Localisation.md')
-rw-r--r-- | docs/markdown/Localisation.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Localisation.md b/docs/markdown/Localisation.md index 9424033..27181e5 100644 --- a/docs/markdown/Localisation.md +++ b/docs/markdown/Localisation.md @@ -19,7 +19,7 @@ We also need to define an array of strings containing all the locales we want to langs = ['fi', 'de'] ``` -Then we need to generate the main pot file. Usually this is generated manually or exists already. If not, see later on how to generate it using Meson. The potfile can have any name but is usually the name of the gettext package. Let's say the project is called *intltest*. In this case the corresponding pot file would be called `inltest.pot`. +Then we need to generate the main pot file. Usually this is generated manually or exists already. If not, see later on how to generate it using Meson. The potfile can have any name but is usually the name of the gettext package. Let's say the project is called *intltest*. In this case the corresponding pot file would be called `intltest.pot`. For each language listed in the array above we need a corresponding `.po` file. This has to be generated manually, see the gettext manual for details. Once we have all this, we can define the localisation to Meson with these lines. |