GlobalResDef.h
48.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
/*****************************************************************************
* Copyright Statement:
* --------------------
* This software is protected by Copyright and the information contained
* herein is confidential. The software may not be copied and the information
* contained herein may not be used or disclosed except with the written
* permission of MediaTek Inc. (C) 2005
*
* BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
* AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
* NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
* SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
* SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
* THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
* NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
* SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
*
* BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
* LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
* AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
* OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
* MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
*
* THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
* WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
* LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
* RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
* THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
*
*****************************************************************************/
/*******************************************************************************
* Filename:
* ---------
* GlobalResDef.h
*
* Project:
* --------
* MAUI
*
* Description:
* ------------
*
*
* Author:
* -------
*
*
*==============================================================================
* HISTORY
* Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*------------------------------------------------------------------------------
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
*------------------------------------------------------------------------------
* Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*==============================================================================
*******************************************************************************/
#ifndef __GLOBAL_RESDEF_H__
#define __GLOBAL_RESDEF_H__
#ifdef __cplusplus
extern "C"
{
#endif
//#include "MMIDataType.h"
//RHR Add
#include "mmi_res_range_def.h"
/* the invalid screen id */
#define SCR_ID_INVALID (0)
/* the invalid group id */
#define GRP_ID_INVALID (0)
#define GLOBAL_SCR_DUMMY (SCR_ID_DUMMY)
#define EVT_ID_GROUP_FIRST_ENTRY (EVT_ID_GROUP_ENTER)
#define EVT_ID_SCENAIO_CHANGE (EVT_ID_SCENARIO_CHANGE)
#define FRM_RESERVED_GROUP_NUMBER (64)
#define FRAMEWORK_BASE (GLOBAL_BASE)
/* global event id */
typedef enum _mmi_scenario_evt_enum
{
EVT_ID_POST_CB_RST = GLOBAL_BASE + 1,
EVT_ID_POST_DEREG_CB,
EVT_ID_SCENARIO_CHANGE,
EVT_ID_GROUP_ENTER, /* Enter new group */
EVT_ID_GROUP_ACTIVE, /* active group */
EVT_ID_GROUP_INACTIVE, /* inactive group */
EVT_ID_GROUP_FOCUSED, /* focus a topest group */
EVT_ID_GROUP_DEFOCUSED, /* defocus a topest group */
EVT_ID_GROUP_GOBACK, /* close the active group; invoke the goback process:
* We will send EVT_ID_GROUP_GOBACK to group proc first.
* send EVT_ID_SCRN_GOBACK/EVT_ID_GROUP_DELETE_REQ to the children (screens),
* and send EVT_ID_GROUP_INACTIVE to group proc.
* Then finding the active group/screen and invoke the active process.
* At last, we send EVT_ID_SCRN_DEINIT/EVT_ID_GROUP_DEINIT to all closed screens and groups.
*/
EVT_ID_GROUP_GOBACK_IN_END_KEY, /* close the active group; invoke the goback process:
* We will send EVT_ID_GROUP_GOBACK to group proc first.
* send EVT_ID_SCRN_GOBACK/EVT_ID_GROUP_DELETE_REQ to the children (screens),
* and send EVT_ID_GROUP_INACTIVE to group proc.
* Then finding the active group/screen and invoke the active process.
* At last, we send EVT_ID_SCRN_DEINIT/EVT_ID_GROUP_DEINIT to all closed screens and groups.
*/
EVT_ID_GROUP_DELETE_REQ, /* close the inactive group; invoke the delete process only:
* We will send EVT_ID_GROUP_DELETE_REQ to group proc.
* send EVT_ID_SCRN_DELETE_REQ to the children (screens),
* and send EVT_ID_SCRN_DEINIT/EVT_ID_GROUP_DEINIT to all closed screens and groups.
* We will abort the delete process if group proc or screen leave_proc don't return MMI_RET_OK.
*/
EVT_ID_GROUP_DELETE_REQ_IN_END_KEY, /* close the inactive group; invoke the delete process only:
* We will send EVT_ID_GROUP_DELETE_REQ to group proc.
* send EVT_ID_SCRN_DELETE_REQ to the children (screens),
* and send EVT_ID_SCRN_DEINIT/EVT_ID_GROUP_DEINIT to all closed screens and groups.
* We will abort the delete process if group proc or screen leave_proc don't return MMI_RET_OK.
*/
EVT_ID_GROUP_EXIT, /* Exit the group */
EVT_ID_GROUP_DEINIT, /* deinint group */
EVT_ID_GROUP_REDRAW_START, /* Notificaiton for start to redraw a group */
EVT_ID_GROUP_REDRAW_DONE, /* Notification for finish the group redrawing */
EVT_ID_SCRN_INIT,
EVT_ID_SCRN_ACTIVE,
EVT_ID_SCRN_INACTIVE,
EVT_ID_SCRN_GOBACK, /* close the active screen; invoke the goback process:
* We will send EVT_ID_SCRN_GOBACK to screen leave_proc and then executing the exit_proc.
* At last, we send EVT_ID_SCRN_DEINIT active screen leave_proc.
*/
EVT_ID_SCRN_GOBACK_IN_END_KEY, /* close the active screen; invoke the goback process:
* We will send EVT_ID_SCRN_GOBACK to screen leave_proc and then executing the exit_proc.
* At last, we send EVT_ID_SCRN_DEINIT active screen leave_proc.
*/
EVT_ID_SCRN_DELETE_REQ, /* delete the inactive screen; invoke the delete process only:
* We will send EVT_ID_SCRN_DELETE_REQ to screen leave_proc. If there are many screens,
* we will send this event to each screen. At last, we EVT_ID_SCRN_DEINIT to all screen leave_proc.
*/
EVT_ID_SCRN_DELETE_REQ_IN_END_KEY, /* delete the inactive screen; invoke the delete process only:
* We will send EVT_ID_SCRN_DELETE_REQ to screen leave_proc. If there are many screens,
* we will send this event to each screen. At last, we EVT_ID_SCRN_DEINIT to all screen leave_proc.
*/
EVT_ID_SCRN_DEINIT, /* deinit the screen */
EVT_ID_GROUP_POST_CALLER_NOTIFY,
EVT_ID_GROUP_POST_PARENT_NOTIFY,
EVT_ID_SCRN_POST_PARENT_NOTIFY,
EVT_ID_NO_CHILD_NOTIFY,
EVT_ID_GOBACK_HISTORY,
EVT_ID_TAB_POST_LEFT_ARROW_NOTIFY,
EVT_ID_TAB_POST_RIGHT_ARROW_NOTIFY,
EVT_ID_PRE_KEY,
EVT_ID_ON_KEY,
EVT_ID_POST_KEY,
EVT_ID_PRE_KEY_EVT_ROUTING,
EVT_ID_POST_KEY_EVT_ROUTING,
EVT_ID_KEY_DEFAULT_HANDLER,
EVT_ID_PRE_TOUCH_EVT_ROUTING,
EVT_ID_POST_TOUCH_EVT_ROUTING,
EVT_ID_ON_TOUCH,
EVT_ID_NMGR_DEFER,
EVT_ID_NMGR_PLAY_TONE,
EVT_ID_NMGR_PLAY_VIB,
EVT_ID_NMGR_IDLE_CANCEL,
EVT_ID_ROOT_SCRN_FIRST_ENTER,
EVT_ID_ROOT_SCRN_COMM_ENTER,
EVT_ID_ROOT_SCRN_COMM_POST_ENTER,
EVT_ID_SCRN_ENTER_SUCCESS_NOFITY,
EVT_ID_NMGR_SUBLCD_NOTIFY,
EVT_ID_SRV_INIT,
EVT_ID_SRV_DEINIT,
EVT_ID_GROUP_HIDE,
EVT_ID_GROUP_UNHIDE,
EVT_ID_SCRN_HIDE,
EVT_ID_SCRN_UNHIDE,
EVT_ID_POST_TO_GROUP,
EVT_ID_POST_TO_SRV,
EVT_ID_SCENARIO_END,
EVT_ID_APP_GROUP_POST_NOTIFY,
EVT_ID_APP_CONFIG,
EVT_ID_DELETE_DANGLE_GROUP_REQ,
EVT_ID_WGUI_LSK_CLICK, /* left softkey event */
EVT_ID_WGUI_RSK_CLICK, /* right softkey event */
EVT_ID_WGUI_CSK_CLICK, /* center softkry event */
EVT_ID_SCRN_HIGHLIGHT_CHANGE,
EVT_ID_SCRN_GET_CURR_PARENT_ID,
EVT_ID_PRE_PROTOCOL,
EVT_ID_POST_PROTOCOL,
EVT_ID_APP_TERMINATED,
EVT_ID_APP_ENTER,
EVT_ID_APP_DEINIT,
EVT_ID_APP_CLOSE_REQ,
EVT_ID_APP_INIT,
EVT_ID_APP_ACTIVE,
EVT_ID_APP_INACTIVE,
EVT_ID_APP_TOP_ACTIVE,
EVT_ID_APP_TOP_INACTIVE,
EVT_ID_APP_NO_CHILD,
EVT_ID_APP_FORCE_CLOSE,
EVT_ID_APP_HIDE,
EVT_ID_APP_UNHIDE,
EVT_ID_APP_POST_UNHIDE,
EVT_ID_APP_POST_ENTER,
EVT_ID_NMGR_FORCE_DEFER_QUERY,
EVT_ID_MMI_TIMER_EXPIRY_PROC_EXT,
EVT_ID_MMI_TIMER_INIT_EXT,
EVT_ID_OOM_HANDLE_FAIL,
EVT_ID_PRE_ACTIVE_IDLE_APP_IN_END_KEY,
EVT_ID_POST_ACTIVE_IDLE_APP_IN_END_KEY,
EVT_ID_MMI_AP_DCM_LOAD,
EVT_ID_MMI_AP_DCM_UNLOAD,
EVT_ID_SCENARIO_MAX
}mmi_scenario_evt_enum;
/* The global screen or goup id */
typedef enum _GLOBAL_SCR_ENUM
{
SCR_ID_GLOBAL_DUMMY = GLOBAL_BASE + 1, /* all screen id shall be put below this one */
SCR_ID_DUMMY = SCR_ID_GLOBAL_DUMMY,
SCR_ID_DUMMY_INTERNAL,
GRP_ID_AUTO_GEN, /* the auto-gen id, framework will genearte the group id automatically */
GRP_ID_ROOT, /* the scenario root id */
GRP_ID_AUTO_GEN_BASE,
GRP_ID_AUTO_GEN_MAX = GRP_ID_AUTO_GEN_BASE + FRM_RESERVED_GROUP_NUMBER,
GRP_ID_ORIG_MECH,
GRP_ID_DANGLE,
SRV_ID_ROOT,
GRP_ID_BK,
GLOBAL_SCR_MAX
}GLOBAL_SCR_ENUM;
#if 0
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif
#if 1
typedef enum _STR_GLOBAL_LIST_ENUM
{
/* ----------------------- Common (start) ---------------------------- */
/* Global string listed here are shared by Pluto and Cosmos */
/* [English], [Description] */
STR_GLOBAL_0 = GLOBAL_BASE, /* "0", "Global String- 0" */
STR_GLOBAL_1, /* "1", "Global String- 1" */
STR_GLOBAL_2, /* "2", "Global String- 2" */
STR_GLOBAL_3, /* "3", "Global String- 3" */
STR_GLOBAL_4, /* "4", "Global String- 4" */
STR_GLOBAL_5, /* "5", "Global String- 5" */
STR_GLOBAL_6, /* "6", "Global String- 6" */
STR_GLOBAL_7, /* "7", "Global String- 7" */
STR_GLOBAL_8, /* "8", "Global String- 8" */
STR_GLOBAL_9, /* "9", "Global String- 9" */
STR_GLOBAL_10, /* "10", "Global String- 10" */
STR_GLOBAL_ABORT, /* "Abort", "Global String- Abort" */
STR_GLOBAL_ABORTING, /* "Aborting", "Global String- Aborting" */
STR_GLOBAL_ACCEPT, /* "Accept", "Global String- Accept" */
STR_GLOBAL_ACCOUNTS, /* "Accounts", "Accounts- configuration folder" */
STR_GLOBAL_ACTIVATE, /* "Activate", "Global String- Activate" */
STR_GLOBAL_ACTIVATED, /* "Activated", "Global String- Activated" */
STR_GLOBAL_ADD, /* "Add", "Global String- Add" */
STR_GLOBAL_ADDRESS, /* "Address", "Global String- Address" */
STR_GLOBAL_ADVANCED, /* "Advanced", "Global String- Advanced" */
STR_GLOBAL_ALARM, /* "Alarm", "Global String- Alarm" */
STR_GLOBAL_ALWAYS_ASK, /* "Always ask", "Global String- Always ask" */
STR_GLOBAL_AS_EMAIL, /* "As Email", "Global String- As Email- sub option of sending command" */
STR_GLOBAL_AS_MULTIMEDIA_MSG, /* "As multimedia message", "Global String- As multimedia message- sub option of sending command" */
STR_GLOBAL_AS_TEXT_MESSAGE, /* "As text message", "Global String- As text message- sub option of sending command" */
STR_GLOBAL_ATTACHMENT, /* "Attachment", "Global String- Attachment" */
STR_GLOBAL_AUTHENTICATION, /* "Authentication","Global String- Authentication" */
STR_GLOBAL_AUTOMATIC, /* "Automatic","Global String- Automatic" */
STR_GLOBAL_BACK, /* "Back", "Global String- Back" */
STR_GLOBAL_BLUETOOTH, /* "Bluetooth", "Global String- Bluetooth" */
STR_GLOBAL_BUSY_TRY_LATER, /* "Busy", "STR_GLOBAL_BUSY_TRY_LATER" */
STR_GLOBAL_CANCEL, /* "Cancel", "Global String- Cancel" */
STR_GLOBAL_CANCELLING, /* "Cancelling", "Global String- Cancelling" */
STR_GLOBAL_CLEAR, /* "Clear", "Global String- Clear" */
STR_GLOBAL_CLOSE, /* "Close", "Global String- Close" */
STR_GLOBAL_CONFIRM, /* "Confirm", "Global String- Confirm" */
STR_GLOBAL_CONNECT, /* "Connect", "Global String- Connect" */
STR_GLOBAL_CONNECTING, /* "Connecting", "Global String- Connecting" */
STR_GLOBAL_CONTENT, /* "Content", "Global String- Content" */
STR_GLOBAL_CONTINUE, /* "Cont.", "Global String- Cont.- use as LSK for length limit" */
STR_GLOBAL_COPY, /* "Copy", "Global String- Copy" */
STR_GLOBAL_COPYING, /* "Copying", "Global String- Copying" */
STR_GLOBAL_CURRENTLY_NOT_AVAILABLE,
/* "Currently not available", "Global String- the services/operations aren't workable in some situations" */
STR_GLOBAL_CURRENTLY_NOT_AVAILABLE_IN_CALL,
/* "Not available during the call", "Global String- the services/operations aren't workable during the call" */
STR_GLOBAL_CUSTOM, /* "Custom", "Global String- Custom- user defined" */
STR_GLOBAL_DATA_ACCOUNT, /* "Data account", "Global String- Data account" */
STR_GLOBAL_DATA_ACCOUNTS, /* "Data accounts", "Global String- Data accounts" */
STR_GLOBAL_DATA_CONN_SETTING, /* "Data connection settings", "Global String- Data connection settings" */
STR_GLOBAL_DATE, /* "Date", "Global String- Date" */
STR_GLOBAL_DEACTIVATE, /* "Deactivate", "Global String- Deactivate" */
STR_GLOBAL_DEFAULT, /* "Default", "Global String- Default" */
STR_GLOBAL_DELETE, /* "Delete", "Global String- Delete" */
STR_GLOBAL_DELETE_ALL, /* "Delete All", "Global String- Delete All" */
STR_GLOBAL_DELETED, /* "Deleted", "Global String- Deleted" */
STR_GLOBAL_DELETING, /* "Deleting", "Global String- Deleting" */
STR_GLOBAL_DETAILS, /* "Details", "Global String- Details" */
STR_GLOBAL_DIAL, /* "Call", "Global String- Call" */
STR_GLOBAL_DIALLED_CALLS, /* "Dialled call", "Global string- Dialled calls" */
STR_GLOBAL_DISCARD, /* "Discard","Global String- Discard" */
STR_GLOBAL_DISCONNECT, /* "Disconnect", "Global String- Disconnect" */
STR_GLOBAL_DISCONNECTING, /* "Disconnecting", "Global String- Disconnecting" */
STR_GLOBAL_DONE, /* "Done", "Global String- Done" */
STR_GLOBAL_DOWNLOAD, /* "Download", "STR_GLOBAL_DOWNLOAD" */
STR_GLOBAL_DOWNLOAD_ASK, /* "Download?", "STR_GLOBAL_DOWNLOAD_ASK" */
STR_GLOBAL_DOWNLOADING, /* "Downloading", "STR_GLOBAL_DOWNLOADING" */
STR_GLOBAL_DRAFTS, /* "Drafts", "Global String- Drafts" */
STR_GLOBAL_DRM_FILE_EXISTS, /* "File Exists", "Global String- File Exists" */
STR_GLOBAL_DRM_FS_ERROR, /* "File Access Error", "Global String- File Access Error" */
STR_GLOBAL_DRM_INVALID_FORMAT, /* "Format Error", "Global String- Format Error" */
STR_GLOBAL_DRM_NON_DRM, /* "Not DRM File", "Global String- Not DRM File" */
STR_GLOBAL_DRM_PROCESSING, /* "DRM Processing", "Global String- DRM Processing" */
STR_GLOBAL_DRM_PROHIBITED, /* "DRM Prohibited", "Global String- DRM Prohibited" */
STR_GLOBAL_DRM_RO_RECEIVED, /* "DRM Rights Received", "Global String- DRM Rights Received" */
STR_GLOBAL_DRM_SIZE_TOO_BIG, /* "Size Too Big", "Global String- Size Too Big" */
STR_GLOBAL_EARPHONE_IN, /* "Earphone plugged in!", "Global String- String Associated with Ear Phone Plug In Popup." */
STR_GLOBAL_EARPHONE_OUT, /* "Earphone plugged Out", "Global String- Earphone plugged Out" */
STR_GLOBAL_EDIT, /* "Edit", "Global String- Edit" */
STR_GLOBAL_EDIT_BEFORE_CALL, /* "Edit before call", "Global String- Edit before call" */
STR_GLOBAL_EMAIL, /* "Email", "Global String- Email" */
STR_GLOBAL_EMPTY, /* "Empty", "Global String- Empty" */
STR_GLOBAL_EMPTY_LIST, /* "<Empty>", "Global String- <Empty>" */
STR_GLOBAL_ERROR, /* "Error", "Global String- Error" */
STR_GLOBAL_EXIT, /* "Exit", "Global String- Exit" */
STR_GLOBAL_FAILED, /* "Failed", "Global String- Failed" */
STR_GLOBAL_FAILED_TO_SAVE, /* "Failed to save", "Global String- Failed to save" */
STR_GLOBAL_FAILED_TO_SEND, /* "Failed to send", "Global String- Failed to send" */
STR_GLOBAL_FAST, /* "Fast", "Global String- Fast" */
STR_GLOBAL_FILE_ALREADY_EXISTS, /* "File already exists", "Global String- File already exists" */
STR_GLOBAL_FILE_NOT_FOUND, /* "File not found", "Global string- File not found" */
STR_GLOBAL_FILENAME, /* "Filename", "Global String- Filename" */
STR_GLOBAL_FORMAT, /* "Format", "Global String- Format- the type of file" */
STR_GLOBAL_FORWARD, /* "Forward", "Global String- Forward- send message to other recipients" */
STR_GLOBAL_GO_TO, /* "Go to", "Global String- Go to- connect the URL" */
STR_GLOBAL_GPRS, /* "GPRS", "Global String- GPRS" */
STR_GLOBAL_GSM, /* "GSM", "Global String- GSM" */
STR_GLOBAL_HELP, /* "Help", "Global String- Help- show the usage tips or notes" */
STR_GLOBAL_HIGH, /* "High", "Global String- High" */
STR_GLOBAL_HTTP, /* "HTTP", "Global String- HTTP" */
STR_GLOBAL_INBOX, /* "Inbox", "Global String- Inbox" */
STR_GLOBAL_INCOMING_CALL, /* "Incoming call", "Global String- Incoming call" */
STR_GLOBAL_INPUT_METHOD, /* "Input Method", "Global String- Input Method" */
STR_GLOBAL_INPUT_METHOD_OPTIONS, /* "Input Method", "Global String- Input Method" */
STR_GLOBAL_INSERT_SIM_CARD, /* "Please insert a SIM card", "Gloabl String - Please insert a SIM card" */
STR_GLOBAL_INSTALL, /* "Install", "Global String- Install" */
STR_GLOBAL_INSUFFICIENT_MEMORY, /* "Insufficient memory", "Global String- Insufficient memory- not enough RAM to operate" */
STR_GLOBAL_INVALID, /* "Invalid", "Global String- Invalid" */
STR_GLOBAL_INVALID_DATA_ACCOUNT, /* "Invalid data account. Configure?", "Global String- Invalid data account. Configure?" */
STR_GLOBAL_INVALID_EMAIL_ADDRESS, /* "Invalid Email address", "Global String- Invalid Email address" */
STR_GLOBAL_INVALID_EMAIL_ADDRESSES, /* "Invalid Email addresses", "Global String- Invalid Email addresses" */
STR_GLOBAL_INVALID_FILENAME, /* "Invalid filename", "Global String- Invalid filename" */
STR_GLOBAL_INVALID_FORMAT, /* "Invalid format", "Global String- Invalid format" */
STR_GLOBAL_INVALID_INPUT, /* "Invalid input", "Global String- Invalid input" */
STR_GLOBAL_INVALID_NUMBER, /* "Invalid number", "Global String- Invalid number" */
STR_GLOBAL_INVALID_NUMBERS, /* "Invalid numbers", "Global String- Invalid numbers" */
STR_GLOBAL_INVALID_RECIPIENTS, /* "Invalid recipients", "Global String- Invalid recipients" */
STR_GLOBAL_INVALID_URL, /* "Invalid URL", "Global String- Invalid URL" */
STR_GLOBAL_LIST, /* "List", "Global String- List" */
STR_GLOBAL_LOADING, /* "Loading", "Global String- Loading" */
STR_GLOBAL_LOGIN, /* "Login", "Global String- Login" */
STR_GLOBAL_LOGO, /* "Logo", "Global String- Logo" */
STR_GLOBAL_LOGOUT, /* "Logout", "Global String- Logout" */
STR_GLOBAL_LOW, /* "Low", "Global String- Low" */
STR_GLOBAL_MANUAL, /* "Manual", "Global String- Manual" */
STR_GLOBAL_MARK, /* "Mark", "Global String- Mark" */
STR_GLOBAL_MARK_ALL, /* "Mark all", "Global String- Mark all" */
STR_GLOBAL_MAXIMUM, /* "Maximum", "Global String- Maximum" */
STR_GLOBAL_MEDIUM, /* "Medium", "Global String- Medium" */
STR_GLOBAL_MEMORY_CARD, /* "Memory card", "Global String- Memory card" */
STR_GLOBAL_MEMORY_FULL, /* "Memory full", "Global String- Memory full- indicate user not save again" */
STR_GLOBAL_MEMORY_STATUS, /* "Memory status", "Global String- Memory status" */
STR_GLOBAL_MESSAGE, /* "Message", "Global String- Message" */
STR_GLOBAL_MISSED_CALLS, /* "Missed calls", "Global String- Missed calls" */
STR_GLOBAL_MMS, /* "MMS", "Global String- MMS" */
STR_GLOBAL_MODE, /* "Mode", "Global String- Mode" */
STR_GLOBAL_MOVE, /* "Move", "Global String- Move" */
STR_GLOBAL_MOVING, /* "Moving", "Global String- Moving" */
STR_GLOBAL_MULTIMEDIA_MESSAGE, /* "Multimedia message ", "Global String- Multimedia message " */
STR_GLOBAL_MUTE, /* "Mute", "Global String- Mute" */
STR_GLOBAL_NETWORK_SETTINGS, /* "Network settings", "Global String- Network settings" */
STR_GLOBAL_NO, /* "No", "Global String- No" */
STR_GLOBAL_NO_MEMORY_CARD, /* "No Memory Card", "[Notify-No Memory Card]" */
STR_GLOBAL_NONE, /* "None", "Global String- None" */
STR_GLOBAL_NORMAL, /* "Normal", "Global String- Normal" */
STR_GLOBAL_NOT_AVAILABLE, /* "Not Available", "Global String- Not Available" */
STR_GLOBAL_NOT_AVAILABLE_DURING_VIDEO_CALL,
/* "Not available during video call", "Global String- Not available during video call" */
STR_GLOBAL_NOT_ENOUGH_MEMORY, /* "Not enough memory", "Global String- Not enough memory- memory is too small to save" */
STR_GLOBAL_NOT_SUPPORT_AT_PC_SIMULATOR,
/* "Not Support at PC Simulator", "Global String- Not Support at PC Simulator" */
STR_GLOBAL_NOT_SUPPORTED, /* "Not supported", "Global String- Not supported" */
STR_GLOBAL_OFF, /* "Off", "Global String- Off" */
STR_GLOBAL_OK, /* "Ok", "Global String- OK" */
STR_GLOBAL_ON, /* "On", "Global String- On"*/
STR_GLOBAL_OPEN, /* "Open", "Global String- Open" */
STR_GLOBAL_OPTIONS, /* "Option", "Global String- Options" */
STR_GLOBAL_OUTBOX, /* "Outbox", "Global String- Outbox" */
STR_GLOBAL_OVERWRITE_EXISTING_FILE,
/* "Overwrite existing file?", "Global String- Overwrite existing file?" */
STR_GLOBAL_PASSWORD, /* "Password","Global String- Password menu" */
STR_GLOBAL_PAUSE, /* "Pause","Global String- Pause" */
STR_GLOBAL_PHONE, /* "Phone", "Global String- Phone" */
STR_GLOBAL_PICTURE, /* "Picture","Global String- Picture" */
STR_GLOBAL_PLAY, /* "Play","Global String- Play" */
STR_GLOBAL_PLEASE_INPUT_THE_FILENAME,
/* "Please input the filename", "Global String- Prompt user the filename is empty" */
STR_GLOBAL_PLEASE_WAIT, /* "Please Wait", "Global String- Please Wait" */
STR_GLOBAL_PREFERRED_STORAGE, /* "Preferred storage", "Global String- Preferred storage" */
STR_GLOBAL_PREV, /* "Prev.", "Global String- Prev." */
STR_GLOBAL_PREVIEW, /* "Preview", "Global String- Preview" */
STR_GLOBAL_PRINT, /* "Print", "Global String- Print" */
STR_GLOBAL_PRIORITY, /* "Priority", "Global String- Priority" */
STR_GLOBAL_PROXY, /* "Proxy", "Global String- Proxy" */
STR_GLOBAL_QUIT, /* "Quit", "Global String- Quit" */
STR_GLOBAL_READ, /* "Read", "Global String- Read" */
STR_GLOBAL_RECEIVED, /* "Received", "Global String- Received" */
STR_GLOBAL_RECEIVED_CALLS, /* "Received calls", "Global string- Received calls" */
STR_GLOBAL_RECEIVING, /* "Receiving", "Global String- Receiving" */
STR_GLOBAL_RECIPIENTS, /* "Recipients", "Global String- Recipients- recipient list name" */
STR_GLOBAL_REFRESH, /* "Refresh", "Global String- Refresh" */
STR_GLOBAL_REMOVE, /* "Remove", "Global String- Remove- delete the reference link or remove accessory from phone" */
STR_GLOBAL_REMOVED, /* "Removed", "Global String- Removed- remove successfully" */
STR_GLOBAL_RENAME, /* "Rename", "Global String- Rename" */
STR_GLOBAL_REPLACE, /* "Replace", "Global String- Replace" */
STR_GLOBAL_REPLY, /* "Reply", "Global String- Reply" */
STR_GLOBAL_RESEND, /* "Resend", "Global String- Resend" */
STR_GLOBAL_RESET, /* "Reset", "Global String- Reset" */
STR_GLOBAL_RESUME, /* "Resume", "Global String- Resume" */
STR_GLOBAL_RINGTONE, /* "Ringtone", "Global String- Ringtone" */
STR_GLOBAL_SAVE, /* "Save", "Global String- Save" */
STR_GLOBAL_SAVE_ASK, /* "Save?", "Global String- Save?" */
STR_GLOBAL_SAVE_TO_PHONEBOOK, /* "Save to Phonebook", "Global String- Save to Phonebook" */
STR_GLOBAL_SAVED, /* "Saved", "Global String- Saved"); */
STR_GLOBAL_SAVING, /* "Saving", "Global String- Saving" */
STR_GLOBAL_SEARCH, /* "Search", "Global String- Search" */
STR_GLOBAL_SEARCHING, /* "Searching", "Global String- Searching" */
STR_GLOBAL_SELECT, /* "Select", "Global String- Select" */
STR_GLOBAL_SEND, /* "Send", "Global String- Send" */
STR_GLOBAL_SEND_MESSAGE, /* "Send message", "Global String- Send message" */
STR_GLOBAL_SEND_MULTIMEDIA_MESSAGE,
/* "Send multimedia message", "The option of send multimedia message" */
STR_GLOBAL_SEND_TEXT_MESSAGE, /* "Send text message", "The option of send text message" */
STR_GLOBAL_SENDING, /* "Sending", "Global String- Sending"*/
STR_GLOBAL_SENT, /* "Sent", "Global String- Sent- send successfully" */
STR_GLOBAL_SETTINGS, /* "Settings", "Global String- Settings" */
STR_GLOBAL_SILENT, /* "Silent", "Global String- Silent" */
STR_GLOBAL_SIM, /* "SIM", "Global String- SIM" */
STR_GLOBAL_SIM_1, /* "SIM 1", "Global String- SIM 1" */
STR_GLOBAL_SIM_2, /* "SIM 2", "Global String- SIM 2" */
STR_GLOBAL_SLOW, /* "Slow", "Global String- Slow" */
STR_GLOBAL_SORT_BY, /* "Sort by", "Global String- Sort by- include sub options" */
STR_GLOBAL_START, /* "Start", "Global String- Start" */
STR_GLOBAL_STOP, /* "Stop", "Global String- Stop" */
STR_GLOBAL_STORAGE, /* "Storage", "Global String- Storage" */
STR_GLOBAL_SUBJECT, /* "Subject", "Global String- Subject" */
STR_GLOBAL_TEXT, /* "Text", "Global String- Text" */
STR_GLOBAL_TEXT_MESSAGE, /* "Text message", "Global String- Text message- SMS" */
STR_GLOBAL_TIME, /* Time", "Global String- Time" */
STR_GLOBAL_UNAVAILABLE_IN_FLIGHT_MODE,
/* "Unavailable in flight mode", "Global String- Unavailable in flight mode" */
STR_GLOBAL_UNAVAILABLE_SIM, /* "Unavailable SIM", "Global String- Unavailable SIM" */
STR_GLOBAL_UNFINISHED, /* "Unfinished", "Global String- Unfinished" */
STR_GLOBAL_UNMARK, /* "Unmark", "Global String- Unmark" */
STR_GLOBAL_UNMARK_ALL, /* "Unmark all", "Global String- Unmark all" */
STR_GLOBAL_UNSUPPORTED_FORMAT, /* "Unsupported Format", "Global String- Unsupported Format" */
STR_GLOBAL_URL, /* "URL", "Global String- URL" */
STR_GLOBAL_UPDATE, /* "Update", "Global String- Update" */
STR_GLOBAL_USE, /* "Use", "Global String- Use" */
STR_GLOBAL_USE_TEMPLATE, /* "Use Template", "Global String- Use Template" */
STR_GLOBAL_USERNAME, /* "User Name", "Global String- User name menu" */
STR_GLOBAL_VIA_BLUETOOTH, /* "Via Bluetooth", "Global String- Via Bluetooth- sub option of sending command" */
STR_GLOBAL_VIA_INFRARED, /* "Via infrared", "Global String- Via infrared- sub option of sending command" */
STR_GLOBAL_VIDEO, /* "Video", "Global String- Video" */
STR_GLOBAL_VIEW, /* "View", "Global String- View" */
STR_GLOBAL_VOLUME, /* "Volume", "Global String- Volume" */
STR_GLOBAL_WALLPAPER, /* "Wallpaper", "Global String- Wallpaper" */
STR_GLOBAL_WAP, /* "WAP", "Global String- WAP" */
STR_GLOBAL_WIFI, /* "Wi-Fi", "Global String- Wi-Fi" */
STR_GLOBAL_YEAR, /* "Year", "Global String- Year" */
STR_GLOBAL_YES, /* "Yes", "Global String- Yes" */
STR_GLOBAL_INSERT_MEMORY_CARD, /* "Please insert memory card", "Global String- Please insert memory card" */
STR_GLOBAL_MC_REMOVED_USE_PHONE, /* "Memory card removed. Use phone?", "Global String- Memory card removed. Use phone?" */
STR_GLOBAL_MC_REMOVED, /* "Memory card removed", "Global String- Memory card removed" */
STR_GLOBAL_MC_INSERTED, /* "Memory card inserted", "Global String- Memory card inserted" */
STR_GLOBAL_OTG_REMOVED_USE_PHONE, /* "OTG device removed. Phone will be used.", "Global String- OTG device removed. Phone will be used." */
STR_GLOBAL_OTG_REMOVED_USE_PHONE_QUERY, /* "OTG device removed. Use phone?", "Global String- OTG device removed. Use phone?" */
STR_GLOBAL_OTG_REMOVED, /* "OTG device removed", "Global String- OTG device removed" */
STR_GLOBAL_OTG_CONNECTED, /* "OTG device connected", "Global String- OTG device connected" */
STR_GLOBAL_NOT_AVAILABLE_IN_MASS_STORAGE_MODE, /* "Not available in mass storage mode", "Global String- Not available in mass storage mode" */
STR_GLOBAL_NO_NUMBER, /* "No number", "Global String- No number" */
STR_GLOBAL_SUNDAY, /* "Sunday", "Global String- Sunday" */
STR_GLOBAL_MONDAY, /* "Monday", "Global String- Monday" */
STR_GLOBAL_TUESDAY, /* "Tuesday", "Global String- Tuesday" */
STR_GLOBAL_WEDNESDAY, /* "Wednesday", "Global String- Wednesday" */
STR_GLOBAL_THURSDAY, /* "Thursday", "Global String- Thursday" */
STR_GLOBAL_FRIDAY, /* "Friday", "Global String- Friday" */
STR_GLOBAL_SATURDAY, /* "Saturday", "Global String- Saturday" */
STR_GLOBAL_SUNDAY_SHORT, /* "Sun", "Global String- Sun" */
STR_GLOBAL_MONDAY_SHORT, /* "Mon", "Global String- Mon" */
STR_GLOBAL_TUESDAY_SHORT, /* "Tue", "Global String- Tue" */
STR_GLOBAL_WEDNESDAY_SHORT, /* "Wed", "Global String- Wed" */
STR_GLOBAL_THURSDAY_SHORT, /* "Thu", "Global String- Thu" */
STR_GLOBAL_FRIDAY_SHORT, /* "Fri", "Global String- Fri" */
STR_GLOBAL_SATURDAY_SHORT, /* "Sat", "Global String- Sat" */
STR_GLOBAL_JANUARY_SHORT, /* "Jan", "Global String- Jan" */
STR_GLOBAL_FEBRUARY_SHORT, /* "Feb", "Global String- Feb" */
STR_GLOBAL_MARCH_SHORT, /* "Mar", "Global String- Mar" */
STR_GLOBAL_APRIL_SHORT, /* "Apr", "Global String- Apr" */
STR_GLOBAL_MAY_SHORT, /* "May", "Global String- May" */
STR_GLOBAL_JUNE_SHORT, /* "Jun", "Global String- Jun" */
STR_GLOBAL_JULY_SHORT, /* "Jul", "Global String- Jul" */
STR_GLOBAL_AUGEST_SHORT, /* "Aug", "Global String- Aug" */
STR_GLOBAL_SEPTEMBER_SHORT, /* "Sep", "Global String- Sep" */
STR_GLOBAL_OCTOBER_SHORT, /* "Oct", "Global String- Oct" */
STR_GLOBAL_NOVEMBER_SHORT, /* "Nov", "Global String- Nov" */
STR_GLOBAL_DECEMBER_SHORT, /* "Dec", "Global String- Dec" */
STR_GLOBAL_DIAL_VIDEO_CALL,
STR_GLOBAL_SIM_3,
STR_GLOBAL_SIM_4,
STR_GLOBAL_DELETE_ASK, /* "Delete?", "Global String- Delete?" */
STR_GLOBAL_DELETE_ALL_ASK, /* "Delete all?", "Global String- Delete all?" */
STR_GLOBAL_USE_AS, /* "Use as", "Global String- Use as" */
STR_GLOBAL_STATUS, /* "Status", "Global String- Status" */
#if defined(__TOPWELL_HW_MARQUEET__)
STR_ID_MEDIA_LED,
STR_ID_COLOR_LED_OFF,
STR_ID_COLOR_LED_EFFECT1,
STR_ID_COLOR_LED_EFFECT2,
STR_ID_COLOR_LED_EFFECT3,
STR_ID_COLOR_LED_EFFECT4,
STR_ID_COLOR_LED_EFFECT5,
STR_ID_COLOR_LED_EFFECT6,
STR_ID_COLOR_LED_EFFECT7,
STR_ID_COLOR_LED_EFFECT8,
STR_ID_COLOR_LED_EFFECT9,
STR_ID_COLOR_LED_EFFECT10,
#endif
#ifdef __TOPWELL_MMI_NEW_SMS_VIEW_STR_ALONE__
STR_GLOBAL_NEW_SMS_VIEW,
#endif
#if defined(__TOPWELL_MMI_CALENDAR_SHOW_MONTH_USE_STRING_MODE3__)
STR_GLOBAL_JANUARY, /* "Jan", "Global String- Jan" */
STR_GLOBAL_FEBRUARY, /* "Feb", "Global String- Feb" */
STR_GLOBAL_MARCH, /* "Mar", "Global String- Mar" */
STR_GLOBAL_APRIL, /* "Apr", "Global String- Apr" */
STR_GLOBAL_MAY, /* "May", "Global String- May" */
STR_GLOBAL_JUNE, /* "Jun", "Global String- Jun" */
STR_GLOBAL_JULY, /* "Jul", "Global String- Jul" */
STR_GLOBAL_AUGEST, /* "Aug", "Global String- Aug" */
STR_GLOBAL_SEPTEMBER, /* "Sep", "Global String- Sep" */
STR_GLOBAL_OCTOBER, /* "Oct", "Global String- Oct" */
STR_GLOBAL_NOVEMBER, /* "Nov", "Global String- Nov" */
STR_GLOBAL_DECEMBER, /* "Dec", "Global String- Dec" */
#endif
#ifdef __TOPWELL_MMI_MM_LSK_NEXT_PAGE_SUPPORT__
STR_ID_MM_NEXT_PAGE,
#endif
/* ----------------------- Common (end) ------------------------------- */
#if defined(__COSMOS_MMI__) || defined(__VENUS_UI_ENGINE__)
/* ----------------------- Cosmos and FTE only (Start)----------------- */
/* Global string listed here are used by Cosmos and FTE only */
STR_GLOBAL_SUBMIT, /* "Submit","Accept" */
STR_GLOBAL_UDP_PORT, /* "UDP port", "Global String- UDP port" */
STR_GLOBAL_CLIPBOARD, /* "Clipboard", "Global String- Clipboard" */
STR_GLOBAL_ADD_TO_EXISTING_CONTACT,
/* "Add to existing contact", "Global String- Add to existing contact" */
STR_GLOBAL_AM, /* "AM", "Global String- AM" */
STR_GLOBAL_AUDIO, /* "Audio", "Global String- Audio" */
STR_GLOBAL_BOOKMARKS, /* "Bookmarks", "Global String- Bookmarks" */
STR_GLOBAL_CHOOSE_STORAGE, /* "Choose storage", "Global String- Choose storage" */
STR_GLOBAL_CREATE_NEW_CONTACT, /* "Create new contact", "Global String- Create new contact" */
STR_GLOBAL_DAY, /* "Day", "Global String- Day" */
STR_GLOBAL_EARPHONE, /* "Earphone", "Global String- Earphone" */
STR_GLOBAL_EXPORT, /* "Export", "Global String- Export" */
STR_GLOBAL_FILENAME_ALREADY_EXISTS,
/* "Filename already exists", "Global String- Filename already exists" */
STR_GLOBAL_FOLD, /* "Fold", "Global String- Fold" */
STR_GLOBAL_GO_TO_URL, /* "Go to URL", "Global String- Go to URL" */
STR_GLOBAL_HOME, /* "Home", "Global String- Home" */
STR_GLOBAL_HOUR, /* "Hour", "Global String- Hour" */
STR_GLOBAL_IMPORT, /* "Import", "Global String- Import" */
STR_GLOBAL_INSTALLING, /* "Installing", "Global String- Installing" */
STR_GLOBAL_LANDSCAPE, /* "Landscape", "Global String- Landscape" */
STR_GLOBAL_MIN, /* "Min", "Global String- Min" */
STR_GLOBAL_MORE, /* "More", "Global String- More" */
STR_GLOBAL_MULTIMEDIA, /* "Multimedia", "Global String- Multimedia" */
STR_GLOBAL_NEXT, /* "Next", "Global String- Next" */
STR_GLOBAL_PM, /* "PM", "Global String- PM" */
STR_GLOBAL_PORTRAIT, /* "Portrait", "Global String- Portrait" */
STR_GLOBAL_PRIMARY_SIM, /* "Primary SIM", "Global String- Primary SIM" */
STR_GLOBAL_REFRESHING, /* "Refreshing", "Global String- Refreshing" */
STR_GLOBAL_REMINDER, /* "Reminder", "Global String- Reminder" */
STR_GLOBAL_RESTORE, /* "Restore", "Global String- Restore" */
STR_GLOBAL_SEC, /* "Sec", "Global String- Sec" */
STR_GLOBAL_SECONDARY_SIM, /* "Secondary SIM", "Global String- Secondary SIM" */
STR_GLOBAL_SECURITY, /* "Security", "Global String- Security" */
STR_GLOBAL_SELECT_ALL, /* "Select all", "Global String- Select all" */
STR_GLOBAL_SET_AS, /* "Set as", "Global String- Set as" */
STR_GLOBAL_SHARE, /* "Share", "Global String- Share" */
STR_GLOBAL_SMS, /* "SMS", "Global String- SMS" */
STR_GLOBAL_SORT, /* "Sort", "Global String- Sort" */
STR_GLOBAL_TEMPLATE, /* "Template", "Global String- Template" */
STR_GLOBAL_UNNAMED, /* "Unnamed", "Global String- Unnamed" */
STR_GLOBAL_UNSELECT_ALL, /* "Unselect all", "Global String- Unselect all" */
STR_GLOBAL_UPLOAD, /* "Upload", "Global String- Upload" */
STR_GLOBAL_VIBRATION, /* "Vibration", "Global String- Vibration" */
STR_GLOBAL_WEEK, /* "WEEK", "Global String- Week" */
STR_GLOBAL_WIFI_ONLY, /* "Wi-Fi only", "Global String- Wi-Fi only" */
/* -------------------------- Cosmos and FTE only (end) ------------------ */
#endif /* __COSMOS_MMI__) || __VENUS_UI_ENGINE__ */
/* add new resource before here */
STR_GLOBAL_END
}STR_GLOBAL_LIST_ENUM;
typedef enum _IMG_GLOBAL_LIST_ENUM
{
IMG_GLOBAL_OK = GLOBAL_BASE,
IMG_GLOBAL_BACK,
IMG_GLOBAL_YES,
IMG_GLOBAL_NO,
IMG_GLOBAL_OPTIONS,
/* Start of numeric list icons */
IMG_GLOBAL_LSTART,
IMG_GLOBAL_L1,
IMG_GLOBAL_L2,
IMG_GLOBAL_L3,
IMG_GLOBAL_L4,
IMG_GLOBAL_L5,
IMG_GLOBAL_L6,
IMG_GLOBAL_L7,
IMG_GLOBAL_L8,
IMG_GLOBAL_L9,
IMG_GLOBAL_L10,
IMG_GLOBAL_L11,
IMG_GLOBAL_L12,
IMG_GLOBAL_L13,
IMG_GLOBAL_L14,
IMG_GLOBAL_L15,
IMG_GLOBAL_L16,
IMG_GLOBAL_L17,
IMG_GLOBAL_L18,
IMG_GLOBAL_L19,
IMG_GLOBAL_L20,
IMG_GLOBAL_L21,
IMG_GLOBAL_L22,
IMG_GLOBAL_L23,
IMG_GLOBAL_L24,
IMG_GLOBAL_L25,
IMG_GLOBAL_L26,
IMG_GLOBAL_L27,
IMG_GLOBAL_L28,
IMG_GLOBAL_L29,
IMG_GLOBAL_L30,
IMG_GLOBAL_LEND,
/* end of numeric list icons */
IMG_STATUS,
IMG_TIME,
IMG_REPEAT,
IMG_CAL,
IMG_GLOBAL_WARNING,
IMG_GLOBAL_QUESTION,
IMG_GLOBAL_SAVE,
IMG_GLOBAL_DELETED,
IMG_GLOBAL_DEFAULT,
IMG_GLOBAL_PROGRESS,
IMG_GLOBAL_LOADING = IMG_GLOBAL_PROGRESS, /* Do not add image id between this two */
IMG_GLOBAL_ERROR,
IMG_GLOBAL_UNFINISHED = IMG_GLOBAL_ERROR, /* Do not add image id between this two */
IMG_GLOBAL_INFO,
IMG_GLOBAL_EMPTY = IMG_GLOBAL_INFO, /* Do not add image id between this two */
IMG_VICON,
IMG_GLOBAL_CLEAR,
IMG_EARPHONE_POPUP_SUBLCD,
IMG_GLOBAL_SUB_MENU_BG,
IMG_GLOBAL_MAIN_MENU_BG,
IMG_NONE,
IMG_GLOBAL_FONT_1,
IMG_GLOBAL_FONT_2,
IMG_GLOBAL_FONT_3,
IMG_GLOBAL_FONT_4,
IMG_GLOBAL_FONT_5,
IMG_GLOBAL_FONT_6,
IMG_GLOBAL_FONT_7,
IMG_GLOBAL_FONT_8,
IMG_GLOBAL_FONT_9,
IMG_GLOBAL_FONT_10,
IMG_GLOBAL_FONT_11,
IMG_GLOBAL_FONT_12,
IMG_GLOBAL_FONT_13,
IMG_GLOBAL_FONT_14,
IMG_GLOBAL_FONT_15,
IMG_GLOBAL_FONT_16,
IMG_GLOBAL_FONT_MAX = IMG_GLOBAL_FONT_16,
IMG_GLOBAL_SUCCESS,
IMG_GLOBAL_ACTIVATED = IMG_GLOBAL_SUCCESS, /* Do not add image id between this two */
IMG_GLOBAL_FAIL,
IMG_GLOBAL_CALL_CSK,
IMG_GLOBAL_COMMON_CSK,
IMG_GLOBAL_DIAL_PAD_CSK,
IMG_GLOBAL_FORWARD_MSG_CSK,
IMG_GLOBAL_MARK_CSK,
IMG_GLOBAL_NEXT_CSK,
IMG_GLOBAL_OPTION_CSK,
IMG_GLOBAL_REPLY_MSG_CSK,
IMG_GLOBAL_SAVE_CSK,
IMG_GLOBAL_SEARCH_CSK,
IMG_GLOBAL_SEND_MSG_CSK,
IMG_GLOBAL_WEB_BROWSER_CSK,
/* Remove these CSK icon after W10.17 - Start */
IMG_GLOBAL_PHB_CSK,
IMG_GLOBAL_SELECT_CSK,
IMG_GLOBAL_VIEW_CSK,
IMG_GLOBAL_READ_MSG_CSK,
IMG_GLOBAL_BOOKMARK_CSK,
/* Remove these CSK icon after W10.17 - End */
#ifdef __MMI_FTE_SUPPORT__
IMG_GLOBAL_TOOLBAR_ADD_CONTACT,
IMG_GLOBAL_TOOLBAR_ADD_CONTACT_DISABLED,
IMG_GLOBAL_TOOLBAR_ADD,
IMG_GLOBAL_TOOLBAR_ADD_DISABLED,
IMG_GLOBAL_TOOLBAR_ATTACHMENT,
IMG_GLOBAL_TOOLBAR_ATTACHMENT_DISABLED,
IMG_GLOBAL_TOOLBAR_BOOKMARK,
IMG_GLOBAL_TOOLBAR_BOOKMARK_DISABLED,
IMG_GLOBAL_TOOLBAR_CALL,
IMG_GLOBAL_TOOLBAR_CALL_DISABLED,
IMG_GLOBAL_TOOLBAR_DELETE,
IMG_GLOBAL_TOOLBAR_DELETE_DISABLED,
IMG_GLOBAL_TOOLBAR_DETAIL,
IMG_GLOBAL_TOOLBAR_DETAIL_DISABLED,
IMG_GLOBAL_TOOLBAR_EDIT,
IMG_GLOBAL_TOOLBAR_EDIT_DISABLED,
IMG_GLOBAL_TOOLBAR_FORWARD_MESSAGE,
IMG_GLOBAL_TOOLBAR_FORWARD_MESSAGE_DISABLED,
IMG_GLOBAL_TOOLBAR_MEETING,
IMG_GLOBAL_TOOLBAR_MEETING_DISABLED,
IMG_GLOBAL_TOOLBAR_OPEN,
IMG_GLOBAL_TOOLBAR_OPEN_DISABLED,
IMG_GLOBAL_TOOLBAR_REPLY_MESSAGE,
IMG_GLOBAL_TOOLBAR_REPLY_MESSAGE_DISABLED,
IMG_GLOBAL_TOOLBAR_SEARCH,
IMG_GLOBAL_TOOLBAR_SEARCH_DISABLED,
IMG_GLOBAL_TOOLBAR_SEND_MESSAGE,
IMG_GLOBAL_TOOLBAR_SEND_MESSAGE_DISABLED,
IMG_GLOBAL_TOOLBAR_WRITE_MESSAGE,
IMG_GLOBAL_TOOLBAR_WRITE_MESSAGE_DISABLED,
#endif /* __MMI_FTE_SUPPORT__ */
IMG_GLOBAL_SIM1,
IMG_GLOBAL_SIM2,
IMG_GLOBAL_SIM3,
IMG_GLOBAL_SIM4,
IMG_GLOBAL_TABBAR_SIM1,
IMG_GLOBAL_TABBAR_SIM2,
IMG_GLOBAL_TABBAR_SIM3,
IMG_GLOBAL_TABBAR_SIM4,
IMG_GLOBAL_TOOLBAR_VIDEO_CALL,
IMG_GLOBAL_TOOLBAR_VIDEO_CALL_DISABLED,
#if defined(__TOPWELL_THEME_MULTIMEDIA_BG_ALONE__)
IMG_ID_MULTIMEDIA_BG,
#endif
#if defined(__TOPWELL_MMI_POP_NEW_SMS_IMAGE__) //
IMG_GLOBAL_NEW_MESSAGE,
#endif
/* add new resource before here */
IMG_GLOBAL_END
}IMG_GLOBAL_LIST_ENUM;
typedef enum _ADO_GLOBAL_LIST_ENUM
{
ADO_GLOBAL_EMPTYAUDIO = GLOBAL_BASE,
ADO_GLOBAL_EMPTYAUDIO_EXT, /* for custpack */
ADO_GLOBAL_NOAUDIO,
ADO_GLOBAL_DEFAULT,
/* add new resource before here */
ADO_GLOBAL_END
}ADO_GLOBAL_LIST_ENUM;
typedef enum _BINARY_GLOBAL_LIST_ENUM
{
BINARY_GLOBAL_NO_BINARY = GLOBAL_BASE,
BINARY_GLOBAL_TOTAL
}BINARY_GLOBAL_LIST_ENUM;
#endif /* 0 */
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* __GLOBAL_RESDEF_H__ */