
jan at nessus
Aug 23, 2006, 3:38 AM
Post #1 of 1
(682 views)
Permalink
|
|
NessusClient/nessus/prefs_dialog prefs_dialog_scan_opt.c,1.3,1.4
|
|
Update of /usr/local/cvs/NessusClient/nessus/prefs_dialog In directory raccoon.nessus.org:/tmp/cvs-serv60998 Modified Files: prefs_dialog_scan_opt.c Log Message: Shortened two strings in order to reduce horizontal space consumption. Index: prefs_dialog_scan_opt.c =================================================================== RCS file: /usr/local/cvs/NessusClient/nessus/prefs_dialog/prefs_dialog_scan_opt.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- prefs_dialog_scan_opt.c 25 Apr 2006 15:36:10 -0000 1.3 +++ prefs_dialog_scan_opt.c 23 Aug 2006 10:38:52 -0000 1.4 @@ -112,7 +112,7 @@ gtk_table_set_row_spacing(GTK_TABLE(table), 1, 10); - label = gtk_label_new(_("Number of hosts to test at the same time:")); + label = gtk_label_new(_("Hosts to test concurrently:")); gtk_misc_set_alignment((GtkMisc *)label, 0, 1); gtk_table_attach_defaults(GTK_TABLE(table), label, 0,1,2,3); gtk_widget_show(label); @@ -123,7 +123,7 @@ arg_add_value(ctrls, "MAX_HOSTS", ARG_PTR, -1, entry); gtk_table_set_row_spacing(GTK_TABLE(table), 2, 10); - label = gtk_label_new(_("Number of checks to perform at the same time:")); + label = gtk_label_new(_("Checks to perform concurrently:")); gtk_misc_set_alignment((GtkMisc *)label, 0, 1); gtk_table_attach_defaults(GTK_TABLE(table), label, 0,1,3,4); gtk_widget_show(label); _______________________________________________ Nessus-cvs mailing list Nessus-cvs [at] list http://mail.nessus.org/mailman/listinfo/nessus-cvs
|