diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2020-11-03 21:40:40 -0500 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-11-04 17:23:34 +0200 |
commit | 478feb39ed1a6458b5ace9ead1e403d6a6025b49 (patch) | |
tree | 9a6416cfbe86786dee98752cd03592ae8b7833a9 /docs/markdown/Qt5-module.md | |
parent | 63814543de6f46fc8aee7d3884a8746c968806ca (diff) | |
download | meson-478feb39ed1a6458b5ace9ead1e403d6a6025b49.zip meson-478feb39ed1a6458b5ace9ead1e403d6a6025b49.tar.gz meson-478feb39ed1a6458b5ace9ead1e403d6a6025b49.tar.bz2 |
qt module: fix error message typo, translation qresource accepts qm not ts
Fixes #7925
Diffstat (limited to 'docs/markdown/Qt5-module.md')
-rw-r--r-- | docs/markdown/Qt5-module.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/markdown/Qt5-module.md b/docs/markdown/Qt5-module.md index 9665267..6826460 100644 --- a/docs/markdown/Qt5-module.md +++ b/docs/markdown/Qt5-module.md @@ -79,7 +79,8 @@ executable('myprog', 'main.cpp', 'myclass.cpp', moc_files, ``` Sometimes, translations are embedded inside the binary using qresource files. -In this case the ts files do not need to be explicitly listed. For example: +In this case the ts files do not need to be explicitly listed, but will be +inferred from the built qm files listed in the qresource file. For example: ```meson qt5 = import('qt5') |