From: John Darrington Date: Fri, 3 May 2019 15:53:24 +0000 (+0200) Subject: Update translatable strings relating to internal errors. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66c6a01f07a24f090e9bd17358fe7110a9f481eb;p=pspp Update translatable strings relating to internal errors. --- diff --git a/src/data/mdd-writer.c b/src/data/mdd-writer.c index ba69c99cc2..495be8cafe 100644 --- a/src/data/mdd-writer.c +++ b/src/data/mdd-writer.c @@ -470,7 +470,8 @@ mdd_write (struct file_handle *fh, struct dictionary *dict, w->writer = xmlNewTextWriter (xmlOutputBufferCreateFile (w->file, NULL)); if (!w->writer) { - msg (ME, _("Internal error creating xmlTextWriter.")); + msg (ME, _("Internal error creating xmlTextWriter. " + "Please report this to %s."), PACKAGE_BUGREPORT); goto error; } diff --git a/src/language/stats/descriptives.c b/src/language/stats/descriptives.c index 2738fb137e..1ee9874f0f 100644 --- a/src/language/stats/descriptives.c +++ b/src/language/stats/descriptives.c @@ -656,7 +656,9 @@ descriptives_trns_proc (void *trns_, struct ccase **c, { if (t->ok) { - msg (SE, _("Internal error processing Z scores")); + msg (SE, _("Internal error processing Z scores. " + "Please report this to %s."), + PACKAGE_BUGREPORT); t->ok = false; } descriptives_set_all_sysmis_zscores (t, *c);