Changeset 1285


Ignore:
Timestamp:
08/06/09 16:07:53 (15 years ago)
Author:
amuller
Message:

Ticket #485 - Implementação da ajuda nas preferências

Location:
trunk/expressoMail1_2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/hook_settings.inc.php

    r1284 r1285  
    7272); 
    7373 
    74 create_select_box('What is the maximum number of messages per page?','max_email_per_page',$default, 
    75         'What is the maximum number of messages per page?'); 
    76 create_check_box('Save deleted messages in trash folder?','save_deleted_msg','Save deleted messages in trash folder?'); 
     74create_select_box('What is the maximum number of messages per page?','max_email_per_page',$default,'This is the number of messages shown in your mailbox per page'); 
     75create_check_box('Save deleted messages in trash folder?','save_deleted_msg','When delete message, send it automatically to trash folder'); 
    7776$default = array( 
    7877        '1'    => lang('1 day'), 
     
    8382); 
    8483 
    85 create_select_box('Delete trash messages after how many days?','delete_trash_messages_after_n_days',$default,lang('Delete trash messages after how many days?')); 
    86 create_check_box('Would you like to use local messages?','use_local_messages',''); 
    87 create_check_box('Would you like to keep archived messages?','keep_archived_messages',''); 
    88 create_check_box('Show previous message, after delete actual message?','delete_and_show_previous_message',''); 
    89 create_check_box('Do you wanna receive an alert for new messages?','alert_new_msg',''); 
    90 create_check_box('Show default view on main screen?','mainscreen_showmail',''); 
    91 create_check_box('Do you want to use remove attachments function?','remove_attachments_function',''); 
    92 create_check_box('Do you want to use important flag in email editor?','enable_important_flag',''); 
     84create_select_box('Delete trash messages after how many days?','delete_trash_messages_after_n_days',$default,'Delete automatically the messages in trash folder in how many days'); 
     85create_check_box('Would you like to use local messages?','use_local_messages','Enabling this options you will be able to store messages in your local computer'); 
     86create_check_box('Would you like to keep archived messages?','keep_archived_messages','After store email in your local computer delete it from server'); 
     87create_check_box('Show previous message, after delete actual message?','delete_and_show_previous_message','Enable this option if you want to read the next message everytime you delete a message'); 
     88create_check_box('Do you wanna receive an alert for new messages?','alert_new_msg','Everytime you receive new messages you will be informed'); 
     89create_check_box('Show default view on main screen?','mainscreen_showmail','Show unread messages in your home page'); 
     90create_check_box('Do you want to use remove attachments function?','remove_attachments_function','It allow you to remove attachments from messages'); 
     91create_check_box('Do you want to use important flag in email editor?','enable_important_flag','It allow you to send emails with important flag, but you can receive unwanted messages with important flag'); 
    9392 
    9493//Use user folders from email 
    95 if ($type != 'user'){ 
     94if ($type != "" && $type != "user"){ 
    9695        $trash = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultTrashFolder']; 
    9796        $drafts = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultDraftsFolder']; 
     
    106105        ); 
    107106} 
    108 else{ 
     107else 
     108{ 
    109109        require_once('class.imap_functions.inc.php'); 
    110110        $boemailadmin = CreateObject('emailadmin.bo'); 
     
    145145        } 
    146146} 
    147 create_select_box('Save sent messages in folder','save_in_folder',$default,''); 
    148 create_check_box('Hide menu folders?','hide_folders',''); 
     147create_select_box('Save sent messages in folder','save_in_folder',$default,'Save automatically sent messages in selected folder'); 
     148create_check_box('Hide menu folders?','hide_folders','You can use it if your screen does not have good resolution'); 
    149149 
    150150$default = array( 
     
    162162 
    163163create_select_box('What the font size in the list of messages?','font_size',$default,''); 
    164 create_check_box('Use dynamic contacts?','use_dynamic_contacts',''); 
     164create_check_box('Use dynamic contacts?','use_dynamic_contacts','Store your\'s most used contacts'); 
    165165create_check_box('Use shortcuts?','use_shortcuts',''); 
    166 create_check_box('Auto save draft','auto_save_draft',''); 
     166create_check_box('Auto save draft','auto_save_draft','When you are away from computer it saves automatically the message you are writing'); 
    167167$default = array( 
    168168        '65536' => lang('unlimited'), 
     
    174174); 
    175175 
    176 create_select_box('What is the maximum size of embedded images'."?",'image_size',$default,''); 
     176create_select_box('What is the maximum size of embedded images?','image_size',$default,'When user send an email with image in body message, it changes the size'); 
    177177 
    178178if($GLOBALS['phpgw_info']['server']['use_assinar_criptografar']) 
Note: See TracChangeset for help on using the changeset viewer.