2 <div class="box menubox">
4 <a href="#" id="toggle-admin-actions">Actions</a>
7 <div class="block" id="admin-actions">
8 <h5><?php echo __('Languages', true); ?></h5>
10 <li><?php echo $this->Html->link(sprintf(__('List all %s', true), __('Languages', true)), array('action' => 'index'));?></li> </ul>
12 <h5>Translation Files</h5>
14 <li><?php echo $this->Html->link(sprintf(__('List all %s', true), __('Translation Files', true)), array('controller' => 'translation_files', 'action' => 'index')); ?> </li>
22 <h2 id="page-heading"><?php printf(__('Add %s', true), __('Language', true)); ?></h2>
24 <div class="languages form">
25 <?php echo $this->Form->create('Language');?>
27 <legend><?php printf(__('Language', true)); ?></legend>
29 echo $this->Form->input('name');
30 echo $this->Form->input('code');
34 <?php echo $this->Form->end(__('Submit', true));?>
38 <div class="clear"></div>