Conversations/res/xml/preferences.xml

79 lines
3.6 KiB
XML
Raw Normal View History

2014-01-24 02:04:05 +01:00
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<PreferenceCategory
android:title="General">
<CheckBoxPreference
android:key="grant_new_contacts"
android:title="Grant presence updates"
2014-04-14 02:38:21 +02:00
android:summary="Preemptively grant and ask for presence subscription for contacts you created"
android:defaultValue="true"
/>
<ListPreference
android:key="resource"
android:title="XMPP Resource"
android:summary="The name this client identifies itself"
android:entries="@array/resources"
android:entryValues="@array/resources"
android:defaultValue="Mobile"/>
<ListPreference
android:key="auto_accept_file_size"
android:title="Accept files"
android:summary="Automatically accept files smaller than"
android:entries="@array/filesizes"
android:entryValues="@array/filesizes_values"
android:defaultValue="524288"/>
2014-01-24 02:04:05 +01:00
</PreferenceCategory>
<PreferenceCategory
android:title="Notification Settings">
2014-01-24 02:04:05 +01:00
<CheckBoxPreference
android:key="show_notification"
android:title="Notification"
2014-03-08 04:18:42 +01:00
android:summary="Notify when a new message arrives"
android:defaultValue="true"
2014-01-24 02:04:05 +01:00
/>
<CheckBoxPreference
android:key="vibrate_on_notification"
android:dependency="show_notification"
android:title="Vibrate"
2014-03-12 14:55:23 +01:00
android:summary="Also vibrate when a new message arrives"
android:defaultValue="true"/>
2014-01-24 02:04:05 +01:00
<RingtonePreference
android:key="notification_ringtone"
android:title="Sound"
android:ringtoneType="notification"
android:dependency="show_notification"
2014-03-08 04:18:42 +01:00
android:summary="Play ringtone with notification"
android:defaultValue="content://settings/system/notification_sound"/>
<CheckBoxPreference
android:key="notify_in_conversation_when_highlighted"
android:title="Conference notification"
android:summary="Always notify when a new conference message arrives instead of only when highlighted"/>
2014-04-07 23:58:59 +02:00
<CheckBoxPreference
android:key="notification_grace_period_after_carbon_received"
android:title="Notification grace period"
android:summary="Disable notifications for a short time after a carbon copy was received"
android:defaultValue="true"/>
2014-01-24 02:04:05 +01:00
</PreferenceCategory>
<PreferenceCategory
android:title="UI Options">
<CheckBoxPreference
android:key="show_phone_selfcontact_picture"
android:title="Use Phones self contact picture"
android:summary="You may no longer be able to distinguish which account you are using in a conversation"
android:defaultValue="true"/>
2014-03-14 22:40:56 +01:00
<CheckBoxPreference
android:key="use_subject_in_muc"
android:title="Conference Name"
android:summary="Use rooms subject to identify Conferences"
android:defaultValue="true"/>
2014-01-24 02:04:05 +01:00
</PreferenceCategory>
2014-03-27 16:09:23 +01:00
<PreferenceCategory
android:title="Advanced Options">
<CheckBoxPreference
android:key="never_send"
android:title="Never send crash reports"
android:summary="By sending in stack traces you are helping the ongoing development of Conversations"
android:defaultValue="false"/>
</PreferenceCategory>
2014-01-24 02:04:05 +01:00
</PreferenceScreen>