Changeset 9338 for trunk/gtk/tr-prefs.c
- Timestamp:
- Oct 20, 2009, 2:01:15 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/tr-prefs.c
r9328 r9338 291 291 #endif 292 292 293 s = _( "Keep incomplete files in:" ); 293 s = _( "Show _options dialog" ); 294 w = new_check_button( s, PREF_KEY_OPTIONS_PROMPT, core ); 295 hig_workarea_add_wide_control( t, &row, w ); 296 297 s = _( "_Start when added" ); 298 w = new_check_button( s, PREF_KEY_START, core ); 299 hig_workarea_add_wide_control( t, &row, w ); 300 301 s = _( "Mo_ve .torrent file to the trash" ); 302 w = new_check_button( s, PREF_KEY_TRASH_ORIGINAL, core ); 303 hig_workarea_add_wide_control( t, &row, w ); 304 305 s = _( "Keep _incomplete files in:" ); 294 306 l = new_check_button( s, TR_PREFS_KEY_INCOMPLETE_DIR_ENABLED, core ); 295 307 w = new_path_chooser_button( TR_PREFS_KEY_INCOMPLETE_DIR, core ); … … 297 309 g_signal_connect( l, "toggled", G_CALLBACK( target_cb ), w ); 298 310 hig_workarea_add_row_w( t, &row, l, w, NULL ); 299 300 s = _( "Display _options dialog" );301 w = new_check_button( s, PREF_KEY_OPTIONS_PROMPT, core );302 hig_workarea_add_wide_control( t, &row, w );303 304 s = _( "_Start when added" );305 w = new_check_button( s, PREF_KEY_START, core );306 hig_workarea_add_wide_control( t, &row, w );307 308 s = _( "Mo_ve source files to Trash" );309 w = new_check_button( s, PREF_KEY_TRASH_ORIGINAL, core );310 hig_workarea_add_wide_control( t, &row, w );311 311 312 312 w = new_path_chooser_button( TR_PREFS_KEY_DOWNLOAD_DIR, core ); … … 346 346 hig_workarea_add_wide_control( t, &row, w ); 347 347 348 s = _( "Show Transmission in the notification _area" );348 s = _( "Show Transmission in the _notification area" ); 349 349 w = new_check_button( s, PREF_KEY_SHOW_TRAY_ICON, core ); 350 350 hig_workarea_add_wide_control( t, &row, w ); 351 351 352 s = _( "Show popup _notifications" );352 s = _( "Show _popup notifications" ); 353 353 w = new_check_button( s, PREF_KEY_SHOW_DESKTOP_NOTIFICATION, core ); 354 354 hig_workarea_add_wide_control( t, &row, w );
Note: See TracChangeset
for help on using the changeset viewer.