Show
Ignore:
Timestamp:
07/02/08 18:44:15 (5 months ago)
Author:
aarkerio
Message:

In spanish please

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/news/admin_edit.ctp

    r401 r620  
    11<?php  
    22  echo $javascript->link('fckeditor/fckeditor'); 
    3   echo $html->addCrumb('Control Tools', '/admin/entries/start');  
    4   echo $html->addCrumb('News', '/admin/news/listing');  
     3  echo $html->addCrumb('Control Panel', '/admin/entries/start');  
     4  echo $html->addCrumb(__('News', true), '/admin/news/listing');  
    55  echo $html->getCrumbs(' / ');  
    66 
     
    1414<td> 
    1515<?php  
    16   echo $form->input('News.title', array('size' => 40, 'maxlength' => 120)); 
     16  echo $form->input('News.title', array('size' => 40, 'maxlength' => 120, 'label'=>__('Title', true))); 
    1717  echo $form->error('News.title', 'Title is required.');  
    1818?> 
     
    3434  <?php  
    3535     echo $form->label('News.Body', 'Body:') . '<br />'; 
    36      echo $form->textarea('News.body', array('cols'=>80, 'rows'=>35));  
     36     echo $form->textarea('News.body', array('cols'=>90, 'rows'=>35));  
    3737     echo $fck->load('NewsBody', 'Karamelo');  
    3838  ?> 
     
    5858</td> 
    5959</tr> 
    60 <tr><td colspan="4">  <?php echo $form->end('Save'); ?></td></tr> 
     60<tr><td colspan="4"> <?php echo $form->end(__('Save', true)); ?></td></tr> 
    6161</table>