X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-var-store.c;fp=src%2Fui%2Fgui%2Fpsppire-var-store.c;h=4575bd3bcb90fc6c1d60a4c6ba7fb72574f72275;hb=11706f97dd318697e43e6468b130ca5b7f1bff87;hp=efe1ae0deea81cca0abfd2d685d16a4f7377cb0b;hpb=67ab7839678c0f8aa12459ce5a585a5636f20196;p=pspp-builds.git diff --git a/src/ui/gui/psppire-var-store.c b/src/ui/gui/psppire-var-store.c index efe1ae0d..4575bd3b 100644 --- a/src/ui/gui/psppire-var-store.c +++ b/src/ui/gui/psppire-var-store.c @@ -329,7 +329,7 @@ psppire_var_store_get_font_desc (const GSheetModel *model, } - +static gchar *get_column_title (const GSheetModel *model, gint col); static void psppire_var_store_sheet_model_init (GSheetModelIface *iface) @@ -347,9 +347,9 @@ psppire_var_store_sheet_model_init (GSheetModelIface *iface) iface->get_font_desc = psppire_var_store_get_font_desc; iface->get_cell_border = NULL; iface->get_justification = NULL; -} - + iface->get_column_title = get_column_title; +} /** * psppire_var_store_new: @@ -846,3 +846,27 @@ psppire_var_store_sheet_row_init (GSheetRowIface *iface) iface->get_button_label = geometry_get_button_label; } + + + +static const gchar *column_titles[] = { + N_("Name"), + N_("Type"), + N_("Width"), + N_("Decimals"), + N_("Label"), + N_("Values"), + N_("Missing"), + N_("Columns"), + N_("Align"), + N_("Measure"), +}; + + +static gchar * +get_column_title (const GSheetModel *model, gint col) +{ + if ( col >= 10) + return NULL; + return g_strdup (gettext (column_titles[col])); +}