issue #0001547 : Translation view
This commit is contained in:
parent
0e40bc8156
commit
1d7b324dfd
@ -1,4 +1,4 @@
|
||||
<script language="Javascript">
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$('a.delete').on('click', function(e){
|
||||
e.preventDefault();
|
||||
|
@ -604,13 +604,14 @@ $(document).ready(function(){
|
||||
<input type="password" name="pass" id="password" value="" required />
|
||||
</p>
|
||||
<!-- <input type="checkbox" name="remember_login" value="1" id="remember_login" /><label for="remember_login">Remember</label> -->
|
||||
<script>document.write('<input name="screenSize" type="hidden" value="'+ screen.width +'x'+screen.height + '">');</script>
|
||||
<script>document.write('<input name="screenSize" type="hidden" value="'+ screen.width +'x'+screen.height + '">');</script>
|
||||
<input type="submit" id="submit" class="login" value="Connexion" />
|
||||
</fieldset>
|
||||
</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();
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user