(trunk gtk) #1477 "Launchpad translations need comment for strings with non-standard context" -- apply patch from okram.

This commit is contained in:
Jordan Lee 2011-07-26 01:09:39 +00:00
parent ee20cc2b24
commit 9448bc5e88
2 changed files with 2 additions and 2 deletions

View File

@ -789,7 +789,7 @@ updateStats( PrivateData * p )
%1$s is the size of the data we've downloaded
%2$s is the size of the data we've uploaded */
g_snprintf( buf, sizeof( buf ), Q_(
"size|Down: %1$s, Up: %2$s" ), down, up );
"Down: %1$s, Up: %2$s" ), down, up );
}
else if( !strcmp( pch, "total-transfer" ) )
{

View File

@ -139,7 +139,7 @@ char*
tr_strlsize( char * buf, guint64 bytes, size_t buflen )
{
if( !bytes )
g_strlcpy( buf, Q_( "size|None" ), buflen );
g_strlcpy( buf, Q_( "None" ), buflen );
else
tr_formatter_size_B( buf, bytes, buflen );