aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r--app/src/main/res/values/colors.xml3
-rw-r--r--app/src/main/res/values/strings.xml8
-rw-r--r--app/src/main/res/values/styles.xml6
3 files changed, 11 insertions, 6 deletions
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index 7520cd8..3d05b1c 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -2,7 +2,7 @@
2 2
3<!-- 3<!--
4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon 4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD 5 * Copyright (C) 2017-2023 Pacien TRAN-GIRARD
6 * 6 *
7 * This program is free software: you can redistribute it and/or modify 7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
@@ -25,6 +25,7 @@
25 <color name="textTitle">#FFFFFFFF</color> 25 <color name="textTitle">#FFFFFFFF</color>
26 <color name="textAccent">#007f68</color> 26 <color name="textAccent">#007f68</color>
27 <color name="textSecondary">#212121</color> 27 <color name="textSecondary">#212121</color>
28 <color name="textError">#F44336</color>
28 29
29 <color name="separator">#d9d9d9</color> 30 <color name="separator">#d9d9d9</color>
30 31
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index ff1c361..1dd18e8 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -2,7 +2,7 @@
2 2
3<!-- 3<!--
4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon 4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2017-2020 Pacien TRAN-GIRARD 5 * Copyright (C) 2017-2024 Pacien TRAN-GIRARD
6 * 6 *
7 * This program is free software: you can redistribute it and/or modify 7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
@@ -36,7 +36,7 @@
36 <!-- about modal --> 36 <!-- about modal -->
37 <string name="about_app_menu_about">About</string> 37 <string name="about_app_menu_about">About</string>
38 <string name="about_app_short_desc">Android binding and user interface for the tinc mesh VPN daemon.</string> 38 <string name="about_app_short_desc">Android binding and user interface for the tinc mesh VPN daemon.</string>
39 <string name="about_app_copyright">Copyright © 2017–2020 Pacien TRAN-GIRARD and contributors.</string> 39 <string name="about_app_copyright">Copyright © 2017–2024 Pacien TRAN-GIRARD and contributors.</string>
40 <string name="about_app_license">Software distributed under the terms of the GNU General Public License v3.</string> 40 <string name="about_app_license">Software distributed under the terms of the GNU General Public License v3.</string>
41 <string name="about_app_website_url" translatable="false">https://tincapp.pacien.org</string> 41 <string name="about_app_website_url" translatable="false">https://tincapp.pacien.org</string>
42 <string name="about_app_version_format">App version %1$s (%2$s build)</string> 42 <string name="about_app_version_format">App version %1$s (%2$s build)</string>
@@ -76,16 +76,16 @@
76 76
77 <!-- Start activity --> 77 <!-- Start activity -->
78 <string name="start_activity_menu_configure">Configure</string> 78 <string name="start_activity_menu_configure">Configure</string>
79 <string name="start_network_list_warning_text">Traffic from this device will be partially or fully routed to and through the selected network in accordance with your configuration. Never connect to a tinc network which you do not trust.</string>
79 <string name="start_network_list_title">Connect to network</string> 80 <string name="start_network_list_title">Connect to network</string>
80 <string name="start_network_list_empty_none_found">Could not find any network configuration.</string> 81 <string name="start_network_list_empty_none_found">Could not find any network configuration.</string>
81 <string name="start_network_list_empty_storage_not_available">Could not access storage directory.</string>
82 <string name="start_starting_vpn">Starting VPN…</string> 82 <string name="start_starting_vpn">Starting VPN…</string>
83 83
84 <!-- Configure activity --> 84 <!-- Configure activity -->
85 <string name="configure_tools_message_invalid_network_name">Invalid network name.</string> 85 <string name="configure_tools_message_invalid_network_name">Invalid network name.</string>
86 <string name="configure_tools_message_network_configuration_written">Network configuration written.</string> 86 <string name="configure_tools_message_network_configuration_written">Network configuration written.</string>
87 87
88 <string name="configure_activity_title_path_info">Path info</string> 88 <string name="configure_activity_title_internal_paths_info">Internal paths info</string>
89 <string name="configure_path_info_title_configuration_directory">Configuration directory</string> 89 <string name="configure_path_info_title_configuration_directory">Configuration directory</string>
90 <string name="configure_path_info_title_log_directory">Log directory</string> 90 <string name="configure_path_info_title_log_directory">Log directory</string>
91 <string name="configure_path_info_title_tinc_binary">tinc binary</string> 91 <string name="configure_path_info_title_tinc_binary">tinc binary</string>
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
index fc4a6c3..171a1da 100644
--- a/app/src/main/res/values/styles.xml
+++ b/app/src/main/res/values/styles.xml
@@ -2,7 +2,7 @@
2 2
3<!-- 3<!--
4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon 4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD 5 * Copyright (C) 2017-2023 Pacien TRAN-GIRARD
6 * 6 *
7 * This program is free software: you can redistribute it and/or modify 7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
@@ -44,6 +44,10 @@
44 <item name="android:paddingTop">@dimen/activity_vertical_margin</item> 44 <item name="android:paddingTop">@dimen/activity_vertical_margin</item>
45 </style> 45 </style>
46 46
47 <style name="AppTheme.SectionTitle.Error">
48 <item name="android:textColor">@color/textError</item>
49 </style>
50
47 <style name="AppTheme.List"> 51 <style name="AppTheme.List">
48 <item name="android:layout_width">match_parent</item> 52 <item name="android:layout_width">match_parent</item>
49 <item name="android:layout_height">wrap_content</item> 53 <item name="android:layout_height">wrap_content</item>