Changeset 150


Ignore:
Timestamp:
02/21/06 23:44:46 (7 years ago)
Author:
anarcat
Message:

[project @ alternc: changeset 2003-08-20 14:36:58 by root]
internationalisation du browse for folder bug stats

Original author: root
Date: 2003-08-20 14:37:00

Location:
bureau
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bureau/admin/browseforfolder.php

    r146 r150  
    7474 
    7575 
    76 if ($submit=="Valider") { 
     76if ($select) { 
    7777        /* Go ahead, let's send the javascript ...*/ 
    7878?> 
     
    130130<input type="text" class="int" name="file" size="20" value="<?php echo $file ?>" /><input class="inb" type="submit" name="submit" value="..." /><br /> 
    131131 
    132 <input type="submit" name="submit" value="<?php __("Select"); ?>" class="inb" />&nbsp; 
     132<input type="submit" name="select" value="<?php __("Select"); ?>" class="inb" />&nbsp; 
    133133<input type="button" name="cancel" value="<?php __("Cancel"); ?>" class="inb" onclick="window.close();" />&nbsp; 
    134134</p> 
  • bureau/admin/sta_edit.php

    r107 r150  
    11<?php 
    22/* 
    3  $Id: sta_edit.php,v 1.3 2003/06/10 11:18:27 root Exp $ 
     3 $Id: sta_edit.php,v 1.4 2003/08/20 14:36:58 root Exp $ 
    44 ---------------------------------------------------------------------- 
    55 AlternC - Web Hosting System 
     
    5050        } 
    5151?> 
    52 <form method="post" action="sta_doedit.php" id="main"> 
     52<form method="post" action="sta_doedit.php" id="main" name="main"> 
    5353<table border="1" cellspacing="0" cellpadding="4"> 
    5454<tr><th><input type="hidden" name="id" value="<?php echo $id ?>" /> 
  • bureau/admin/sta_list.php

    r134 r150  
    11<?php 
    22/* 
    3  $Id: sta_list.php,v 1.6 2003/08/13 23:31:47 root Exp $ 
     3 $Id: sta_list.php,v 1.7 2003/08/20 14:36:58 root Exp $ 
    44 ---------------------------------------------------------------------- 
    55 AlternC - Web Hosting System 
     
    7373                <td><a href="sta_edit.php?id=<?php echo $val["id"] ?>"><?php __("Edit"); ?></a></td> 
    7474                <td><label for="del_<?php echo $val["id"]; ?>"><?php echo $val["hostname"] ?></label></td> 
    75                 <td><?php echo $stats->langname[$val["lang"]]; ?></td> 
     75                <td><?php echo _($stats->langname[$val["lang"]]); ?></td> 
    7676                <td><code>/<?php echo $val["dir"] ?></code></td> 
    7777                <td><?php 
  • bureau/class/m_stats.php

    r142 r150  
    11<?php 
    22/* 
    3  $Id: m_stats.php,v 1.7 2003/08/19 19:07:11 root Exp $ 
     3 $Id: m_stats.php,v 1.8 2003/08/20 14:37:00 root Exp $ 
    44 ---------------------------------------------------------------------- 
    55 AlternC - Web Hosting System 
     
    183183    while (list($key,$val)=each($this->langname)) { 
    184184      if ($current==$val) $c=" selected=\"selected\""; else $c=""; 
    185       echo "<option value=\"$key\"$c>$val</option>"; 
     185      echo "<option value=\"$key\"$c>"._($val)."</option>"; 
    186186    } 
    187187    return true; 
Note: See TracChangeset for help on using the changeset viewer.