diff options
author | Felix Bechstein <f@ub0r.de> | 2017-07-25 15:23:50 +0200 |
---|---|---|
committer | Mohamed Zenadi <zeapo@users.noreply.github.com> | 2017-07-25 14:23:50 +0100 |
commit | 5da9e67545644925902b04a11306289add29c033 (patch) | |
tree | de8ec31c4fe216157b7680a4defdee86429a4122 /app/src/main/res/xml/preference.xml | |
parent | 5cba6c62d7b4628dfaf482dd883e333f93d323d4 (diff) |
Fix lint warnings (#319)
* Fix lint errors/warnings
Fix a lot of lint errors and warnings.
Most things are automatically applied fixes done with android studio:
* externalize strings
* remove unused code / classes / layouts / imports
* migrate some fields to local variables
* Remove dead code from comments
Removed code that is commented out long ago.
* remove unused resources
* colors
* strings
* drawables
* layouts
* menus
Diffstat (limited to 'app/src/main/res/xml/preference.xml')
-rw-r--r-- | app/src/main/res/xml/preference.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index cd072353..87e77aae 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -66,8 +66,8 @@ <CheckBoxPreference android:defaultValue="true" android:key="clear_after_copy" - android:summary="After an automatic copy or a manual copy of the password, the clipboard will be automatically cleared." - android:title="Automatically clear the clipboard after copy" /> + android:summary="@string/prefs_clear_after_copy_summary" + android:title="@string/prefs_clear_after_copy_title" /> <CheckBoxPreference android:defaultValue="true" android:key="filter_recursively" @@ -100,8 +100,8 @@ <PreferenceCategory android:title="@string/pref_misc_title"> <Preference android:key="export_passwords" - android:title="Export Passwords" - android:summary="Exports the encrypted passwords to an external directory"/> + android:title="@string/prefs_export_passwords_title" + android:summary="@string/prefs_export_passwords_summary"/> <CheckBoxPreference android:defaultValue="false" @@ -112,10 +112,10 @@ <CheckBoxPreference android:defaultValue="false" android:key="use_android_file_picker" - android:title="Use default file picker" /> + android:title="@string/prefs_use_default_file_picker" /> </PreferenceCategory> <Preference android:key="app_version" - android:title="Version" /> + android:title="@string/prefs_version" /> </PreferenceScreen> |