diff options
author | Fil <fil.bergamo@riseup.net> | 2017-03-06 22:37:59 +0100 |
---|---|---|
committer | Fil <fil.bergamo@riseup.net> | 2017-03-06 22:37:59 +0100 |
commit | 8b111e0799432fc5a6ead191e1029cc1446a8c91 (patch) | |
tree | 09fe0af45024e7a0b74af9c35472d685032e8684 /project/res/values | |
parent | 04b918b3a14a04fb851b39c8582bdf07e5f0fd2b (diff) | |
download | packages_apps_repwifi-8b111e0799432fc5a6ead191e1029cc1446a8c91.zip packages_apps_repwifi-8b111e0799432fc5a6ead191e1029cc1446a8c91.tar.gz packages_apps_repwifi-8b111e0799432fc5a6ead191e1029cc1446a8c91.tar.bz2 |
Commit initial project
Diffstat (limited to 'project/res/values')
-rw-r--r-- | project/res/values/colors.xml | 7 | ||||
-rw-r--r-- | project/res/values/strings.xml | 25 | ||||
-rw-r--r-- | project/res/values/strings_activity_input_password.xml | 17 | ||||
-rw-r--r-- | project/res/values/styles.xml | 21 |
4 files changed, 70 insertions, 0 deletions
diff --git a/project/res/values/colors.xml b/project/res/values/colors.xml new file mode 100644 index 0000000..22767c8 --- /dev/null +++ b/project/res/values/colors.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="ThemeLight">#FFA500</color> + <color name="ThemeDark">#5F021F</color> + <color name="black">#000000</color> + <color name="White">#FFFFFF</color> +</resources>
\ No newline at end of file diff --git a/project/res/values/strings.xml b/project/res/values/strings.xml new file mode 100644 index 0000000..00168b5 --- /dev/null +++ b/project/res/values/strings.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + + <string name="app_name">RepWifi App</string> + <string name="menu_credits">Info and Credits</string> + <string name="scan_networks">Scan for Networks</string> + <string name="title_activity_select_network">Select Network</string> + <string name="rescan">Repeat Scan</string> + <string name="button_text_next">Next ></string> + <string name="insert_nets_password">Insert a Password to connect to:</string> + <string name="show_password">Show password</string> + <string name="title_activity_connect">ConnectActivity</string> + <string name="hello_world">Hello world!</string> + <string name="title_activity_show_status">Connection status</string> + <string name="back_main">Back to main</string> + <string name="disconnect">Disconnect</string> + <string name="force_disconnect">Force Disconnection</string> + <string name="title_activity_long_task">LongTaskActivity</string> + <string name="title_activity_manage_networks">ManageNetworksActivity</string> + <string name="delete">Delete network info</string> + <string name="manage_networks">Manage Networks</string> + <string name="title_activity_credits">Credits</string> + <string name="credit_text">Copyright 2017 Filippo \"Fil\" Bergamo<br/><br/>This app is Free Software.<br/>It\'s licensed under the terms of <a href="https://www.gnu.org/licenses/gpl.txt">GPL v3</a><br/><br/>This app is developed as a contribution to <br/><a href="http://www.replicant.us">The Replicant Project</a><br/><br/><b><u><big>Thank GNUs:</big></u></b><br/><br/><b>Tibi \"tct\" Turbureanu</b><br/>for having done the initial job of porting libre WiFi to Replicant 4.2.<br/><br/><b>Wolfgang Wiedmeyer</b><br/>for porting libre WiFi to Replicant 6.0 and for helping with the scripts.<br/><br/>To report on bugs, request features, or any help request, please refer to:<br/><a href="http://redmine.replicant.us/projects/replicant/boards">Replicant\'s Forum</a><br/></string> + +</resources>
\ No newline at end of file diff --git a/project/res/values/strings_activity_input_password.xml b/project/res/values/strings_activity_input_password.xml new file mode 100644 index 0000000..4770a51 --- /dev/null +++ b/project/res/values/strings_activity_input_password.xml @@ -0,0 +1,17 @@ +<resources> + + <string name="title_activity_input_password">Insert passwrod for network</string> + + <!-- Strings related to login --> + <string name="prompt_email">Email</string> + <string name="prompt_password">Password</string> + <string name="action_sign_in_register"><b>Sign in</b> or register</string> + <string name="action_sign_in_short">Sign in</string> + <string name="menu_forgot_password">Recover lost password</string> + <string name="login_progress_signing_in">Signing in…</string> + <string name="error_invalid_email">This email address is invalid</string> + <string name="error_invalid_password">This password is too short</string> + <string name="error_incorrect_password">This password is incorrect</string> + <string name="error_field_required">This field is required</string> + +</resources>
\ No newline at end of file diff --git a/project/res/values/styles.xml b/project/res/values/styles.xml new file mode 100644 index 0000000..c414ecc --- /dev/null +++ b/project/res/values/styles.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + + <!-- + Base application theme, dependent on API level. This theme is replaced + by AppBaseTheme from res/values-vXX/styles.xml on newer devices. + --> + <style name="AppBaseTheme" parent="android:Theme.Light"> + <!-- + Theme customizations available in newer API levels can go in + res/values-vXX/styles.xml, while customizations related to + backward-compatibility can go here. + --> + </style> + + <!-- Application theme. --> + <style name="AppTheme" parent="AppBaseTheme"> + <!-- All customizations that are NOT specific to a particular API-level can go here. --> + </style> + +</resources>
\ No newline at end of file |