Index: /branches/rel10_ifa/psModules/src/pslib/psMetadataItemParse.c
===================================================================
--- /branches/rel10_ifa/psModules/src/pslib/psMetadataItemParse.c	(revision 6634)
+++ /branches/rel10_ifa/psModules/src/pslib/psMetadataItemParse.c	(revision 6635)
@@ -15,5 +15,5 @@
         return (float)item->data.S32;
     default:
-        psError(PS_ERR_IO, true, "Concept %s (%s) is not of floating point type (%x) --- treating as NaN.\n",
+        psError(PS_ERR_IO, true, "Item %s (%s) is not of floating point type (%x) --- treating as NaN.\n",
                 item->name, item->comment, item->type);
         return NAN;
@@ -34,5 +34,5 @@
         return (double)item->data.S32;
     default:
-        psError(PS_ERR_IO, true, "Concept %s (%s) is not of double-precision floating point type (%x) "
+        psError(PS_ERR_IO, true, "Item %s (%s) is not of double-precision floating point type (%x) "
                 "--- treating as NaN.\n", item->name, item->comment, item->type);
         return NAN;
@@ -47,13 +47,13 @@
         return item->data.S32;
     case PS_TYPE_F32:
-        psLogMsg(__func__, PS_LOG_WARN, "Concept %s (%s) should be S32, but is F32 --- converting.\n",
+        psLogMsg(__func__, PS_LOG_WARN, "Item %s (%s) should be S32, but is F32 --- converting.\n",
                  item->name, comment);
         return (int)item->data.F32;
     case PS_TYPE_F64:
-        psLogMsg(__func__, PS_LOG_WARN, "Concept %s (%s) should be S32, but is F64 --- converting.\n",
+        psLogMsg(__func__, PS_LOG_WARN, "Item %s (%s) should be S32, but is F64 --- converting.\n",
                  item->name, comment);
         return (int)item->data.F64;
     default:
-        psError(PS_ERR_IO, true, "Concept %s (%s) is not of integer type (%x) --- treating as zero.\n",
+        psError(PS_ERR_IO, true, "Item %s (%s) is not of integer type (%x) --- treating as zero.\n",
                 item->name, item->comment, item->type);
         return 0;
@@ -78,5 +78,5 @@
         }
     default:
-        psError(PS_ERR_IO, true, "Concept %s (%s) is not of string type (%x) --- treating as "
+        psError(PS_ERR_IO, true, "Item %s (%s) is not of string type (%x) --- treating as "
                 "undefined.\n", item->name, item->comment, item->type);
         return psStringCopy("");
