[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31732] trunk/blender/source/blender/ editors/space_image/image_ops.c: Changed the error messages "Can't pack/ unpack movie or image sequence." to more descriptive ones "Packing/ Unpacking movies or image sequences not supported." as suggested by Brecht.

Janne Karhu jhkarh at gmail.com
Fri Sep 3 07:25:12 CEST 2010


Revision: 31732
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31732
Author:   jhk
Date:     2010-09-03 07:25:12 +0200 (Fri, 03 Sep 2010)

Log Message:
-----------
Changed the error messages "Can't pack/unpack movie or image sequence." to more descriptive ones "Packing/Unpacking movies or image sequences not supported." as suggested by Brecht.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_image/image_ops.c

Modified: trunk/blender/source/blender/editors/space_image/image_ops.c
===================================================================
--- trunk/blender/source/blender/editors/space_image/image_ops.c	2010-09-03 05:18:36 UTC (rev 31731)
+++ trunk/blender/source/blender/editors/space_image/image_ops.c	2010-09-03 05:25:12 UTC (rev 31732)
@@ -1300,7 +1300,7 @@
 		return 0;
 
 	if(ima->source==IMA_SRC_SEQUENCE || ima->source==IMA_SRC_MOVIE) {
-		BKE_report(op->reports, RPT_ERROR, "Can't pack movie or image sequence.");
+		BKE_report(op->reports, RPT_ERROR, "Packing movies or image sequences not supported.");
 		return 0;
 	}
 
@@ -1477,7 +1477,7 @@
 		return OPERATOR_CANCELLED;
 
 	if(ima->source==IMA_SRC_SEQUENCE || ima->source==IMA_SRC_MOVIE) {
-		BKE_report(op->reports, RPT_ERROR, "Can't unpack movie or image sequence.");
+		BKE_report(op->reports, RPT_ERROR, "Unpacking movies or image sequences not supported.");
 		return OPERATOR_CANCELLED;
 	}
 
@@ -1502,7 +1502,7 @@
 		return OPERATOR_CANCELLED;
 
 	if(ima->source==IMA_SRC_SEQUENCE || ima->source==IMA_SRC_MOVIE) {
-		BKE_report(op->reports, RPT_ERROR, "Can't unpack movie or image sequence.");
+		BKE_report(op->reports, RPT_ERROR, "Unpacking movies or image sequences not supported.");
 		return OPERATOR_CANCELLED;
 	}
 





More information about the Bf-blender-cvs mailing list