summaryrefslogtreecommitdiff
path: root/res/layout/share.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-09 17:44:28 +0400
committerAndrew Dolgov <[email protected]>2012-09-09 17:44:28 +0400
commit9f807d0c3463352f29b3cdd79db1f72549e7ba55 (patch)
treee1555bf13ef62eb0f14821e2b4e58ea8c144d4fd /res/layout/share.xml
parent59d11ac9723d6ac7d7c9042cee72cccf3d68f9e6 (diff)
externalize strings
Diffstat (limited to 'res/layout/share.xml')
-rw-r--r--res/layout/share.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/res/layout/share.xml b/res/layout/share.xml
index 7ccdfb2a..eba570cf 100644
--- a/res/layout/share.xml
+++ b/res/layout/share.xml
@@ -19,14 +19,14 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.3"
- android:text="Title:"
+ android:text="@string/share_title_prompt"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/title"
android:singleLine="true"
android:layout_width="0dp"
- android:hint="Article Title"
+ android:hint="@string/share_title_hint"
android:layout_height="wrap_content"
android:layout_weight="0.7" >
</EditText>
@@ -42,13 +42,13 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.3"
- android:text="URL:"
+ android:text="@string/share_url_prompt"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/url"
android:singleLine="true"
- android:hint="Article URL"
+ android:hint="@string/share_url_hint"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.7" />
@@ -57,7 +57,7 @@
<EditText
android:id="@+id/content"
android:layout_width="wrap_content"
- android:hint="Article Content"
+ android:hint="@string/share_content_hint"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:maxLines="3">
@@ -68,7 +68,7 @@
android:id="@+id/share_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="Share" />
+ android:text="@string/share_share_button" />
</TableLayout>