Index: import_sch.c =================================================================== --- import_sch.c (revision 3046) +++ import_sch.c (revision 3047) @@ -232,7 +232,7 @@ y = GetValue(ys, units, NULL, NULL); } else { - Message(_("Bad syntax for Import(setnewpoint)")); + Message(PCB_MSG_DEFAULT, _("Bad syntax for Import(setnewpoint)")); return 1; } @@ -313,7 +313,7 @@ int i; if (tmpfile == NULL) { - Message(_("Could not create temp file")); + Message(PCB_MSG_DEFAULT, _("Could not create temp file")); return 1; } @@ -372,7 +372,7 @@ else { tmpfile = tempfile_name_new("gnetlist_output"); if (tmpfile == NULL) { - Message(_("Could not create temp file")); + Message(PCB_MSG_DEFAULT, _("Could not create temp file")); return 1; } must_free_tmpfile = 1; @@ -422,7 +422,7 @@ tempfile_unlink(tmpfile); } else { - Message(_("Unknown import mode: %s\n"), mode); + Message(PCB_MSG_DEFAULT, _("Unknown import mode: %s\n"), mode); return 1; }