diff options
Diffstat (limited to 'res/xml')
| -rw-r--r-- | res/xml/preferences.xml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml index a98cd8ad..648114bb 100644 --- a/res/xml/preferences.xml +++ b/res/xml/preferences.xml @@ -22,11 +22,20 @@ android:summary="@string/ttrss_url_summary"
android:title="@string/ttrss_url" >
</EditTextPreference>
-
+ </PreferenceCategory>
+ <PreferenceCategory android:title="@string/ssl" android:summary="blah blah blah" >
<CheckBoxPreference
android:defaultValue="false"
android:key="ssl_trust_any"
+ android:summary="@string/ssl_trust_any_long"
android:title="@string/ssl_trust_any" />
+
+ <CheckBoxPreference
+ android:defaultValue="false"
+ android:key="ssl_trust_any_host"
+ android:summary="@string/ssl_trust_any_host_long"
+ android:title="@string/ssl_trust_any_host" />
+
</PreferenceCategory>
<PreferenceCategory android:title="@string/http_authentication" >
<EditTextPreference
|