]> granicus.if.org Git - transmission/commitdiff
(trunk gtk, qt) "It is unobvious if test port feature tests UDP port status as well...
authorJordan Lee <jordan@transmissionbt.com>
Sun, 17 Jul 2011 14:12:00 +0000 (14:12 +0000)
committerJordan Lee <jordan@transmissionbt.com>
Sun, 17 Jul 2011 14:12:00 +0000 (14:12 +0000)
gtk/tr-prefs.c
qt/prefs-dialog.cc

index adddcdf6a4b3df5ac15fd0fbc60a8e291a90dbec..530db3f88a4498c0c6ffa21e491f180524bdf71b 100644 (file)
@@ -1149,7 +1149,7 @@ onPortTest( GtkButton * button UNUSED, gpointer vdata )
     struct network_page_data * data = vdata;
     gtk_widget_set_sensitive( data->portButton, FALSE );
     gtk_widget_set_sensitive( data->portSpin, FALSE );
-    gtk_label_set_markup( GTK_LABEL( data->portLabel ), _( "<i>Testing...</i>" ) );
+    gtk_label_set_markup( GTK_LABEL( data->portLabel ), _( "<i>Testing TCP port...</i>" ) );
     if( !data->portTag )
         data->portTag = g_signal_connect( data->core, "port-tested", G_CALLBACK(onPortTested), data );
     gtr_core_port_test( data->core );
index 64099c8c90e3947db7ef4f6f81de5f9544ebaac5..fca8c7c6bcde8b18010af3bcf3ae8acab76ccedd 100644 (file)
@@ -322,7 +322,7 @@ PrefsDialog :: onPortTested( bool isOpen )
 void
 PrefsDialog :: onPortTest( )
 {
-    myPortLabel->setText( tr( "Testing..." ) );
+    myPortLabel->setText( tr( "Testing TCP Port..." ) );
     myPortButton->setEnabled( false );
     myWidgets[Prefs::PEER_PORT]->setEnabled( false );
     mySession.portTest( );