Please do next:
Find below code:
Code: |
$sell_type = ($row->listing_type ==1) ? "For Rent" : "For Sale";
if($imageURL!='')
{
$imageURL = searchPicture ($image_source_type,$imageURL);
$imageURL = $mosConfig_live_site.$imageURL;
}
else $imageURL = "components/com_realestatemanager/images/no-img_eng.gif";?>
<div class="span4 top_pro_eastate img-polaroid">
<span class="state <?php echo $sell_type;?>"><?php echo $sell_type;?></span>
|
Replace it to code:
Code: |
$sell_type_forTranslate = ($row->listing_type ==1) ? "For Rent" : "For Sale";
$sell_type = ($row->listing_type ==1) ? "For Rent" : "For Sale";
if($imageURL!='')
{
$imageURL = searchPicture ($image_source_type,$imageURL);
$imageURL = $mosConfig_live_site.$imageURL;
}
else $imageURL = "components/com_realestatemanager/images/no-img_eng.gif";?>
<div class="span4 top_pro_eastate img-polaroid">
<span class="state <?php echo $sell_type;?>"><?php echo $sell_type_forTranslate;?></span>
|
and please translate only in row
Code: |
$sell_type_forTranslate = ($row->listing_type ==1) ? "For Rent" : "For Sale";
|
Please backup file first:
Thanks,
OrdaSoft team