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/view.ctp

    r604 r620  
    11<?php 
    22// die(debug($data)); 
    3 echo $html->div('titnew', $data['News']['title']); 
     3 
     4echo $html->div('news_title', $html->link($data['News']['title'], '/news/view/'. $data['News']['id'])); 
    45 
    56echo $html->div('redaccion', __('from_dep', true).'<i> '.$data['Theme']['theme'].'</i>, posted by '.$html->link($data['User']['username'], '/users/about/'.$data['User']['username']).' on '. $data['News']['created']);  
     
    5859?> 
    5960<fieldset> 
    60    <legend>Write comment:</legend> 
     61   <legend><?php __('Write comment'); ?></legend> 
    6162<?php  
    62     echo $form->label('Discussion.comment', '<b>'. $session->read('Auth.User.username') . '</b>  write:').'<br />';  
     63    echo $form->label('Discussion.comment', '<b>'. $session->read('Auth.User.username') .'</b> '.  __('write', true) . ':<br />'); 
    6364    echo $form->textarea('Discussion.comment', array('cols'=>60, 'rows'=>10)); 
    64     echo $form->end('Send comment'); 
     65    echo $form->end(__('Send comment', true)); 
    6566 else: 
    66     echo $html->para(null, $html->link('Login to write comments', '/users/login'));  
     67    echo $html->para(null, $html->link(__('Login to write comments', true), '/users/login'));  
    6768 endif;  
    6869}