diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values/strings.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/xml/preference.xml | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index c0c4c3fd..e7ffa3e9 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -159,6 +159,8 @@ <string name="pref_autofill_default_title">Automatically match by default</string> <string name="pref_autofill_default_hint">Default to \'Automatically match\' for apps without custom settings. Otherwise, \'Never match.\'</string> <string name="pref_autofill_always_title">Always show dialog</string> + <string name="pref_autofill_full_path_title">Show Full Path</string> + <string name="pref_autofill_full_path_hint">Show full path of matching password files</string> <string name="pref_misc_title">Misc</string> <string name="pref_clear_clipboard_title">Clear clipboard 20 times</string> <string name="pref_clear_clipboard_hint">Store consecutive numbers in the clipboard 20 times. Useful on Samsung phones that feature clipboard history.</string> diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index b03bfa5b..be6b49d6 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -118,6 +118,11 @@ android:defaultValue="false" android:key="autofill_always" android:title="@string/pref_autofill_always_title"/> + <androidx.preference.CheckBoxPreference + android:defaultValue="false" + android:key="autofill_full_path" + android:summary="@string/pref_autofill_full_path_hint" + android:title="@string/pref_autofill_full_path_title"/> </androidx.preference.PreferenceCategory> <androidx.preference.PreferenceCategory android:title="@string/pref_misc_title"> |