diff --git a/application/dialogs/UpdateDialog.cpp b/application/dialogs/UpdateDialog.cpp index ff9513d1..31220e50 100644 --- a/application/dialogs/UpdateDialog.cpp +++ b/application/dialogs/UpdateDialog.cpp @@ -170,7 +170,7 @@ QString reprocessCommits(QByteArray json) if(status == "identical") { - return QObject::tr("
There is are no code changes between your current version and %1 HEAD.
").arg(channel); + return QObject::tr("There are no code changes between your current version and latest %1.
").arg(channel); } else if(status == "ahead") { @@ -181,7 +181,7 @@ QString reprocessCommits(QByteArray json) { auto commit_ahead = Json::requireInteger(rootobject, "ahead_by"); auto commit_behind = Json::requireInteger(rootobject, "behind_by"); - result += QObject::tr("The update removes %1 commits and adds the following %2:
").arg(commit_behind, commit_ahead); + result += QObject::tr("The update removes %1 commits and adds the following %2:
").arg(commit_behind).arg(commit_ahead); print_commits(); } result += QObject::tr("You can look at the changes on github.
").arg(diff_url);