mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-26 09:58:20 +01:00
Add credits to About; use style to remove duplicates; credit Sarah.
This commit is contained in:
parent
d0a632d3ff
commit
9eb424201d
3 changed files with 21 additions and 23 deletions
|
@ -6,38 +6,24 @@
|
|||
>
|
||||
|
||||
<TextView android:id="@+id/version_string"
|
||||
android:layout_marginLeft="5sp"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="#FFFFFFFF"
|
||||
style="@style/about_items"
|
||||
/>
|
||||
|
||||
<TextView android:layout_marginLeft="5sp"
|
||||
android:layout_marginTop="5sp"
|
||||
android:layout_marginBottom="5sp"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
<TextView style="@style/about_items"
|
||||
android:text="@string/about_copyright"
|
||||
android:textColor="#FFFFFFFF"
|
||||
/>
|
||||
|
||||
<TextView android:layout_marginLeft="5sp"
|
||||
android:layout_marginTop="5sp"
|
||||
android:layout_marginBottom="5sp"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/about_web"
|
||||
android:textColor="#FFFFFFFF"
|
||||
<TextView style="@style/about_items"
|
||||
android:text="@string/about_web"
|
||||
android:autoLink="all"
|
||||
/>
|
||||
|
||||
<TextView android:id="@+id/about_xlator"
|
||||
android:layout_marginLeft="5sp"
|
||||
android:layout_marginTop="5sp"
|
||||
android:layout_marginBottom="5sp"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="#FFFFFFFF"
|
||||
style="@style/about_items"
|
||||
/>
|
||||
|
||||
<TextView style="@style/about_items"
|
||||
android:text="@string/about_credits"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
|
|
@ -340,6 +340,9 @@
|
|||
<!-- fill this in other than in English -->
|
||||
<string name="xlator"></string>
|
||||
|
||||
<string name="about_credits">Toolbar icons by Sarah Chu; other
|
||||
credits pending permission.</string>
|
||||
|
||||
<string name="downloading_dictf">Downloading Crosswords
|
||||
dictionary %s...</string>
|
||||
<string name="no_dict_title">Dictionary not found</string>
|
||||
|
|
|
@ -43,5 +43,14 @@
|
|||
<item name="android:layout_weight">1</item>
|
||||
</style>
|
||||
|
||||
<style name="about_items">
|
||||
<item name="android:layout_marginLeft">5sp</item>
|
||||
<item name="android:layout_marginTop">5sp</item>
|
||||
<item name="android:layout_marginBottom">5sp</item>
|
||||
<item name="android:layout_width">fill_parent</item>
|
||||
<item name="android:layout_height">wrap_content</item>
|
||||
<item name="android:textColor">#FFFFFFFF</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
|
||||
|
|
Loading…
Reference in a new issue