summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-08-22 10:15:44 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-09-29 23:05:20 -0400
commit60f0445233631c0d3428ec6dca4b38e3a8fcf8f6 (patch)
tree39d8510a88aa26632acf30008fa074d189734d45
parent972136803aa4f83e7297b47855b1d5b2c7735f4b (diff)
downloadgtk+-60f0445233631c0d3428ec6dca4b38e3a8fcf8f6.tar.gz
Printing: Better typography
Use U+007D MULTPLICATION SIGN for dimensions. https://bugzilla.gnome.org/show_bug.cgi?id=735192
-rw-r--r--modules/printbackends/cups/gtkprintbackendcups.c2
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);
}