diff options
-rw-r--r-- | res/layout/about.xml | 21 | ||||
-rwxr-xr-x | res/values/strings.xml | 1 |
2 files changed, 21 insertions, 1 deletions
diff --git a/res/layout/about.xml b/res/layout/about.xml index b7bbc92f..ce57564d 100644 --- a/res/layout/about.xml +++ b/res/layout/about.xml @@ -36,10 +36,29 @@ android:autoLink="all" android:text="@string/repository_url_text" /> + <Space + android:layout_width="match_parent" + android:layout_height="10sp" /> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:autoLink="all" + android:text="@string/translation_project_text" /> + + <Space + android:layout_width="match_parent" + android:layout_height="10sp" /> + <TextView android:layout_width="match_parent" android:layout_height="wrap_content" - android:autoLink="all" /> + android:autoLink="all" + android:text="@string/translationby" /> + + <Space + android:layout_width="match_parent" + android:layout_height="10sp" /> <TextView android:layout_width="match_parent" diff --git a/res/values/strings.xml b/res/values/strings.xml index 24207c6c..e64e7eae 100755 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -5,6 +5,7 @@ <string name="ok">OK</string> <string name="retry">Retry</string> <string name="repository_url_text">Source code and issue tracker available at https://github.com/leapcode/bitmask_android/</string> + <string name="translation_project_text">Translations welcome and appreciated. See our Transifex project at https://www.transifex.com/projects/p/bitmask-android/</string> <string name="copyright_others">This program uses the following components; see the source code for full details on the licenses</string> <string name="about">About Bitmask</string> <string name="switch_provider_menu_option">Switch provider</string> |