X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffile-handle.q;h=c70945ee381f701cf9a2694cd9e0198289ea714a;hb=55dee937e22a49d01794ef772076d9f9d84199e9;hp=3ff35e8e85c47db1f10925c3d57a8988521b8d91;hpb=c0ea6ad1b06fc6d93f56c620a31df355afadf468;p=pspp diff --git a/src/file-handle.q b/src/file-handle.q index 3ff35e8e85..c70945ee38 100644 --- a/src/file-handle.q +++ b/src/file-handle.q @@ -122,8 +122,9 @@ cmd_file_handle (void) fp->recform = FH_RF_VARIABLE; break; case FH_SPANNED: - msg (SE, _("/RECFORM SPANNED is not implemented, as the author doesn't " - "know what it is supposed to do. Send the author a note.")); + msg (SE, + _("%s is not implemented, as the author doesn't know what it is supposed to do. Send a note to %s.") , + "/RECFORM SPANNED",PACKAGE_BUGREPORT); break; default: assert (0); @@ -135,18 +136,18 @@ cmd_file_handle (void) fp->mode = FH_MD_CHARACTER; break; case FH_IMAGE: - msg (SE, _("/MODE IMAGE is not implemented, as the author doesn't know " - "what it is supposed to do. Send the author a note.")); + msg (SE, + _("%s is not implemented, as the author doesn't know what it is supposed to do. Send a note to %s.") , + "/MODE IMAGE",PACKAGE_BUGREPORT); break; case FH_BINARY: fp->mode = FH_MD_BINARY; break; case FH_MULTIPUNCH: - msg (SE, _("/MODE MULTIPUNCH is not implemented. If you care, " - "complain.")); + msg (SE, _("%s is not implemented. If you care, complain."),"/MODE MULTIPUNCH"); break; case FH__360: - msg (SE, _("/MODE 360 is not implemented. If you care, complain.")); + msg (SE, _("%s is not implemented. If you care, complain."),"/MODE 360"); break; default: assert (0);