summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Drąg <piotrdrag@gmail.com>2016-12-30 19:25:22 +0100
committerPiotr Drąg <piotrdrag@gmail.com>2017-01-02 16:20:29 +0100
commit1b6015f9cc8eb47bd38885c8698ef4b68d388c01 (patch)
treeca025948cb64f3a21eea95f588b75075245179ab
parentb993acfe2c7b81e6ed4c35eb4f30bac29f43254e (diff)
downloadgtk+-1b6015f9cc8eb47bd38885c8698ef4b68d388c01.tar.gz
gtkprintbackendfile: Correct PostScript capitalization
https://bugzilla.gnome.org/show_bug.cgi?id=776627
-rw-r--r--modules/printbackends/file/gtkprintbackendfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/printbackends/file/gtkprintbackendfile.c b/modules/printbackends/file/gtkprintbackendfile.c
index 6d98d0f7d5..4f479fb6ce 100644
--- a/modules/printbackends/file/gtkprintbackendfile.c
+++ b/modules/printbackends/file/gtkprintbackendfile.c
@@ -660,7 +660,7 @@ file_printer_get_options (GtkPrinter *printer,
GtkPrinterOption *option;
const gchar *n_up[] = {"1", "2", "4", "6", "9", "16" };
const gchar *pages_per_sheet = NULL;
- const gchar *format_names[N_FORMATS] = { N_("PDF"), N_("Postscript"), N_("SVG") };
+ const gchar *format_names[N_FORMATS] = { N_("PDF"), N_("PostScript"), N_("SVG") };
const gchar *supported_formats[N_FORMATS];
gchar *display_format_names[N_FORMATS];
gint n_formats = 0;