while here, can we break up the HTML tags from the string to be translated? Keeping these tags as part of the string is error-prone
0@@ -236,7 +236,7 @@ void CreateWalletActivity::createWallet()
1 //: Title of progress window when Create Wallet action is selected.
2 tr("Create Wallet"),
3 //: Describing what is being done in background.
4- tr("Creating Wallet <b>%1</b>…").arg(m_create_wallet_dialog->walletName().toHtmlEscaped()));
5+ tr("Creating Wallet") + QString(" <b>%1</b>…").arg(m_create_wallet_dialog->walletName().toHtmlEscaped()));
6
7 std::string name = m_create_wallet_dialog->walletName().toStdString();
8 uint64_t flags = 0;
9@@ -331,7 +331,7 @@ void OpenWalletActivity::open(const std::string& path)
10 //: Title of progress window when Open Wallet action is selected.
11 tr("Open Wallet"),
12 //: Describing what is being done in the background.
13- tr("Opening Wallet <b>%1</b>…").arg(name.toHtmlEscaped()));
14+ tr("Opening Wallet") + QString(" <b>%1</b>…").arg(name.toHtmlEscaped()));
15
16 QTimer::singleShot(0, worker(), [this, path] {
17 std::unique_ptr<interfaces::Wallet> wallet = node().walletClient().loadWallet(path, m_error_message, m_warning_message);