i modified the script, and added italian translation in the original installation pack
i did also this modification.
1) both in the italian language file, and in the english one:
i added a row for a new item
i called it:
In english version :
"SELECT A TEMPLATE=- Select a Template -"
In italian version :
"SELECT A TEMPLATE=- Scegli un Template -"
this item is to be shown on the admin panel (where there is this phrase, so it will also transaleted into other languages)
2) in the views\phocafavicon\view.html.php :
i modified the line:
Code: Select all
$lists['template'] = '<select name="template" id="template" class="inputbox" size="1" >'.'<option value="0" selected="selected">- Select a Template -</option>';
Code: Select all
$template_choose = JText::_( 'SELECT A TEMPLATE' );
$lists['template'] = '<select name="template" id="template" class="inputbox" size="1" >'
.'<option value="0" selected="selected">'.$template_choose.'</option>';
best regards
mario