Changeset 7821
- Timestamp:
- Jan 31, 2009, 2:54:10 PM (12 years ago)
- Location:
- branches/1.5x
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.5x/daemon/remote.c
r7813 r7821 631 631 632 632 static char* 633 strlsize( char * buf, 634 int64_t size, 635 size_t buflen ) 633 strlsize( char * buf, int64_t size, size_t buflen ) 636 634 { 637 635 if( !size ) … … 1080 1078 { 1081 1079 int i, n; 1082 printf( "%-4s %-4s % -8s %-6s %-6s %-5s %-11s %s\n",1083 "ID", "Done", " ETA", "Up", "Down", "Ratio", "Status",1080 printf( "%-4s %-4s %8s %-8s %6s %6s %-5s %-11s %s\n", 1081 "ID", "Done", "Have", "ETA", "Up", "Down", "Ratio", "Status", 1084 1082 "Name" ); 1085 1083 for( i = 0, n = tr_bencListSize( list ); i < n; ++i ) … … 1103 1101 char statusStr[64]; 1104 1102 char ratioStr[32]; 1103 char haveStr[32]; 1104 1105 strlsize( haveStr, sizeWhenDone - leftUntilDone, sizeof( haveStr ) ); 1105 1106 1106 1107 if( leftUntilDone ) … … 1109 1110 tr_snprintf( etaStr, sizeof( etaStr ), "Done" ); 1110 1111 printf( 1111 "%4d %3d%% % -8s %6.1f %6.1f %5s %-11s %s\n",1112 "%4d %3d%% %8s %-8s %6.1f %6.1f %5s %-11s %s\n", 1112 1113 (int)id, 1113 (int)( 100.0 * 1114 ( sizeWhenDone - leftUntilDone ) / sizeWhenDone ),1114 (int)( 100.0 * ( sizeWhenDone - leftUntilDone ) / sizeWhenDone ), 1115 haveStr, 1115 1116 etaStr, 1116 1117 up / 1024.0, -
branches/1.5x/daemon/transmission-remote.1
r7813 r7821 31 31 .Op Fl R 32 32 .Op Fl s | S 33 .Op Fl Ar -session 33 34 .Op Fl t Ar all | Ar id | Ar hash 34 35 .Op Fl u Ar number | Fl U … … 143 144 .It Fl S Fl -stop 144 145 Stop the current torrent(s) from downloading or seeding 146 147 .It Fl -session 148 List session information from the server 145 149 146 150 .It Fl t Fl -torrent Ar all | id | torrent-hash -
branches/1.5x/gtk/tr-prefs.c
r7722 r7821 738 738 h = gtk_hbox_new( FALSE, GUI_PAD_BIG ); 739 739 gtk_box_pack_start( GTK_BOX( h ), w, TRUE, TRUE, 0 ); 740 w = gt k_button_new_from_stock( GTK_STOCK_OPEN);740 w = gtr_button_new_from_stock( GTK_STOCK_OPEN, _( "_Open web interface" ) ); 741 741 page->widgets = g_slist_append( page->widgets, w ); 742 742 g_signal_connect( w, "clicked", G_CALLBACK( onLaunchClutchCB ), NULL );
Note: See TracChangeset
for help on using the changeset viewer.