]> gitweb.stoutner.com Git - PrivacyCell.git/blobdiff - app/src/main/res/values/strings.xml
Release 1.7.
[PrivacyCell.git] / app / src / main / res / values / strings.xml
index 9823dd2e1c7a12d2bcfa926d6eb23ac00b51adec..648a078fa683251c37e619c7206fc9be2ff4f69d 100644 (file)
@@ -1,5 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+
 <!--
-  Copyright © 2021 Soren Stoutner <soren@stoutner.com>.
+  Copyright © 2021-2022 Soren Stoutner <soren@stoutner.com>.
 
   This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell>.
 
     <!-- Text views.  The `\n\n` code inserts a line break and should be preserved in translations.
         Android removes double spaces, but extra spaces can be manually specified with the Unicode `\u0020` formatting.
         The `%1$s` code inserts variables into the displayed text and should be preserved in translation. -->
-    <string name="secure_from_stingray">Your device is connected to a standalone 5G network.\n\nIt is secure from stingray IMSI man-in-the-middle attacks.</string>
-    <string name="not_secure_from_stingray">Your device is not connected to a standalone 5G network.\n\nIt is not secure from stingray IMSI man-in-the-middle attacks.</string>
+    <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>
+    <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>
+    <string name="antiquated_protocols">Your device is connected to a network using antiquated protocols.\n\nIt is exposed to numerous security vulnerabilities.</string>
     <string name="voice_network">Voice network: \u0020 %1$s</string>
     <string name="data_network">Data network: \u0020 %1$s</string>
     <string name="additional_network_info">Additional network info: \u0020 %1$s</string>
 
     <!-- Navigation menu. -->
+    <string name="settings">Settings</string>
+    <string name="protocols">Protocols</string>
+    <string name="logcat">Logcat</string>
     <string name="permissions">Permissions</string>
     <string name="privacy_policy">Privacy Policy</string>
     <string name="changelog">Changelog</string>
     <string name="forum">Forum</string>
     <string name="donations">Donations</string>
 
-    <!-- Network Types. -->
+    <!-- Protocol families. -->
+    <string name="protocol_2g">2G</string>
+    <string name="protocol_3g">3G</string>
+    <string name="protocol_4g">4G</string>
+    <string name="protocol_5g">5G</string>
+    <string name="protocol_other">Other</string>
+
+    <!-- Network types. -->
     <string name="unknown">Unknown</string>
     <string name="gprs">GPRS – 2.5G/3G</string>
     <string name="gprs_detail">General Packet Radio Service</string>
     <string name="nr_detail">New Radio</string>
     <string name="error">Error</string>
 
-    <!-- Override Network Types. -->
+    <!-- Override network types. -->
     <string name="none">None</string>
     <string name="lte_ca">LTE CA – 4G</string>
     <string name="lte_ca_detail">Long-Term Evolution Carrier Aggregation</string>
     <string name="nr_nsa_detail">New Radio Non-Standalone</string>
     <string name="nr_nsa_mmwave">NR NSA mmWave – 4G/5G</string>
     <string name="nr_nsa_mmwave_detail">New Radio Non-Standalone millimeter Wave</string>
+    <string name="nr_advanced">NR Advanced – 5G</string>
+    <string name="nr_advanced_detail">New Radio Advanced</string>
 
     <!-- Phone permission dialog. -->
     <string name="phone_permission">Phone Permission</string>
 
     <!-- Dialogs. -->
     <string name="stingrays">Stingrays</string>
+    <string name="antiquated_network_title">Antiquated Network</string>
     <string name="close">Close</string>
+
+    <!-- Settings. -->
+    <string name="monitoring">Monitoring</string>
+    <string name="realtime_monitoring">Realtime monitoring</string>
+    <string name="realtime_monitoring_summary">Place an icon in the status bar that monitors the cell network.</string>
+    <string name="secure_network_notification">Secure network notification</string>
+    <string name="insecure_network_notification">Insecure network notification</string>
+    <string name="antiquated_network_notification">Antiquated network notification</string>
+    <string name="consider_3g_antiquated">Consider 3G antiquated</string>
+    <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>
+    <string name="interface_title">Interface</string>
+    <string name="bottom_app_bar">Bottom app bar</string>
+    <string name="bottom_app_bar_summary">Move the app bar to the bottom of the screen. Changing this setting will restart Privacy Cell.</string>
+
+    <!-- Logcat.  Android removes double spaces, but extra spaces can be manually specified with the Unicode `\u0020` formatting.
+        The `%1$s` code inserts variables into the displayed text and should be preserved in translation.-->
+    <string name="copy_string">Copy</string>
+    <string name="save">Save</string>
+    <string name="clear">Clear</string>
+    <string name="logcat_copied">Logcat copied.</string>
+    <string name="privacy_cell_logcat_txt">Privacy Cell Logcat.txt</string>
+    <string name="logcat_saved">%1$s saved.</string>
+    <string name="error_saving_logcat">Error saving logcat: \u0020 %1$s</string>
+
+    <!-- Notifications. -->
+    <string name="secure">Secure</string>
+    <string name="insecure">Insecure</string>
+    <string name="antiquated">Antiquated</string>
+    <string name="secure_network">You are connected to a secure network.</string>
+    <string name="insecure_network">You are connected to an insecure network.</string>
+    <string name="antiquated_network">You are connected to an antiquated network.</string>
+    <string name="unknown_network">The security of the network is unknown.</string>
+    <string name="secure_network_channel">Secure network</string>
+    <string name="insecure_network_channel">Insecure network</string>
+    <string name="antiquated_network_channel">Antiquated network</string>
+    <string name="unknown_network_channel">Unknown network</string>
+
+    <!-- Periodic Work Names. -->
+    <string name="register_listener_work_request" translatable="false">registerListener</string>
+
+    <!-- Preference keys. -->
+    <string name="monitoring_key" translatable="false">monitoring</string>
+    <string name="realtime_monitoring_key" translatable="false">realtime_monitoring</string>
+    <string name="secure_network_notification_key" translatable="false">secure_network_notification</string>
+    <string name="insecure_network_notification_key" translatable="false">insecure_network_notification</string>
+    <string name="antiquated_network_notification_key" translatable="false">antiquated_network_notification</string>
+    <string name="consider_3g_antiquated_key" translatable="false">consider_3g_antiquated</string>
+    <string name="interface_key" translatable="false">interface</string>
+    <string name="bottom_app_bar_key" translatable="false">bottom_app_bar</string>
 </resources>
\ No newline at end of file