aboutsummaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2018-04-15 17:08:44 +0200
committerThomas White <taw@bitwiz.me.uk>2018-04-15 17:09:12 +0200
commit39b16e3f9fa51e737dd4cdfed7def8259757d24c (patch)
treecd19d32fe64364e24d03795d6fdf5d246c309b92 /src/print.c
parenta20ab237477fe774d69fa742d59a5659ede35b15 (diff)
Internationalise all strings in source code
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c
index d2e8ac2..b0e3a84 100644
--- a/src/print.c
+++ b/src/print.c
@@ -33,6 +33,7 @@
#include "presentation.h"
#include "narrative_window.h"
#include "render.h"
+#include "utils.h"
static GtkPrintSettings *print_settings = NULL;
@@ -86,9 +87,9 @@ static GObject *print_widget(GtkPrintOperation *op, void *vp)
/* What do you want to print? */
cbox = gtk_combo_box_text_new();
gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(cbox), "slides",
- "Print the slides only");
+ _("Print the slides only"));
gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(cbox), "narrative",
- "Print the narrative");
+ _("Print the narrative"));
gtk_box_pack_start(GTK_BOX(vbox), cbox, FALSE, FALSE, 10);
gtk_combo_box_set_active(GTK_COMBO_BOX(cbox), 1);
ps->combo = cbox;