You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All (non-test) format strings are known at compile-time, so we
don't need the std::string overload. Remove it so users use the
safer util::ConstevalFormatString where possible, or the
bilingual_str overload where applicable.
strprintf(_("Please contribute if you find %s useful. "
91
-
"Visit %s for further information about the software.").translated, PACKAGE_NAME, "<" PACKAGE_URL ">") +
91
+
"Visit %s for further information about the software."),
92
+
PACKAGE_NAME, "<" PACKAGE_URL ">")
93
+
.translated +
92
94
"\n" +
93
-
strprintf(_("The source code is available from %s.").translated, URL_SOURCE_CODE) +
95
+
strprintf(_("The source code is available from %s."), URL_SOURCE_CODE).translated +
94
96
"\n" +
95
97
"\n" +
96
98
_("This is experimental software.").translated + "\n" +
97
-
strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s").translated, "COPYING", "<https://opensource.org/licenses/MIT>") +
99
+
strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s"), "COPYING", "<https://opensource.org/licenses/MIT>").translated +
fast_rescan_filter ? "fast variant using block filters" : "slow variant inspecting all blocks");
1892
1892
1893
1893
fAbortRescan = false;
1894
-
ShowProgress(strprintf("%s " +_("Rescanning…").translated, GetDisplayName()), 0); // show rescan progress in GUI as dialog or on splashscreen, if rescan required on startup (e.g. due to corruption)
1894
+
ShowProgress(strprintf("%s %s", GetDisplayName(),_("Rescanning…").translated), 0); // show rescan progress in GUI as dialog or on splashscreen, if rescan required on startup (e.g. due to corruption)
0 commit comments