clock2/clockui/uilayer/clkdatetimeview/data/clkdatetimeview.ra
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     1 /*
       
     2 * Copyright (c) 2008 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:   This file contains the resources for "Date & Time" settings view.
       
    15 *
       
    16 */
       
    17 
       
    18 // System includes
       
    19 #include <AvkonIcons.hrh>
       
    20 #include <avkon.mbg>
       
    21 #include <pathconfiguration.hrh>
       
    22 #include <CLFContentListing.rh>
       
    23 #include <CLFContentListing.hrh>
       
    24 #include <clkdatetimeview.loc>
       
    25 #include <clockapp.loc>
       
    26 
       
    27 // User includes
       
    28 #include "clkdatetimeview.hrh"
       
    29 #include "clkdatetimeview.rh"
       
    30 
       
    31 // Resource definitions
       
    32 // ---------------------------------------------------------
       
    33 // r_clk_date_time_sett_view
       
    34 // The clock main view.
       
    35 // ---------------------------------------------------------
       
    36 //
       
    37 RESOURCE AVKON_VIEW r_clk_date_time_sett_view
       
    38     {
       
    39     menubar = r_clk_date_time_sett_menubar;
       
    40     cba = r_clk_softkeys_option_back_change;
       
    41     }
       
    42 
       
    43 // Resource definitions
       
    44 // ---------------------------------------------------------
       
    45 // r_clk_softkeys_option_back_change
       
    46 // The button group of the date and time settings view.
       
    47 // ---------------------------------------------------------
       
    48 //
       
    49 RESOURCE CBA r_clk_softkeys_option_back_change
       
    50     {
       
    51 	buttons =
       
    52         {
       
    53         CBA_BUTTON { id = EAknSoftkeyOptions;      txt = text_softkey_option; },
       
    54         CBA_BUTTON { id = EAknSoftkeyBack;         txt = text_softkey_back; },
       
    55         CBA_BUTTON { id = EAknSoftkeyChange;       txt = qtn_options_change; }
       
    56         };
       
    57     }
       
    58 
       
    59 // Resource definitions
       
    60 // ---------------------------------------------------------
       
    61 // r_clk_date_time_sett_menubar
       
    62 // The menubar.
       
    63 // ---------------------------------------------------------
       
    64 //
       
    65 RESOURCE MENU_BAR r_clk_date_time_sett_menubar
       
    66     {
       
    67     titles =
       
    68         {
       
    69         MENU_TITLE
       
    70             {
       
    71             menu_pane = r_clk_date_time_option_popupmenu;
       
    72             }
       
    73         };
       
    74     }
       
    75 
       
    76 // Resource definitions
       
    77 // ---------------------------------------------------------
       
    78 // r_clk_date_time_option_popupmenu
       
    79 // The menupane
       
    80 // ---------------------------------------------------------
       
    81 //
       
    82 RESOURCE MENU_PANE r_clk_date_time_option_popupmenu
       
    83     {
       
    84     items =
       
    85         {
       
    86         MENU_ITEM
       
    87             {
       
    88             command = EClkSettChangeCmd;
       
    89             txt = qtn_wclk_sett_change;
       
    90 	    //Single click integration
       
    91             flags = EEikMenuItemAction;
       
    92 
       
    93             },
       
    94         MENU_ITEM 
       
    95             {
       
    96             command = EAknCmdHelp;
       
    97             txt = qtn_wclk_sett_help;
       
    98             },
       
    99         MENU_ITEM
       
   100             {
       
   101             command = EClkSettExitCmd;
       
   102             txt = qtn_wclk_sett_exit;
       
   103             }
       
   104         };
       
   105     }
       
   106 
       
   107 // Resource definitions
       
   108 // ---------------------------------------------------------
       
   109 // r_date_time_date_editor
       
   110 // The date editor
       
   111 // ---------------------------------------------------------
       
   112 //
       
   113 RESOURCE DATE_EDITOR r_date_time_date_editor
       
   114     {
       
   115     minDate = DATE { day = 0; month = 0; year = 1980; };
       
   116     maxDate = DATE { day = 30; month = 11; year = 2060; };
       
   117     }
       
   118 
       
   119 // Resource definitions
       
   120 // ---------------------------------------------------------
       
   121 // r_date_time_date_page
       
   122 // The date settings page
       
   123 // ---------------------------------------------------------
       
   124 //
       
   125 RESOURCE AVKON_SETTING_PAGE r_date_time_date_page
       
   126     {
       
   127     label = qtn_clk_sett_date; 
       
   128     type = EEikCtDateEditor;
       
   129     softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
   130     menubar = R_AVKON_MENUPANE_EMPTY;
       
   131     editor_resource_id = r_date_time_date_editor;
       
   132     }
       
   133 
       
   134 // Resource definitions
       
   135 // ---------------------------------------------------------
       
   136 // r_date_time_time_editor
       
   137 // The time editor
       
   138 // ---------------------------------------------------------
       
   139 //
       
   140 RESOURCE TIME_EDITOR r_date_time_time_editor
       
   141     {
       
   142     minTime = TIME { second = 0; minute = 0; hour = 0; };
       
   143     maxTime = TIME { second = 59; minute = 59; hour = 23; };
       
   144     flags = EEikTimeWithoutSecondsField;
       
   145     }
       
   146 
       
   147 // Resource definitions
       
   148 // ---------------------------------------------------------
       
   149 // r_date_time_time_page
       
   150 // The time settings page
       
   151 // ---------------------------------------------------------
       
   152 //
       
   153 RESOURCE AVKON_SETTING_PAGE r_date_time_time_page
       
   154     {
       
   155 	label = qtn_clk_sett_time; 
       
   156     softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
   157     menubar = R_AVKON_MENUPANE_EMPTY;
       
   158     type = EEikCtTimeEditor;
       
   159     editor_resource_id = r_date_time_time_editor;
       
   160     }
       
   161 
       
   162 // Resource definitions
       
   163 // ---------------------------------------------------------
       
   164 // r_date_time_popup_list
       
   165 // The date and time popup list
       
   166 // ---------------------------------------------------------
       
   167 //
       
   168 RESOURCE POPUP_SETTING_LIST r_date_time_popup_list
       
   169     {
       
   170     flags = 0;
       
   171     }
       
   172 
       
   173 // Resource definitions
       
   174 // ---------------------------------------------------------
       
   175 // r_date_time_popup_page
       
   176 // The date and time settings page
       
   177 // ---------------------------------------------------------
       
   178 //
       
   179 RESOURCE AVKON_SETTING_PAGE r_date_time_popup_page
       
   180     {
       
   181     softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__MARK;
       
   182     menubar = R_AVKON_MENUPANE_EMPTY;
       
   183     type = EAknCtPopupSettingList;
       
   184     editor_resource_id = r_date_time_popup_list;
       
   185     }
       
   186 
       
   187 // Resource definitions
       
   188 // ---------------------------------------------------------
       
   189 // r_date_time_popup_page_msk
       
   190 // The date and time settings page
       
   191 // ---------------------------------------------------------
       
   192 //
       
   193 RESOURCE AVKON_SETTING_PAGE r_date_time_popup_page_msk
       
   194     {
       
   195     softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
   196     menubar = R_AVKON_MENUPANE_EMPTY;
       
   197     type = EAknCtPopupSettingList;
       
   198     editor_resource_id = r_date_time_popup_list;
       
   199     }
       
   200 
       
   201 // Resource definitions
       
   202 // ---------------------------------------------------------
       
   203 // r_date_time_checkbox_list
       
   204 // The date and time checkbox list
       
   205 // ---------------------------------------------------------
       
   206 //
       
   207 RESOURCE LISTBOX r_date_time_checkbox_list
       
   208     {
       
   209     flags = EEikListBoxMultipleSelection;
       
   210     }
       
   211 
       
   212 // Resource definitions
       
   213 // ---------------------------------------------------------
       
   214 // r_date_time_workdays_checkbox_page_msk
       
   215 // The date and time workdays checkbox list
       
   216 // ---------------------------------------------------------
       
   217 //
       
   218 RESOURCE AVKON_SETTING_PAGE r_date_time_workdays_checkbox_page_msk
       
   219     {
       
   220     softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__MARK;
       
   221     menubar = R_AVKON_MENUPANE_EMPTY;
       
   222     type =  EAknSetListBox ;
       
   223     editor_resource_id = r_date_time_checkbox_list;
       
   224     }
       
   225 
       
   226 // Resource definitions
       
   227 // ---------------------------------------------------------
       
   228 // r_date_time_date_frmt_array
       
   229 // The date format string array
       
   230 // ---------------------------------------------------------
       
   231 //
       
   232 RESOURCE ARRAY r_date_time_date_frmt_array
       
   233     {
       
   234     items =
       
   235         {
       
   236         LBUF { txt = qtn_clk_sett_dd_mm_yyyy; },
       
   237         LBUF { txt = qtn_clk_sett_mm_dd_yyyy; },
       
   238         LBUF { txt = qtn_clk_sett_yyyy_mm_dd; }
       
   239         };
       
   240     }
       
   241 
       
   242 // Resource definitions
       
   243 // ---------------------------------------------------------
       
   244 // r_clock_week_days_array
       
   245 // The weekdays string array
       
   246 // ---------------------------------------------------------
       
   247 //
       
   248 RESOURCE ARRAY r_clock_week_days_array
       
   249     {
       
   250     items =
       
   251         {
       
   252         LBUF { txt = qtn_week_long_monday; },
       
   253         LBUF { txt = qtn_week_long_tuesday; },
       
   254         LBUF { txt = qtn_week_long_wednesday; },
       
   255         LBUF { txt = qtn_week_long_thursday; },
       
   256         LBUF { txt = qtn_week_long_friday; },
       
   257         LBUF { txt = qtn_week_long_saturday; },
       
   258         LBUF { txt = qtn_week_long_sunday; }
       
   259         };
       
   260     }
       
   261 
       
   262 // Resource definitions
       
   263 // ---------------------------------------------------------
       
   264 // r_clock_week_days_short_array
       
   265 // The weekdays string array in short format
       
   266 // ---------------------------------------------------------
       
   267 //
       
   268 RESOURCE ARRAY r_clock_week_days_short_array
       
   269     {
       
   270     items =
       
   271         {
       
   272         LBUF { txt = qtn_week_two_chars_mo; },
       
   273         LBUF { txt = qtn_week_two_chars_tu; },
       
   274         LBUF { txt = qtn_week_two_chars_we; },
       
   275         LBUF { txt = qtn_week_two_chars_th; },
       
   276         LBUF { txt = qtn_week_two_chars_fr; },
       
   277         LBUF { txt = qtn_week_two_chars_sa; },
       
   278         LBUF { txt = qtn_week_two_chars_su; }
       
   279         };
       
   280     }
       
   281 
       
   282 // Resource definitions
       
   283 // ---------------------------------------------------------
       
   284 // r_clock_main_view_menupane
       
   285 // The menupane
       
   286 // ---------------------------------------------------------
       
   287 //
       
   288 RESOURCE ARRAY r_date_time_date_separ_array
       
   289     {
       
   290     items =
       
   291         {
       
   292         LBUF { txt = "."; },
       
   293         LBUF { txt = ":"; },
       
   294         LBUF { txt = "/"; },
       
   295         LBUF { txt = "-"; }
       
   296         };
       
   297     }
       
   298 
       
   299 // Resource definitions
       
   300 // ---------------------------------------------------------
       
   301 // r_date_time_time_separ_array
       
   302 // The time separator string array
       
   303 // ---------------------------------------------------------
       
   304 //
       
   305 RESOURCE ARRAY r_date_time_time_separ_array
       
   306     {
       
   307     items =
       
   308         {
       
   309         LBUF { txt = ":"; },
       
   310         LBUF { txt = "."; }
       
   311         };
       
   312     }
       
   313 
       
   314 // Resource definitions
       
   315 // ---------------------------------------------------------
       
   316 // r_ask_reset_connection
       
   317 // Dialog for Reset connection confirmation
       
   318 // ---------------------------------------------------------
       
   319 //
       
   320 RESOURCE DIALOG r_ask_reset_connection
       
   321     {
       
   322     flags = EGeneralQueryFlags;
       
   323     buttons = R_AVKON_SOFTKEYS_YES_NO__YES;
       
   324     items=
       
   325         {
       
   326         DLG_LINE
       
   327             {
       
   328             type = EAknCtQuery;
       
   329             id = EGeneralQuery;
       
   330             control = AVKON_CONFIRMATION_QUERY
       
   331                 {
       
   332                 layout = EConfirmationLayout;
       
   333                 label = qtn_clock_query_online_nitz_on;
       
   334                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   335                 };
       
   336             }
       
   337         };
       
   338     }
       
   339 
       
   340 // Resource definitions
       
   341 // ---------------------------------------------------------
       
   342 // r_clock_wait_note_nitz
       
   343 // Dialog for waiting note
       
   344 // ---------------------------------------------------------
       
   345 //
       
   346 RESOURCE DIALOG r_clock_wait_note_nitz
       
   347     {
       
   348     flags = EAknWaitNoteFlags;
       
   349     items =
       
   350         {
       
   351         DLG_LINE
       
   352             {
       
   353             type = EAknCtNote;
       
   354             id = 4;
       
   355             control= AVKON_NOTE 
       
   356                 { 
       
   357                 layout = EWaitLayout;
       
   358                 singular_label = qtn_clock_wait_note_nitz;
       
   359                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   360                 };
       
   361             }
       
   362         };
       
   363     }
       
   364 
       
   365 // Resource definitions
       
   366 // ---------------------------------------------------------
       
   367 // r_ask_system_time_update
       
   368 // Dialog for system time update
       
   369 // ---------------------------------------------------------
       
   370 //
       
   371 RESOURCE DIALOG r_ask_system_time_update
       
   372     {
       
   373     flags = EGeneralQueryFlags;
       
   374     buttons = R_AVKON_SOFTKEYS_YES_NO__YES;
       
   375     items=
       
   376         {
       
   377         DLG_LINE
       
   378             {
       
   379             type = EAknCtQuery;
       
   380             itemflags = EEikDlgItemNonFocusing;
       
   381             id = EGeneralQuery;
       
   382             control = AVKON_CONFIRMATION_QUERY
       
   383                 {
       
   384                 layout = EConfirmationLayout;
       
   385                 label = "Update system time?";
       
   386                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   387                 };
       
   388             }
       
   389         };
       
   390     }
       
   391 
       
   392 // Resource definitions
       
   393 // ---------------------------------------------------------
       
   394 // r_ask_zone_update
       
   395 // Dialog for zone updation query
       
   396 // ---------------------------------------------------------
       
   397 //
       
   398 RESOURCE DIALOG r_ask_zone_update
       
   399     {
       
   400     flags = EGeneralQueryFlags;
       
   401     buttons = R_AVKON_SOFTKEYS_YES_NO__YES;
       
   402     items=
       
   403         {
       
   404         DLG_LINE
       
   405             {
       
   406             type = EAknCtQuery;
       
   407             //itemflags = EEikDlgItemNonFocusing;
       
   408             id = EGeneralQuery;
       
   409             control = AVKON_CONFIRMATION_QUERY
       
   410                 {
       
   411                 layout = EConfirmationLayout;
       
   412                 label = qtn_clk_query_time_is_changed;
       
   413                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   414                 };
       
   415             }
       
   416         };
       
   417     }
       
   418 
       
   419 // Resource definitions
       
   420 // ---------------------------------------------------------
       
   421 // r_snooze_time_setting_page
       
   422 // The snooze time settings page
       
   423 // ---------------------------------------------------------
       
   424 //
       
   425 RESOURCE AVKON_SETTING_PAGE r_snooze_time_setting_page
       
   426     {
       
   427     label = qtn_clk_sett_snooze_time;
       
   428     type = EAknCtSlider;
       
   429     softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
   430     menubar = R_AVKON_MENUPANE_EMPTY;
       
   431     editor_resource_id = r_snooze_time_slider;
       
   432     }
       
   433     
       
   434     
       
   435 // Resource definitions
       
   436 // ---------------------------------------------------------
       
   437 // r_snooze_time_slider
       
   438 // The snooze time slider
       
   439 // ---------------------------------------------------------
       
   440 //
       
   441 RESOURCE SLIDER r_snooze_time_slider
       
   442     {
       
   443 	layout = EAknSettingsItemSliderLayout;
       
   444     minvalue = 1;
       
   445     maxvalue = 60;
       
   446     step = 1;
       
   447     minlabel = qtn_sanim_time_out_slider_min;
       
   448     maxlabel = qtn_sanim_time_out_slider_max;
       
   449     singular_valuelabel = qtn_sanim_time_out_slider_min;
       
   450     valuelabel = qtn_sanim_time_out_slider_cur;
       
   451     }    
       
   452 
       
   453 
       
   454 // Resource definitions
       
   455 // ---------------------------------------------------------
       
   456 // r_date_time_offset_editor
       
   457 // The timezone offset editor
       
   458 // ---------------------------------------------------------
       
   459 //
       
   460 RESOURCE TIME_OFFSET_EDITOR r_date_time_offset_editor
       
   461     {
       
   462 	minTimeOffset = TIME_OFFSET { seconds = -43200; };
       
   463 	maxTimeOffset = TIME_OFFSET { seconds = 43200; };
       
   464 	flags = EEikTimeWithoutSecondsField | EEikTimeZoneOffsetFormat;
       
   465     }
       
   466 
       
   467 // Resource definitions
       
   468 // ---------------------------------------------------------
       
   469 // r_date_time_offset_page
       
   470 // The timezone offset page
       
   471 // ---------------------------------------------------------
       
   472 //
       
   473 RESOURCE AVKON_SETTING_PAGE r_date_time_offset_page
       
   474     {
       
   475     label = qtn_clk_sett_time;
       
   476     softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
   477     menubar = R_AVKON_MENUPANE_EMPTY;
       
   478     type = EEikCtTimeOffsetEditor;
       
   479     editor_resource_id = r_date_time_offset_editor;
       
   480     }
       
   481 
       
   482 // Resource definitions
       
   483 // ---------------------------------------------------------
       
   484 // r_clk_dlg_query_disable_nitz
       
   485 // Dialog for NITZ disable query
       
   486 // ---------------------------------------------------------
       
   487 //
       
   488 RESOURCE DIALOG r_clk_dlg_query_disable_nitz
       
   489 	{
       
   490 	flags = EGeneralQueryFlags;
       
   491 	buttons = R_AVKON_SOFTKEYS_YES_NO__YES;
       
   492 	items =
       
   493 		{
       
   494 		DLG_LINE
       
   495 			{
       
   496 			type = EAknCtQuery;
       
   497 			id = EGeneralQuery;
       
   498 			control = AVKON_CONFIRMATION_QUERY
       
   499 				{
       
   500 				label = qtn_clock_query_tz_disable_nitz;
       
   501 				layout = EConfirmationQueryLayout;
       
   502 				};
       
   503 			}
       
   504 		};
       
   505 	}    
       
   506 
       
   507 // Resource definitions
       
   508 // ---------------------------------------------------------
       
   509 // r_clk_dlg_query_disable_nitz
       
   510 // Dialog for NITZ disable query
       
   511 // ---------------------------------------------------------
       
   512 //
       
   513 RESOURCE DIALOG r_qtn_clk_query_time_dst_past
       
   514 	{
       
   515 	flags = EGeneralQueryFlags;
       
   516 	buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   517 	items = 
       
   518 		{
       
   519 		DLG_LINE
       
   520 			{
       
   521 			type = EAknCtQuery;
       
   522 			id = EGeneralQuery;
       
   523 			control = AVKON_CONFIRMATION_QUERY
       
   524 				{
       
   525 				label = qtn_clk_query_time_dst_past;
       
   526 				layout = EConfirmationQueryLayout;
       
   527 				};			
       
   528 			}
       
   529 		};
       
   530 	}
       
   531 
       
   532 // Resource definitions
       
   533 // ---------------------------------------------------------
       
   534 // r_clk_dlg_query_disable_nitz
       
   535 // Dialog for NITZ disable query
       
   536 // ---------------------------------------------------------
       
   537 //
       
   538 RESOURCE DIALOG r_qtn_clk_query_time_dst_coming
       
   539 	{
       
   540 	flags = EGeneralQueryFlags;
       
   541 	buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   542 	items = 
       
   543 		{
       
   544 		DLG_LINE
       
   545 			{
       
   546 			type = EAknCtQuery;
       
   547 			id = EGeneralQuery;
       
   548 			control = AVKON_CONFIRMATION_QUERY
       
   549 				{
       
   550 				label = qtn_clk_query_time_dst_coming;
       
   551 				layout = EConfirmationQueryLayout;
       
   552 				};			
       
   553 			}
       
   554 		};
       
   555 	}	
       
   556 
       
   557 // Resource definitions
       
   558 // ---------------------------------------------------------
       
   559 // r_clk_dlg_query_disable_nitz
       
   560 // Dialog for NITZ disable query
       
   561 // ---------------------------------------------------------
       
   562 //	
       
   563 RESOURCE DIALOG r_clk_dlg_query_disable_nitz_time
       
   564 	{
       
   565 	flags = EGeneralQueryFlags;
       
   566 	buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   567 	items =
       
   568 		{
       
   569 		DLG_LINE
       
   570 			{
       
   571 			type = EAknCtQuery;
       
   572 			id = EGeneralQuery;
       
   573 			control = AVKON_CONFIRMATION_QUERY
       
   574 				{
       
   575 				label = qtn_clock_query_t_disable_nitz;
       
   576 				layout = EConfirmationQueryLayout;
       
   577 				};
       
   578 			}
       
   579 		};
       
   580 	}
       
   581 	
       
   582 // Resource definitions
       
   583 // ---------------------------------------------------------
       
   584 // r_clk_dlg_query_disable_nitz_date
       
   585 // Dialog for NITZ disable query on date change
       
   586 // ---------------------------------------------------------
       
   587 //	
       
   588 RESOURCE DIALOG r_clk_dlg_query_disable_nitz_date
       
   589 	{
       
   590 	flags = EGeneralQueryFlags;
       
   591 	buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   592 	items =
       
   593 		{
       
   594 		DLG_LINE
       
   595 			{
       
   596 			type = EAknCtQuery;
       
   597 			id = EGeneralQuery;
       
   598 			control = AVKON_CONFIRMATION_QUERY
       
   599 				{
       
   600 				label = qtn_clock_query_d_disable_nitz;
       
   601 				layout = EConfirmationQueryLayout;
       
   602 				};
       
   603 			}
       
   604 		};
       
   605 	}
       
   606 
       
   607 // Resource definitions
       
   608 // ---------------------------------------------------------
       
   609 // r_clk_dlg_query_disable_nitz
       
   610 // File list dialog for alarm tone
       
   611 // ---------------------------------------------------------
       
   612 //  
       
   613 RESOURCE CLF_LIST_MODEL r_filelist_model_novideo
       
   614     {
       
   615     mime_type_array = CLF_MIME_TYPE_ARRAY
       
   616         {
       
   617         mime_types = {};
       
   618         };
       
   619 
       
   620     media_type_array = CLF_MEDIA_TYPE_ARRAY
       
   621         {
       
   622         media_types =
       
   623             {
       
   624             CLF_MEDIA_TYPE { media_type = ECLFMediaTypeMusic; },
       
   625             CLF_MEDIA_TYPE { media_type = ECLFMediaTypeSound; }
       
   626             };
       
   627         };
       
   628 
       
   629     sorting_style = CLF_SORTING_STYLE
       
   630         {
       
   631         ordering = ECLFOrderingAscending;
       
   632         data_type = ECLFItemDataTypeDesC;
       
   633         fields =
       
   634             {
       
   635             CLF_FIELD_ID { field_id = ECLFFieldIdFileName; }
       
   636             };
       
   637         };
       
   638     }
       
   639 
       
   640 // Resource definitions
       
   641 // ---------------------------------------------------------
       
   642 // r_qtn_clk_sett_date
       
   643 // Resource for string "Date"
       
   644 // ---------------------------------------------------------
       
   645 //
       
   646 RESOURCE TBUF r_qtn_clk_sett_date
       
   647     {
       
   648     buf = qtn_clk_sett_date;
       
   649     }
       
   650 
       
   651 // Resource definitions
       
   652 // ---------------------------------------------------------
       
   653 // r_qtn_clk_sett_date_format
       
   654 // Resource for string "Date Format"
       
   655 // ---------------------------------------------------------
       
   656 //
       
   657 RESOURCE TBUF r_qtn_clk_sett_date_format
       
   658     {
       
   659     buf = qtn_clk_sett_date_format;
       
   660     }
       
   661 
       
   662 // Resource definitions
       
   663 // ---------------------------------------------------------
       
   664 // r_qtn_clk_sett_date_separator
       
   665 // Resource for string "Date separator"
       
   666 // ---------------------------------------------------------
       
   667 //
       
   668 RESOURCE TBUF r_qtn_clk_sett_date_separator
       
   669     {
       
   670     buf = qtn_clk_sett_date_separator;
       
   671     }
       
   672 
       
   673 // Resource definitions
       
   674 // ---------------------------------------------------------
       
   675 // r_qtn_clk_sett_time
       
   676 // Resource for string "Time"
       
   677 // ---------------------------------------------------------
       
   678 //
       
   679 RESOURCE TBUF r_qtn_clk_sett_time
       
   680     {
       
   681     buf = qtn_clk_sett_time;
       
   682     }
       
   683 
       
   684 // Resource definitions
       
   685 // ---------------------------------------------------------
       
   686 // r_qtn_clk_sett_zone
       
   687 // Resource for string "Timezone"
       
   688 // ---------------------------------------------------------
       
   689 //
       
   690 RESOURCE TBUF r_qtn_clk_sett_zone
       
   691     {
       
   692     buf = qtn_clk_sett_zone;
       
   693     }
       
   694     
       
   695 // Resource definitions
       
   696 // ---------------------------------------------------------
       
   697 // r_qtn_clk_sett_snooze_time
       
   698 // Resource for string "Snooze time"
       
   699 // ---------------------------------------------------------
       
   700 //
       
   701 RESOURCE TBUF r_qtn_clk_sett_snooze_time
       
   702     {
       
   703     buf = qtn_clk_sett_snooze_time;
       
   704     }
       
   705 
       
   706 // Resource definitions
       
   707 // ---------------------------------------------------------
       
   708 // r_qtn_clk_sett_time_format
       
   709 // Resource for string "Time format"
       
   710 // ---------------------------------------------------------
       
   711 //
       
   712 RESOURCE TBUF r_qtn_clk_sett_time_format
       
   713     {
       
   714     buf = qtn_clk_sett_time_format;
       
   715     }
       
   716 
       
   717 // Resource definitions
       
   718 // ---------------------------------------------------------
       
   719 // r_qtn_clk_sett_time_separator
       
   720 // Resource for string "Date separator"
       
   721 // ---------------------------------------------------------
       
   722 //
       
   723 RESOURCE TBUF r_qtn_clk_sett_time_separator
       
   724     {
       
   725     buf = qtn_clk_sett_time_separator;
       
   726     }
       
   727 
       
   728 // Resource definitions
       
   729 // ---------------------------------------------------------
       
   730 // r_qtn_clk_sett_network_time
       
   731 // Resource for string "Automatic time update"
       
   732 // ---------------------------------------------------------
       
   733 //
       
   734 RESOURCE TBUF r_qtn_clk_sett_network_time
       
   735     {
       
   736     buf = qtn_clk_sett_network_time;
       
   737     }
       
   738 
       
   739 // Resource definitions
       
   740 // ---------------------------------------------------------
       
   741 // r_qtn_clk_sett_clock_type
       
   742 // Resource for string "Clock type"
       
   743 // ---------------------------------------------------------
       
   744 //
       
   745 RESOURCE TBUF r_qtn_clk_sett_clock_type
       
   746     {
       
   747     buf = qtn_clk_sett_clock_type;
       
   748     }
       
   749 
       
   750 // Resource definitions
       
   751 // ---------------------------------------------------------
       
   752 // r_qtn_clk_sett_abbrev_24_hour
       
   753 // Resource for string "24 hour"
       
   754 // ---------------------------------------------------------
       
   755 //
       
   756 RESOURCE TBUF r_qtn_clk_sett_abbrev_24_hour
       
   757     {
       
   758     buf = qtn_clk_sett_abbrev_24_hour;
       
   759     }
       
   760 
       
   761 // Resource definitions
       
   762 // ---------------------------------------------------------
       
   763 // r_qtn_clk_sett_abbrev_12_hour
       
   764 // Resource for string "12 hour"
       
   765 // ---------------------------------------------------------
       
   766 //
       
   767 RESOURCE TBUF r_qtn_clk_sett_abbrev_12_hour
       
   768     {
       
   769     buf = qtn_clk_sett_abbrev_12_hour;
       
   770     }
       
   771 
       
   772 // Resource definitions
       
   773 // ---------------------------------------------------------
       
   774 // r_qtn_clk_sett_nwt_on
       
   775 // Resource for string "On"
       
   776 // ---------------------------------------------------------
       
   777 //
       
   778 RESOURCE TBUF r_qtn_clk_sett_nwt_on
       
   779     {
       
   780     buf = qtn_clk_sett_nwt_on;
       
   781     }
       
   782 
       
   783 // Resource definitions
       
   784 // ---------------------------------------------------------
       
   785 // r_qtn_clk_sett_nwt_off
       
   786 // Resource for string "Off"
       
   787 // ---------------------------------------------------------
       
   788 //
       
   789 RESOURCE TBUF r_qtn_clk_sett_nwt_off
       
   790     {
       
   791     buf = qtn_clk_sett_nwt_off;
       
   792     }
       
   793 
       
   794 // Resource definitions
       
   795 // ---------------------------------------------------------
       
   796 // r_qtn_clk_sett_type_analog
       
   797 // Resource for string "Analogue"
       
   798 // ---------------------------------------------------------
       
   799 //
       
   800 RESOURCE TBUF r_qtn_clk_sett_type_analog
       
   801     {
       
   802     buf = qtn_clk_sett_type_analog;
       
   803     }
       
   804 
       
   805 // Resource definitions
       
   806 // ---------------------------------------------------------
       
   807 // r_qtn_clk_sett_type_digital
       
   808 // Resource for string "Digital"
       
   809 // ---------------------------------------------------------
       
   810 //
       
   811 RESOURCE TBUF r_qtn_clk_sett_type_digital
       
   812     {
       
   813     buf = qtn_clk_sett_type_digital;
       
   814     }
       
   815 
       
   816 // Resource definitions
       
   817 // ---------------------------------------------------------
       
   818 // r_qtn_clk_sett_alarm_tone
       
   819 // Resource for string "Alarm tone"
       
   820 // ---------------------------------------------------------
       
   821 //
       
   822 RESOURCE TBUF r_qtn_clk_sett_alarm_tone
       
   823     {
       
   824     buf = qtn_clk_sett_alarm_tone;
       
   825     }
       
   826 
       
   827 // Resource definitions
       
   828 // ---------------------------------------------------------
       
   829 // r_qtn_clk_set_gmt
       
   830 // Resource for string "GMT"
       
   831 // ---------------------------------------------------------
       
   832 //
       
   833 RESOURCE TBUF r_qtn_clk_set_gmt
       
   834     {
       
   835     buf = "Timezone";
       
   836     }
       
   837 
       
   838 // Resource definitions
       
   839 // ---------------------------------------------------------
       
   840 // r_qtn_clk_sett_workdays_note_one
       
   841 // Resource for string "Workdays"
       
   842 // ---------------------------------------------------------
       
   843 //
       
   844 RESOURCE TBUF r_qtn_clk_sett_workdays_note_one
       
   845     {
       
   846     buf = qtn_clk_sett_workdays_note_one;
       
   847     }
       
   848 
       
   849 // Resource definitions
       
   850 // ---------------------------------------------------------
       
   851 // r_qtn_word_list_separator
       
   852 // Resource for string ","
       
   853 // ---------------------------------------------------------
       
   854 //
       
   855 RESOURCE TBUF r_qtn_word_list_separator
       
   856     {
       
   857     buf = qtn_word_list_separator;
       
   858     }
       
   859 
       
   860 // Resource definitions
       
   861 // ---------------------------------------------------------
       
   862 // r_qtn_clk_sett_workdays
       
   863 // Resource for string "Workdays"
       
   864 // ---------------------------------------------------------
       
   865 //
       
   866 RESOURCE TBUF r_qtn_clk_sett_workdays
       
   867     {
       
   868     buf = qtn_clk_sett_workdays;        
       
   869     }   
       
   870 // Resource definitions
       
   871 // ---------------------------------------------------------
       
   872 // r_date_time_nitz_set_off_note
       
   873 // Resource for string "NITZ is now set off"
       
   874 // ---------------------------------------------------------
       
   875 //
       
   876 RESOURCE TBUF r_date_time_nitz_set_off_note
       
   877     {
       
   878     buf = qtn_conf_nitz_set_off;
       
   879     }
       
   880     
       
   881 // Resource definitions
       
   882 // ---------------------------------------------------------
       
   883 // r_clk_note_offline_nitz_on
       
   884 // Resource for string "The time will be updated when connecting to network"
       
   885 // ---------------------------------------------------------
       
   886 //
       
   887 RESOURCE TBUF r_clk_note_offline_nitz_on
       
   888     {
       
   889     buf = qtn_clock_note_offline_nitz_on;
       
   890     }   
       
   891 
       
   892 // Resource definitions
       
   893 // ---------------------------------------------------------
       
   894 // r_qtn_clk_note_multi_alarm_date_change
       
   895 // Resource for string "Alarm"
       
   896 // ---------------------------------------------------------
       
   897 //
       
   898 RESOURCE TBUF r_qtn_clk_note_multi_alarm_date_change
       
   899     {
       
   900     buf = qtn_clk_note_multi_alarm_date_change;
       
   901     }   
       
   902 
       
   903 // Resource definitions
       
   904 // ---------------------------------------------------------
       
   905 // r_qtn_clk_note_alarm_date_change
       
   906 // Resource for string "Date change"
       
   907 // ---------------------------------------------------------
       
   908 //  
       
   909 RESOURCE TBUF r_qtn_clk_note_alarm_date_change
       
   910     {
       
   911     buf = qtn_clk_note_alarm_date_change;
       
   912     }
       
   913 
       
   914 // Resource definitions
       
   915 // ---------------------------------------------------------
       
   916 // r_qtn_tc_off
       
   917 // Resource for string "Alarm"
       
   918 // ---------------------------------------------------------
       
   919 //
       
   920 RESOURCE TBUF r_qtn_tc_off
       
   921     {
       
   922     buf = qtn_tc_off;
       
   923     }
       
   924 
       
   925 // Resource definitions
       
   926 // ---------------------------------------------------------
       
   927 // r_qtn_mode_default_tone
       
   928 // Resource for string "Alarm tone"
       
   929 // ---------------------------------------------------------
       
   930 //
       
   931 RESOURCE TBUF r_qtn_mode_default_tone
       
   932     {
       
   933     buf = qtn_mode_default_tone;
       
   934     }
       
   935 
       
   936 // Resource definitions
       
   937 // ---------------------------------------------------------
       
   938 // r_qtn_tc_popup_heading
       
   939 // Resource for string "Alarm"
       
   940 // ---------------------------------------------------------
       
   941 //
       
   942 RESOURCE TBUF r_qtn_tc_popup_heading
       
   943     {
       
   944     buf = qtn_tc_popup_heading;
       
   945     }
       
   946 
       
   947 // Resource definitions
       
   948 // ---------------------------------------------------------
       
   949 // r_qtn_sanim_time_out_slider_cur
       
   950 // Resource for string "Alarm"
       
   951 // ---------------------------------------------------------
       
   952 //
       
   953 RESOURCE TBUF r_qtn_sanim_time_out_slider_cur
       
   954     {
       
   955     buf = qtn_sanim_time_out_slider_cur;
       
   956     }
       
   957 
       
   958 // Resource definitions
       
   959 // ---------------------------------------------------------
       
   960 // r_qtn_sanim_time_out_slider_ykcur
       
   961 // Resource for string "Alarm"
       
   962 // ---------------------------------------------------------
       
   963 //
       
   964 RESOURCE TBUF r_qtn_sanim_time_out_slider_ykcur
       
   965     {
       
   966     buf = qtn_sanim_time_out_slider_min;
       
   967     }
       
   968 
       
   969 // Resource definitions
       
   970 // ---------------------------------------------------------
       
   971 // r_qtn_set_folder_datim
       
   972 // Resource for string "Alarm"
       
   973 // ---------------------------------------------------------
       
   974 //
       
   975 RESOURCE TBUF r_qtn_set_folder_datim
       
   976     {
       
   977     buf = qtn_clk_title_settings;
       
   978     }
       
   979 
       
   980 // Resource definitions
       
   981 // ---------------------------------------------------------
       
   982 // r_qtn_clk_nitz_local_time
       
   983 // Resource for string "Local time"
       
   984 // ---------------------------------------------------------
       
   985 //
       
   986 RESOURCE TBUF r_qtn_clk_nitz_local_time
       
   987     {
       
   988     buf = qtn_clk_nitz_local_time;
       
   989     }
       
   990 
       
   991 // Resource definitions
       
   992 // ---------------------------------------------------------
       
   993 // r_qtn_clk_nitz_gmt
       
   994 // Resource for string "GMT"
       
   995 // ---------------------------------------------------------
       
   996 //
       
   997 RESOURCE TBUF r_qtn_clk_nitz_gmt
       
   998     {
       
   999     buf = qtn_clk_nitz_gmt;
       
  1000     }
       
  1001 
       
  1002 // Resource definitions
       
  1003 // ---------------------------------------------------------
       
  1004 // r_clock_select_country
       
  1005 // Resource for string "Select country"
       
  1006 // ---------------------------------------------------------
       
  1007 //
       
  1008 RESOURCE TBUF r_clock_select_country
       
  1009     {
       
  1010     buf = qtn_clk_qtl_select_country;
       
  1011     }   
       
  1012 
       
  1013 // Resource definitions
       
  1014 // ---------------------------------------------------------
       
  1015 // r_clock_select_city
       
  1016 // Resource for string "Select city"
       
  1017 // ---------------------------------------------------------
       
  1018 //
       
  1019 RESOURCE TBUF r_clock_select_city
       
  1020     {
       
  1021     buf = qtn_clk_qtl_select_city;
       
  1022     }
       
  1023 
       
  1024 // Resource definitions
       
  1025 // ---------------------------------------------------------
       
  1026 // r_clock_alarm_tone_missing
       
  1027 // Resource for string "Alarm tone %U missing"
       
  1028 // ---------------------------------------------------------
       
  1029 //
       
  1030 RESOURCE TBUF r_clock_alarm_tone_missing
       
  1031     {
       
  1032     buf = qtn_clk_note_missing_alarm;
       
  1033     }
       
  1034 
       
  1035 // End of file