Adjust long Privacy settings

This commit is contained in:
Philip Whitehouse 2017-03-17 10:29:47 +00:00
parent e590efaf8e
commit c9d5a776fe
2 changed files with 8 additions and 4 deletions

View file

@ -339,8 +339,10 @@ Please submit bug reports, contribute new features and ask questions at
<string name="global_settings_confirm_menu_mark_all_read">Mark all messages as read</string> <string name="global_settings_confirm_menu_mark_all_read">Mark all messages as read</string>
<string name="global_settings_confirm_action_delete_notif">Delete (from notification)</string> <string name="global_settings_confirm_action_delete_notif">Delete (from notification)</string>
<string name="global_settings_privacy_hide_useragent">Remove K-9 User-Agent from mail headers</string> <string name="global_settings_privacy_hide_useragent">Hide mail client</string>
<string name="global_settings_privacy_hide_timezone">Use UTC as time zone in mail headers</string> <string name="global_settings_privacy_hide_useragent_detail">Remove K-9 User-Agent from mail headers</string>
<string name="global_settings_privacy_hide_timezone">Hide timezone</string>
<string name="global_settings_privacy_hide_timezone_detail">Use UTC instead of local timezone in mail headers</string>
<string name="global_settings_notification_hide_subject_title">Hide subject in notifications</string> <string name="global_settings_notification_hide_subject_title">Hide subject in notifications</string>
<string name="global_settings_notification_hide_subject_never">Never</string> <string name="global_settings_notification_hide_subject_never">Never</string>
<string name="global_settings_notification_hide_subject_when_locked">When device is locked</string> <string name="global_settings_notification_hide_subject_when_locked">When device is locked</string>

View file

@ -375,12 +375,14 @@
<CheckBoxPreference <CheckBoxPreference
android:persistent="false" android:persistent="false"
android:key="privacy_hide_useragent" android:key="privacy_hide_useragent"
android:title="@string/global_settings_privacy_hide_useragent"/> android:title="@string/global_settings_privacy_hide_useragent"
android:summary="@string/global_settings_privacy_hide_useragent_detail"/>
<CheckBoxPreference <CheckBoxPreference
android:persistent="false" android:persistent="false"
android:key="privacy_hide_timezone" android:key="privacy_hide_timezone"
android:title="@string/global_settings_privacy_hide_timezone"/> android:title="@string/global_settings_privacy_hide_timezone"
android:summary="@string/global_settings_privacy_hide_timezone_detail"/>
</PreferenceScreen> </PreferenceScreen>
<PreferenceScreen <PreferenceScreen