X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-regression.c;h=7a09132093505321fcf1819f24132ffdc0a04096;hb=9fd97e410494b051da21490040e4a5b5de2d5a2a;hp=fe3d4418cf0980c458de2ee1ac189ff629ea3935;hpb=4e3feede0f6b3d2e67d6e41a9ddea3738e574dc3;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-regression.c b/src/ui/gui/psppire-dialog-action-regression.c index fe3d4418cf..7a09132093 100644 --- a/src/ui/gui/psppire-dialog-action-regression.c +++ b/src/ui/gui/psppire-dialog-action-regression.c @@ -36,14 +36,16 @@ #define N_(msgid) msgid -#define REGRESSION_STATS \ - RG (COEFF, N_("Coeff")) \ - RG (R, N_("R")) \ - RG (ANOVA, N_("Anova")) \ - RG (BCOV, N_("Bcov")) +#define REGRESSION_STATS \ + RG (COEFF, N_("Coeff"), N_("Show the regression coefficients")) \ + RG (CI, N_("Conf. Interval"), N_("Show the confidence interval for the regression coefficients")) \ + RG (R, N_("R"), N_("Show the correlation between observed and predicted values")) \ + RG (ANOVA, N_("Anova"), N_("Show the analysis of variance table")) \ + RG (BCOV, N_("Bcov"), N_("Show the variance coefficient matrix")) + enum { -#define RG(NAME, LABEL) RG_##NAME, +#define RG(NAME, LABEL, TOOLTIP) RG_##NAME, REGRESSION_STATS #undef RG N_REGRESSION_STATS @@ -51,7 +53,7 @@ enum enum { -#define RG(NAME, LABEL) B_RG_##NAME = 1u << RG_##NAME, +#define RG(NAME, LABEL, TOOLTIP) B_RG_##NAME = 1u << RG_##NAME, REGRESSION_STATS #undef RG B_RG_STATS_ALL = (1u << N_REGRESSION_STATS) - 1, @@ -60,7 +62,7 @@ enum static const struct checkbox_entry_item stats[] = { -#define RG(NAME, LABEL) {#NAME, LABEL}, +#define RG(NAME, LABEL, TOOLTIP) {#NAME, LABEL, TOOLTIP}, REGRESSION_STATS #undef RG };