<?php
/**
* @package HikaShop for Joomla!
* @version 1.4.3
* @author hikashop.com
* @copyright (C) 2010 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?>
<form action="index.php?tmpl=component&option=<?php echo HIKASHOP_COMPONENT ?>" method="post" name="adminForm" >
<fieldset>
<div class="header" style="float: left;"><?php echo JText::_('HIKA_FILE').' : '.$this->file->name; ?></div>
<div class="toolbar" id="toolbar" style="float: right;">
<button type="button" onclick="javascript:submitbutton('savelanguage'); return false;"><?php echo JText::_('HIKA_SAVE'); ?></button>
<button type="button" onclick="javascript:submitbutton('share'); return false;"><?php echo JText::_('SHARE'); ?></button>
</div>
</fieldset>
<fieldset class="adminform">
<legend><?php echo JText::_( 'HIKA_FILE').' : '.$this->file->name; ?>
<?php if(!empty($this->showLatest)){ ?><button style="text-align:right" type="button" onclick="javascript:submitbutton('latest')"><?php echo JText::_('LOAD_LATEST_LANGUAGE'); ?></button><?php } ?>
</legend>
<textarea style="width:100%;" rows="18" name="content" id="translation" ><?php echo @$this->file->content;?></textarea>
</fieldset>
<fieldset class="adminform">
<legend><?php echo JText::_( 'OVERRIDE').' : '; ?></legend>
<?php echo JText::_( 'OVERRIDE_WITH_EXPLANATION'); ?>
<textarea style="width:100%;" rows="18" name="content_override" id="translation_override" ><?php echo $this->override_content;?></textarea>
</fieldset>
<div class="clr"></div>
<input type="hidden" name="code" value="<?php echo $this->file->name; ?>" />
<input type="hidden" name="option" value="<?php echo HIKASHOP_COMPONENT; ?>" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="ctrl" value="config" />
<?php echo JHTML::_( 'form.token' ); ?>
</form>