Improve accessible name

Change the accessible name of an entry in the print dialog from "At"
to "Time of print". String addition. (#577964)
This commit is contained in:
Matthias Clasen 2009-04-10 00:09:27 -04:00
parent 1f1db4f288
commit f0b4779d56

View File

@ -2775,7 +2775,7 @@ create_job_page (GtkPrintUnixDialog *dialog)
entry = gtk_entry_new ();
gtk_widget_set_tooltip_text (entry, at_tooltip);
atk_object_set_name (gtk_widget_get_accessible (entry), _("At"));
atk_object_set_name (gtk_widget_get_accessible (entry), _("Time of print"));
atk_object_set_description (gtk_widget_get_accessible (entry), at_tooltip);
priv->print_at_entry = entry;
gtk_widget_show (entry);