|
Could this be used to change it?
Modified Paths:
--------------
trunk/modules/projectdesigner/vw_actions.php
//lets addthe reference to percent
$percent = array(0 => '0', 5 => '5', 10 => '10', 15 => '15', 20 => '20', 25 => '25', 30 => '30', 35 => '35', 40 => '40', 45 => '45', 50 => '50', 55 => '55', 60 => '60', 65 => '65', 70 => '70', 75 => '75', 80 => '80', 85 => '85', 90 => '90', 95 => '95', 100 => '100');
-$spercent = arrayMerge(array('' => '(Progress)'), $percent);
+$spercent = arrayMerge(array('' => '('.$AppUI->_('Progress').')'), $percent);
?>
<form name="frm_bulk" method="POST" action="?m=projectdesigner&a=do_task_bulk_aed" accept-charset="utf-8">
<input type="hidden" name="project_id" value="<?php echo $project_id; ?>" />
got it from http://forums.web2project.net/viewtopic.php?t=2234&highlight=&sid=daa8a4e95eddab7e016685824eaefa9c |
|