mirror of https://github.com/tasks/tasks
Merge remote-tracking branch 'origin/4.0' into 120220-st
commit
fc0989fcfa
@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:astrid="http://schemas.android.com/apk/res/com.timsu.astrid"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/tag_header"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:padding="10dip"
|
||||
android:paddingBottom="5dip" >
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal" >
|
||||
|
||||
<greendroid.widget.AsyncImageView
|
||||
android:id="@+id/tag_picture"
|
||||
android:layout_width="80dip"
|
||||
android:layout_height="80dip"
|
||||
astrid:defaultSrc="@android:drawable/ic_menu_gallery"
|
||||
android:paddingRight="10dip"
|
||||
android:scaleType="fitCenter" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tag_title"
|
||||
style="@style/TextAppearance.GEN_EditLabel"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/actfm_TVA_tag_description_label"
|
||||
android:textSize="25dip" />
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tag_description"
|
||||
style="@style/TextAppearance.TAd_ItemTitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dip"
|
||||
android:textColor="#666" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/activity_header"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<TextView
|
||||
style="@style/TextAppearance.TAd_ItemTitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="10dip"
|
||||
android:layout_marginTop="5dip"
|
||||
android:text="@string/TEA_tab_activity"
|
||||
android:textColor="#888" />
|
||||
|
||||
<View
|
||||
android:id="@+id/TEA_Separator"
|
||||
style="@style/TEA_Separator"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="1px" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
@ -0,0 +1,12 @@
|
||||
<!-- No Tasks label -->
|
||||
<TextView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/webServicesLoad"
|
||||
style="@style/TextAppearance.TLA_NoItems"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:clickable="true"
|
||||
android:drawableTop="@drawable/icon"
|
||||
android:gravity="center"
|
||||
android:text="@string/WSV_click_to_load"/>
|
||||
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- See the file "LICENSE" for the full license governing this code. -->
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- Activity Codes (do not translate) -->
|
||||
|
||||
<!-- Update string from activity codes %1$s - user, %2$s - target name, %3$s - message, %4$s - other_user-->
|
||||
|
||||
<string name="update_string_friends">%1$s is now friends with %2$s</string>
|
||||
<string name="update_string_request_friendship">%1$s wants to be friends with you</string>
|
||||
<string name="update_string_confirmed_friendship">%1$s has confirmed your friendship request</string>
|
||||
<string name="update_string_task_created">%1$s created this task</string>
|
||||
<string name="update_string_task_created_on_list">%1$s added %2$s to this list</string>
|
||||
<string name="update_string_task_completed">%1$s completed %2$s. Huzzah!</string>
|
||||
<string name="update_string_task_uncompleted">%1$s un-completed %2$s.</string>
|
||||
<string name="update_string_task_tagged">%1$s added %4$s to %2$s</string>
|
||||
<string name="update_string_task_tagged_list">%1$s added %4$s to this list</string>
|
||||
<string name="update_string_task_assigned">%1$s assigned %4$s to %2$s</string>
|
||||
<string name="update_string_default_comment">%1$s commented: %3$s</string>
|
||||
<string name="update_string_task_comment">%1$s Re: %2$s: %3$s</string>
|
||||
<string name="update_string_tag_comment">%1$s Re: %2$s: %3$s</string>
|
||||
</resources>
|
||||
|
||||
Loading…
Reference in New Issue