From 75d5d235a6b5eb6b960be0c5e6e181460a1ac5e6 Mon Sep 17 00:00:00 2001 From: pablomartin4btc Date: Fri, 21 Feb 2025 15:36:29 -0300 Subject: [PATCH] doc: Update translation generation instructions This is a follow-up of #31731. Technically this change fixes the preset configuration execution failure as it needs multiprocess to be enabled, so we disable it using -DWITH_MULTIPROCESS=OFF. This code will need to be updated in PRs #31741 and #31802. --- doc/translation_process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/translation_process.md b/doc/translation_process.md index aeb223e0a08..429e92b2b32 100644 --- a/doc/translation_process.md +++ b/doc/translation_process.md @@ -18,7 +18,7 @@ We use automated scripts to help extract translations in both Qt, and non-Qt sou To automatically regenerate the `bitcoin_en.ts` file, run the following commands: ```sh -cmake --preset dev-mode -DWITH_USDT=OFF +cmake --preset dev-mode -DWITH_USDT=OFF -DWITH_MULTIPROCESS=OFF cmake --build build_dev_mode --target translate ```