Fiorino De Santo Posted January 10, 2013 at 03:17 PM Share Posted January 10, 2013 at 03:17 PM Implement this features is easy, just change a few things to the file /components/com_jreviews/JReviews/views/helpers/custom_fields.php at line 345 (Group Field Title - Listing View) replace $group['Group']['title'] with jText::_($group['Group']['title']) at line 353 (Field Title - Listing View) replace $field['title'] with jText::_($field['title']) at line 356 (Field Values - Listing View) add foreach($values as &$val){$val=jText::_($val);} at line 898 (Group Field Title - Listing Edit) replace 'legend'=>$group with 'legend'=>jText::_($group) before line 674 (Field Title,Description,Values - Listing Edit) Problem: not work on select and multiselect field values in edit listing form add $value['title']=jText::_($value['title']); $value['description']=jText::_($value['description']); foreach($value['optionList'] as &$val){$val=jText::_($val);} With tabs edit template replace in create_form_tabbed.thtml at line 154 replace <?php echo $title;?> with <?php echo jText::_($title);?> P.S. find attached an update for the Italian language, there were errors in the previous default2.po.zip Link to comment
Alejandro Posted January 10, 2013 at 04:19 PM Share Posted January 10, 2013 at 04:19 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Recommended Posts