qt,wallet: Fix a few typos in messages
As reported by [yahoe.001](https://www.transifex.com/user/profile/yahoe.001/).
This commit is contained in:
+2
-2
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user