From 07449e514af441f964a57b764de7fae67c9d5135 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Mon, 28 Dec 2015 06:00:36 +0100 Subject: GH-1360 fix some typos --- application/dialogs/UpdateDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'application/dialogs/UpdateDialog.cpp') 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); -- cgit v1.2.3