Skip to content

Commit da41d7d

Browse files
authored
Merge pull request #2063 from cyrossignol/update-translations
gui: Update Qt Linguist localization files
2 parents 7d9c12f + 7f69905 commit da41d7d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+158723
-84222
lines changed

src/gridcoin/scraper/scraper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5279,7 +5279,7 @@ UniValue archivelog(const UniValue& params, bool fHelp)
52795279
if (fHelp || params.size() != 1 )
52805280
throw std::runtime_error(
52815281
"archivelog <log>\n"
5282-
"Immediately archives the specified log. Currently valid valus are debug and scraper.\n"
5282+
"Immediately archives the specified log. Currently valid values are debug and scraper.\n"
52835283
);
52845284

52855285
std::string sLogger = params[0].get_str();

src/gridcoin/upgrade.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ bool Upgrade::CheckForLatestUpdate(bool ui_dialog, std::string client_message_ou
158158

159159
if (NewMandatory)
160160
{
161-
client_message_out.append(_("WARNING: A mandatory release is available. Please upgrade as soon as possible.\n"));
161+
client_message_out.append(_("WARNING: A mandatory release is available. Please upgrade as soon as possible.") + "\n");
162162
}
163163

164164
std::string ChangeLog = GithubReleaseBody;

src/gridcoin/upgrade.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,14 +172,14 @@ class Progress
172172
if (Type == 0)
173173
{
174174
if (ProgressBytes < 1000000 && ProgressBytes > 0)
175-
ProgressString << " " << std::fixed << std::setprecision(1) << (ProgressBytes / (double)1000) << _(" KB/s");
175+
ProgressString << " " << std::fixed << std::setprecision(1) << (ProgressBytes / (double)1000) << " " << _("KB/s");
176176

177177
else if (ProgressBytes >= 1000000)
178-
ProgressString << " " << std::fixed << std::setprecision(1) << (ProgressBytes / (double)1000000) << _(" MB/s");
178+
ProgressString << " " << std::fixed << std::setprecision(1) << (ProgressBytes / (double)1000000) << " " << _("MB/s");
179179

180180
// Unsupported progress
181181
else
182-
ProgressString << _(" N/A");
182+
ProgressString << " " << _("N/A");
183183

184184
ProgressString << " (" << std::fixed << std::setprecision(2) << (ProgressNow / (double)(1024 * 1024 * 1024)) << _("GB/");
185185
ProgressString << std::fixed << std::setprecision(2) << (ProgressTotal / (double)(1024 * 1024 * 1024)) << _("GB)");

src/init.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,11 +304,11 @@ std::string HelpMessage()
304304

305305
"\n" + _("Update/Snapshot options:") + "\n"
306306
" -snapshotdownload " + _("Download and apply latest snapshot") + "\n"
307-
" -snapshoturl=<url> " + _("Optional: Specify url of snapshot.zip file (ex: https://sub.domain.com/location/snapshot.zip)") + "\n"
308-
" -snapshotsha256url=<url> " + _("Optional: Specify url of snapshot.sha256 file (ex: https://sub.domain.com/location/snapshot.sha256)") + "\n"
307+
" -snapshoturl=<url> " + _("Optional: URL for the snapshot.zip file (ex: https://sub.domain.com/location/snapshot.zip)") + "\n"
308+
" -snapshotsha256url=<url> " + _("Optional: URL for the snapshot.sha256 file (ex: https://sub.domain.com/location/snapshot.sha256)") + "\n"
309309
" -disableupdatecheck " + _("Optional: Disable update checks by wallet") + "\n"
310-
" -updatecheckinterval=<hours> " + _("Optional: Specify custom update interval checks in hours (Default: 120 hours (minimum 1 hour))") + "\n"
311-
" -updatecheckurl=<url> " + _("Optional: Specify url of update version checks (ex: https://sub.domain.com/location/latest") + "\n";
310+
" -updatecheckinterval=<n> " + _("Optional: Check for updates every <n> hours (default: 120, minimum: 1)") + "\n"
311+
" -updatecheckurl=<url> " + _("Optional: URL for the update version checks (ex: https://sub.domain.com/location/latest") + "\n";
312312

313313
return strUsage;
314314
}

src/qt/bitcoinstrings.cpp

Lines changed: 149 additions & 60 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)