diff options
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r-- | app/src/main/res/values/strings.xml | 19 | ||||
-rw-r--r-- | app/src/main/res/values/themes.xml | 7 |
2 files changed, 24 insertions, 2 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 146bad7..f79852c 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -11,4 +11,23 @@ <string name="my_location_subtitle">"7 apps are using location permission\n Current location mode: "</string> <string name="internet_activity_privacy_title">My Internet Activity Privacy</string> <string name="internet_activity_privacy_subtitle">"Current internet activity mode: "</string> + <string name="quick_protection_info">Quick protection enables these settings when turned on</string> + <string name="quick_protection_settings_list"> - All trackers are turned off.\n- Your geolocation will be faked.\n- Your real IP address will be hidden.</string> + <string name="learn_more">Learn more</string> + <string name="fake_location_info">Choose if you want to fake your real location when app asks for your geolocation tracking.</string> + <string name="use_real_location">Use real location</string> + <string name="use_random_location">Use random plausible location</string> + <string name="use_specific_location">Use specific location</string> + <string name="longitude">Longitude</string> + <string name="latitude">Latitude</string> + <string name="add_location">Add location</string> + <string name="internet_activity_privacy_info">Choose if you want to expose your real IP address or hide when connected to the internet (uses the tor network).</string> + <string name="use_real_ip">Use real IP address</string> + <string name="i_can_be_tracked">I can be tracked by my IP address.</string> + <string name="hide_ip">Hide IP address</string> + <string name="i_am_anonymous">I am anonymous on the internet.</string> + <string name="permission_control_info">Manage and control apps requesting various permissions.</string> + + <string name="apps_allowed">%1$d of %2$d apps allowed</string> + <string name="apps_access_to_permission">Apps which has access to %1$s permission</string> </resources>
\ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index e7a4431..3a7bad8 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -1,8 +1,11 @@ <resources xmlns:tools="http://schemas.android.com/tools"> <!-- Base application theme. --> - <style name="Theme.PrivacyCentralApp" parent="Theme.AppCompat.DayNight.NoActionBar"> + <style name="Theme.PrivacyCentralApp" parent="Theme.MaterialComponents.DayNight.NoActionBar"> <!-- Primary brand color. --> - <item name="colorPrimary">@color/purple_500</item> + <item name="colorPrimary">#007fff</item> + <item name="colorAccent">#007fff</item> + <item name="colorSecondary">#007fff</item> + <item name="colorControlNormal">#007fff</item> <!-- Status bar color. --> <!-- Customize your theme here. --> </style> |