diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-10-01 19:56:01 +0200 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-10-04 17:51:16 +0200 |
commit | 623007c0fab937d6874487870e44bfac513244de (patch) | |
tree | bb45c5fcd8d26019e35b73d1a81760a817523493 | |
parent | 3e31057f5a8336d84d1b321cfb1db6b008035148 (diff) |
android: about dialog description, app names - viewer & browser
Change-Id: I4f759b6a004ca8f12974f3d0daa9f1d78c015f2a
-rw-r--r-- | android/experimental/LOAndroid3/res/layout/about.xml | 13 | ||||
-rw-r--r-- | android/experimental/LOAndroid3/res/values/strings.xml | 10 |
2 files changed, 13 insertions, 10 deletions
diff --git a/android/experimental/LOAndroid3/res/layout/about.xml b/android/experimental/LOAndroid3/res/layout/about.xml index f1222dcdff5f..ec014a0e89f8 100644 --- a/android/experimental/LOAndroid3/res/layout/about.xml +++ b/android/experimental/LOAndroid3/res/layout/about.xml @@ -12,17 +12,18 @@ android:layout_height="wrap_content" android:text="@string/app_description" android:textColor="@android:color/secondary_text_light" - android:textSize="16sp"/> + android:textSize="18sp"/> <TextView android:id="@+id/about_credits" android:layout_width="match_parent" android:layout_height="wrap_content" android:autoLink="web" + android:paddingBottom="20dip" android:paddingTop="20dip" android:text="@string/app_credits" android:textColor="@android:color/secondary_text_light" - android:textSize="16dip"/> + android:textSize="18dip"/> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" @@ -33,15 +34,15 @@ android:id="@+id/about_license_button" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="License" - /> + android:layout_marginRight="12dp" + android:text="License"/> <Button android:id="@+id/about_notice_button" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="Notice" - /> + android:layout_marginRight="12dp" + android:text="Notice"/> </LinearLayout> </LinearLayout>
\ No newline at end of file diff --git a/android/experimental/LOAndroid3/res/values/strings.xml b/android/experimental/LOAndroid3/res/values/strings.xml index 74dee0023247..d04f92e66e83 100644 --- a/android/experimental/LOAndroid3/res/values/strings.xml +++ b/android/experimental/LOAndroid3/res/values/strings.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <resources> - <string name="app_name">LibreOffice</string> - <string name="app_description">Description</string> - <string name="app_credits">Credits</string> + <string name="app_name">LibreOffice Viewer</string> - <string name="browser_app_name">LibreOfficeUI</string> + <string name="app_about_name"><b>LibreOffice Viewer \'Beta\'</b></string> + <string name="app_description">LibreOffice Viewer is an document viewer based on LibreOffice</string> + <string name="app_credits">http://www.libreoffice.com</string> + + <string name="browser_app_name">LibreOffice Browser</string> <string name="menu_search">Search</string> <string name="list_view">List</string> <string name="grid_view">Grid</string> |