Changeset 1737


Ignore:
Timestamp:
12/02/09 14:23:40 (14 years ago)
Author:
amuller
Message:

Ticket #597 - Melhorias no módulos gerenciador de arquivos do expresso livre

Location:
sandbox/filemanager
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sandbox/filemanager/inc/class.uifilemanager.inc.php

    r1732 r1737  
    214214                                else 
    215215                                { 
    216                                         $this->messages[]= lang('Fake Base Dir did not exist, eGroupWare created a new one.'); 
     216                                        $this->messages[]= lang('Fake Base Dir did not exist, created a new one.'); 
    217217                                } 
    218218                        } 
     
    797797                                        else 
    798798                                        { 
    799                                                 $this->messages[] = lang('Error:').lang('Could not move %1 to %2', $this->disppath.'/'.$file, $this->to.'/'.$file); 
     799                                                $this->messages[] = lang('Error:').lang('Could not move %1 to %2', $file, $this->to); 
    800800                                        } 
    801801                                } 
     
    816816                        if(!$this->to) 
    817817                        { 
    818                                 $this->messages[] = lang('Error:').lang('Could not copy file because no destination directory is given ', $this->disppath.'/'.$file); 
     818                                $this->messages[] = lang('Error:').lang('Could not copy file because no destination directory is given '); 
    819819 
    820820                        } 
     
    835835                                        else 
    836836                                        { 
    837                                                 $this->messages[] = lang('Error:').lang('Could not copy %1 to %2',$this->from . '/' . $file , $this->to.'/'.$file); 
     837                                                $this->messages[] = lang('Error:').lang('Could not copy %1 to %2',$file , $this->to); 
    838838                                        } 
    839839                                } 
  • sandbox/filemanager/js/draw_api.js

    r1732 r1737  
    189189        var sp_hd = '<span name="head" style="cursor: pointer; cursor: hand;"'; 
    190190        var sp_tl = '</span></td>'; 
    191         newpage = '<table cellspacing="0" cellpadding="2"><tbody><tr class="message_header">'; 
     191        newpage = '<table cellspacing="0" cellpadding="2" width="100%"><tbody><tr class="message_header">'; 
    192192        newpage += fl.td+'<input onclick="selectAll(this)" type="checkbox"></td><td></td><td></td>'; 
    193193        newpage += fl.td+sp_hd+' id="name">'+get_lang('file name')+sp_tl; 
     
    241241        var sp_hd = '<span name="head" style="cursor: pointer; cursor: hand;" onclick="reloadFiles(\''; 
    242242        var sp_tl = '</span></td>'; 
    243         newpage = '<table cellspacing="0" cellpadding="2"><tbody><tr class="message_header">'; 
     243        newpage = '<table cellspacing="0" cellpadding="2" width="100%"><tbody><tr class="message_header">'; 
    244244        newpage += fl.td+'<input onclick="selectAll(this)" type="checkbox"></td><td></td><td></td>'; 
    245245        newpage += fl.td+sp_hd+'name\')" id="name">'+get_lang('file name')+sp_tl; 
  • sandbox/filemanager/setup/phpgw_pt-br.lang

    r1726 r1737  
    156156who     filemanager     pt-br   Quem 
    157157you do not have access to %1    filemanager     pt-br   Você não tem acesso a %1 
    158 your home dir did not exist, egroupware created a new one.      filemanager     pt-br   Seu Diretório Home não existia, eGroupWare criou um novo. 
     158your home dir did not exist, created a new one. filemanager     pt-br   Seu Diretório Home não existia, foi criado um novo. 
  • sandbox/filemanager/templates/default/main.tpl

    r1726 r1737  
    5252<div id="formfm" name="formfm"> 
    5353<div id="fmFileWindow"> 
    54 <table cellspacing="0" cellpadding="2"> 
     54<table cellspacing="0" cellpadding="2" width="100%"> 
    5555<tbody> 
    5656<!-- END filemanager_header --> 
Note: See TracChangeset for help on using the changeset viewer.