Changeset 2558


Ignore:
Timestamp:
01/31/10 01:48:03 (2 years ago)
Author:
nuxwin
Message:
  • GUI:
    • Fixed #2140: Untranslated message {DISK_USAGE} of {DISK_LIMIT} MB
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/CHANGELOG

    r2556 r2558  
    55        - GUI: 
    66                * Fixed #2152: Wrong limited count in reseller gui 
     7                * Fixed #2140: Untranslated message {DISK_USAGE} of {DISK_LIMIT} MB 
    78 
    892010-01-27 Marc Pujol 
  • trunk/gui/reseller/users.php

    r2530 r2558  
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    66 * @copyright   2006-2010 by ispCP | http://isp-control.net 
    7  * @version     SVN: $ID$ 
     7 * @version     SVN: $Id$ 
    88 * @link                http://isp-control.net 
    99 * @author              ispCP Team 
     
    324324                                        'USER_ID' => $rs->fields['domain_admin_id'], 
    325325                                        'CHANGE_INTERFACE' => tr('Switch'), 
    326                                         'DISK_LIMIT' => $rs->fields['domain_disk_limit'], 
    327                                         'DISK_USAGE' => round($rs->fields['domain_disk_usage'] / 1024 / 1024,1), 
     326                                        'DISK_USAGE' => ($rs->fields['domain_disk_limit']) 
     327                                                ? tr('%1$s of %2$s MB', round($rs->fields['domain_disk_usage'] / 1024 / 1024,1), $rs->fields['domain_disk_limit']) 
     328                                                : tr('%1$s of <b>unlimited</b> MB', round($rs->fields['domain_disk_usage'] / 1024 / 1024,1)) 
    328329                                ) 
    329330                        ); 
  • trunk/gui/themes/omega_original/reseller/users.tpl

    r2329 r2558  
    112112                        <td class="{CLASS_TYPE_ROW}" width="90" align="center">{CREATION_DATE}</td> 
    113113                        <td class="{CLASS_TYPE_ROW}" width="90" align="center">{EXPIRE_DATE}</td> 
    114                                                 <td class="{CLASS_TYPE_ROW}" width="90" align="center">{DISK_USAGE} of {DISK_LIMIT} MB</td> 
     114                                                <td class="{CLASS_TYPE_ROW}" width="90" align="center">{DISK_USAGE}</td> 
    115115                        <td nowrap="nowrap" width="80" align="center" class="{CLASS_TYPE_ROW}"><img src="{THEME_COLOR_PATH}/images/icons/identity.png" width="16" height="16" border="0" style="vertical-align:middle" alt="" /> <a href="domain_details.php?domain_id={DOMAIN_ID}" class="link">{TR_DETAILS}</a></td> 
    116116                        <!-- BDP: edit_option --> 
Note: See TracChangeset for help on using the changeset viewer.