1 /* |
|
2 * Copyright (c) 2006 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: Common part of Profiles Settings View/Profiles GS Tones view |
|
15 * plugin resources. Note, that this should always be compiled as |
|
16 * a part of resources (settings view or plugin). |
|
17 * |
|
18 */ |
|
19 |
|
20 #include <mediafilelist.loc> |
|
21 |
|
22 // RESOURCE DEFINITIONS |
|
23 |
|
24 // ----------------------------------------------------------------------------- |
|
25 // |
|
26 // r_profile_empty_popup_setting_list_control |
|
27 // ?description |
|
28 // |
|
29 // ----------------------------------------------------------------------------- |
|
30 // |
|
31 RESOURCE POPUP_SETTING_LIST r_profile_empty_popup_setting_list_control |
|
32 { |
|
33 } |
|
34 |
|
35 // ----------------------------------------------------------------------------- |
|
36 // |
|
37 // r_profile_ringing_type_setting_page |
|
38 // ?description |
|
39 // |
|
40 // ----------------------------------------------------------------------------- |
|
41 // |
|
42 RESOURCE AVKON_SETTING_PAGE r_profile_ringing_type_setting_page |
|
43 { |
|
44 label = qtn_mode_ringing_type_2; |
|
45 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
46 type = EAknCtPopupSettingList; |
|
47 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
48 } |
|
49 |
|
50 // ----------------------------------------------------------------------------- |
|
51 // |
|
52 // r_profile_ringing_type_setting_texts |
|
53 // ?description |
|
54 // |
|
55 // ----------------------------------------------------------------------------- |
|
56 // |
|
57 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_ringing_type_setting_texts |
|
58 { |
|
59 setting_texts_resource = r_profile_ringing_type_texts_and_values; |
|
60 } |
|
61 |
|
62 // ----------------------------------------------------------------------------- |
|
63 // |
|
64 // r_profile_ringing_type_texts_and_values |
|
65 // ?description |
|
66 // |
|
67 // ----------------------------------------------------------------------------- |
|
68 // |
|
69 RESOURCE ARRAY r_profile_ringing_type_texts_and_values |
|
70 { |
|
71 items = |
|
72 { |
|
73 AVKON_ENUMERATED_TEXT { value = EProfileRingingTypeRinging; text = qtn_tc_ringing; }, |
|
74 AVKON_ENUMERATED_TEXT { value = EProfileRingingTypeAscending; text = qtn_tc_ascending; }, |
|
75 AVKON_ENUMERATED_TEXT { value = EProfileRingingTypeRingingOnce; text = qtn_tc_ring_once; }, |
|
76 AVKON_ENUMERATED_TEXT { value = EProfileRingingTypeBeepOnce; text = qtn_tc_beep_once; } |
|
77 //CDMA doesn't have silent ringingtype |
|
78 #ifndef __PROTOCOL_CDMA |
|
79 ,AVKON_ENUMERATED_TEXT { value = EProfileRingingTypeSilent; text = qtn_tc_silent; } |
|
80 #endif |
|
81 }; |
|
82 } |
|
83 |
|
84 // ----------------------------------------------------------------------------- |
|
85 // |
|
86 // r_profile_ringing_volume_setting_page |
|
87 // ?description |
|
88 // |
|
89 // ----------------------------------------------------------------------------- |
|
90 // |
|
91 RESOURCE AVKON_SETTING_PAGE r_profile_ringing_volume_setting_page |
|
92 { |
|
93 label = qtn_mode_ringing_volume; |
|
94 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
95 type = EAknCtVolumeControl; |
|
96 editor_resource_id = r_profile_ringing_volume_control; |
|
97 } |
|
98 |
|
99 // ----------------------------------------------------------------------------- |
|
100 // |
|
101 // r_profile_ringing_volume_control |
|
102 // ?description |
|
103 // |
|
104 // ----------------------------------------------------------------------------- |
|
105 // |
|
106 RESOURCE VOLUME r_profile_ringing_volume_control |
|
107 { |
|
108 flags = ESettingsVolumeControl; |
|
109 value = 7; // Has to have a value, otherwise crashes |
|
110 } |
|
111 |
|
112 // ----------------------------------------------------------------------------- |
|
113 // |
|
114 // r_profile_vibrating_alert_setting_page |
|
115 // ?description |
|
116 // |
|
117 // ----------------------------------------------------------------------------- |
|
118 // |
|
119 RESOURCE AVKON_SETTING_PAGE r_profile_vibrating_alert_setting_page |
|
120 { |
|
121 label = qtn_mode_vibrating_alert; |
|
122 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
123 type = EAknCtPopupSettingList; |
|
124 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
125 } |
|
126 |
|
127 // ----------------------------------------------------------------------------- |
|
128 // |
|
129 // r_profile_vibrating_alert_setting_texts |
|
130 // ?description |
|
131 // |
|
132 // ----------------------------------------------------------------------------- |
|
133 // |
|
134 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_vibrating_alert_setting_texts |
|
135 { |
|
136 setting_texts_resource = r_profile_vibrating_alert_texts_and_values; |
|
137 } |
|
138 |
|
139 // ----------------------------------------------------------------------------- |
|
140 // |
|
141 // r_profile_vibrating_alert_texts_and_values |
|
142 // ?description |
|
143 // |
|
144 // ----------------------------------------------------------------------------- |
|
145 // |
|
146 RESOURCE ARRAY r_profile_vibrating_alert_texts_and_values |
|
147 { |
|
148 items = |
|
149 { |
|
150 AVKON_ENUMERATED_TEXT { value = 1; text = qtn_mode_vibrating_alert_on; }, |
|
151 AVKON_ENUMERATED_TEXT { value = 0; text = qtn_mode_vibrating_alert_off; } |
|
152 }; |
|
153 } |
|
154 |
|
155 RESOURCE AVKON_SETTING_PAGE r_profile_email_vibrating_alert_setting_page |
|
156 { |
|
157 label =qtn_profiles_email_vibra; |
|
158 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
159 type = EAknCtPopupSettingList; |
|
160 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
161 } |
|
162 // ----------------------------------------------------------------------------- |
|
163 // |
|
164 // r_profile_vibrating_email_alert_setting_texts |
|
165 // ?description |
|
166 // |
|
167 // ----------------------------------------------------------------------------- |
|
168 // |
|
169 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_email_vibrating_alert_setting_texts |
|
170 { |
|
171 setting_texts_resource = r_profile_email_vibrating_alert_texts_and_values; |
|
172 } |
|
173 |
|
174 // ----------------------------------------------------------------------------- |
|
175 // |
|
176 // r_profile_email_vibrating_alert_texts_and_values |
|
177 // ?description |
|
178 // |
|
179 // ----------------------------------------------------------------------------- |
|
180 // |
|
181 RESOURCE ARRAY r_profile_email_vibrating_alert_texts_and_values |
|
182 { |
|
183 items = |
|
184 { |
|
185 AVKON_ENUMERATED_TEXT { value = 1; text = qtn_mode_email_vibra_on; }, |
|
186 AVKON_ENUMERATED_TEXT { value = 0; text = qtn_mode_email_vibra_off; } |
|
187 }; |
|
188 } |
|
189 // ----------------------------------------------------------------------------- |
|
190 // |
|
191 // r_profile_tactile_feedback_setting_page |
|
192 // ?description |
|
193 // |
|
194 // ----------------------------------------------------------------------------- |
|
195 // |
|
196 RESOURCE AVKON_SETTING_PAGE r_profile_tactile_feedback_setting_page |
|
197 { |
|
198 label = qtn_mode_tactile_feedback; |
|
199 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
200 type = EAknCtPopupSettingList; |
|
201 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
202 } |
|
203 |
|
204 // ----------------------------------------------------------------------------- |
|
205 // |
|
206 // r_profile_tactile_feedback_setting_texts |
|
207 // ?description |
|
208 // |
|
209 // ----------------------------------------------------------------------------- |
|
210 // |
|
211 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_tactile_feedback_setting_texts |
|
212 { |
|
213 setting_texts_resource = r_profile_tactile_feedback_texts_and_values; |
|
214 } |
|
215 |
|
216 // ----------------------------------------------------------------------------- |
|
217 // |
|
218 // r_profile_tactile_feedback_texts_and_values |
|
219 // ?description |
|
220 // |
|
221 // ----------------------------------------------------------------------------- |
|
222 // |
|
223 RESOURCE ARRAY r_profile_tactile_feedback_texts_and_values |
|
224 { |
|
225 items = |
|
226 { |
|
227 AVKON_ENUMERATED_TEXT { value = EProfileTactileFeedbackOff; text = qtn_mode_tactile_feedback_off; }, |
|
228 AVKON_ENUMERATED_TEXT { value = EProfileTactileFeedbackLevel1; text = qtn_mode_tactile_feedback_level1; }, |
|
229 AVKON_ENUMERATED_TEXT { value = EProfileTactileFeedbackLevel2; text = qtn_mode_tactile_feedback_level2; }, |
|
230 AVKON_ENUMERATED_TEXT { value = EProfileTactileFeedbackLevel3; text = qtn_mode_tactile_feedback_level3; } |
|
231 }; |
|
232 } |
|
233 // ----------------------------------------------------------------------------- |
|
234 // |
|
235 // r_profile_audio_feedback_setting_page |
|
236 // ?description |
|
237 // |
|
238 // ----------------------------------------------------------------------------- |
|
239 // |
|
240 RESOURCE AVKON_SETTING_PAGE r_profile_audio_feedback_setting_page |
|
241 { |
|
242 label = qtn_mode_audio_feedback; |
|
243 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
244 type = EAknCtPopupSettingList; |
|
245 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
246 } |
|
247 |
|
248 // ----------------------------------------------------------------------------- |
|
249 // |
|
250 // r_profile_audio_feedback_setting_texts |
|
251 // ?description |
|
252 // |
|
253 // ----------------------------------------------------------------------------- |
|
254 // |
|
255 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_audio_feedback_setting_texts |
|
256 { |
|
257 setting_texts_resource = r_profile_audio_feedback_texts_and_values; |
|
258 } |
|
259 |
|
260 // ----------------------------------------------------------------------------- |
|
261 // |
|
262 // r_profile_audio_feedback_texts_and_values |
|
263 // ?description |
|
264 // |
|
265 // ----------------------------------------------------------------------------- |
|
266 // |
|
267 RESOURCE ARRAY r_profile_audio_feedback_texts_and_values |
|
268 { |
|
269 items = |
|
270 { |
|
271 AVKON_ENUMERATED_TEXT { value = EProfileAudioFeedbackOff; text = qtn_mode_audio_feedback_off; }, |
|
272 AVKON_ENUMERATED_TEXT { value = EProfileAudioFeedbackLevel1; text = qtn_mode_audio_feedback_level1; }, |
|
273 AVKON_ENUMERATED_TEXT { value = EProfileAudioFeedbackLevel2; text = qtn_mode_audio_feedback_level2; }, |
|
274 AVKON_ENUMERATED_TEXT { value = EProfileAudioFeedbackLevel3; text = qtn_mode_audio_feedback_level3; } |
|
275 }; |
|
276 } |
|
277 |
|
278 // ----------------------------------------------------------------------------- |
|
279 // |
|
280 // r_profile_warning_alert_setting_texts |
|
281 // ?description |
|
282 // |
|
283 // ----------------------------------------------------------------------------- |
|
284 // |
|
285 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_warning_alert_setting_texts |
|
286 { |
|
287 setting_texts_resource = r_profile_warning_alert_texts_and_values; |
|
288 } |
|
289 |
|
290 // ----------------------------------------------------------------------------- |
|
291 // |
|
292 // r_profile_warning_alert_texts_and_values |
|
293 // ?description |
|
294 // |
|
295 // ----------------------------------------------------------------------------- |
|
296 // |
|
297 RESOURCE ARRAY r_profile_warning_alert_texts_and_values |
|
298 { |
|
299 items = |
|
300 { |
|
301 AVKON_ENUMERATED_TEXT { value = 1; text = qtn_mode_warning_game_on; }, |
|
302 AVKON_ENUMERATED_TEXT { value = 0; text = qtn_mode_warning_game_off; } |
|
303 }; |
|
304 } |
|
305 |
|
306 // ----------------------------------------------------------------------------- |
|
307 // |
|
308 // r_profile_tts_setting_texts |
|
309 // ?description |
|
310 // |
|
311 // ----------------------------------------------------------------------------- |
|
312 // |
|
313 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_tts_setting_texts |
|
314 { |
|
315 setting_texts_resource = r_profile_tts_texts_and_values; |
|
316 } |
|
317 |
|
318 // ----------------------------------------------------------------------------- |
|
319 // |
|
320 // r_profile_tts_texts_and_values |
|
321 // ?description |
|
322 // |
|
323 // ----------------------------------------------------------------------------- |
|
324 // |
|
325 RESOURCE ARRAY r_profile_tts_texts_and_values |
|
326 { |
|
327 items = |
|
328 { |
|
329 AVKON_ENUMERATED_TEXT { value = 1; text = qtn_mode_tts_ringing_tone_on; }, |
|
330 AVKON_ENUMERATED_TEXT { value = 0; text = qtn_mode_tts_ringing_tone_off; } |
|
331 }; |
|
332 } |
|
333 // ----------------------------------------------------------------------------- |
|
334 // |
|
335 // r_profile_keypad_volume_setting_page |
|
336 // ?description |
|
337 // |
|
338 // ----------------------------------------------------------------------------- |
|
339 // |
|
340 RESOURCE AVKON_SETTING_PAGE r_profile_keypad_volume_setting_page |
|
341 { |
|
342 label = qtn_mode_keypad_volume; |
|
343 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
344 type = EAknCtPopupSettingList; |
|
345 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
346 } |
|
347 |
|
348 // ----------------------------------------------------------------------------- |
|
349 // |
|
350 // r_profile_keypad_volume_setting_texts |
|
351 // ?description |
|
352 // |
|
353 // ----------------------------------------------------------------------------- |
|
354 // |
|
355 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_keypad_volume_setting_texts |
|
356 { |
|
357 setting_texts_resource = r_profile_keypad_volume_texts_and_values; |
|
358 } |
|
359 |
|
360 // ----------------------------------------------------------------------------- |
|
361 // |
|
362 // r_profile_keypad_volume_texts_and_values |
|
363 // ?description |
|
364 // |
|
365 // ----------------------------------------------------------------------------- |
|
366 // |
|
367 RESOURCE ARRAY r_profile_keypad_volume_texts_and_values |
|
368 { |
|
369 items = |
|
370 { |
|
371 AVKON_ENUMERATED_TEXT { value = EProfileKeypadVolumeOff; text = qtn_tc_keypad_off; }, |
|
372 AVKON_ENUMERATED_TEXT { value = EProfileKeypadVolumeLevel1; text = qtn_tc_keypad_quiet; }, |
|
373 AVKON_ENUMERATED_TEXT { value = EProfileKeypadVolumeLevel2; text = qtn_tc_keypad_medium; }, |
|
374 AVKON_ENUMERATED_TEXT { value = EProfileKeypadVolumeLevel3; text = qtn_tc_keypad_loud; } |
|
375 }; |
|
376 } |
|
377 |
|
378 // ----------------------------------------------------------------------------- |
|
379 // |
|
380 // r_profile_warning_tones_setting_page |
|
381 // ?description |
|
382 // |
|
383 // ----------------------------------------------------------------------------- |
|
384 // |
|
385 RESOURCE AVKON_SETTING_PAGE r_profile_warning_tones_setting_page |
|
386 { |
|
387 label = qtn_mode_warning_game; |
|
388 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
389 type = EAknCtPopupSettingList; |
|
390 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
391 } |
|
392 |
|
393 // ----------------------------------------------------------------------------- |
|
394 // |
|
395 // r_profile_tts_tones_setting_page |
|
396 // ?description |
|
397 // |
|
398 // ----------------------------------------------------------------------------- |
|
399 // |
|
400 RESOURCE AVKON_SETTING_PAGE r_profile_tts_tones_setting_page |
|
401 { |
|
402 label = qtn_mode_tts_ringing_tone; |
|
403 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
404 type = EAknCtPopupSettingList; |
|
405 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
406 } |
|
407 |
|
408 // ----------------------------------------------------------------------------- |
|
409 // |
|
410 // r_profile_3d_effect_setting_page |
|
411 // ?description |
|
412 // |
|
413 // ----------------------------------------------------------------------------- |
|
414 // |
|
415 RESOURCE AVKON_SETTING_PAGE r_profile_3d_effect_setting_page |
|
416 { |
|
417 label = qtn_profiles_tone_3d_effect; |
|
418 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
419 type = EAknCtPopupSettingList; |
|
420 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
421 } |
|
422 |
|
423 // ----------------------------------------------------------------------------- |
|
424 // |
|
425 // r_profile_3d_effect_setting_texts |
|
426 // ?description |
|
427 // |
|
428 // ----------------------------------------------------------------------------- |
|
429 // |
|
430 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_3d_effect_setting_texts |
|
431 { |
|
432 setting_texts_resource = r_profile_3d_effect_texts_and_values; |
|
433 } |
|
434 |
|
435 // ----------------------------------------------------------------------------- |
|
436 // |
|
437 // r_profile_3d_effect_texts_and_values |
|
438 // ?description |
|
439 // |
|
440 // ----------------------------------------------------------------------------- |
|
441 // |
|
442 RESOURCE ARRAY r_profile_3d_effect_texts_and_values |
|
443 { |
|
444 items = |
|
445 { |
|
446 AVKON_ENUMERATED_TEXT { value = EProfile3DEffectOff; text = qtn_profiles_3d_effect_off; }, |
|
447 AVKON_ENUMERATED_TEXT { value = EProfile3DEffectCircle; text = qtn_profiles_3d_effect_circle; }, |
|
448 AVKON_ENUMERATED_TEXT { value = EProfile3DEffectFlyby; text = qtn_profiles_3d_effect_flyby; }, |
|
449 AVKON_ENUMERATED_TEXT { value = EProfile3DEffectZigZag; text = qtn_profiles_3d_effect_zig_zag; }, |
|
450 AVKON_ENUMERATED_TEXT { value = EProfile3DEffectRandomWalk; text = qtn_profiles_3d_effect_random_walk; }, |
|
451 AVKON_ENUMERATED_TEXT { value = EProfile3DEffectChaos; text = qtn_profiles_3d_effect_chaos; } |
|
452 |
|
453 #ifdef __STEREO_WIDENING_EFFECT_UI |
|
454 ,AVKON_ENUMERATED_TEXT { value = EProfile3DEffectStereoWidening; text = qtn_profiles_3d_effect_stereo_widening; } |
|
455 #endif |
|
456 |
|
457 }; |
|
458 } |
|
459 |
|
460 // ----------------------------------------------------------------------------- |
|
461 // |
|
462 // r_profile_3d_echo_setting_page |
|
463 // ?description |
|
464 // |
|
465 // ----------------------------------------------------------------------------- |
|
466 // |
|
467 RESOURCE AVKON_SETTING_PAGE r_profile_3d_echo_setting_page |
|
468 { |
|
469 label = qtn_profiles_tone_3d_echo; |
|
470 softkey_resource = R_AVKON_SOFTKEYS_OK_CANCEL__OK; |
|
471 type = EAknCtPopupSettingList; |
|
472 editor_resource_id = r_profile_empty_popup_setting_list_control; |
|
473 } |
|
474 |
|
475 // ----------------------------------------------------------------------------- |
|
476 // |
|
477 // r_profile_3d_echo_setting_texts |
|
478 // ?description |
|
479 // |
|
480 // ----------------------------------------------------------------------------- |
|
481 // |
|
482 RESOURCE AVKON_POPUP_SETTING_TEXTS r_profile_3d_echo_setting_texts |
|
483 { |
|
484 setting_texts_resource = r_profile_3d_echo_texts_and_values; |
|
485 } |
|
486 |
|
487 // ----------------------------------------------------------------------------- |
|
488 // |
|
489 // r_profile_3d_echo_texts_and_values |
|
490 // ?description |
|
491 // |
|
492 // ----------------------------------------------------------------------------- |
|
493 // |
|
494 RESOURCE ARRAY r_profile_3d_echo_texts_and_values |
|
495 { |
|
496 items = |
|
497 { |
|
498 AVKON_ENUMERATED_TEXT { value = EProfile3DEchoOff; text = qtn_profiles_3d_echo_off; }, |
|
499 AVKON_ENUMERATED_TEXT { value = EProfile3DEchoLivingRoom; text = qtn_profiles_3d_echo_living_room; }, |
|
500 AVKON_ENUMERATED_TEXT { value = EProfile3DEchoCave; text = qtn_profiles_3d_echo_cave; }, |
|
501 AVKON_ENUMERATED_TEXT { value = EProfile3DEchoStoneCorridor; text = qtn_profiles_3d_echo_stone_corridor; }, |
|
502 AVKON_ENUMERATED_TEXT { value = EProfile3DEchoForest; text = qtn_profiles_3d_echo_forest; }, |
|
503 AVKON_ENUMERATED_TEXT { value = EProfile3DEchoSewerPipe; text = qtn_profiles_3d_echo_sewer_pipe; }, |
|
504 AVKON_ENUMERATED_TEXT { value = EProfile3DEchoUnderwater; text = qtn_profiles_3d_echo_underwater; } |
|
505 }; |
|
506 } |
|
507 |
|
508 // ----------------------------------------------------------------------------- |
|
509 // |
|
510 // r_profile_volume_confirmation_query |
|
511 // ?description |
|
512 // |
|
513 // ----------------------------------------------------------------------------- |
|
514 // |
|
515 RESOURCE DIALOG r_profile_volume_confirmation_query |
|
516 { |
|
517 flags = EGeneralQueryFlags; |
|
518 buttons = R_AVKON_SOFTKEYS_YES_NO; |
|
519 items= |
|
520 { |
|
521 DLG_LINE |
|
522 { |
|
523 type = EAknCtQuery; |
|
524 id = EGeneralQuery; |
|
525 control = AVKON_CONFIRMATION_QUERY |
|
526 { |
|
527 layout = EConfirmationQueryLayout; |
|
528 label = qtn_tc_ringing_level_warning; |
|
529 }; |
|
530 } |
|
531 }; |
|
532 } |
|
533 |
|
534 // ----------------------------------------------------------------------------- |
|
535 // |
|
536 // r_profile_text_select_tone |
|
537 // ?description |
|
538 // |
|
539 // ----------------------------------------------------------------------------- |
|
540 // |
|
541 RESOURCE TBUF r_profile_text_select_tone { buf = qtn_tc_popup_heading; } |
|
542 |
|
543 // ----------------------------------------------------------------------------- |
|
544 // |
|
545 // r_profile_text_none |
|
546 // ?description |
|
547 // |
|
548 // ----------------------------------------------------------------------------- |
|
549 // |
|
550 RESOURCE TBUF r_profile_text_none { buf = qtn_tsl_off; } |
|
551 |
|
552 // ----------------------------------------------------------------------------- |
|
553 // |
|
554 // r_profile_text_drm_prev_rights_set |
|
555 // ?description |
|
556 // |
|
557 // ----------------------------------------------------------------------------- |
|
558 // |
|
559 RESOURCE TBUF r_profile_text_drm_prev_rights_set { buf = qtn_drm_prev_rights_set; } |
|
560 |
|
561 // ----------------------------------------------------------------------------- |
|
562 // |
|
563 // r_profile_text_tone_maxsize_error |
|
564 // ?description |
|
565 // |
|
566 // ----------------------------------------------------------------------------- |
|
567 // |
|
568 RESOURCE TBUF r_profile_text_tone_maxsize_error { buf = qtn_profiles_tone_maxsize_error; } |
|
569 |
|
570 // End of File |
|
571 |
|