diff options
author | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2022-03-21 17:13:10 +0000 |
---|---|---|
committer | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2022-03-21 17:13:10 +0000 |
commit | 43e303886715d6115273cfba014a54805d3a1389 (patch) | |
tree | 799c478bff90fcada978801801b198873aad9338 /app/src/main/res/values | |
parent | d534cee490986771896f4fd2ca07742007ab6751 (diff) |
Add PVC Widget #5076
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r-- | app/src/main/res/values/colors.xml | 14 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 18 |
2 files changed, 32 insertions, 0 deletions
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index d867b74..2bf09cc 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -26,4 +26,18 @@ <color name="e_blue2">@lineageos.platform:color/color_default_blue1</color> <color name="dark_color">#263238</color> <color name="blue_unselected">#AADCFE</color> + <color name="light_blue_50">#FFE1F5FE</color> + <color name="light_blue_200">#FF81D4FA</color> + <color name="light_blue_600">#FF039BE5</color> + <color name="light_blue_900">#FF01579B</color> + + + <!-- Widget --> + <color name="on_surface_high_emphasis">#DEFFFFFF</color> + <color name="on_primary_medium_emphasis">#BDFFFFFF</color> + <color name="on_primary_high_emphasis">#FFFFFF</color> + <color name="on_primary_disabled">#61FFFFFF</color> + + <color name="widget_background">#33000000</color> + </resources>
\ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 30f017c..a0df574 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -113,4 +113,22 @@ <string name="following_trackers_in_use">Following trackers are in use</string> <string name="enable_disable_tracker_info">Enable or disable this tracker for the following apps</string> <string name="tracker">Tracker</string> + <string name="appwidget_text">EXAMPLE</string> + <string name="add_widget">Add widget</string> + <string name="app_widget_description">This is an app widget description</string> + + <!-- Widget --> + <string name="widget_title">Extended privacy</string> + <string name="widget_state_title_on">Your online privacy is protected</string> + <string name="widget_state_title_off">Your online privacy is unprotected</string> + <string name="widget_state_trackers_label">@string/dashboard_state_trackers_label</string> + <string name="widget_state_trackers_off">@string/dashboard_state_trackers_off</string> + <string name="widget_state_trackers_on">@string/dashboard_state_trackers_on</string> + <string name="widget_state_geolocation_label">@string/dashboard_state_geolocation_label</string> + <string name="widget_state_geolocation_off">@string/dashboard_state_geolocation_off</string> + <string name="widget_state_geolocation_on">@string/dashboard_state_geolocation_on</string> + <string name="widget_state_ipaddress_label">@string/dashboard_state_ipaddress_label</string> + <string name="widget_state_ipaddress_off">@string/dashboard_state_ipaddress_off</string> + <string name="widget_state_ipaddress_on">@string/dashboard_state_ipaddress_on</string> + <string name="widget_graph_trackers_legend">@string/dashboard_graph_trackers_legend</string> </resources>
\ No newline at end of file |