diff options
Diffstat (limited to '')
-rw-r--r-- | res/values/strings.xml | 4 | ||||
-rw-r--r-- | res/xml/preferences.xml | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index faf8fff4..d9f6b9b5 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -40,4 +40,8 @@ <string name="invitation_sent">Invitation sent</string> <string name="account_offline">Account offline</string> <string name="cant_invite_while_offline">You have to be online to invite people to conferences</string> + <string name="crash_report_title">Conversations has crashed</string> + <string name="crash_report_message">By sending in stack traces you are helping the ongoing development of Conversations\n<b>Warning:</b> This will use your XMPP account to send the stack trace to the developer.</string> + <string name="send_now">Send now</string> + <string name="send_never">Never ask again</string> </resources> diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml index 49b3e580..7339565e 100644 --- a/res/xml/preferences.xml +++ b/res/xml/preferences.xml @@ -55,4 +55,12 @@ android:summary="Use room’s subject to identify Conferences" android:defaultValue="true"/> </PreferenceCategory> + <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> </PreferenceScreen> |