mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-06 14:19:59 -05:00
Merge pull request #2865 from Diapolo/fix_intro_translation
fix string in intro.cpp, which is untranslatable on Transifex
This commit is contained in:
commit
d687aaa311
1 changed files with 2 additions and 2 deletions
|
@ -80,9 +80,9 @@ void FreespaceChecker::check()
|
||||||
{
|
{
|
||||||
if(fs::is_directory(dataDir))
|
if(fs::is_directory(dataDir))
|
||||||
{
|
{
|
||||||
QString separator = QDir::toNativeSeparators("/");
|
QString separator = "<code>" + QDir::toNativeSeparators("/") + tr("name") + "</code>";
|
||||||
replyStatus = ST_OK;
|
replyStatus = ST_OK;
|
||||||
replyMessage = tr("Directory already exists. Add <code>%1name</code> if you intend to create a new directory here.").arg(separator);
|
replyMessage = tr("Directory already exists. Add %1 if you intend to create a new directory here.").arg(separator);
|
||||||
} else {
|
} else {
|
||||||
replyStatus = ST_ERROR;
|
replyStatus = ST_ERROR;
|
||||||
replyMessage = tr("Path already exists, and is not a directory.");
|
replyMessage = tr("Path already exists, and is not a directory.");
|
||||||
|
|
Loading…
Add table
Reference in a new issue