email/imum/Mtms/Data/Imap4MtmUi.ra
branchRCL_3
changeset 27 7fdbb852d323
parent 0 72b543305e3a
equal deleted inserted replaced
26:ebe688cedc25 27:7fdbb852d323
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Imap4MtmUi.ra
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "Imap4MtmUi.hrh"
       
    20 
       
    21 RESOURCE RSS_SIGNATURE
       
    22     { 
       
    23     }
       
    24 
       
    25 
       
    26 RESOURCE TBUF r_inbox_name                  
       
    27     { 
       
    28     buf="Inbox"; 
       
    29     // this is not localised because every Imap4 mail server must include 
       
    30     // folder named 'Inbox' according Imap4 protocol
       
    31     }
       
    32 
       
    33 //  Progress messages
       
    34 RESOURCE TBUF r_imap4_progress_inboxsync    
       
    35     { 
       
    36     buf=qtn_mce_wait_updating_inbox; 
       
    37     }
       
    38 RESOURCE TBUF r_imap4_progress_fetching     
       
    39     { 
       
    40     buf=qtn_mce_progress_fetch; 
       
    41     }
       
    42 
       
    43 RESOURCE TBUF r_imap4_progress_fetching_multi   
       
    44     { 
       
    45     buf=qtn_mce_progress_fetch_many; 
       
    46     }
       
    47 
       
    48 RESOURCE TBUF r_imap4_progress_copying      
       
    49     { 
       
    50     buf=qtn_mce_wait_copy; 
       
    51     }
       
    52 RESOURCE TBUF r_imap4_progress_copying_multi    
       
    53     { 
       
    54     buf=qtn_mce_wait_copy_many; 
       
    55     }
       
    56 
       
    57 RESOURCE TBUF r_imap4_progress_deleting_many
       
    58     { 
       
    59     buf=qtn_mce_wait_delete_many; 
       
    60     }
       
    61 
       
    62 RESOURCE TBUF r_imap4_progress_deleting     
       
    63     { 
       
    64     buf=qtn_mce_wait_delete; 
       
    65     }
       
    66 
       
    67 RESOURCE TBUF r_imap4_getting_attachment        
       
    68     { 
       
    69     buf=qtn_mail_wait_fetch_atta; 
       
    70     }
       
    71 
       
    72 RESOURCE TBUF r_imap4_progress_undeleting
       
    73     { 
       
    74     buf=qtn_mce_wait_undelete; 
       
    75     }
       
    76 
       
    77 RESOURCE TBUF r_imap4_progress_undeleting_many
       
    78     { 
       
    79     buf=qtn_mce_wait_undeletes; 
       
    80     }
       
    81 
       
    82 RESOURCE TBUF r_imap4_progress_deleting_locally_many
       
    83     { 
       
    84     buf=qtn_mce_wait_delete_many_msg; // this is also used in pop3 local delete 
       
    85     }
       
    86 
       
    87 RESOURCE TBUF r_imap4_progress_deleting_locally
       
    88     { 
       
    89     buf=qtn_mce_wait_delete_msg; // this is also used in pop3 local delete 
       
    90     }
       
    91 
       
    92 
       
    93 // --- summary text ---
       
    94 
       
    95 RESOURCE TBUF256 r_imap4_timeout_dialog_text        
       
    96     { 
       
    97     buf=qtn_mce_info_mailbox_closed; 
       
    98     }
       
    99 
       
   100 RESOURCE TBUF256 r_mail_err_no_in_srvr        
       
   101     { 
       
   102     buf=qtn_mail_err_no_in_srvr; 
       
   103     }
       
   104 
       
   105 
       
   106 //message info
       
   107 RESOURCE TBUF64 r_imap_message_info_mail_type   
       
   108     { 
       
   109     buf=qtn_mail_msginfo_mail; 
       
   110     }
       
   111 
       
   112 RESOURCE DIALOG r_imum_delete_list_query
       
   113     {
       
   114     flags=EGeneralQueryFlags;
       
   115     buttons=R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
   116     items=
       
   117         {
       
   118         DLG_LINE 
       
   119             {
       
   120             type = EAknCtListQueryControl;
       
   121             id = EListQueryControl;
       
   122             control = AVKON_LIST_QUERY_CONTROL
       
   123                 {
       
   124                 listtype = EAknCtSinglePopupMenuListBox;
       
   125                 listbox = LISTBOX
       
   126                     {
       
   127                     flags = EAknListBoxMenuList;
       
   128                     height = 3;
       
   129                     width = 3;
       
   130                     array_id = r_imum_delete_list_query_list_array;
       
   131                     };
       
   132                 heading = qtn_mce_pop_up_delete;
       
   133                 };
       
   134             }
       
   135         };
       
   136     }
       
   137 
       
   138 RESOURCE TBUF r_imum_delete_list_query_title_many_mails
       
   139     { 
       
   140     buf = qtn_mce_pop_up_delete_many; 
       
   141     }
       
   142 
       
   143 RESOURCE ARRAY r_imum_delete_list_query_list_array
       
   144     {
       
   145     items = 
       
   146         {
       
   147         LBUF { txt = qtn_mce_pop_up_locally; },
       
   148         LBUF { txt = qtn_mce_pop_up_server; }
       
   149         };
       
   150     }