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.
This commit is contained in:
pablomartin4btc 2025-02-21 15:36:29 -03:00
parent e486597f9a
commit 75d5d235a6

View file

@ -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: To automatically regenerate the `bitcoin_en.ts` file, run the following commands:
```sh ```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 cmake --build build_dev_mode --target translate
``` ```