Changeset 12636


Ignore:
Timestamp:
Aug 6, 2011, 4:47:14 PM (12 years ago)
Author:
jordan
Message:

Tweak the phrasing of the queue preferences in the Qt and GTK+ preferences dialogs

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gtk/tr-prefs.c

    r12607 r12636  
    280280    hig_workarea_add_row( t, &row, s, w, NULL );
    281281
    282     s = _( "E_xempt torrents if idle for N minutes:" );
    283     w = new_spin_button( TR_PREFS_KEY_QUEUE_STALLED_MINUTES, core, 1, INT_MAX, 1 );
     282    s = _( "Downloads sharing data in the last N minutes are _active:" );
     283    w = new_spin_button( TR_PREFS_KEY_QUEUE_STALLED_MINUTES, core, 1, INT_MAX, 15 );
    284284    hig_workarea_add_row( t, &row, s, w, NULL );
    285285
  • trunk/qt/prefs-dialog.cc

    r12616 r12636  
    586586   
    587587        hig->addRow( tr( "Maximum active &downloads:" ), spinBoxNew( Prefs::DOWNLOAD_QUEUE_SIZE, 1, INT_MAX, 1 ) );
    588         hig->addRow( tr( "E&xempt torrents if idle for N minutes:" ), spinBoxNew( Prefs::QUEUE_STALLED_MINUTES, 1, FD_SETSIZE, 5 ) );
     588        hig->addRow( tr( "Downloads sharing data in the last N minutes are _active:" ), spinBoxNew( Prefs::QUEUE_STALLED_MINUTES, 1, INT_MAX, 15 ) );
    589589
    590590    hig->addSectionDivider( );
Note: See TracChangeset for help on using the changeset viewer.