issue #0001547 : Translation view

This commit is contained in:
Michael RICOIS 2013-12-03 16:36:45 +00:00
parent 0e40bc8156
commit 1d7b324dfd
3 changed files with 9 additions and 8 deletions

View File

@ -1,4 +1,4 @@
<script language="Javascript">
<script>
$(document).ready(function(){
$('a.delete').on('click', function(e){
e.preventDefault();

View File

@ -610,7 +610,8 @@ $(document).ready(function(){
</form>
<div>
<a class="dlg" title="Identifiants oubliés ?" href="<?=$this->url(array('controller'=>'user', 'action'=>'motpasse'))?>">Identifiants oubliés ?</a>
<a class="dlg" title="<?=$this->translate("Identifiants oubliés ?")?>" href="<?=$this->url(array('controller'=>'user', 'action'=>'motpasse'))?>">
<?=$this->translate("Identifiants oubliés ?")?></a>
<script>
$('a.dlg').on('click', function(e){
e.preventDefault();

View File

@ -1,7 +1,7 @@
<?php if ($this->ajax) {?>
<h4 class="logout">Vous avez été déconnecté.</h4>
<h5 class="logout">Veuillez cliquer <a href="<?=$this->url?>">ici</a>
<h4 class="logout"><?=$this->translate("Vous avez été déconnecté.")?></h4>
<h5 class="logout"><?=$this->translate("Veuillez cliquer")?> <a href="<?=$this->url?>"><?=$this->translate("ici")?></a>
</h5>
<?php } else {?>
@ -13,11 +13,11 @@
<?=$this->headTitle();?>
</head>
<body>
<h4 class="logout">Vous avez été déconnecté.</h4>
<h4 class="logout"><?=$this->translate("Vous avez été déconnecté.")?></h4>
<p><?=$this->message?></p>
<h5 class="logout">
Si cette page ne disparait pas au bout de <?=$this->refresh?> seconde(s),
veuillez cliquer <a href="<?=$this->url?>">ici</a>
<?=$this->translate("Si cette page ne disparait pas au bout de %1$s seconde(s)", $this->refresh)?>,
<?=$this->translate("veuillez cliquer ")?><a href="<?=$this->url?>"><?=$this->translate("ici")?></a>
</h5>
</body>
</html>