Skip to content

Commit ee7928a

Browse files
committed
Clean up Untranslated strings
bitcoin/bitcoin#31072
1 parent 4a67da8 commit ee7928a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

qml/bitcoin.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,19 +204,19 @@ int QmlGuiMain(int argc, char* argv[])
204204
SetupUIArgs(gArgs);
205205
std::string error;
206206
if (!gArgs.ParseParameters(argc, argv, error)) {
207-
InitError(strprintf(Untranslated("Cannot parse command line arguments: %s\n"), error));
207+
InitError(Untranslated(strprintf("Cannot parse command line arguments: %s\n", error)));
208208
return EXIT_FAILURE;
209209
}
210210

211211
/// Determine availability of data directory.
212212
if (!CheckDataDirOption(gArgs)) {
213-
InitError(strprintf(Untranslated("Specified data directory \"%s\" does not exist.\n"), gArgs.GetArg("-datadir", "")));
213+
InitError(Untranslated(strprintf("Specified data directory \"%s\" does not exist.\n", gArgs.GetArg("-datadir", ""))));
214214
return EXIT_FAILURE;
215215
}
216216

217217
/// Read and parse bitcoin.conf file.
218218
if (!gArgs.ReadConfigFiles(error, true)) {
219-
InitError(strprintf(Untranslated("Cannot parse configuration file: %s\n"), error));
219+
InitError(Untranslated(strprintf("Cannot parse configuration file: %s\n", error)));
220220
return EXIT_FAILURE;
221221
}
222222

0 commit comments

Comments
 (0)