]> granicus.if.org Git - transmission/commitdiff
(gtk) make the `web' preferences tab a little more consistent: "web gui", "web access...
authorCharles Kerr <charles@transmissionbt.com>
Sat, 19 Jul 2008 14:23:56 +0000 (14:23 +0000)
committerCharles Kerr <charles@transmissionbt.com>
Sat, 19 Jul 2008 14:23:56 +0000 (14:23 +0000)
gtk/tr-prefs.c

index 2c5fa5d284c85a9c92cd333e595b6ffa7f42bd6d..07051800f1851b3abdb6cd7c8cc5064aeb6f17eb 100644 (file)
@@ -791,7 +791,7 @@ webPage( GObject * core )
     t = hig_workarea_create( );
     g_object_set_data_full( G_OBJECT( t ), "page", page, g_free );
 
-    hig_workarea_add_section_title( t, &row, _( "Web Interface" ) );
+    hig_workarea_add_section_title( t, &row, _( "Web Access" ) );
 
         /* "enabled" checkbutton */
         s = _( "_Enable web access" );
@@ -800,7 +800,7 @@ webPage( GObject * core )
         g_signal_connect( w, "clicked", G_CALLBACK(onRPCToggled), page );
         h = gtk_hbox_new( FALSE, GUI_PAD_BIG );
         gtk_box_pack_start_defaults( GTK_BOX(h), w );
-        w = gtk_button_new_with_mnemonic( _( "Launch Web _GUI" ) );
+        w = gtk_button_new_with_mnemonic( _( "_Launch Web Browser" ) );
         page->widgets = g_slist_append( page->widgets, w );
         g_signal_connect( w, "clicked", G_CALLBACK(onLaunchClutchCB), NULL );
         gtk_box_pack_start( GTK_BOX(h), w, FALSE, FALSE, 0 );
@@ -847,7 +847,7 @@ webPage( GObject * core )
         GtkWidget * h;
         GtkTooltips * tips = gtk_tooltips_new( );
 
-        s = _( "Access control _list:" );
+        s = _( "Access control list:" );
         page->store = GTK_LIST_STORE( m );
         w = gtk_tree_view_new_with_model( m );