mirror of
https://github.com/transmission/transmission
synced 2025-03-06 19:48:15 +00:00
(gtk) make the `web' preferences tab a little more consistent: "web gui", "web access" and "web interface" were all being used interchangably
This commit is contained in:
parent
5a061b0191
commit
3a2fa85fa9
1 changed files with 3 additions and 3 deletions
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue