]> gitweb.stoutner.com Git - PrivacyCell.git/blobdiff - app/src/main/res/values/strings.xml
Finish the navigation menu entries with WebView dialogs.
[PrivacyCell.git] / app / src / main / res / values / strings.xml
index 66cb8e526d90a82d43be1c8e88bd07e87b03e573..59daf5692c67e250842a093329ad3c97f50ff66a 100644 (file)
   You should have received a copy of the GNU General Public License
   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
 
-<resources>
+<!-- `tools:ignore="MissingTranslation"` allows release APKs to be built if translation strings are missing.  The missing strings will fall back to English. -->
+<resources
+    xmlns:tools="http://schemas.android.com/tools"
+    tools:ignore="MissingTranslation" >
+
     <!-- General. -->
     <string name="privacy_cell">Privacy Cell</string>
     <string name="cell">Cell</string>
+    <!-- The asset directory string should be translated to match the language code for the directory that contains the HTML files. -->
+    <string name="asset_directory">en</string>
+    <string name="open_navigation_drawer">Open navigation drawer</string>
+    <string name="close_navigation_drawer">Close navigation drawer</string>
 
-    <!-- Text views.  Android removes double spaces, but extra spaces can be manually specified with the Unicode `\u0020` formatting. -->
+    <!-- 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="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="permissions">Permissions</string>
+    <string name="privacy_policy">Privacy Policy</string>
+    <string name="changelog">Changelog</string>
+    <string name="licenses">Licenses</string>
+    <string name="contributors">Contributors</string>
+    <string name="news">News</string>
+    <string name="roadmap">Roadmap</string>
+    <string name="bug_tracker">Bug Tracker</string>
+    <string name="forum">Forum</string>
+    <string name="donations">Donations</string>
+
     <!-- Network Types. -->
     <string name="unknown">Unknown</string>
     <string name="gprs">GPRS</string>
     <string name="lte_nr_nsa_mmwave">LTE NR NSA mmWave</string>
     <string name="lte_nr_nsa_mmwave_detail">Long Term Evolution New Radio Non-Standalone millimeter Wave</string>
 
-    <!-- Stingray. -->
-    <!-- The `\n\n` code inserts a line break and should be maintained in translations. -->
-    <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>
-
     <!-- Phone permission dialog. -->
     <string name="phone_permission">Phone Permission</string>
     <string name="phone_permission_text">Privacy Cell needs the Read Phone State permission to determine the safety level of your cell connection.</string>
     <string name="ok">OK</string>
+
+    <!-- Dialogs. -->
+    <string name="close">Close</string>
 </resources>
\ No newline at end of file