diff options
author | monsta <[email protected]> | 2016-07-28 15:14:29 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-07-28 15:14:29 +0300 |
commit | 921ee4b7690bd476d97b816f93339eda213342f0 (patch) | |
tree | 85720e76c6eefa88473cee7d97d6f7311c396938 /libview/ev-print-operation.c | |
parent | aba1bb9eb39c38d7b7159943e8d16d4fb169824c (diff) | |
download | atril-921ee4b7690bd476d97b816f93339eda213342f0.tar.bz2 atril-921ee4b7690bd476d97b816f93339eda213342f0.tar.xz |
add some missing contextual information for translators
ported from:
https://git.gnome.org/browse/evince/commit/?id=544d9b4a73011c1e5a7b1d37b05a94f761d0dc03
Diffstat (limited to 'libview/ev-print-operation.c')
-rw-r--r-- | libview/ev-print-operation.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libview/ev-print-operation.c b/libview/ev-print-operation.c index bd6ef328..822d1a84 100644 --- a/libview/ev-print-operation.c +++ b/libview/ev-print-operation.c @@ -1309,7 +1309,8 @@ ev_print_operation_export_run (EvPrintOperation *op, export->parent_window = parent; export->error = NULL; - + + /* translators: Title of the print dialog */ dialog = gtk_print_unix_dialog_new (_("Print"), parent); gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); @@ -1908,6 +1909,7 @@ ev_print_operation_print_create_custom_widget (EvPrintOperationPrint *print, gtk_widget_show (label); print->scale_combo = gtk_combo_box_text_new (); + /* translators: Value for 'Page Scaling:' to not scale the document pages on printing */ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (print->scale_combo), _("None")); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (print->scale_combo), _("Shrink to Printable Area")); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (print->scale_combo), _("Fit to Printable Area")); |