diff options
| author | Gavin Andresen <[email protected]> | 2013-08-05 00:24:49 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-08-05 00:24:49 -0700 |
| commit | d687aaa31180a7a81362711608c697b53c2739e6 (patch) | |
| tree | 66db098bbf48dfba617e0af83c0a542f80e65309 /src/qt/intro.cpp | |
| parent | Merge pull request #2850 from Diapolo/fix_intro (diff) | |
| parent | fix string in intro.cpp, which is untranslatable on Transifex (diff) | |
| download | discoin-d687aaa31180a7a81362711608c697b53c2739e6.tar.xz discoin-d687aaa31180a7a81362711608c697b53c2739e6.zip | |
Merge pull request #2865 from Diapolo/fix_intro_translation
fix string in intro.cpp, which is untranslatable on Transifex
Diffstat (limited to 'src/qt/intro.cpp')
| -rw-r--r-- | src/qt/intro.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 944899d3e..99db141c9 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -80,9 +80,9 @@ void FreespaceChecker::check() { if(fs::is_directory(dataDir)) { - QString separator = QDir::toNativeSeparators("/"); + QString separator = "<code>" + QDir::toNativeSeparators("/") + tr("name") + "</code>"; 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 { replyStatus = ST_ERROR; replyMessage = tr("Path already exists, and is not a directory."); |