typo fix when time estimation is "1 day"

This commit is contained in:
Charles Kerr 2008-03-19 02:19:34 +00:00
parent e7316dbc34
commit 851bd7ec7b
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ tr_strltime( char * buf, int seconds, size_t buflen )
}
days = seconds / ( 60 * 60 * 24 );
g_snprintf( buf, buflen, ngettext( "'%d day", "%'d days", days ), days );
g_snprintf( buf, buflen, ngettext( "%'d day", "%'d days", days ), days );
return buf;
}