Rename settings category

This commit is contained in:
Jakob Nixdorf 2017-07-07 10:54:03 +02:00
parent 2b634c9a3e
commit 92b47fc6d3
No known key found for this signature in database
GPG key ID: BE99BF86574A7DBC
2 changed files with 9 additions and 8 deletions

View file

@ -63,7 +63,8 @@
<!-- Preferences -->
<string name="pref_window_title">Settings</string>
<string name="pref_category_title_ui">User interface</string>
<string name="pref_category_title_security">Security</string>
<string name="pref_title_tap_to_reveal">Tap to reveal</string>
<string name="pref_desc_tap_to_reveal">If enabled the OTP token is hidden by default and has to

View file

@ -2,7 +2,7 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="@string/pref_category_title_ui">
android:title="@string/pref_category_title_security">
<CheckBoxPreference
android:key="@string/pref_key_tap_to_reveal"
@ -10,12 +10,12 @@
android:summary="@string/pref_desc_tap_to_reveal"
android:defaultValue="false" />
<CheckBoxPreference
android:key="@string/pref_key_auth_device"
android:title="@string/pref_title_auth_device"
android:summary="@string/pref_desc_auth_device"
android:defaultValue="false" />
</PreferenceCategory>
<CheckBoxPreference
android:key="@string/pref_key_auth_device"
android:title="@string/pref_title_auth_device"
android:summary="@string/pref_desc_auth_device"
android:defaultValue="false" />
</PreferenceScreen>