aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Localisation.md
diff options
context:
space:
mode:
authorTheQwertiest <qwertiest@mail.ru>2020-06-30 18:32:27 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2020-06-30 23:52:31 +0300
commit83a973ca04cf53dd98ff487b4273155b82cf554a (patch)
treeb060a4df04b2a3868c1df22db4daa62fc03aa6c3 /docs/markdown/Localisation.md
parent9e0db0a05ed146b48dc56cc95a6a85b99f93fc8a (diff)
downloadmeson-83a973ca04cf53dd98ff487b4273155b82cf554a.zip
meson-83a973ca04cf53dd98ff487b4273155b82cf554a.tar.gz
meson-83a973ca04cf53dd98ff487b4273155b82cf554a.tar.bz2
Replaced `ninja` with `meson` [skip ci]
Diffstat (limited to 'docs/markdown/Localisation.md')
-rw-r--r--docs/markdown/Localisation.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Localisation.md b/docs/markdown/Localisation.md
index ce9e3b6..ed63e13 100644
--- a/docs/markdown/Localisation.md
+++ b/docs/markdown/Localisation.md
@@ -48,7 +48,7 @@ Then we need to generate the main pot file. The potfile can have any name but is
Run the following command from your build folder to generate the pot file. It is recommended to inspect it manually afterwards and fill in e.g. proper copyright and contact information.
```console
-$ ninja intltest-pot
+$ meson compile intltest-pot
```
### generate .po files
@@ -56,5 +56,5 @@ $ ninja intltest-pot
For each language listed in the array above we need a corresponding `.po` file. Those can be generated by running the following command from your build folder.
```console
-$ ninja intltest-update-po
+$ meson compile intltest-update-po
```