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 related %s', true), __('Translation Files', true)), array('controller' => 'translation_files', 'action' => 'index', 'language_id' => $language['Language']['id'])); ?> </li>
15 <li><?php echo $this->Html->link(sprintf(__('List all %s', true), __('Translation Files', true)), array('controller' => 'translation_files', 'action' => 'index')); ?> </li>
23 <h2 id="page-heading"><?php printf(__('Edit %s', true), __('Language', true)); ?></h2>
25 <div class="languages form">
26 <?php echo $this->Form->create('Language');?>
28 <legend><?php printf(__('Language # %s', true), $this->Form->value('Language.id')); ?></legend>
30 echo $this->Form->input('id');
31 echo $this->Form->input('name');
32 echo $this->Form->input('code');
36 <?php echo $this->Form->end(__('Submit', true));?>
40 <div class="clear"></div>