Update translatable strings relating to internal errors.
authorJohn Darrington <john@darrington.wattle.id.au>
Fri, 3 May 2019 15:53:24 +0000 (17:53 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Fri, 3 May 2019 15:53:24 +0000 (17:53 +0200)
src/data/mdd-writer.c
src/language/stats/descriptives.c

index ba69c99cc281a37c23f5116d86f3a0acedcda8a7..495be8cafea8c1127eab718bec0209eee6110936 100644 (file)
@@ -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;
     }
 
index 2738fb137ee6b558e44e28ec1d951a8064d4c8d0..1ee9874f0fc5f0d7e7f42ebf152fd00b756310e9 100644 (file)
@@ -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);