Added preferences for anti-features
This commit is contained in:
parent
78325dad91
commit
e1f3c2eb78
@ -12,11 +12,13 @@
|
|||||||
<string name="reset">Reset</string>
|
<string name="reset">Reset</string>
|
||||||
<string name="maintenance">Maintenance</string>
|
<string name="maintenance">Maintenance</string>
|
||||||
<string name="notify_updates_available">Notify when new updates are available</string>
|
<string name="notify_updates_available">Notify when new updates are available</string>
|
||||||
<string name="update_apps_list">Update app list from repositories automatically</string>
|
<string name="update_apps_list">Update app list from repositories automatically
|
||||||
|
</string>
|
||||||
<string name="automatic_repo_scan">Automatic repo scan</string>
|
<string name="automatic_repo_scan">Automatic repo scan</string>
|
||||||
<string name="app_name">FDroid</string>
|
<string name="app_name">FDroid</string>
|
||||||
<string name="about_title">About FDroid</string>
|
<string name="about_title">About FDroid</string>
|
||||||
<string name="about_desc">Originally based on Aptoide.\nReleased under the GNU GPLv2
|
<string name="about_desc">Originally based on Aptoide.\nReleased under the
|
||||||
|
GNU GPLv2
|
||||||
license.</string>
|
license.</string>
|
||||||
<string name="about_site">Website: </string>
|
<string name="about_site">Website: </string>
|
||||||
<string name="about_mail">Email: </string>
|
<string name="about_mail">Email: </string>
|
||||||
@ -26,7 +28,8 @@
|
|||||||
|
|
||||||
<string name="no_repo">You don\'t have any repositories configured!\n\nA
|
<string name="no_repo">You don\'t have any repositories configured!\n\nA
|
||||||
repository is a source of applications. To add one, press the MENU
|
repository is a source of applications. To add one, press the MENU
|
||||||
button now and enter the URL.\n\nA repository address looks something like
|
button now and enter the URL.\n\nA repository address looks something
|
||||||
|
like
|
||||||
this: http://f-droid.org/repo</string>
|
this: http://f-droid.org/repo</string>
|
||||||
|
|
||||||
<string name="not_inst">Not Installed</string>
|
<string name="not_inst">Not Installed</string>
|
||||||
@ -70,7 +73,8 @@
|
|||||||
<string name="update_alrt">There are updates available for some installed
|
<string name="update_alrt">There are updates available for some installed
|
||||||
applications.\nDo you want to see them?</string>
|
applications.\nDo you want to see them?</string>
|
||||||
<string name="repo_alrt">The list of used repositories has
|
<string name="repo_alrt">The list of used repositories has
|
||||||
changed.\nDo you want to update them?</string>
|
changed.\nDo you
|
||||||
|
want to update them?</string>
|
||||||
|
|
||||||
<string name="error_download_alrt">Could not connect to server or apk file is corrupt!
|
<string name="error_download_alrt">Could not connect to server or apk file is corrupt!
|
||||||
</string>
|
</string>
|
||||||
@ -99,4 +103,16 @@
|
|||||||
<string name="corrupt_download">Downloaded file is corrupt</string>
|
<string name="corrupt_download">Downloaded file is corrupt</string>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<string name="antifeatures">Anti-Features</string>
|
||||||
|
|
||||||
|
<string name="antiads">Advertising</string>
|
||||||
|
<string name="antiadslong">Show apps that contain advertising</string>
|
||||||
|
<string name="antitrack">Tracking</string>
|
||||||
|
<string name="antitracklong">Show apps that track and report your activity</string>
|
||||||
|
<string name="antinonfreead">Add-ons</string>
|
||||||
|
<string name="antinonfreeadlong">Show apps that promote non-free add-ons</string>
|
||||||
|
<string name="antinonfreenet">Network Services</string>
|
||||||
|
<string name="antinonfreenetlong">Show apps that promote non-free network services</string>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
@ -14,6 +14,20 @@
|
|||||||
android:defaultValue="false" android:summary="@string/notify_updates_available"
|
android:defaultValue="false" android:summary="@string/notify_updates_available"
|
||||||
android:key="updateNotify" />
|
android:key="updateNotify" />
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
|
<PreferenceCategory android:title="@string/antifeatures">
|
||||||
|
<CheckBoxPreference android:title="@string/antiads"
|
||||||
|
android:defaultValue="false" android:summary="@string/antiadslong"
|
||||||
|
android:key="cacheDownloaded" />
|
||||||
|
<CheckBoxPreference android:title="@string/antitrack"
|
||||||
|
android:defaultValue="false" android:summary="@string/antitracklong"
|
||||||
|
android:key="cacheDownloaded" />
|
||||||
|
<CheckBoxPreference android:title="@string/antinonfreead"
|
||||||
|
android:defaultValue="false" android:summary="@string/antinonfreeadlong"
|
||||||
|
android:key="cacheDownloaded" />
|
||||||
|
<CheckBoxPreference android:title="@string/antinonfreenet"
|
||||||
|
android:defaultValue="false" android:summary="@string/antinonfreenetlong"
|
||||||
|
android:key="cacheDownloaded" />
|
||||||
|
</PreferenceCategory>
|
||||||
<PreferenceCategory android:title="@string/maintenance">
|
<PreferenceCategory android:title="@string/maintenance">
|
||||||
<Preference
|
<Preference
|
||||||
android:title="@string/reset"
|
android:title="@string/reset"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user