externalize strings

This commit is contained in:
Andrew Dolgov 2012-09-09 17:44:28 +04:00
parent 59d11ac972
commit 9f807d0c34
3 changed files with 14 additions and 7 deletions

View File

@ -19,14 +19,14 @@
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="0.3" android:layout_weight="0.3"
android:text="Title:" android:text="@string/share_title_prompt"
android:textAppearance="?android:attr/textAppearanceMedium" /> android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText <EditText
android:id="@+id/title" android:id="@+id/title"
android:singleLine="true" android:singleLine="true"
android:layout_width="0dp" android:layout_width="0dp"
android:hint="Article Title" android:hint="@string/share_title_hint"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="0.7" > android:layout_weight="0.7" >
</EditText> </EditText>
@ -42,13 +42,13 @@
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="0.3" android:layout_weight="0.3"
android:text="URL:" android:text="@string/share_url_prompt"
android:textAppearance="?android:attr/textAppearanceMedium" /> android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText <EditText
android:id="@+id/url" android:id="@+id/url"
android:singleLine="true" android:singleLine="true"
android:hint="Article URL" android:hint="@string/share_url_hint"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="0.7" /> android:layout_weight="0.7" />
@ -57,7 +57,7 @@
<EditText <EditText
android:id="@+id/content" android:id="@+id/content"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:hint="Article Content" android:hint="@string/share_content_hint"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:inputType="textMultiLine" android:inputType="textMultiLine"
android:maxLines="3"> android:maxLines="3">
@ -68,7 +68,7 @@
android:id="@+id/share_button" android:id="@+id/share_button"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Share" /> android:text="@string/share_share_button" />
</TableLayout> </TableLayout>

View File

@ -129,4 +129,11 @@
<string name="notify_article_unpublished">Article unpublished</string> <string name="notify_article_unpublished">Article unpublished</string>
<string name="notify_article_note_set">Article note saved</string> <string name="notify_article_note_set">Article note saved</string>
<string name="api_too_low">This action requires newer version of Tiny Tiny RSS</string> <string name="api_too_low">This action requires newer version of Tiny Tiny RSS</string>
<string name="share_url_prompt">URL:</string>
<string name="share_url_hint">Article URL</string>
<string name="share_content_hint">Article Content</string>
<string name="share_title_prompt">Title:</string>
<string name="share_title_hint">Article Title</string>
<string name="share_share_button">Share</string>
<string name="share_article_posted">Article posted.</string>
</resources> </resources>

View File

@ -90,7 +90,7 @@ public class ShareActivity extends CommonActivity {
if (m_lastError != ApiError.NO_ERROR) { if (m_lastError != ApiError.NO_ERROR) {
toast(getErrorMessage()); toast(getErrorMessage());
} else { } else {
toast("Article posted."); toast(R.string.share_article_posted);
finish(); finish();
} }
} }