Changeset 1017

Show
Ignore:
Timestamp:
02/24/08 20:41:01 (9 months ago)
Author:
joximu
Message:

some smaller fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r1016 r1017  
    11ispCP ω 1.0.0 Changelog 
    22~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     3 
     42008-02-19 Christian Hernmarck 
     5        - GUI: 
     6                * Some small fixes: domain_statistics & some "remove this" messages 
    37 
    482008-02-24 Benedikt Heintel 
  • trunk/gui/client/catchall.php

    r1014 r1017  
    352352        'TR_EDIT' => tr('Edit'), 
    353353        'TR_DELETE' => tr('Delete'), 
    354         'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete'), 
     354        'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete', true), 
    355355        ) 
    356356    ); 
  • trunk/gui/client/cronjobs_overview.php

    r1014 r1017  
    6565$tpl->assign( 
    6666        array('TR_CRON_MANAGER' => tr('Cronjob Manager'), 
    67                 'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete'), 
     67                'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete', true), 
    6868                'TR_CRONJOBS' => tr('Cronjobs'), 
    6969                'TR_ACTIVE' => tr('Active'), 
  • trunk/gui/client/email_accounts.php

    r1015 r1017  
    388388                'TR_TOTAL_MAIL_ACCOUNTS' => tr('Mails total'), 
    389389                'TR_DELETE' => tr('Delete'), 
    390                 'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete %s', true, $dmn_name), 
     390                'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete', true), 
    391391                ) 
    392392        ); 
  • trunk/gui/client/ftp_accounts.php

    r1014 r1017  
    158158                'TR_EDIT' => tr('Edit'), 
    159159                'TR_DELETE' => tr('Delete'), 
    160                 'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete'), 
     160                'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete', true), 
    161161                ) 
    162162        ); 
  • trunk/gui/client/manage_domains.php

    r1014 r1017  
    222222                        'TR_SUB_STATUS' => tr('Status'), 
    223223                        'TR_SUB_ACTION' => tr('Actions'), 
    224                         'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete'
     224                        'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete', true
    225225                ) 
    226226        ); 
  • trunk/gui/client/manage_sql.php

    r1014 r1017  
    167167                        'TR_CHANGE_PASSWORD' => tr('Change password'), 
    168168                        'TR_LOGIN_PMA' => tr('Login phpMyAdmin'), 
    169                         'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete'
     169                        'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete', true
    170170                        ) 
    171171                ); 
  • trunk/gui/client/ss_closed.php

    r1014 r1017  
    195195                'TR_CLOSED_TICKETS' => tr('Closed tickets'), 
    196196                'TR_DELETE' => tr('Delete'), 
    197                 'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete'))); 
     197                'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete', true) 
     198                ) 
     199            ); 
    198200 
    199201gen_page_message($tpl); 
  • trunk/gui/client/support_system.php

    r1014 r1017  
    200200                'TR_CLOSED_TICKETS' => tr('Closed tickets'), 
    201201                'TR_DELETE' => tr('Delete'), 
    202                 'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete'))); 
     202                'TR_MESSAGE_DELETE' => tr('Are you sure you want to delete', true) 
     203                ) 
     204            ); 
    203205 
    204206gen_page_message($tpl); 
  • trunk/gui/include/ispcp-config.php

    r1016 r1017  
    9191                'DATABASE_DIR' => null, 
    9292                'CMD_MYSQLDUMP' => null, 
     93                'DATABASE_UTF8' => null, 
    9394                'CONF_DIR' => null, 
    9495                'LOG_DIR' => null, 
  • trunk/gui/reseller/domain_statistics.php

    r1014 r1017  
    3737                     'THEME_COLOR_PATH' => "../themes/$theme_color", 
    3838                     'THEME_CHARSET' => tr('encoding'), 
    39                      , 
    4039                     'ISP_LOGO' => get_logo($_SESSION['user_id']))); 
    4140 
  • trunk/gui/themes/omega_original/client/email_accounts.tpl

    r852 r1017  
    99<script language="JavaScript" type="text/JavaScript"> 
    1010<!-- 
    11 function action_delete(url) { 
    12         if (!confirm("{TR_MESSAGE_DELETE}")) 
     11function action_delete(url, mailacc) { 
     12        if (!confirm("{TR_MESSAGE_DELETE} "+mailacc)) 
    1313                return false; 
    1414 
     
    9393                      <td nowrap class="{ITEM_CLASS}" width="150">{MAIL_TYPE}</td> 
    9494                      <td nowrap class="{ITEM_CLASS}" align="center" width="180">{MAIL_STATUS}</td> 
    95                       <td nowrap class="{ITEM_CLASS}" align="center" width="100"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle"> <a href="#" class="link" onClick="action_delete('{MAIL_ACTION_SCRIPT}')">{MAIL_ACTION}</a></td> 
     95                      <td nowrap class="{ITEM_CLASS}" align="center" width="100"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle"> <a href="#" class="link" onClick="action_delete('{MAIL_ACTION_SCRIPT}', '{MAIL_ACC}')">{MAIL_ACTION}</a></td> 
    9696                                        </td> 
    9797                    </tr>