summaryrefslogtreecommitdiff
path: root/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'res/values')
-rw-r--r--res/values/colors.xml9
-rw-r--r--res/values/dimens.xml4
-rw-r--r--res/values/strings.xml16
-rw-r--r--res/values/styles.xml12
4 files changed, 40 insertions, 1 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml
index 4c6b0bc5..943b49f9 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -39,4 +39,13 @@
<color name="widget_subject_text_color_read">#777777</color>
<color name="widget_subject_text_color_unread">#555555</color>
+ <color name="translucent_white">#ccffffff</color>
+
+ <color name="banner_item_transparent">#00000000</color>
+ <color name="banner_item_activated">#670099cc</color>
+ <color name="banner_item_selected">#cc0099cc</color>
+ <color name="banner_item_pressed">#6733b5e5</color>
+
+ <color name="text_shadow_color_light">#33000000</color>
+ <color name="solid_white">#ffffffff</color>
</resources>
diff --git a/res/values/dimens.xml b/res/values/dimens.xml
index 6e6fd10b..b42a8578 100644
--- a/res/values/dimens.xml
+++ b/res/values/dimens.xml
@@ -17,4 +17,8 @@ All Rights Reserved. -->
<dimen name="widget_margin_left">0dip</dimen>
<dimen name="widget_margin_right">0dip</dimen>
<dimen name="widget_margin_bottom">0dip</dimen>
+
+ <!-- Bammer item spacing -->
+ <dimen name="banner_s_space">4dip</dimen>
+ <dimen name="banner_m_space">8dip</dimen>
</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index ab771cb0..0aa96ae7 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -317,6 +317,15 @@
<!-- Settings screen, section heading for storage-specific settings -->
<string name="pref_sms_storage_title">Storage</string>
+ <!-- Title for SMS Disabled -->
+ <string name="pref_title_sms_disabled">SMS Disabled</string>
+ <!-- Summary for SMS Disabled -->
+ <string name="pref_summary_sms_disabled">Touch to make Messaging your default SMS app</string>
+ <!-- Title for SMS Enabled -->
+ <string name="pref_title_sms_enabled">SMS Enabled</string>
+ <!-- Summary for SMS Enabled -->
+ <string name="pref_summary_sms_enabled">Touch to change your default SMS app</string>
+
<!-- Settings item description for entering SIM card message screen -->
<string name="pref_summary_manage_sim_messages">Manage messages stored on your SIM card</string>
<!-- Settings item description for boolean MMS delivery report setting -->
@@ -783,5 +792,10 @@
<!-- Strings used forh MMS push of messages in outbox -->
<string name="label_mms_send_outbox_msg">MMS Wakeup</string>
<string name="desc_mms_send_outbox_msg">Sends out all MMSs from the outbox to the network</string>
-</resources>
+ <!-- Banner in conversation list for making Messaging the default SMS app -->
+ <string name="banner_sms_promo_message">Would you like to use Messaging as your default SMS app?</string>
+ <string name="banner_sms_promo_decline">No, thanks</string>
+ <string name="banner_sms_promo_accept">Yes!</string>
+
+</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 128631cf..d3792d12 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -44,4 +44,16 @@
<item name="android:textColor">#999999</item>
</style>
+ <style name="BannerWindowText">
+ <item name="android:textColor">@color/solid_white</item>
+ <item name="android:shadowColor">@color/text_shadow_color_light</item>
+ <item name="android:shadowDx">1</item>
+ <item name="android:shadowDy">2</item>
+ <item name="android:shadowRadius">1</item>
+ <item name="android:textSize">14sp</item>
+ <item name="android:ellipsize">end</item>
+ <item name="android:singleLine">true</item>
+ <item name="android:textStyle">italic</item>
+ </style>
+
</resources>