summaryrefslogtreecommitdiffstats
path: root/mobile/android/fenix/app/src/main/res/values/arrays.xml
blob: 5839f16e7817e9ee7d3575a573b9c3fddde8a139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<resources>
    <string name="total_protection">total-protection</string>
    <string name="social">social</string>
    <string name="unvisited">unvisited</string>
    <string name="third_party">third-party</string>
    <string name="all">all</string>
    <string name="private_string">private</string>

    <string-array name="cookies_options_entries">
        <item>@string/preference_enhanced_tracking_protection_custom_cookies_5</item>
        <item>@string/preference_enhanced_tracking_protection_custom_cookies_1</item>
        <item>@string/preference_enhanced_tracking_protection_custom_cookies_2</item>
        <item>@string/preference_enhanced_tracking_protection_custom_cookies_3</item>
        <item>@string/preference_enhanced_tracking_protection_custom_cookies_4</item>
    </string-array>

    <string-array name="cookies_options_entry_values">
        <item>@string/total_protection</item>
        <item>@string/social</item>
        <item>@string/unvisited</item>
        <item>@string/third_party</item>
        <item>@string/all</item>
    </string-array>

    <string-array name="tracking_content_options_entries">
        <item>@string/preference_enhanced_tracking_protection_custom_tracking_content_1</item>
        <item>@string/preference_enhanced_tracking_protection_custom_tracking_content_2</item>
    </string-array>

    <string-array name="tracking_content_options_entry_values">
        <item>@string/all</item>
        <item>@string/private_string</item>
    </string-array>

    <string name="resource_scheme">"resource://"</string>
    <string name="chrome_scheme">"chrome://</string>
    <string name="about_scheme">"about:"</string>
    <string-array name="mozac_url_schemes_blocklist" >
        <item>@string/resource_scheme</item>
        <item>@string/chrome_scheme</item>
        <item>@string/about_scheme</item>
    </string-array>

    <array name="collection_icon_colors">
        <item>@color/fx_mobile_icon_color_accent_violet</item>
        <item>@color/fx_mobile_icon_color_accent_blue</item>
        <item>@color/fx_mobile_icon_color_accent_pink</item>
        <item>@color/fx_mobile_icon_color_accent_green</item>
        <item>@color/fx_mobile_icon_color_accent_yellow</item>
    </array>
</resources>