From 4a2a685a1ef46ec7f3bce6b57dafd858f96c1974 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Fri, 4 Jun 2010 16:43:16 +0000 Subject: [PATCH] (trunk gtk) minor improvements to the prefs dialog's layout --- gtk/tr-prefs.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gtk/tr-prefs.c b/gtk/tr-prefs.c index ff2503b2c..3f2c3c55c 100644 --- a/gtk/tr-prefs.c +++ b/gtk/tr-prefs.c @@ -279,7 +279,7 @@ torrentPage( GObject * core ) GtkWidget * l; t = hig_workarea_create( ); - hig_workarea_add_section_title( t, &row, _( "Adding Torrents" ) ); + hig_workarea_add_section_title( t, &row, _( "Adding" ) ); #ifdef HAVE_GIO s = _( "Automatically _add torrents from:" ); @@ -303,6 +303,9 @@ torrentPage( GObject * core ) w = new_check_button( s, TR_PREFS_KEY_TRASH_ORIGINAL, core ); hig_workarea_add_wide_control( t, &row, w ); + hig_workarea_add_section_divider( t, &row ); + hig_workarea_add_section_title( t, &row, _( "Downloading" ) ); + s = _( "Append \"._part\" to incomplete files' names" ); w = new_check_button( s, TR_PREFS_KEY_RENAME_PARTIAL_FILES, core ); hig_workarea_add_wide_control( t, &row, w ); @@ -325,7 +328,7 @@ torrentPage( GObject * core ) hig_workarea_add_row_w( t, &row, l, w, NULL ); hig_workarea_add_section_divider( t, &row ); - hig_workarea_add_section_title( t, &row, _( "Limits" ) ); + hig_workarea_add_section_title( t, &row, _( "Seeding" ) ); s = _( "_Seed torrent until its ratio reaches:" ); w = new_check_button( s, TR_PREFS_KEY_RATIO_ENABLED, core );