Changeset 3533


Ignore:
Timestamp:
11/24/10 10:40:02 (13 years ago)
Author:
brunocosta
Message:

Ticket #1340 - Adicionada clarificação sobre a instalação do offline.

Location:
branches/2.2/expressoMail1_2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/expressoMail1_2/offline_preferences.php

    r1121 r3533  
    3737        $GLOBALS['phpgw']->template->set_var('lang_save',lang('Save')); 
    3838        $GLOBALS['phpgw']->template->set_var('lang_cancel',lang('Cancel')); 
    39          
     39 
     40        $proxies=explode(',',$_SERVER['HTTP_X_FORWARDED_HOST']); 
     41        if ($GLOBALS['phpgw_info']['server']['use_https'] != 2) 
     42            { 
     43                $fwConstruct = 'http://'; 
     44            } 
     45        else 
     46            { 
     47                $fwConstruct = 'https://'; 
     48            } 
     49        $fwConstruct .= isset($_SERVER['HTTP_X_FORWARDED_HOST']) ? $proxies[0] : $_SERVER['HTTP_HOST']; 
     50        $GLOBALS['phpgw']->template->set_var('root',$fwConstruct); 
     51        $GLOBALS['phpgw']->template->set_var('offline_install_msg',lang("If you want to install a desktop shortcut for accessing the offline ExpressoMail please confirm it after pressing the Install offline button. </br> The application also can be accessed using the URL:" )); 
    4052        $GLOBALS['phpgw']->template->set_var('save_action',$GLOBALS['phpgw']->link('/'.'expressoMail1_2'.'/preferences.php')); 
    4153        $GLOBALS['phpgw']->template->set_var('th_bg',$GLOBALS['phpgw_info']["theme"][th_bg]); 
  • branches/2.2/expressoMail1_2/setup/phpgw_pt-br.lang

    r3493 r3533  
    626626Increases th maximum size of show messages?     expressoMail1_2 pt-br   Você quer que se aumente o limite de tamanho de emails que são mostrados? 
    627627Increases the maximum size of show emails from 100kb to 1mb'    expressoMail1_2 pt-br   Essa opção aumenta o tamanho máximo dos emails mostrados de 100KB para 1MB. 
     628If you want to install a desktop shortcut for accessing the offline ExpressoMail please confirm it after pressing the Install offline button. </br> The application also can be accessed using the URL: expressoMail1_2 pt-br   Caso deseje instalar um ícone no desktop para acesso ao expressoMail offline, confirme a pergunta que aparecerá após clicar no botão "instalar offline". <br />A aplicação também pode ser acessada pela URL: 
  • branches/2.2/expressoMail1_2/templates/default/offline_preferences.tpl

    r1121 r3533  
    4949                                </td--> 
    5050                        </tr> 
     51                        <tr> 
     52                            <td> 
     53                                {offline_install_msg}&nbsp;<strong>{root}/expressoMail1_2/offline.php</strong> 
     54                            </td> 
     55                        </tr> 
    5156                        </table> 
    5257                </td> 
Note: See TracChangeset for help on using the changeset viewer.