Show
Ignore:
Timestamp:
07/04/08 14:25:17 (5 months ago)
Author:
aarkerio
Message:

Internatiantilzation

Location:
trunk/app/views/lessons
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/lessons/admin_add.ctp

    r585 r624  
    66 
    77<fieldset> 
    8 <legend>Add Lesson</legend> 
     8<legend><?php __('New Lesson'); ?></legend> 
    99<table> 
    1010<tr><td> 
    11   <?php 
     11<?php 
    1212     echo $form->input('Lesson.title', array("size" => 50, "maxlength" => 120)); 
    1313     echo $form->error('Lesson.title', 'Title is required.');  
    14   ?> 
     14?> 
    1515  </td> 
    1616  <td> 
     
    4444  ?> 
    4545  </td></tr> 
    46   <tr><td colspan="3"> </fieldset> 
    47   <?php echo $form->end('Save'); ?> 
     46  <tr><td colspan="3">  
     47  <?php echo $form->end(__('Save', true)); ?> 
     48</fieldset> 
    4849</td></tr> 
    4950</table> 
  • trunk/app/views/lessons/admin_edit.ctp

    r585 r624  
    1212?> 
    1313<fieldset> 
    14 <legend>Edit Lesson: <?php echo $this->data['Lesson']['title']; ?></legend> 
     14<legend><?php __('Edit Lesson');?> : <?php echo $this->data['Lesson']['title']; ?></legend> 
    1515<table> 
    1616<tr><td> 
     
    5151     ?> 
    5252  </td></tr> 
    53   <tr><td colspan="3"> </fieldset> 
    54   <?php echo $form->end('Save'); ?> 
     53  <tr><td colspan="3">  
     54  <?php echo $form->end(__('Save', true)); ?> 
     55</fieldset> 
    5556</td></tr> 
    5657</table>