--- /dev/null
+<?
+//
+// PHP Implementation: tr
+//
+// Description: dummy implementation for Qt's tr and transalate to make the PHP code
+// compatible with linguist
+//
+// Author: Konrad Rosenbaum <konrad@silmor.de>, (C) 2008
+//
+// Copyright: See README/COPYING files that come with this distribution
+//
+//
+
+/** tr() assumes the context is set with a C++ class statement (won't find any here)
+or with a special comment, please include / * TRANSLATOR php:: * / in all files using it */
+function tr($str,$comment=""){return $str;}
+
+/** translate() also takes a context*/
+function translate($context,$str,$comment=""){return $str;}
+
+?>
\ No newline at end of file