aboutsummaryrefslogtreecommitdiffstats
path: root/res/xml/preferences.xml
blob: f0d64e39cc373b0dcc08c528ead73115ba071334 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >

    <PreferenceCategory android:title="@string/pref_general" >
        <CheckBoxPreference
            android:defaultValue="true"
            android:key="grant_new_contacts"
            android:summary="@string/pref_grant_presence_updates_summary"
            android:title="@string/pref_grant_presence_updates" />

        <ListPreference
            android:defaultValue="Mobile"
            android:entries="@array/resources"
            android:entryValues="@array/resources"
            android:key="resource"
            android:summary="@string/pref_xmpp_resource_summary"
            android:title="@string/pref_xmpp_resource" />
        <ListPreference
            android:defaultValue="524288"
            android:entries="@array/filesizes"
            android:entryValues="@array/filesizes_values"
            android:key="auto_accept_file_size"
            android:summary="@string/pref_accept_files_summary"
            android:title="@string/pref_accept_files" />

        <CheckBoxPreference
            android:defaultValue="true"
            android:key="confirm_messages"
            android:summary="@string/pref_confirm_messages_summary"
            android:title="@string/pref_confirm_messages" />
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/pref_notification_settings" >
        <CheckBoxPreference
            android:defaultValue="true"
            android:key="show_notification"
            android:summary="@string/pref_notifications_summary"
            android:title="@string/pref_notifications" />
        <CheckBoxPreference
            android:defaultValue="true"
            android:dependency="show_notification"
            android:key="vibrate_on_notification"
            android:summary="@string/pref_vibrate_summary"
            android:title="@string/pref_vibrate" />

        <RingtonePreference
            android:defaultValue="content://settings/system/notification_sound"
            android:dependency="show_notification"
            android:key="notification_ringtone"
            android:ringtoneType="notification"
            android:summary="@string/pref_sound_summary"
            android:title="@string/pref_sound" />

        <CheckBoxPreference
            android:dependency="show_notification"
            android:key="notify_in_conversation_when_highlighted"
            android:summary="@string/pref_conference_notifications_summary"
            android:title="@string/pref_conference_notifications" />
        <CheckBoxPreference
            android:defaultValue="true"
            android:dependency="show_notification"
            android:key="notification_grace_period_after_carbon_received"
            android:summary="@string/pref_notification_grace_period_summary"
            android:title="@string/pref_notification_grace_period" />
    </PreferenceCategory>
    <PreferenceCategory
        android:title="@string/pref_ui_options">
    <CheckBoxPreference
            android:defaultValue="false"
            android:key="use_larger_font"
            android:title="@string/pref_use_larger_font"
            android:summary="@string/pref_use_larger_font_summary"/>
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/pref_advanced_options" >
        <PreferenceScreen
            android:summary="@string/pref_expert_options_summary"
            android:title="@string/pref_expert_options" >
            <PreferenceCategory android:title="@string/pref_encryption_settings" >
                <CheckBoxPreference
                    android:defaultValue="false"
                    android:key="force_encryption"
                    android:summary="@string/pref_force_encryption_summary"
                    android:title="@string/pref_force_encryption" />
                <CheckBoxPreference
                    android:defaultValue="false"
                    android:key="dont_save_encrypted"
                    android:summary="@string/pref_dont_save_encrypted_summary"
                    android:title="@string/pref_dont_save_encrypted" />
            </PreferenceCategory>
        </PreferenceScreen>

        <CheckBoxPreference
            android:defaultValue="false"
            android:key="never_send"
            android:summary="@string/pref_never_send_crash_summary"
            android:title="@string/pref_never_send_crash" />
    </PreferenceCategory>

</PreferenceScreen>