In custom office form, edit and new html office pages.
<?php if (!$form->getObject()->isNew()): ?>
<?php echo link_to('Delete', 'office/delete?id='.$form->getObject()->getId(), array('method' => 'delete', 'confirm' => 'Are you sure?')) ?>
<?php endif; ?>
- <input type="submit" value="Save" />
+ <input type="submit" value=<?php echo __('Save') ?> />
</td>
</tr>
</tfoot>
-<h1><?php echo __('Edit Office') ?></h1>
+<h2><?php echo __('Edit Office') ?></h2>
<?php include_partial('formCustomOffice', array('form' => $form)) ?>
-<h1>New Office</h1>
+<h2><?php echo __('New Office') ?></h2>
<?php include_partial('formCustomOffice', array('form' => $form)) ?>