diff options
-rw-r--r-- | modules/printbackends/cups/gtkprintbackendcups.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/printbackends/cups/gtkprintbackendcups.c b/modules/printbackends/cups/gtkprintbackendcups.c index 06c1e68686..fb0d6a015f 100644 --- a/modules/printbackends/cups/gtkprintbackendcups.c +++ b/modules/printbackends/cups/gtkprintbackendcups.c @@ -5114,7 +5114,7 @@ cups_printer_get_options (GtkPrinter *printer, * the width and height in points. E.g: "Custom * 230.4x142.9" */ - custom_name = g_strdup_printf (_("Custom %sx%s"), width, height); + custom_name = g_strdup_printf (_("Custom %s×%s"), width, height); strncpy (option->defchoice, custom_name, PPD_MAX_NAME); g_free (custom_name); } |