Changeset 3994
- Timestamp:
- 04/12/11 14:50:19 (12 years ago)
- Location:
- branches/2.2.0.1/expressoMail1_2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.0.1/expressoMail1_2/inc/hook_settings.inc.php
r3812 r3994 215 215 create_check_box('Use shortcuts?','use_shortcuts','n key (Open new message)<br>ESC key (Close tab)<br>i key (print)<br>e key (forward)<br>r key (reply)<br>DELETE key (delete the current message)<br>Ctrl + up (go to previous message)<br>Ctrl + down (go to next message)<br>Shift + up or down (select multiple messages)<br>F9 key (search at catalog)<br>'); 216 216 create_check_box('Auto save draft','auto_save_draft','When you are away from computer it saves automatically the message you are writing'); 217 create_check_box('Send messages with return recipient option by default','return_recipient_deafault','With this option every new email will get the return recipient option marked'); 217 218 218 219 unset($default); -
branches/2.2.0.1/expressoMail1_2/index.php
r3977 r3994 95 95 $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['auto_create_local'] = $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['auto_create_local'] ? $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['auto_create_local'] : "0"; 96 96 $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['use_SpellChecker'] = $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['use_SpellChecker'] ? $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['use_SpellChecker'] : "0"; 97 97 $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['return_recipient_deafault'] = $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['return_recipient_deafault'] ? $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['return_recipient_deafault'] : "0"; 98 98 99 $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['quick_search_default'] = $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['quick_search_default'] ? $GLOBALS['phpgw_info']['user']['preferences']['expressoMail']['quick_search_default'] : 1; 99 100 -
branches/2.2.0.1/expressoMail1_2/js/draw_api.js
r3993 r3994 2684 2684 input_return_receipt.className = "checkbox"; 2685 2685 input_return_receipt.id = "return_receipt_"+ID; 2686 2687 if(preferences.return_recipient_deafault != '0'){ 2688 if (is_ie){ 2689 input_return_receipt.checked=true; 2690 } 2691 else{ 2692 input_return_receipt.defaultChecked=true; 2693 } 2694 } 2695 2686 2696 input_return_receipt.setAttribute("tabIndex","-1"); 2687 2697 td_return_receipt.appendChild(input_return_receipt); -
branches/2.2.0.1/expressoMail1_2/setup/phpgw_pt-br.lang
r3977 r3994 648 648 Warning expressoMail1_2 pt-br Atenção 649 649 Discard expressoMail1_2 pt-br Descartar 650 Send messages with return recipient option by default expressoMail1_2 pt-br Sempre enviar mensagens com confirmação de leitura? 651 With this option every new email will get the return recipient option marked expressoMail1_2 pt-br Com essa opção ativa todo novo e-mail terá marcada a opção de Confirmação de leitura padrão.
Note: See TracChangeset
for help on using the changeset viewer.