[evolvis-commits] r15621: No HTML tags in translation

mirabilos at evolvis.org mirabilos at evolvis.org
Tue Mar 1 00:21:33 CET 2011


Author: mirabilos
Date: 2011-03-01 00:21:33 +0100 (Tue, 01 Mar 2011)
New Revision: 15621

Modified:
   trunk/gforge_base/evolvisforge-5.1/src/www/pm/admin/index.php
Log:
No HTML tags in translation

Modified: trunk/gforge_base/evolvisforge-5.1/src/www/pm/admin/index.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/src/www/pm/admin/index.php	2011-02-28 23:21:29 UTC (rev 15620)
+++ trunk/gforge_base/evolvisforge-5.1/src/www/pm/admin/index.php	2011-02-28 23:21:33 UTC (rev 15621)
@@ -418,7 +418,8 @@
 	$pg_arr =& $pgf->getProjectGroups();
 
 	if (count($pg_arr) < 1 || $pg_arr == false) {
-		echo _('<h2>No Subprojects Found in this Project</h2><p>You may add new Subprojects using the "Add a Subproject" link above.</p>');
+		echo '<h2>' . _('No Subprojects Found in this Project') . '</h2>';
+		echo '<p>' . _('You may add new Subprojects using the "Add a Subproject" link above.') . '</p>';
 		echo db_error();
 	} else {
 		for ($i=0; $i<count($pg_arr); $i++) {



More information about the evolvis-commits mailing list