Changeset 5537 for branches/1.1x/gtk/torrent-cell-renderer.c
- Timestamp:
- Apr 6, 2008, 2:32:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1x/gtk/torrent-cell-renderer.c
r5493 r5537 84 84 GString * gstr = g_string_new( str ); 85 85 g_string_append( gstr, " - " ); 86 if( eta < 0 ) 86 if( eta == TR_ETA_NOT_AVAIL ) 87 g_string_append( gstr, _( "Not available" ) ); 88 else if( eta == TR_ETA_UNKNOWN ) 87 89 g_string_append( gstr, _( "Stalled" ) ); 88 90 else {
Note: See TracChangeset
for help on using the changeset viewer.