diff options
| author | Wladimir J. van der Laan <[email protected]> | 2019-09-29 14:23:17 +0200 |
|---|---|---|
| committer | fanquake <[email protected]> | 2019-10-01 11:29:36 +0800 |
| commit | ac30fc4f599b28fc09a854bf2d2940fe2eb5fcdf (patch) | |
| tree | 3e81929d97da0cdbb51ceee48b6e518a383e28df /doc | |
| parent | build: update boost macros to latest upstream (diff) | |
| download | discoin-ac30fc4f599b28fc09a854bf2d2940fe2eb5fcdf.tar.xz discoin-ac30fc4f599b28fc09a854bf2d2940fe2eb5fcdf.zip | |
build: Factor out qt translations from build system
Move qt translations to a separate make include file.
This makes it easier to auto-generate this list from tooling
(see bitcoin-core/bitcoin-maintainer-tools#36).
Github-Pull: #16982
Rebased-From: 4320bfc0c0d88633c84146f8d640f5b6e4596244
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/translation_process.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/translation_process.md b/doc/translation_process.md index 969283284..5d2362b8c 100644 --- a/doc/translation_process.md +++ b/doc/translation_process.md @@ -73,7 +73,7 @@ To assist in updating translations, we have created a script to help. ```bash git ls-files src/qt/locale/*ts|xargs -n1 basename|sed 's/\(bitcoin_\(.*\)\).ts/<file alias="\2">locale\/\1.qm<\/file>/' ``` -4. Update `src/Makefile.qt.include` manually or via +4. Update `src/Makefile.qt_locale.include` manually or via ```bash git ls-files src/qt/locale/*ts|xargs -n1 basename|sed 's/\(bitcoin_\(.*\)\).ts/ qt\/locale\/\1.ts \\/' ``` |