Index: kernel/common/i18n.php
===================================================================
--- kernel/common/i18n.php	(revision 23631)
+++ kernel/common/i18n.php	(working copy)
@@ -109,7 +109,11 @@
             return ezinsertarguments( $trans, $arguments );
         }
 
-        eZDebug::writeDebug( "No translation for file(translation.ts) in context($context): '$source' with comment($comment)", "ezi18n" );
+        if ( $comment != null and strlen( $comment ) > 0 )
+            eZDebug::writeDebug( "Missing translation for message in context: '$context' with comment: '$comment'. The untranslated message is: '$source'", "ezi18n" );
+        else
+            eZDebug::writeDebug( "Missing translation for message in context: '$context'. The untranslated message is: '$source'", "ezi18n" );
+
         return ezinsertarguments( $source, $arguments );
     }
 }
