Improve one string

svn path=/trunk/; revision=21212
This commit is contained in:
Matthias Clasen 2008-08-27 19:22:26 +00:00
parent e18e278382
commit bcfd615759
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-08-27 Matthias Clasen <mclasen@redhat.com>
* modules/printbackends/cups/gtkprintbackendcups.c: Don't capitalize
"per" in "Pages per Slide".
2008-08-26 Matthias Clasen <mclasen@redhat.com>
Bug 549354 Crash trying to open a file on a remote folder

View File

@ -2709,7 +2709,7 @@ cups_printer_get_options (GtkPrinter *printer,
/* Translators, this string is used to label the pages-per-sheet option
* in the print dialog
*/
option = gtk_printer_option_new ("gtk-n-up", _("Pages Per Sheet"), GTK_PRINTER_OPTION_TYPE_PICKONE);
option = gtk_printer_option_new ("gtk-n-up", _("Pages per Sheet"), GTK_PRINTER_OPTION_TYPE_PICKONE);
gtk_printer_option_choices_from_array (option, G_N_ELEMENTS (n_up),
n_up, n_up);
gtk_printer_option_set (option, "1");