X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Ffactor.c;h=1ab2618dfe95f509f246817a289334bdb606d367;hb=eb06da6a334bc37108cdce9bfc7f26cfcb2003ee;hp=fa9987332fb93bdbdfad55a6f3b58e2750e114a6;hpb=bb4738b6612729d1d3f83009e88505ffc8c46e2d;p=pspp diff --git a/src/language/stats/factor.c b/src/language/stats/factor.c index fa9987332f..1ab2618dfe 100644 --- a/src/language/stats/factor.c +++ b/src/language/stats/factor.c @@ -1923,13 +1923,15 @@ do_factor (const struct cmd_factor *factor, struct casereader *r) if (idata->n_extractions == 0) { - msg (MW, _("The FACTOR criteria result in zero factors extracted. Therefore no analysis will be performed.")); + msg (MW, _("The %s criteria result in zero factors extracted. Therefore no analysis will be performed."), "FACTOR"); goto finish; } if (idata->n_extractions > factor->n_vars) { - msg (MW, _("The FACTOR criteria result in more factors than variables, which is not meaningful. No analysis will be performed.")); + msg (MW, + _("The %s criteria result in more factors than variables, which is not meaningful. No analysis will be performed."), + "FACTOR"); goto finish; }