gimp r26606 - trunk/libgimp



Author: neo
Date: Sat Aug 16 18:20:06 2008
New Revision: 26606
URL: http://svn.gnome.org/viewvc/gimp?rev=26606&view=rev

Log:
translator comments must not have a line between the comment and the 
string


Modified:
   trunk/libgimp/gimp.c

Modified: trunk/libgimp/gimp.c
==============================================================================
--- trunk/libgimp/gimp.c	(original)
+++ trunk/libgimp/gimp.c	Sat Aug 16 18:20:06 2008
@@ -1022,7 +1022,7 @@
  * the return values. Plug-ins that are using the libgimp C wrappers
  * don't access the procedure return values directly. Thus ligimp
  * stores the error message and makes it available with this
- * function. A successful procedure call unsets the error message again.
+ * function. The next procedure call unsets the error message again.
  *
  * The returned string is owned by libgimp and must not be freed or
  * modified.
@@ -1039,20 +1039,20 @@
 
   switch (pdb_error_status)
     {
-      /*  procedure executed successfully  */
     case GIMP_PDB_SUCCESS:
+      /*  procedure executed successfully  */
       return _("success");
 
-      /*  procedure execution failed       */
     case GIMP_PDB_EXECUTION_ERROR:
+      /*  procedure execution failed       */
       return _("execution error");
 
-      /*  procedure called incorrectly     */
     case GIMP_PDB_CALLING_ERROR:
+      /*  procedure called incorrectly     */
       return _("calling error");
 
-      /*  procedure cancelled              */
     case GIMP_PDB_CANCEL:
+      /*  procedure execution cancelled    */
       return _("cancelled");
 
     default:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]