Initial Project Import

This commit is contained in:
Moxie Marlinspike
2011-12-20 10:20:44 -08:00
commit bbea3fe1b1
397 changed files with 48065 additions and 0 deletions

42
res/values/arrays.xml Normal file
View File

@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="minutes_hours">
<item>minutes</item>
<item>hours</item>
</string-array>
<string-array name="pref_led_color_entries">
<item>Green</item>
<item>Red</item>
<item>Blue</item>
<item>Orange</item>
<item>Cyan</item>
<item>Magenta</item>
</string-array>
<string-array name="pref_led_color_values" translatable="false">
<item>green</item>
<item>red</item>
<item>blue</item>
<item>yellow</item>
<item>cyan</item>
<item>magenta</item>
</string-array>
<string-array name="pref_led_blink_pattern_entries">
<item>Fast</item>
<item>Normal</item>
<item>Slow</item>
<item>Custom</item>
</string-array>
<string-array name="pref_led_blink_pattern_values"
translatable="false">
<item>300,300</item>
<item>500,2000</item>
<item>3000,3000</item>
<item>custom</item>
</string-array>
</resources>

28
res/values/colors.xml Normal file
View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Activity background color -->
<drawable name="class_zero_background">#7f040000</drawable>
<!-- Widget background -->
<drawable name="light_blue_background">#ffecfbff</drawable>
<drawable name="white_background">#ffffffff</drawable>
<drawable name="alert_background">#f0777700</drawable>
<!-- text color -->
<drawable name="text_color">#ffffffff</drawable>
<drawable name="text_color_red">#ffff0000</drawable>
<drawable name="text_color_black">#ff000000</drawable>
<drawable name="text_color_offwhite">#55ffffff</drawable>
<!-- Chat "sent time" text background -->
<color name="timestamp_color">#bf000000</color>
<!-- For dark theme -->
<drawable name="lightgrey_background">#ff2f2f2f</drawable>
<drawable name="softgrey_background">#ff181818</drawable>
<!-- the background color used for unread conversation -->
<color name="light_list_bgcolor">#ffeeeeee</color>
</resources>

6
res/values/strings.xml Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">TextSecure</string>
<string name="yes">Yes</string>
<string name="no">No</string>
</resources>

14
res/values/styles.xml Normal file
View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="transparent_progress">
<item name="android:windowFrame">@null</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowTitleStyle">@null</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:background">@android:color/transparent</item>
</style>
</resources>