diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-01-03 15:01:46 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-01-03 15:01:46 +0100 |
| commit | a9d6151802a7b804bd527be04fa91a1d0269168e (patch) | |
| tree | 1c4a552ea4713c591578adbf036966fa66fef438 /src/qt/guiutil.cpp | |
| parent | doc: Add historical release notes for 0.13.2 (diff) | |
| download | discoin-a9d6151802a7b804bd527be04fa91a1d0269168e.tar.xz discoin-a9d6151802a7b804bd527be04fa91a1d0269168e.zip | |
qt,wallet: Fix a few typos in messages
As reported by [yahoe.001](https://www.transifex.com/user/profile/yahoe.001/).
Diffstat (limited to 'src/qt/guiutil.cpp')
| -rw-r--r-- | src/qt/guiutil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 8132e4fe0..94b1b8abe 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -961,11 +961,11 @@ QString formateNiceTimeOffset(qint64 secs) const int YEAR_IN_SECONDS = 31556952; // Average length of year in Gregorian calendar if(secs < 60) { - timeBehindText = QObject::tr("%n seconds(s)","",secs); + timeBehindText = QObject::tr("%n second(s)","",secs); } else if(secs < 2*HOUR_IN_SECONDS) { - timeBehindText = QObject::tr("%n minutes(s)","",secs/60); + timeBehindText = QObject::tr("%n minute(s)","",secs/60); } else if(secs < 2*DAY_IN_SECONDS) { |