Added gettext markup to some strings which required it
[pspp] / src / ui / gui / val-labs-dialog.c
index 5f43ff498f10a6c4910a53bec9fc5bfda82a87fb..efeb548e29d61060c5a781c1057716cff103fdab 100644 (file)
 #include "psppire-var-store.h"
 #include <libpspp/i18n.h>
 
+#include <gettext.h>
+#define _(msgid) gettext (msgid)
+#define N_(msgid) msgid
+
 struct val_labs_dialog
 {
   GtkWidget *window;
@@ -508,7 +512,7 @@ repopulate_dialog (struct val_labs_dialog *dialog)
        value_to_text (vl->value, dialog->dict,
                      *var_get_write_format (dialog->pv));
 
-      gchar *const text = g_strdup_printf ("%s = \"%s\"",
+      gchar *const text = g_strdup_printf (_("%s = `%s'"),
                                           vstr, val_lab_get_label (vl));
 
       gtk_list_store_append (list_store, &iter);