]> gitweb.stoutner.com Git - PrivacyCell.git/blob - app/src/main/res/values/strings.xml
Release 1.11.
[PrivacyCell.git] / app / src / main / res / values / strings.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   SPDX-License-Identifier: GPL-3.0-or-later
5   SPDX-FileCopyrightText: 2021-2022, 2025 Soren Stoutner <soren@stoutner.com>
6
7   This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell/>.
8
9   This program is free software: you can redistribute it and/or modify it under
10   the terms of the GNU General Public License as published by the Free Software
11   Foundation, either version 3 of the License, or (at your option) any later
12   version.
13
14   This program is distributed in the hope that it will be useful, but WITHOUT
15   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16   FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17   details.
18
19   You should have received a copy of the GNU General Public License along with
20   this program.  If not, see <https://www.gnu.org/licenses/>. -->
21
22 <!-- `tools:ignore="MissingTranslation"` allows release APKs to be built if translation strings are missing.  The missing strings will fall back to English. -->
23 <resources
24     xmlns:tools="http://schemas.android.com/tools"
25     tools:ignore="MissingTranslation" >
26
27     <!-- General. -->
28     <string name="privacy_cell">Privacy Cell</string>
29     <string name="cell">Cell</string>
30     <string name="asset_directory">en</string>  <!-- The asset directory string should be translated to match the language code for the directory that contains the HTML files. -->
31     <string name="open_navigation_drawer">Open navigation drawer</string>
32     <string name="close_navigation_drawer">Close navigation drawer</string>
33     <string name="not_connected">Your device does not appear to currently be connected to a cell phone network.</string>
34
35     <!-- Text views.  The `\n\n` code inserts a line break and should be preserved in translations.
36         Android removes double spaces, but extra spaces can be manually specified with the Unicode `\u0020` formatting.
37         The `%1$s` code inserts variables into the displayed text and should be preserved in translation. -->
38     <string name="secure_protocols">Your device is connected to a network using secure protocols.\n\nIt is secure from stingray IMSI man-in-the-middle attacks.</string>
39     <string name="insecure_protocols">Your device is connected to a network using insecure protocols.\n\nIt is not secure from stingray IMSI man-in-the-middle attacks.</string>
40     <string name="antiquated_protocols">Your device is connected to a network using antiquated protocols.\n\nIt is exposed to numerous security vulnerabilities.</string>
41     <string name="voice_network">Voice network: \u0020 %1$s</string>
42     <string name="data_network">Data network: \u0020 %1$s</string>
43     <string name="additional_network_info">Additional network info: \u0020 %1$s</string>
44
45     <!-- Navigation menu. -->
46     <string name="settings">Settings</string>
47     <string name="protocols">Protocols</string>
48     <string name="logcat">Logcat</string>
49     <string name="permissions">Permissions</string>
50     <string name="privacy_policy">Privacy Policy</string>
51     <string name="changelog">Changelog</string>
52     <string name="licenses">Licenses</string>
53     <string name="contributors">Contributors</string>
54     <string name="news">News</string>
55     <string name="roadmap">Roadmap</string>
56     <string name="bug_tracker">Bug Tracker</string>
57     <string name="forum">Forum</string>
58     <string name="donations">Donations</string>
59
60     <!-- Protocol families. -->
61     <string name="protocol_2g">2G</string>
62     <string name="protocol_3g">3G</string>
63     <string name="protocol_4g">4G</string>
64     <string name="protocol_5g">5G</string>
65     <string name="protocol_other">Other</string>
66
67     <!-- Network types. -->
68     <string name="unknown">Unknown</string>
69     <string name="gprs">GPRS – 2.5G/3G</string>
70     <string name="gprs_detail">General Packet Radio Service</string>
71     <string name="edge">EDGE – 2.5G/3G</string>
72     <string name="edge_detail">Enhanced Data rates for GSM Evolution</string>
73     <string name="umts">UMTS – 3G</string>
74     <string name="umts_detail">Universal Mobile Telecommunications System</string>
75     <string name="cdma">CDMA – 2G</string>
76     <string name="cdma_detail">Code-Division Multiple Access</string>
77     <string name="evdo_0">EVDO 0 – 3.5G</string>
78     <string name="evdo_0_detail">Evolution-Data Optimized release 0</string>
79     <string name="evdo_a">EVDO A – 3.5G</string>
80     <string name="evdo_a_detail">Evolution-Data Optimized revision A</string>
81     <string name="rtt">1xRTT – 3G</string>
82     <string name="rtt_detail">Single-Carrier Radio Transmission Technology</string>
83     <string name="hsdpa">HSDPA – 3.5G</string>
84     <string name="hsdpa_detail">High Speed Downlink Packet Access</string>
85     <string name="hsupa">HSUPA – 3.5G</string>
86     <string name="hsupa_detail">High-Speed Uplink Packet Access</string>
87     <string name="hspa">HSPA – 3.5G</string>
88     <string name="hspa_detail">High Speed Packet Access</string>
89     <string name="iden">IDEN – 2G</string>
90     <string name="iden_detail">Integrated Digital Enhanced Network</string>
91     <string name="evdo_b">EVDO B – 3.5G</string>
92     <string name="evdo_b_detail">Evolution-Data Optimized revision B</string>
93     <string name="lte">LTE – 4G</string>
94     <string name="lte_detail">Long-Term Evolution</string>
95     <string name="ehrpd">EHRPD – 3.5G/4G</string>
96     <string name="ehrpd_detail">Enhanced High-Rate Packet Data</string>
97     <string name="hspap">HSPAP – 3.5G</string>
98     <string name="hspap_detail">High Speed Packet Access Plus</string>
99     <string name="gsm">GSM – 2G</string>
100     <string name="gsm_detail">Global System for Mobile Communications</string>
101     <string name="td_scdma">TD-SCDMA – 3G</string>
102     <string name="td_scdma_detail">Time Division-Synchronous Code Division Multiple Access</string>
103     <string name="iwlan">IWLAN – Wi-Fi</string>
104     <string name="iwlan_detail">Interworking Wireless LAN</string>
105     <string name="nr">NR – 5G</string>
106     <string name="nr_detail">New Radio</string>
107     <string name="error">Error</string>
108
109     <!-- Override network types. -->
110     <string name="none">None</string>
111     <string name="lte_ca">LTE CA – 4G</string>
112     <string name="lte_ca_detail">Long-Term Evolution Carrier Aggregation</string>
113     <string name="lte_advanced_pro">LTE Advanced Pro – 4.5G</string>
114     <string name="lte_advanced_pro_detail">Long-Term Evolution Advanced Pro</string>
115     <string name="nr_nsa">NR NSA – 4G/5G</string>
116     <string name="nr_nsa_detail">New Radio Non-Standalone</string>
117     <string name="nr_nsa_mmwave">NR NSA mmWave – 4G/5G</string>
118     <string name="nr_nsa_mmwave_detail">New Radio Non-Standalone millimeter Wave</string>
119     <string name="nr_advanced">NR Advanced – 5G</string>
120     <string name="nr_advanced_detail">New Radio Advanced</string>
121
122     <!-- Permission dialogs. -->
123     <string name="phone_permission">Phone Permission</string>
124     <string name="phone_permission_text">Privacy Cell needs the Read Phone State and Read Phone Numbers permissions to determine the safety level of your cell connection and display the phone number of the
125         active SIM card.</string>
126     <string name="notification_permission">Notification Permission</string>
127     <string name="notification_permission_text">Privacy Cell needs the Post Notification permission to display realtime monitoring notifications.</string>
128     <string name="ok">OK</string>
129
130     <!-- Dialogs. -->
131     <string name="stingrays">Stingrays</string>
132     <string name="antiquated_network_title">Antiquated Network</string>
133     <string name="close">Close</string>
134
135     <!-- Settings. -->
136     <string name="monitoring">Monitoring</string>
137     <string name="realtime_monitoring">Realtime monitoring</string>
138     <string name="realtime_monitoring_summary">Place an icon in the status bar that monitors the cell network.</string>
139         <string name="notification_permission_denied">The Post Notification permission is currently denied, so notifications will not be displayed.</string>
140     <string name="secure_network_notification">Secure network notification</string>
141     <string name="insecure_network_notification">Insecure network notification</string>
142     <string name="antiquated_network_notification">Antiquated network notification</string>
143     <string name="consider_3g_antiquated">Consider 3G antiquated</string>
144     <string name="consider_3g_antiquated_summary">Consider the 3G protocols to be antiquated. At a future point this will become the default. Changing this setting will restart Privacy Cell.</string>
145     <string name="interface_title">Interface</string>
146     <string name="bottom_app_bar">Bottom app bar</string>
147     <string name="bottom_app_bar_summary">Move the app bar to the bottom of the screen. Changing this setting will restart Privacy Cell.</string>
148
149     <!-- Logcat.  Android removes double spaces, but extra spaces can be manually specified with the Unicode `\u0020` formatting.
150         The `%1$s` code inserts variables into the displayed text and should be preserved in translation.-->
151     <string name="search">Search</string>
152     <string name="zero_of_zero" translatable="false">0/0</string>
153     <string name="previous">Previous</string>
154     <string name="next">Next</string>
155     <string name="copy_string">Copy</string>
156     <string name="save">Save</string>
157     <string name="clear">Clear</string>
158     <string name="logcat_copied">Logcat copied.</string>
159     <string name="privacy_cell_logcat_txt">Privacy Cell Logcat.txt</string>
160     <string name="logcat_saved">%1$s saved.</string>
161     <string name="error_saving_logcat">Error saving logcat: \u0020 %1$s</string>
162
163     <!-- Notifications. -->
164     <string name="secure">Secure</string>
165     <string name="insecure">Insecure</string>
166     <string name="antiquated">Antiquated</string>
167     <string name="secure_network">You are connected to a secure network.</string>
168     <string name="insecure_network">You are connected to an insecure network.</string>
169     <string name="antiquated_network">You are connected to an antiquated network.</string>
170     <string name="unknown_network">The security of the network is unknown.</string>
171     <string name="secure_network_channel">Secure network</string>
172     <string name="insecure_network_channel">Insecure network</string>
173     <string name="antiquated_network_channel">Antiquated network</string>
174     <string name="unknown_network_channel">Unknown network</string>
175
176     <!-- Periodic Work Names. -->
177     <string name="register_listener_work_request" translatable="false">registerListener</string>
178
179     <!-- Preference keys. -->
180     <string name="monitoring_key" translatable="false">monitoring</string>
181     <string name="realtime_monitoring_key" translatable="false">realtime_monitoring</string>
182     <string name="secure_network_notification_key" translatable="false">secure_network_notification</string>
183     <string name="insecure_network_notification_key" translatable="false">insecure_network_notification</string>
184     <string name="antiquated_network_notification_key" translatable="false">antiquated_network_notification</string>
185     <string name="consider_3g_antiquated_key" translatable="false">consider_3g_antiquated</string>
186     <string name="interface_key" translatable="false">interface</string>
187     <string name="bottom_app_bar_key" translatable="false">bottom_app_bar</string>
188 </resources>