Index: trunk/psLib/src/fft/psVectorFFT.c
===================================================================
--- trunk/psLib/src/fft/psVectorFFT.c	(revision 4540)
+++ trunk/psLib/src/fft/psVectorFFT.c	(revision 8232)
@@ -5,6 +5,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-07-12 19:12:01 $
+ *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-08-08 23:32:23 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -22,5 +22,5 @@
 #include "psLogMsg.h"
 
-#include "psErrorText.h"
+
 
 #define P_FFTW_PLAN_RIGOR FFTW_ESTIMATE
@@ -63,5 +63,5 @@
     } else {
         psError(PS_ERR_BAD_PARAMETER_VALUE, true,
-                PS_ERRORTEXT_psVectorFFT_DIRECTION_NOTSET);
+                _("Must specify the direction as either PS_FFT_FORWARD or PS_FFT_REVERSE."));
         psFree(out);
         return NULL;
@@ -71,5 +71,5 @@
     if (plan == NULL) {
         psError(PS_ERR_BAD_PARAMETER_TYPE, true,
-                PS_ERRORTEXT_psVectorFFT_FFTW_PLAN_NULL);
+                _("Could not create a valid FFT plan to perform the transform."));
         psFree(out);
         return NULL;
@@ -142,5 +142,5 @@
         PS_TYPE_NAME(typeStr,type);
         psError(PS_ERR_BAD_PARAMETER_TYPE, true,
-                PS_ERRORTEXT_psVectorFFT_TYPE_UNSUPPORTED,
+                _("Specified psVector type, %s, is not supported."),
                 typeStr);
         psFree(out);
@@ -201,5 +201,5 @@
         PS_TYPE_NAME(typeStr,type);
         psError(PS_ERR_BAD_PARAMETER_TYPE, true,
-                PS_ERRORTEXT_psVectorFFT_TYPE_UNSUPPORTED,
+                _("Specified psVector type, %s, is not supported."),
                 typeStr);
         psFree(out);
@@ -233,5 +233,5 @@
         PS_TYPE_NAME(typeStrImag,imag->type.type);
         psError(PS_ERR_BAD_PARAMETER_TYPE, true,
-                PS_ERRORTEXT_psVectorFFT_REAL_IMAG_TYPE_MISMATCH,
+                _("Real psVector type, %s, and imaginary psVector type, %s, must be the same."),
                 typeStrReal,typeStrImag);
         psFree(out);
@@ -267,5 +267,5 @@
         PS_TYPE_NAME(typeStr,type);
         psError(PS_ERR_BAD_PARAMETER_TYPE, true,
-                PS_ERRORTEXT_psVectorFFT_NONREAL_NOTSUPPORTED,
+                _("Input psVector type, %s, is required to be either psF32 or psF64."),
                 typeStr);
         psFree(out);
@@ -327,5 +327,5 @@
         PS_TYPE_NAME(typeStr,type);
         psError(PS_ERR_BAD_PARAMETER_TYPE, true,
-                PS_ERRORTEXT_psVectorFFT_NONCOMPLEX_NOTSUPPORTED,
+                _("Input psVector type, %s, is required to be either psC32 or psC64."),
                 typeStr);
         psFree(out);
@@ -407,5 +407,5 @@
         PS_TYPE_NAME(typeStr,type);
         psError(PS_ERR_BAD_PARAMETER_TYPE, true,
-                PS_ERRORTEXT_psVectorFFT_NONCOMPLEX_NOTSUPPORTED,
+                _("Input psVector type, %s, is required to be either psC32 or psC64."),
                 typeStr);
         psFree(out);
