Skip to content

Commit 225031c

Browse files
committed
couple string changes
1 parent e493c51 commit 225031c

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
<activity
3737
android:name=".LicenseActivity"
38-
android:label="@string/license"
38+
android:label="@string/third_party_licences"
3939
android:screenOrientation="portrait"/>
4040

4141
<receiver

app/src/main/res/layout/activity_about.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
android:layout_below="@+id/about_email"
3636
android:paddingBottom="@dimen/activity_margin"
3737
android:paddingTop="@dimen/activity_margin"
38-
android:text="@string/open_source_licences"
38+
android:text="@string/third_party_licences_underlined"
3939
android:textColor="@color/colorPrimary"/>
4040

4141
<TextView

app/src/main/res/layout/activity_license.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@
1010
android:layout_width="match_parent"
1111
android:layout_height="wrap_content"
1212
android:orientation="vertical"
13-
android:paddingBottom="@dimen/activity_margin"
14-
android:paddingLeft="@dimen/activity_margin"
15-
android:paddingRight="@dimen/activity_margin">
13+
android:padding="@dimen/activity_margin">
14+
15+
<TextView
16+
android:layout_width="wrap_content"
17+
android:layout_height="wrap_content"
18+
android:text="@string/notice"/>
1619

1720
<TextView
1821
android:id="@+id/license_butterknife_title"

app/src/main/res/values/strings.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@
55

66
<!-- About -->
77
<string name="about">About</string>
8-
<string name="website">For more simple apps please visit:\nhttp://simplemobiletools.com</string>
9-
<string name="email_label">You can send your feedback and new app suggestions at:</string>
8+
<string name="website">For more simple apps or source codes please visit:\nhttp://simplemobiletools.com</string>
9+
<string name="email_label">You can send your feedback or new app suggestions at:</string>
1010
<string name="email">[email protected]</string>
11-
<string name="open_source_licences"><u>Open-source licences</u></string>
11+
<string name="third_party_licences_underlined"><u>Third party licences</u></string>
1212
<string name="version">v %1$s</string>
1313
<string name="copyright">Copyright © Simple Mobile Tools %1$d</string>
1414

1515
<!--License-->
16-
<string name="license">License</string>
16+
<string name="license_note">License</string>
17+
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
18+
<string name="third_party_licences">Third party licences</string>
1719
<string name="butterknife_title">Butter Knife (view injector)</string>
1820
<string name="butterknife_text">Copyright 2013 Jake Wharton\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions and limitations under the License.</string>
1921
<string name="butterknife_url">https://github.com/JakeWharton/butterknife</string>

0 commit comments

Comments
 (0)