Index: trunk/psLib/src/math/psRegion.c
===================================================================
--- trunk/psLib/src/math/psRegion.c	(revision 7901)
+++ trunk/psLib/src/math/psRegion.c	(revision 8232)
@@ -3,5 +3,5 @@
 #include "psMemory.h"
 #include "psError.h"
-#include "psErrorText.h"
+
 #include "psRegion.h"
 
@@ -52,5 +52,5 @@
     if (sscanf(region,"[%d:%d,%d:%d]",&col0,&col1,&row0,&row1) < 4) {
         psError(PS_ERR_BAD_PARAMETER_NULL, true,
-                PS_ERRORTEXT_psImage_SUBSECTION_INVALID,
+                _("Specified subsection string, '%s', can not be parsed.  Must be in the form '[x1:x2,y1:y2]'."),
                 region);
         return psRegionSet(NAN,NAN,NAN,NAN);
@@ -64,5 +64,5 @@
     if ((col1 > 0) && (col0 > col1)) {
         psError(PS_ERR_BAD_PARAMETER_VALUE, true,
-                PS_ERRORTEXT_psImage_SUBSET_RANGE_MALFORMED,
+                _("Specified subset range, [%d:%d,%d:%d], is invalid.  Ranges must be incremental."),
                 col0,col1,row0,row1);
         return psRegionSet(NAN,NAN,NAN,NAN);
@@ -71,5 +71,5 @@
     if ((row1 > 0) && (row0 > row1)) {
         psError(PS_ERR_BAD_PARAMETER_VALUE, true,
-                PS_ERRORTEXT_psImage_SUBSET_RANGE_MALFORMED,
+                _("Specified subset range, [%d:%d,%d:%d], is invalid.  Ranges must be incremental."),
                 col0,col1,row0,row1);
         return psRegionSet(NAN,NAN,NAN,NAN);
