type, n_properties, properties);
dialog = PSPPIRE_MISSING_VAL_DIALOG (obj);
- g_object_set (dialog, "help_page", "Missing-Observations", NULL);
+ g_object_set (dialog, "help_page", "Missing-Observations",
+ "title", _("Missing Values"), NULL);
content_area = GTK_CONTAINER (PSPPIRE_DIALOG (dialog));
xml = builder_new ("missing-val-dialog.ui");
type, n_properties, properties);
dialog = PSPPIRE_VAL_LABS_DIALOG (obj);
- g_object_set (dialog, "help_page", "VALUE-LABELS", NULL);
+ g_object_set (dialog, "help_page", "VALUE-LABELS",
+ "title", _("Value Lables"), NULL);
content_area = GTK_CONTAINER (PSPPIRE_DIALOG (dialog));
gtk_container_add (GTK_CONTAINER (content_area),
#include "ui/gui/psppire-format.h"
#include "ui/gui/var-type-dialog.h"
+#include <gettext.h>
+#define _(msgid) gettext (msgid)
+#define N_(msgid) msgid
+
static const struct fmt_spec date_format[] =
{
{FMT_DATE, 11, 0},
type, n_properties, properties);
dialog = PSPPIRE_VAR_TYPE_DIALOG (obj);
- g_object_set (dialog, "help_page", "Input-and-Output-Formats", NULL);
+ g_object_set (dialog, "help_page", "Input-and-Output-Formats",
+ "title", _("Variable Type and Format"), NULL);
xml = builder_new ("var-type-dialog.ui");