]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/values/strings.xml
Add controls for third-party cookies.
[PrivacyBrowserAndroid.git] / app / src / main / res / values / strings.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright 2015-2016 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
7
8   Privacy Browser is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <resources>
22     <!-- Activities. -->
23     <string name="privacy_browser">Privacy Browser</string>
24     <string name="privacy_browser_settings">Privacy Browser Settings</string>
25
26     <!-- MainWebViewActivity. -->
27     <string name="download_started">Download started</string>
28     <string name="privacy_mode">Privacy Mode</string>
29     <string name="javascript_enabled">JavaScript enabled</string>
30     <string name="javascript_disabled">JavaScript disabled</string>
31     <string name="dom_storage_enabled">DOM Storage enabled</string>
32     <string name="dom_storage_disabled">DOM Storage disabled</string>
33     <string name="first_party_cookies_enabled">First-Party Cookies enabled</string>
34     <string name="first_party_cookies_disabled">First-Party Cookies disabled</string>
35     <string name="third_party_cookies_enabled">Third-Party Cookies enabled</string>
36     <string name="third_party_cookies_disabled">Third-Party Cookies disabled</string>
37     <string name="cookies_deleted">Cookies deleted</string>
38     <string name="dom_storage_deleted">DOM Storage deleted</string>
39     <string name="open_navigation">Open Navigation Drawer</string>
40     <string name="close_navigation">Close Navigation Drawer</string>
41
42     <!-- Custom App Bar. -->
43     <string name="favorite_icon">Favorite Icon</string>
44
45     <!-- Navigation Drawer. -->
46     <string name="navigation_drawer">Navigation Drawer</string>
47     <string name="navigation">Navigation</string>
48     <string name="home">Home</string>
49     <string name="back">Back</string>
50     <string name="forward">Forward</string>
51     <string name="downloads">Downloads</string>
52     <string name="settings">Settings</string>
53     <string name="about">About</string>
54     <string name="clear_and_exit">Clear and Exit</string>
55
56     <!-- Options Menu. -->
57     <string name="javascript">JavaScript</string>
58     <string name="first_party_cookies">First-Party Cookies</string>
59     <string name="third_party_cookies">Third-Party Cookies</string>
60     <string name="dom_storage">DOM Storage</string>
61     <string name="clear_cookies">Clear Cookies</string>
62     <string name="clear_dom_storage">Clear DOM Storage</string>
63     <string name="share">Share</string>
64     <string name="add_to_home_screen">Add to Home Screen</string>
65
66     <!-- Create Home Screen Shortcut Alert Dialog. -->
67     <string name="shortcut_name">Shortcut name</string>
68     <string name="cancel">Cancel</string>
69     <string name="create">Create</string>
70
71     <!-- Preferences. -->
72     <string name="privacy_settings">Privacy Settings</string>
73     <string name="javascript_preference">Enable JavaScript by default</string>
74     <string name="javascript_preference_summary">JavaScript allows websites to run programs (scripts) on your device.</string>
75     <string name="first_party_cookies_preference">Enable First-Party Cookies by default</string>
76     <string name="first_party_cookies_preference_summary">Cookies allow websites to store information on your device.
77         First-party cookies come from the server listed in the address bar.
78         Devices with versions of Android older than Lollipop (version 5.0) will also enable third-party cookies with this setting.</string>
79     <string name="third_party_cookies_preference">Enable Third-Party Cookies by default</string>
80     <string name="third_party_cookies_summary">Third-party cookies allow parts of websites that aren\'t the main website, like advertisements, to store information on your device.
81         This setting requires Android Lollipop (version 5.0) or higher.  It has no effect if first-party cookies are disabled.</string>
82     <string name="dom_storage_preference">Enable DOM Storage by default</string>
83     <string name="dom_storage_preference_summary">Document Object Management storage, also called web storage, is an enhanced form of cookies
84         that allows websites to store larger and more complex types of information, like pictures, on your device.</string>
85     <string name="general_settings">General Settings</string>
86     <string name="homepage_preference">Homepage</string>
87     <string name="homepage_preference_summary">Set the homepage.</string>
88
89     <!-- About Dialog. -->
90     <string name="about_privacy_browser">About Privacy Browser</string>
91     <string name="dismiss">Dismiss</string>
92 </resources>